@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 50px;
  }
}

body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 18px;
}

.container {
  width: min(800px, 93.5vw);
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #3b3b3b;
}

::-moz-selection {
  background-color: #e9d7b3;
}

::selection {
  background-color: #e9d7b3;
}

.lb-outerContainer {
  background-color: #000;
}
.lb-outerContainer .lb-image {
  border-color: #000;
}

@page {
  size: A4;
  margin: 10mm;
}
.print {
  display: none;
}
@media print {
  .print {
    display: block;
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}

header {
  background-color: rgba(42, 42, 42, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  position: fixed;
  width: 100vw;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  header {
    padding: 12px;
  }
}
header a {
  display: block;
  color: #fff;
  padding: 0.5rem 1rem;
  background-color: #b1883a;
}
@media screen and (max-width: 768px) {
  header a {
    font-size: 12px;
    padding: 0.25rem 0.5rem;
  }
}
header .l-header {
  display: flex;
  align-items: center;
}
header .l-header__open {
  height: 17px;
  cursor: pointer;
  z-index: 10;
}
header .l-header__open span {
  width: 42px;
  height: 1px;
  background-color: #fff;
  display: block;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  header .l-header__open span {
    width: 24px;
  }
}
header .l-header__open span:nth-child(2) {
  top: 7px;
}
header .l-header__open span:nth-child(3) {
  top: 14px;
}
header .l-header__open.open span:nth-child(1) {
  transform: rotate(30deg);
  top: 8px;
}
header .l-header__open.open span:nth-child(2) {
  opacity: 0;
}
header .l-header__open.open span:nth-child(3) {
  transform: rotate(-30deg);
  top: 6px;
}
header .l-header__link {
  margin: 0;
  color: #FFF;
}
header .l-header__menu {
  position: absolute;
  left: 0;
  top: 0;
  background: #2a2a2a;
  width: 100vw;
  height: 100vh;
  text-align: center;
  display: none;
}
header .l-header__menu ul {
  width: 300px;
  margin: 4rem auto;
  text-align: left;
  color: #fff;
  list-style: none;
}
header .l-header__menu ul li {
  border-bottom: solid 1px #939393;
}
header .l-header__menu ul li a {
  background-color: transparent;
  padding: 1.5rem 0;
  width: 100%;
  display: flex;
  align-items: center;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  header .l-header__menu ul li a {
    font-size: 16px;
  }
}
header .l-header__menu ul li a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #b1883a;
  border-right: 0;
  margin: 1rem;
}
header .l-header__menu ul li a:hover {
  transform: translateX(10px);
}
header .l-header__menu .c-linkText {
  color: #000;
  display: inline-flex;
  padding: 0.5rem 1rem;
}
@media screen and (max-width: 768px) {
  header .l-header__menu .c-linkText {
    font-size: 14px;
  }
}
header .l-header__menu .c-linkText span {
  border-color: #000;
}

footer {
  padding: 16px 0 100px;
  text-align: center;
  border-top: solid 1px #f5f5f5;
}
@media print {
  footer {
    display: none;
  }
}
footer small {
  display: block;
  font-size: 12px;
}

.c-titleSection.pattern01 {
  font-size: 20px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-titleSection.pattern01 {
    font-size: 16px;
  }
}
.c-titleSection.pattern01 span {
  display: block;
  font-size: 12px;
  color: #b1883a;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .c-titleSection.pattern01 span {
    margin-top: 0;
  }
}
.c-titleSection.pattern02 {
  font-size: 20px;
  position: relative;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .c-titleSection.pattern02 {
    font-size: 16px;
    height: 80px;
  }
}
.c-titleSection.pattern02 span {
  font-size: 130px;
  line-height: 130px;
  color: #fafbfb;
  position: absolute;
  top: -2rem;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-titleSection.pattern02 span {
    font-size: 80px;
    line-height: 80px;
  }
}

.c-linkText {
  color: #b1883a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  transition: color 0.2s ease;
}
.c-linkText:hover .c-linkText__arrow {
  padding: 2rem;
  border-color: #efe0c4;
}
@media screen and (max-width: 768px) {
  .c-linkText:hover .c-linkText__arrow {
    padding: 1rem;
  }
}
.c-linkText:hover .c-linkText__arrow rect {
  -webkit-animation: c-linkText-draw var(--border-duration) linear infinite;
          animation: c-linkText-draw var(--border-duration) linear infinite;
}
.c-linkText__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  padding: 6px;
  transition: padding 0.2s ease;
  border: solid 1px #b1883a;
  --stroke-length: 400;
  --border-duration: 2s;
}
.c-linkText__arrow svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.c-linkText__arrow rect {
  fill: none;
  stroke: #b1883a;
  stroke-width: 1;
  stroke-linejoin: miter;
  stroke-dasharray: var(--stroke-length) var(--stroke-length);
  stroke-dashoffset: var(--stroke-length);
  -webkit-animation: none;
          animation: none;
}
.c-linkText__arrow--inner {
  position: relative;
  display: block;
  z-index: 1;
}
.c-linkText__charWrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.15rem;
}
.c-linkText__inner {
  display: inline-flex;
  flex-direction: column;
  will-change: transform;
}
.c-linkText__layer {
  display: inline-block;
}

@-webkit-keyframes c-linkText-draw {
  0% {
    stroke-dashoffset: var(--stroke-length);
  }
  70% {
    stroke-dashoffset: 0;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: calc(-1 * var(--stroke-length));
  }
}

