@charset "UTF-8";
/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Shippori+Mincho&display=swap');

/*----------------------------------------------------------------------------
	reset
----------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
	vertical-align: baseline;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
	margin: 0;
	padding: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
	font-style: normal;
}

ul, ol {
	list-style-type: none;
}

em, strong, th, address {
	font-style: normal;
	font-weight: normal;
	text-align: left;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

img, object, embed {
	border: 0;
	vertical-align: top;
}

img {
	max-width: 100%;
	height: auto;
  -webkit-backface-visibility: hidden;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
	img {
    transform: translateZ(0);
	}
}

hr {
	display: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

li {
	list-style-type: none;
}

strong {
	font-weight: bold;
}

p:last-child {
	margin-bottom:0 !important;
}

/*----------------------------------------------------------------------------
	font
----------------------------------------------------------------------------*/

.font-en {
  font-family: "Marcellus", serif;
  font-optical-sizing: auto;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-style: normal;
}
.font-min {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-style: normal;
}

/*----------------------------------------------------------------------------
	linkColor
----------------------------------------------------------------------------*/
a {
	color: #121314;
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	color: #121314;
	opacity: 0.6;
	transition: all 0.3s;
}

/*----------------------------------------------------------------------------
	base
----------------------------------------------------------------------------*/
html, body {
	overflow-x: hidden;
	width:100%;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	position: relative;
}

body {
	overflow: hidden;
	padding-top:88px;
	position: relative;
	font-size: 14px;
	font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
	line-height: 1.55;
	color:#2B2828;
	word-break: break-all;
	background: #FAF9F4;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.smp {
	display: none;
}


/*----------------------------------------------------------------------------
	header
----------------------------------------------------------------------------*/

header {
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height: 88px;
	background: #FAF9F4;
	/*box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.06);*/
	z-index:10;
}

header .logo {
	position:absolute;
	left:3vw;
	top:13px;
	width:64px;
}

header .btn {
  display:flex;
  align-items: center;
	position:absolute;
	right:3vw;
	top:28px;
	width:34px;
  height:34px;
  cursor: pointer;
  transition: all 0.3s;
}
  header .btn:hover {
    opacity:0.6;
    transition: all 0.3s;
  }


/*----------------------------------------------------------------------------
	gNav
----------------------------------------------------------------------------*/

