@charset "utf-8";
/* CSS Document */
body {
  font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  color: #3F342F;
  overflow-x: hidden;
  background-color: #eae3da;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
a, a:link {
  color: #3F342F;
  text-decoration: none;
}
a {
  transition: 1.0s;
}
a:hover {
  color: #333;
}
a:visited {
  color: #3F342F;
}
.txt-center {
  text-align: center;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.layout-center {
  margin: 0 auto;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.clear {
  clear: both;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1, .h1 {
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.4;
  font-size: clamp(1.5rem, 4vw, 2rem);
}
main h1 {
  margin-bottom: 2rem;
}
h2, .h2 {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  letter-spacing: 2px;
  line-height: 1.5;
}
h2.tit {
  margin-bottom: 3rem;
}
h2 span {
  display: inline-block;
}
h3, .h3 {
  /*font-size: 1.4rem;*/
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
h4, .h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
p {
  padding-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.7;
}
.pause {
  display: inline-block;
}
table {
  font-size: 1rem;
  width: 100%;
}
tr:last-child td, tr:last-child th {
  border-bottom: none;
}
td, th {
  border: 0;
  border-bottom: 1px dashed #eae3da;
  padding: 20px 0;
  text-align: left;
}
td, th {
  padding: 10px;
}
th {
  width: 100px;
}
dl {
  margin-bottom: 2rem;
}
dt {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1rem;
}
dd span {
  font-size: 0.9rem;
}
/*ul {
	font-size: 1rem;
}*/
.mt_2 {
  margin-top: 2rem;
}
.mt_3 {
  margin-top: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*** bodyに反映させる ***/
body {
  animation: fadeIn 4s forwards;
}
.slider_out {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.slider_wrap {
  position: relative;
}
.logo_top {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  filter: drop-shadow(2px 2px 4px #000);
  transform: translate(-50%, -50%);
  z-index: 2;
}
.logo_top h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: 2px;
  line-height: 1.5;
  width: max-content;
}
.logo_top h3 {
  font-size: 1rem;
  letter-spacing: 1px;
  width: max-content;
}
/*スライドの高さを指定　overflow: hidden;を入れる*/
.slider {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
/*スライドは背景画像にする*/
.slider-img {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 60%;
  width: 100%;
  /*height: 480px;*/
  height: 80vh;
  /*スライド画像の高さ*/
}
/*スライド画像を指定*/
.slider-img-01 {
  background-image: url("../images/slider1.jpg");
}
.slider-img-02 {
  background-image: url("../images/slider2.jpg");
}
.slick-list {
  width: 100%;
}
/* アニメーションを指定 */
@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    /* 拡大率 */
  }
}
.add-zoom {
  animation: fadezoom 16s 0s forwards;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade {
  animation-name: fade;
  animation-duration: 15s;
}
/* __ ヘッダー __ */
.header {
  padding: 0.5rem 1rem;
  margin: 0 auto 0;
  position: relative;
  z-index: 3;
  background-color: #fff;
}
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 40px;
}
.header p {
  font-size: 1rem;
}
.logo {
  margin: 0.5rem 0;
  position: absolute;
  /*top: 0px;*/
  z-index: 99;
}
.logo img {
  width: 130px;
}
.logo a {
  color: #777;
  text-align: center;
}
.toppage {
  margin-left: 0;
  padding-left: 0
}
.toppage .logo {
  margin-left: 0;
}
.nav_sp {
  display: block;
  position: absolute;
  top: 1rem;
  right: 0.1rem;
}
.nav_sp .nav_item {
  line-height: 1.5;
}
.nav_sp .nav_item a {
  padding: 1rem;
  display: block;
  margin: auto;
}
.nav_sp .nav_item.btn_menu a {
  line-height: 3;
}
.nav_item.btn_menu a {
  color: #fff;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background-color: #3f342f;
  line-height: 5.5;
}
.hero img {
  margin: auto;
}
/*.bg_mark {
	position: absolute;
    right: 0;
    z-index: -1;
}*/
.sidenav {
  display: none;
}
/* __ コンテンツ __ */
/* フェードイン用のCSS */
.slide-bottom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.3s 0s ease-out;
}
.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
}
.container p:not(:last-child) {
  margin-bottom: 1.5rem;
}
.top_txt h2 {
  font-size: clamp(1.1rem, 4vw, 1.4rem);
  font-weight: bold;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.top_txt h3 {
  font-weight: bold;
  margin-bottom: 2rem;
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  letter-spacing: 2px;
  line-height: 1.5;
}
.wrap1 {
  padding: 4rem 1rem 0;
  text-align: center;
}
.wrap1 p {
  padding-bottom: 0;
}
.en_tit {
  letter-spacing: 2px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
	font-family: 'Cinzel', serif;
}
.wrap2 {
  padding-top: 4rem;
  padding-bottom: 6rem;
}
.paw1 {
  background-image: url("../images/paw.png");
  background-repeat: repeat-y; 
  background-position: top right, center;
}
.paw2 {
  background-image: url("../images/paw.png");
  background-repeat: repeat-y;
  background-position: top left;
}
.btn {
  width: 300px;
  height: 60px;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #cfc3b4;
  color: #3F342F;
  text-decoration: none;
  opacity: 1;
  font-size: 15px;
  transition: .3s;
  background-color: #fff;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.btn:hover {
  transform: translatex(8px);
}
.yazirusi {
  position: relative;
  width: 25px;
  margin: 7.5px;
}
.line01 {
  height: 1px;
  background-color: #3F342F;
}
.line02 {
  position: absolute;
  top: 0;
  right: 0;
  transform-origin: right bottom;
  width: 6px;
  height: 1px;
  background-color: #777;
  transform: rotate(45deg);
}
.btn_right {
  display: flex;
  justify-content: flex-start;
}
.col_in_r {
  padding-left: 2rem;
  padding-right: 2rem;
}
.col_in_l {
  padding-left: 2rem;
  padding-right: 2rem;
}
.mh600 {
  max-height: 600px;
}
/*-----------サブページ------------*/
.subtit {
  margin: 0 230px;
}
.wrap_subtop {
  margin-top: 0;
  margin-bottom: 4rem;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.room1f .wrap_subtop {
  padding-top: 1rem;
}
.wrap3 {
  padding-bottom: 4rem;
  padding-top: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.wrap4 {
  padding-bottom: 4rem;
  padding-top: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
.note {
  background-color: #fff;
  padding: 1rem;
 background-image: url("../images/bg_head.png");
}
.note h4 {
	font-size: 1rem;
	margin-left: 0.5rem;
	margin-bottom: 0;
	margin-top: 1rem;
}
.note.red {
	color: #8C0002;
}
.cap {
	padding-bottom: 0;
	font-size: 0.9rem;
}
.pl_0 {
  padding-left: 0;
}
.pr_0 {
  padding-right: 0;
}
.room2f {
  background-color: #e3dcd1;
}
.list1 {
  background-color: #fff;
}
.list1 ul {
  list-style: decimal;
  font-size: 1rem;
  padding-left: 1rem;
  margin-bottom: 2rem;
  margin-left: 1rem;
  padding: 2rem 2rem;
}
.list1 li {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #c9beb6;
  list-style-position: inside;
  padding-left: 1rem;
  text-indent: -2.3rem;
  margin-left: 2rem;
}
::marker {
  font-weight: bold;
  color: #c9beb6;
  font-size: 180%;
}
.list2 {
  list-style: none;
  font-size: 1rem;
  padding-left: 1rem;
  margin-left: 1rem;
  background-color: #fff;
  padding: 1rem;
}
.list1 li {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #eae3da;
  list-style-position: inside;
  padding-left: 1rem;
  text-indent: -2.3rem;
  margin-left: 2rem;
}
.btn_list {
  display: flex;
  align-content: flex-start;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.0);
  flex: none;
  flex-direction: row;
  flex-wrap: wrap;
  height: auto;
  justify-content: flex-start;
  margin: 20px 0px 0px 0px;
  width: 100%;
  max-width: 100%;
}
.btn_list a {
  display: flex;
  align-items: center;
  background: #e3d7c7;
  border-radius: 128px;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 50px;
  justify-content: center;
  margin: 5px;
  padding: 0px 15px 0px;
  width: auto;
  max-width: calc(100% - 10px);
}
.btn_list p {
  display: flex;
  font-size: 0.9rem;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0px 0px 0px 0px;
  text-align: left;
  width: auto;
  max-width: 100%;
  justify-content: flex-start;
  padding-bottom: 0;
}
.list3 {
  text-align: left;
}
.list3 tbody {
  font-size: 0.9rem;
}
.list3 th {
  width: 124px;
}
.list3 > div {
  margin-bottom: 1rem;
}
.list3 h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  padding: 0 0.4rem;
  border-bottom: solid 1px #e3d7c7;
}
.info .list3 th {
  width: 100px;
}
.gallery div[class^="col-"] {
  padding: 0.5rem 0.5rem;
}
.row.gallery {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
.list4 li {
	padding-bottom: 0.6rem;
}
.list4 li a{
	text-decoration: underline;
}
footer {
  padding-left: 0;
  background-color: #fff;
}
.toppage footer {
  padding-left: 0;
}
.footer {
  font-size: 1rem;
  padding: 120px 7.5% 60px;
  position: relative;
  z-index: 1;
}
.copyright_area {
  padding: 0 7.5%;
  text-align: left;
}
.footer ul {
  font-size: 0.9rem;
  margin-top: 1rem;
}
.footnav .nav_item.btn_menu a {
  background-color: transparent;
  color: inherit;
  line-height: inherit;
  width: auto;
  height: auto;
}
.footer .logo {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.footer .logo {
  position: inherit;
	font-size: 1rem;
}
.copyright_area p {
  font-size: 12px;
  font-weight: normal;
  line-height: 100px;
  letter-spacing: 0.05em;
}
.footnav {
  border-left: solid 1px;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ページTOPに戻る */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
#page-top a {
  background: rgb(0 0 0 / 30%);
  text-decoration: none;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 3.2;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all .3s ease;
  font-size: 16px;
  font-weight: bold;
}
#page-top a:hover {
  text-decoration: none;
  opacity: .5;
}
@media screen and (min-width : 767px) { /* デスクトップ */
  th {
    width: 180px;
  }
  nav {
    height: 80px;
  }
  .logo {
    top: 16px;
  }
  .container.hero {
    margin-bottom: 3rem;
  }
  /*h3 {
    margin-top: 0;
  }*/
}
@media only screen and (min-width: 62em) {
  .header {
    background-color: transparent;
  }
  .toppage {
    padding-left: 160px;
  }
  .header .logo {
    position: fixed;
  }
  .toppage .header .logo {
    margin-left: -160px;
  }
  /*  .logo {
    position: fixed;
  }*/
  .sub.wrap_subtop {
    padding-top: 0;
  }
  .sidenav {
    display: flex;
    align-items: center;
    bottom: auto;
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100vh;
    justify-content: flex-start;
    left: 0px;
    margin: 0 0 0 0;
    padding: 80px 0px 80px 0px;
    position: fixed;
    right: auto;
    top: 0px;
    width: 160px;
    z-index: 5;
    max-width: 100%;
    background-color: #ffffff;
    background-image: url("../images/bg_head.png");
  }
  .sidenav ul {
    align-content: flex-start;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.0);
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto;
    justify-content: flex-end;
    width: auto;
    max-width: 100%;
    display: flex;
  }
  .sidenav ul li {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold;
    height: auto;
    letter-spacing: 0.1em;
    line-height: 1;
    margin: 12px 0px 12px 0px;
    text-align: center;
    width: auto;
    writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    max-width: 100%;
    justify-content: flex-start;
  }
  .sidenav ul li:first-child {
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
  }
  .btn_right {
    display: flex;
    justify-content: flex-end;
  }
  .btn_menu2 {
    background-color: #3f342f;
    width: 80px;
    height: 80px;
    border-radius: 50px;
    text-align: center;
    padding-bottom: 0;
    line-height: 5;
    font-weight: bold;
    color: #fff;
    margin-top: 1rem;
  }
  .btn_menu2 a {
    color: #fff;
    display: block;
  }
  .col_in_r {
    padding-left: 2rem;
    padding-right: 0
  }
  .col_in_l {
    padding-left: 0;
    padding-right: 2rem;
  }
th {
  width: 140px;
}
	
 .info .list3 th {
  width: 160px;
}
	
  footer {
    padding-left: 160px;
  }
}
@media only screen and (min-width:75em) {
  .fixed-background {
    height: 440px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}