@keyframes c-linkText-draw {
  0% {
    stroke-dashoffset: var(--stroke-length);
  }
  70% {
    stroke-dashoffset: 0;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: calc(-1 * var(--stroke-length));
  }
}
.c-scroll {
  text-align: center;
  position: relative;
  color: #b1883a;
  padding-top: 10px;
}
.c-scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #b1883a;
  bottom: 30px;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-scroll::before {
    height: 60px;
    bottom: 30px;
  }
}
.c-scroll::after {
  background-color: #ccc;
  bottom: 30px;
  content: "";
  height: 80px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
@media screen and (max-width: 768px) {
  .c-scroll::after {
    height: 60px;
    bottom: 30px;
  }
}

@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.c-textSplit {
  display: inline-block;
  opacity: 0;
}

.c-fadein {
  opacity: 0;
  filter: blur(4px);
  scale: 1.1;
}

.p-heroimage {
  overflow: hidden;
  height: 75vh;
}
.p-heroimage__wrap {
  position: relative;
}
.p-heroimage__wrap::before, .p-heroimage__wrap::after {
  content: "";
  display: block;
  width: 100vw;
  height: 230px;
  position: absolute;
}
.p-heroimage__wrap::before {
  top: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  z-index: 1;
}
.p-heroimage__wrap::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
  bottom: 0;
}
.p-heroimage img {
  width: 100vh;
  height: 75vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-heroimage__catch, .p-heroimage__subcatch {
  position: absolute;
  color: #fff;
  line-height: 1.5;
  font-weight: normal;
  z-index: 10;
}
.p-heroimage__catch {
  bottom: -36px;
  font-size: 64px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .p-heroimage__catch {
    bottom: -68px;
    font-size: 32px;
  }
}
.p-heroimage__subcatch {
  top: 80px;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-heroimage__subcatch {
    top: 80px;
  }
}
.p-heroimage__subcatch span {
  display: inline-block;
}
.p-heroimage .slick-dots {
  z-index: 100;
  right: 0;
  bottom: 1rem;
  left: 0;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: min(800px, 94vw);
}
.p-heroimage .slick-dots li button:before {
  content: "■";
  color: #fff;
}

@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  -webkit-animation: zoomUp 10s linear 0s normal both;
          animation: zoomUp 10s linear 0s normal both;
}

.p-about {
  padding: 4rem 0 100px;
  line-height: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-about {
    padding-top: 1rem;
  }
}
.p-about h2 {
  text-align: center;
  font-size: 20px;
  margin: 2rem 0;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-about h2 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .p-about p {
    font-size: 12px;
  }
}

.p-gallery__box {
  position: relative;
}
.p-gallery__box h2 {
  position: absolute;
  top: 1rem;
  width: 180px;
  background-color: #fff;
  color: #b1883a;
  padding: 0.5rem 1rem;
  z-index: 1;
  font-size: 20px;
  width: 240px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-gallery__box h2 {
    width: 180px;
    font-size: 16px;
  }
}
.p-gallery__slide img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: solid 2px #fff;
}
@media screen and (max-width: 768px) {
  .p-gallery__slide img {
    height: 240px;
  }
}
.p-gallery #bedroom {
  overflow: hidden;
}
.p-gallery #bedroom img {
  transform: translateX(-25%);
}
.p-gallery #bath {
  overflow: hidden;
}
.p-gallery #bath img {
  transform: translateX(10%);
}
.p-gallery__pause {
  width: 30px;
  height: 30px;
  border: solid 1px #FFF;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.p-gallery__pause:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.p-gallery__pause span {
  display: block;
}
.p-gallery__pause span::before, .p-gallery__pause span::after {
  content: "";
  width: 2px;
  height: 14px;
  position: absolute;
  top: 7px;
  display: block;
  background: #fff;
  transform: 0.2s;
}
.p-gallery__pause span::before {
  left: 10px;
}
.p-gallery__pause span::after {
  right: 10px;
}
.p-gallery__pause.paused span::before {
  background: transparent;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #fff;
  border-right: 0;
  top: 8px;
  left: 11px;
}
.p-gallery__pause.paused span::after {
  opacity: 0;
}

.p-information {
  background-color: #f4f8f8;
  padding: 100px 0;
}
.p-information__box {
  margin: 2rem 1rem;
}
.p-information__box h3 {
  color: #939393;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: solid 1px #939393;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-information__box h3 {
    font-size: 14px;
  }
}
.p-information__box p {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-information__box p {
    font-size: 14px;
  }
}
.p-information__box ul {
  list-style: none;
}
.p-information__box ul li {
  display: flex;
  margin: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-information__box ul li {
    font-size: 12px;
    margin: 0.25rem 0;
  }
}
.p-information__box ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: #b1883a;
  margin: 0.5rem;
}
.p-information__box ul li p {
  flex: 1;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-information__box ul li p {
    font-size: 12px;
  }
}
.p-information__box--inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
.p-information__box--inner span {
  background-color: #fff;
  color: #b1883a;
  font-size: 14px;
  padding: 0 0.5rem;
}
.p-information__box--inner p {
  margin: 0;
}

.p-access {
  padding: 4rem 0;
}
.p-access iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-access p {
    font-size: 12px;
  }
}

.p-contact {
  padding: 4rem 0;
  border-top: solid 1px #f5f5f5;
}
.p-contact p {
  font-size: 14px;
  line-height: 1.5em;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact p {
    width: 70vw;
    text-align: left;
  }
}

.p-link {
  padding: 4rem 0;
  border-top: solid 1px #f5f5f5;
}
.p-link ul {
  list-style: none;
}
.p-link ul li {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .p-link ul li {
    font-size: 12px;
    margin: 1rem 0;
  }
}
.p-link ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: #b1883a;
  margin: 0 0.5rem;
}
.p-link ul li .c-linkText {
  margin: 0;
}