.gNav {
  display:none;
  overflow-y:auto;
	position:fixed;
	right:0;
	top:0;
  padding:13px 6vw 30px;
	width:100%;
	height: 100%;
  color:#FAF9F4;
	background: #847556;
	z-index:1000;
}
  .gNavHead {
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom:60px;
  }
    .gNavHead .logo {
      width:83px;
    }
      .gNavHead .logo img {
        width:100%;
      }
    .gNavHead .btn {
      width:32px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .gNavHead .btn:hover {
      opacity:0.6;
      transition: all 0.3s;
    }
      .gNavHead .btn img {
        width:100%;
      }
  .gNavCont {
    display:flex;
    justify-content: space-between;
    margin-bottom:60px;
  }

  .gNavBody1 {
    width:45%;
    min-width:420px;
  }
    .gNav .mainNav {
      margin-bottom:35px;
    }
      .gNav .mainNav li {
        line-height:1;
        border-bottom:1px solid #78797A;
      }
        .gNav .mainNav li a {
          display:block;
          padding:22px 0;
          font-family: "Marcellus", serif;
          font-size:14px;
          color:#FAF9F4;
          text-align:left;
          background:url(../img/icon-arr-b2.svg) 100% center no-repeat;
          border-bottom:1px solid #ADA188;
        }
        .gNav .mainNav li a span {
          display:block;
          margin-top:10px;
          font-family: "Shippori Mincho", serif;
          font-size:12px;
        }

  .gNavBody2 {
    position:relative;
    margin-bottom:0;
    width:45%;
    min-width:420px;
  }

    .gNav .btn1 {
      margin-bottom:20px;
    }

    .gNav .name {
      position:relative;
      margin-top:60px;
      width:220px;
      font-size:15px;
    }
      .gNav .name a {
        display:inline-block;
        position:absolute;
        top:4px;
        right:0;
      }

    .gNav .place {
      position:relative;
      margin-top:30px;
      padding-left:27px;
    }
      .gNav .place img {
        display:inline-block;
        position:absolute;
        top:2px;
        left:2px;
      }

    .gNav .mail {
      position:relative;
      margin-top:20px;
      padding-left:27px;
    }
      .gNav .mail img {
        display:inline-block;
        position:absolute;
        top:5px;
        left:0;
      }


  .gNav .gNavFoot {
    display:flex;
    justify-content: space-between;
    width:100%;
  }

    .gNav .subNav {
      display:flex;
      justify-content: flex-start;
      width:45%;
      min-width:420px;
    }
      .gNav .subNav li {
        width:40%;
        line-height:1;
      }
        .gNav .subNav li a {
          display:block;
          padding:0 0;
          font-family: "Marcellus", serif;
          font-size:12px;
          color:#FAF9F4;
          text-align:left;
        }
        .gNav .subNav li a span {
          display:block;
          margin-top:5px;
          font-family: "Shippori Mincho", serif;
          font-size:10px;
        }

    .gNav .copy {
      width:45%;
      min-width:420px;
      font-family: "Marcellus", serif;
      font-size:12px;
    }


/*----------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------*/

footer {
  margin-top:100px;
  padding:100px 0;
	width:100%;
  color:#FAF9F4;
	background: #847556;
	z-index:1000;
}
  .footerHead {
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin:0 auto 60px;
    width:900px;
  }
    .footerHead .logo {
      width:272px;
    }
      .footerHead .logo img {
        width:100%;
      }

  .footerCont {
    display:flex;
    justify-content: space-between;
    margin:0 auto 60px;
    width:900px;
  }

  .footerBody1 {
    padding-top: 5px;
    width:41%;
    border-right:1px solid #BEB7A5;
  }

    footer .place1 {
      position:relative;
      margin-top:30px;
    }

    footer .place2 {
      position:relative;
      margin-top:20px;
      font-family: "Marcellus", serif;
    }
      footer .place2 a {
        color: #FAF9F4;
      }

    footer .maps {
      position:relative;
      margin-top:30px;
      width:115px;
    }
      footer .maps a {
        display:inline-block;
        padding-bottom:5px;
        width:100%;
        color:#FAF9F4;
        border-bottom:1px solid #C7BDA6;
      }
      footer .maps img {
        display:inline-block;
        position:absolute;
        top:7px;
        right:0;
      }

    footer .insta {
      position:relative;
      margin-top:30px;
      padding-left:24px;
    }
      footer .insta a {
        color:#FAF9F4;
      }
      footer .insta img {
        display:inline-block;
        position:absolute;
        top:3px;
        left:0;
      }

  .footerBody2 {
    position:relative;
    margin-bottom:0;
    width:45%;
    min-width:420px;
  }

    footer .btn1 {
      margin-bottom:20px;
    }
      footer .btn1 a {
        color:#847556;
      }

    footer .mainNav {
      display:flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom:35px;
    }
      footer .mainNav li {
        margin-top:40px;
        padding-right:50px;
        line-height:1;
      }
      footer .mainNav li:nth-child(3n) {padding-right:0;}
        footer .mainNav li a {
          display:block;
          padding:0 0;
          font-family: "Marcellus", serif;
          font-size:14px;
          color:#FAF9F4;
          text-align:left;
        }
        footer .mainNav li a span {
          display:block;
          margin-top:5px;
          font-family: "Shippori Mincho", serif;
          font-size:12px;
        }


  footer .footerFoot {
    position:relative;
    margin:0 auto 60px;
    width:900px;
  }

    footer .copy {
      position:absolute;
      left:0;
      top: -125px;
      width:45%;
      min-width:420px;
      font-family: "Marcellus", serif;
      font-size:12px;
    }

.toTop {
	display:inline-block;
	position:absolute;
	right:2vw;
	bottom:70px;
	width:66px;
	transition: all 0.3s;
	cursor: pointer;
}
.toTop:hover {
	opacity:0.6;
	transition: all 0.3s;
}

.fixBtn {display:none;}


/*----------------------------------------------------------------------------
	main
----------------------------------------------------------------------------*/
main {
	/*overflow:hidden;*/
	margin:0 auto;
}


/*----------------------------------------------------------------------------
	下層共通
----------------------------------------------------------------------------*/

.page-common .wrapper {
	position:relative;
	margin:0 auto;
	padding:160px 0 0;
	width:800px;
	line-height:1.8;
}
.page-common .heading {
	margin-bottom:90px;
  font-family: "Marcellus", serif;
	font-size:24px;
  color:#847556;
}
  .page-common .heading span {
    display:block;
    margin-top:15px;
    font-family: "Shippori Mincho", serif;
    font-size:14px;
    color:#2B2828;
  }


.btn1 {
  line-height:1;
}
  .btn1 a {
    display:block;
    padding:23px 0;
    width:100%;
    font-family: "Marcellus", serif;
    font-size:17px;
    color:#2B2828;
    text-align:center;
    background:#FAF9F4 url(../img/icon-arr-b.svg) 96% center no-repeat;
  }
  .btn1 a span {
    display:block;
    margin-top:10px;
    font-family: "Shippori Mincho", serif;
    font-size:14px;
  }

.btn2 {
  line-height:1;
}
  .btn2 a {
    display:block;
    padding:23px 0;
    width:100%;
    font-family: "Marcellus", serif;
    font-size:17px;
    color:#FAF9F4;
    text-align:center;
    background:url(../img/icon-arr-w.svg) 96% center no-repeat;
    border:1px solid #C7BDA6;
  }
  .btn2 a span {
    display:block;
    margin-top:10px;
    font-family: "Shippori Mincho", serif;
    font-size:14px;
  }


/*----------------------------------------------------------------------------
	TOP
----------------------------------------------------------------------------*/

.page-top {
  padding-top:0;
}

.page-top header {
	background:none;
}
.page-top header h1 {
	display:none;
}

.page-top footer {margin-top:0;}

.page-top .mv {
  overflow: hidden;
  position:relative;
  width:100%;
  height:100vh;
}
.page-top .mv h2 {
	display:inline-block;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  width:201px;
  z-index: 2;
}
.page-top .mv picture img {
	display:inline-block;
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  min-width:100%;
  min-height:100%;
  z-index: 1;
}
.page-top .mv p {
	display:inline-block;
  position:fixed;
  right:10px;
  bottom:10px;
  z-index: 2;
  margin:0;
  padding:0;
}

.scroll_down {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll_down:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg,rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
  }

.scroll_down a {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 76px;
  z-index: 1;
  width: 13px;
  padding: 10px 10px 110px;
  color: #000;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: .2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #E8E6E2;
}

.scroll_down a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2px;
  height: 100px;
  background: #818181;
}

.scroll_down a:hover {
  opacity: .5;
}

#type01 a:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



.page-top .sec1 {
  padding:200px 0 0;
  width:100%;
}
  .page-top .sec1 .wrapper {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    margin:0 auto 200px;
    width:90%;
    max-width:1132px;
  }
  .page-top .sec1 .wrapper div {
    width:48%;
  }
    .page-top .sec1 .wrapper h3 {
      margin-bottom:60px;
      font-family: "Marcellus", serif;
      font-size:48px;
      color:#E2DCCF;
      line-height:1.1;
    }
    .page-top .sec1 .wrapper h4 {
      margin-bottom:30px;
      font-size:24px;
    }
    .page-top .sec1 .wrapper p:not(:last-child) {
      margin-bottom:30px;
    }
  .page-top .sec1 .wrapper img {
    width:48%;
  }



.page-top .sec2 {
  padding:200px 0 0;
  width:100%;
}
  .page-top .sec2 h3 {
    float:right;
    width:90%;
    max-width:1150px;
  }
  .page-top .sec2 ul {
    clear:both;
    display:flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin:0 auto;
    padding-top:140px;
    width:90%;
    max-width:1100px;
  }
    .page-top .sec2 li {
      display:flex;
      justify-content:space-between;
      align-items: flex-start;
      margin-bottom:100px;
      width:316px;
    }
    .page-top .sec2 li:nth-child(2) {
      margin-left:70px;
      margin-right:70px;
    }
    .page-top .sec2 li:nth-child(4),
    .page-top .sec2 li:nth-child(5) {
      margin-left:70px;
      margin-right:70px;
    }
      .page-top .sec2 li h4 {
        width:24px;
      }
      .page-top .sec2 li div {
        width:260px;
      }
        .page-top .sec2 li div p {
          margin-top:20px;
          font-size:14px;
        }



.page-top .sec3 {
  padding:100px 0 200px;
  width:100%;
}
  .page-top .sec3 h3 {
    margin:0 auto;
    width: 90%;
    max-width: 1050px;
    font-family: "Marcellus", serif;
    font-size:48px;
    color:#E2DCCF;
    line-height:1.1;
  }
  .page-top .sec3 picture {
    display: block;
    margin:0 auto;
    width: 90%;
    max-width: 1050px;
    text-align:center;
  }
    .page-top .sec3 picture img {
      width:100%;
      max-width:813px;
    }
  .page-top .sec3 .btn1 {
    margin:70px auto 0;
    width:300px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.05));
    border: 1px solid #d5d5d5;
  }
  .page-top .sec3 .sec {
    position:relative;
  }
  .page-top .sec3 .sec .slide-wrap {
    position:absolute;
    left:0;
    top:50%;
    transform: translate(0,-50%);
    width:45vw;
    max-width:580px;
  }
  .page-top .sec3 .sec .wrapper {
    display:flex;
    align-items: center;
    margin:0 auto;
    width:1000px;
    height:580px;
    border-bottom:1px solid #D5D5D5;
  }
  .page-top .sec3 .sec.last .wrapper {
    border-bottom:0;
  }

  @media screen and (max-width:1289px) {
    .page-top .sec3 .sec .wrapper {
      height:42vw;
    }
  }

  .page-top .sec3 .sec .cont {
    padding-left:500px;
    text-align:left;
  }
  .page-top .sec3 .sec .cont h4 {
    margin-bottom:15px;
    font-size:22px;
    font-family: "Marcellus", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  .page-top .sec3 .sec .cont p:not(:last-child) {
    margin-bottom:20px;
  }
    .page-top .sec3 .sec .cont p span {
      font-size:90%;
    }

  .page-top .sec3 .sec .cont ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
    .page-top .sec3 .sec .cont ul li {
      width:30%;
      font-size:90%;
      text-align:left;
    }
    .page-top .sec3 .sec .cont ul li:last-child {
      width:67%;
    }



.page-top .sec4 {
  padding:90px 0;
  width:100%;
  color:#FAF9F4;
  background:#847556;
}
  .page-top .sec4 picture img {
    margin-bottom:160px;
  }
  .page-top .sec4 .wrapper {
    margin:0 auto;
    width:1000px;
  }
  .page-top .sec4 .sec {
    display:flex;
    justify-content: space-between;
    align-items: center;
  }
    .page-top .sec4 .sec div {
      width:48%;
    }
    .page-top .sec4 .sec h3 {
      font-size:48px;
      color:#95886D;
      line-height:1.1;
      font-family: "Marcellus", serif;
      font-optical-sizing: auto;
      font-weight: normal;
      letter-spacing: 0.05em;
      font-style: normal;
    }
      .page-top .sec4 .sec h3 span {
        display:block;
        margin:50px 0 30px;
        font-size:24px;
        color:#FAF9F4;
      }
    .page-top .sec4 .sec img {
      width:48%;
    }

  .page-top .sec4 .btn2 {
    margin:100px auto 0;
    width:300px;
  }



.page-top .sec5 {
  padding:200px 0;
  width:100%;
}
  .page-top .sec5 .wrapper {
    overflow: hidden;
    margin:0 auto;
    width:90%;
    max-width:1098px;
  }
    .page-top .sec5 .wrapper h3 {
      margin-bottom:60px;
      font-family: "Marcellus", serif;
      font-size:48px;
      color:#E2DCCF;
      line-height:1.1;
    }
    .page-top .sec5 .wrapper table {
      float:right;
      width:800px;
      border-top:1px solid #D5D5D5;
    }
      .page-top .sec5 .wrapper tr {
        border-bottom:1px solid #D5D5D5;
      }
      .page-top .sec5 .wrapper th {
        padding:40px 0;
        width:25%;
        font-size:12px;
        text-align: left;
        vertical-align: top;
      }
        .page-top .sec5 .wrapper th span {
          font-family: "Marcellus", serif;
          font-size:16px;
        }
      .page-top .sec5 .wrapper td {
        padding:40px 0;
        font-size:13px;
        text-align: left;
        vertical-align:middle;
      }
      .page-top .sec5 .wrapper td p:not(:last-child) {
        margin-bottom:20px;
      }
        .page-top .sec5 .wrapper td p span {
          font-family: "Marcellus", serif;
          font-size:14px;
          color:#847556;
        }
      .page-top .sec5 .wrapper td.time p {
        margin-bottom:0;
        font-size:20px;
      }
      .page-top .sec5 .wrapper td div {
        padding:20px;
        color:#FAF9F4;
        background:#847556;
      }
        .page-top .sec5 .wrapper td div p.ttl {
          margin-bottom:10px;
          font-size:16px;
        }
      .page-top .sec5 .wrapper td.time div {
        margin:10px 0 20px;
      }
      .page-top .sec5 .wrapper td.time div:last-child {
        margin-bottom:0;
      }
      .page-top .sec5 .wrapper td dt {
        font-size:14px;
      }
      .page-top .sec5 .wrapper td dd {
        margin-bottom:20px;
        padding-left:14px;
      }



.page-top .sec6 {
  padding:170px 0 90px;
  width:100%;
  background:#2B2828;
}
  .page-top .sec6 .wrapper {
    margin:0 auto;
    width:1000px;
  }
    .page-top .sec6 .wrapper div {
      position:relative;
      margin-bottom:60px;
      width:100%;
    }

    .page-top .sec6 .maps {
      position:absolute;
      right: 180px;
      top: 470px;
      width:115px;
    }
      .page-top .sec6 .maps a {
        display:inline-block;
        padding-bottom:5px;
        width:100%;
        color:#FAF9F4;
        border-bottom:1px solid #C7BDA6;
      }
      .page-top .sec6 .maps img {
        display:inline-block;
        position:absolute;
        top:7px;
        right:0;
      }

    .page-top .sec6 .wrapper ul {
      display:flex;
      justify-content: space-between;
      width:100%;
    }
      .page-top .sec6 .wrapper li {
        width:48%;
        color:#FAF9F4;
        text-align:left;
      }
      .page-top .sec6 .wrapper li p.ttl {
        font-size:16px;
      }
      .page-top .sec6 .wrapper li p:not(:last-child) {
        margin-bottom:15px;
      }



/*----------------------------------------------------------------------------
	privacy
----------------------------------------------------------------------------*/

.page-privacy .sec {
  margin-bottom:30px;
  padding-bottom:30px;
  border-bottom:1px solid #D5D5D5;
}

.page-privacy p:not(:last-child) {
  margin-bottom:20px;
}
.page-privacy p.ttl {
  font-size:16px;
}
.page-privacy p {
  font-size:13px;
}


/*----------------------------------------------------------------------------
	dining-experiences
----------------------------------------------------------------------------*/

.page-dining .mv {
	margin-bottom:100px;
}

.page-dining .wrapper {
	position:relative;
	margin:0 auto;
	width:1000px;
	line-height:1.8;
}
.page-dining .heading {
	margin-bottom:30px;
  font-family: "Marcellus", serif;
	font-size:48px;
  color:#E2DCCF;
  line-height: 1.1;
}
  .page-dining .heading span {
    display:block;
    margin-top:30px;
    font-family: "Shippori Mincho", serif;
    font-size:18px;
    color:#2B2828;
  }

.page-dining p:not(:last-child) {
  margin-bottom:30px;
}
.page-dining p.ttl {
  font-size:16px;
}

.page-dining .sec {
  position:relative;
  margin-bottom:100px;
}
.page-dining .sec.first {
  margin-top:200px;
  margin-bottom:0;
}
.page-dining .sec img {
  position:absolute;
  left:0;
  top:50%;
  transform: translate(0,-50%);
  width:45vw;
  max-width:580px;
}
.page-dining .sec .wrapper {
  display:flex;
  align-items: center;
  padding:100px 0;
  min-height:633px;
  border-bottom:1px solid #D5D5D5;
}
.page-dining .sec.first .wrapper {
  border-top:1px solid #D5D5D5;
}
.page-dining .sec .cont {
  padding-left:500px;
  text-align:left;
}
.page-dining .sec .cont h2 {
  margin-bottom:15px;
  font-size:22px;
}
.page-dining .sec .cont p {
  margin-bottom:0;
}
.page-dining .sec .cont div {
  margin-top:30px;
  padding:18px;
  background:#FFF;
  border-left:4px solid #847556;
}
.page-dining .sec .cont div h3 {
  margin-bottom:5px;
  font-size:15px;
  font-family: "Marcellus", serif;
  color:#847556;
}
.page-dining .sec .cont div p {
  margin-bottom:10px;
  font-size:12px;
}
.page-dining .sec .cont div p.price {
  overflow: hidden;
  margin-bottom:30px;
  font-size:14px;
}
.page-dining .sec .cont div p.price span {
  float:right;
  font-size:16px;
}


/*----------------------------------------------------------------------------
	gallery
----------------------------------------------------------------------------*/

.page-gallery {padding-top:100px;}

.page-gallery .wrapper {
	position:relative;
	margin:0 auto;
	width:1000px;
	line-height:1.8;
}
.page-gallery .heading {
	margin-bottom:40px;
  padding-bottom:20px;
  font-family: "Marcellus", serif;
	font-size:24px;
  line-height: 1.1;
  border-bottom:1px solid #D5D5D5;
}

.page-gallery ul {
	display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width:100%;
}
.page-gallery ul::after{
  content:"";
  display: block;
  width:30%;
}
.page-gallery li {
  overflow: hidden;
  position:relative;
  margin-bottom:50px;
  height:200px;
	width:30%;
}
  .page-gallery li a {
    overflow: hidden;
    display:block;
    position:absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width:100%;
    height:auto;
  }


/*----------------------------------------------------------------------------
	スライド
----------------------------------------------------------------------------*/

/* スライド画像 */
/* スライド全体 */
.slide-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;

  /*
   * 横スワイプはJavaScriptで制御し、
   * 縦方向のページスクロールは許可する
   */
  touch-action: pan-y;
}

.slide-wrap.is-dragging {
  cursor: grabbing;
}

/* スライド画像 */
.slide {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.slide li {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 1s ease,
    visibility 1s ease;
}

/* 1枚目でスライド部分の高さを確保 */
.slide li:first-child {
  position: relative;
}

.slide li.is-active {
  z-index: 2;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slide img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

/* ●ナビ */
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.slide-dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slide-dot.is-active {
  background-color: #333;
}