@charset "UTF-8";
/* ==========================================
   1. 共通の変数と設定（CSS標準の書き方）
   ========================================== */
:root {
  --color-bg: #C3BDB4;
  --color-card: #EFEDED;
  --color-primary: #890101;
  --color-white: #ffffff;
  --font-serif: "dnp-shuei-nmincho-std", "Noto Serif JP", serif;
  --font-en: "cormorant", serif;
}

/* ==========================================
   2. 全体のリセット & 骨組み
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  font-family: var(--font-serif);
  max-width: 100%;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  body,
  html {
    overflow-x: hidden;
  }
}

.main {
  width: 100%;
}

.horizontalScroll {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .horizontalScroll {
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    height: 100vh;
  }
}
.horizontalScroll-item {
  width: 100%;
}
@media (min-width: 768px) {
  .horizontalScroll-item {
    width: 100vw;
    flex-shrink: 0;
    /* STORYセクションだけはコンテンツ幅ぶん右に伸ばす */
  }
  .horizontalScroll-item:nth-child(2) {
    width: -moz-max-content !important;
    width: max-content !important;
  }
}

/* ==========================================
   3. 各セクションのスタイル
   ========================================== */
@keyframes top-bg-slideshow {
  0% {
    opacity: 1;
  }
  27.78% {
    opacity: 1;
  }
  33.33% {
    opacity: 0;
  }
  94.44% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- TOP --- */
.top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.top__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.top__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: top-bg-slideshow 18s infinite;
}
.top__bg-img--1 {
  animation-delay: 0s;
}
.top__bg-img--2 {
  animation-delay: -12s;
}
.top__bg-img--3 {
  animation-delay: -6s;
}
.top__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 7vh, 48px);
  box-sizing: border-box;
}
.top__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.top__row--end {
  align-items: flex-end;
}
.top__logo {
  width: clamp(150px, 46vh, 500px);
  height: auto;
  flex-shrink: 0;
}
.top__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(4px, 1.4vh, 10px);
  flex-shrink: 0;
}
.top__mark {
  width: clamp(70px, 21vh, 160px);
  height: auto;
  flex-shrink: 0;
}
.top__copy-img {
  display: block;
  height: clamp(60px, 14vh, 100px);
  width: auto;
}
.top__reserve {
  flex-shrink: 0;
  width: auto;
}
.top__notice {
  flex-shrink: 0;
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.1em;
  margin: 0;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

/* --- STORY --- */
.story {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .story {
    height: 100vh;
    min-height: 100vh;
    padding: 0 100px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    width: -moz-max-content;
    width: max-content;
  }
}
.story .sub {
  width: 100%;
  max-width: 340px;
}
@media (min-width: 768px) {
  .story .sub {
    width: auto;
    max-width: none;
    flex-shrink: 0;
    height: 52vh;
    align-self: flex-start;
  }
  .story .sub--1 {
    height: 68vh;
    transform: translateY(0);
  }
  .story .sub--2 {
    height: 74vh;
    transform: translateY(26vh);
    margin-left: 48vh;
  }
  .story .sub--3 {
    height: 55vh;
    transform: translateY(4vh);
    margin-left: 54vh;
  }
  .story .sub--4 {
    height: 44vh;
    transform: translateY(41vh);
    margin-left: -2vh;
  }
  .story .sub--5 {
    height: 92vh;
    transform: translateY(4vh);
    margin-left: -6vh;
  }
}
.story .sub img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story .subcopy {
  background-color: var(--color-card);
  padding: 24px 28px;
}
.story .subcopy .text {
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 2;
  min-width: 260px;
}
@media (min-width: 768px) {
  .story .subcopy {
    display: flex;
    align-items: center;
    align-self: flex-start;
    flex-shrink: 0;
    max-width: 420px;
    padding: 20px 20px;
    position: relative;
    z-index: 2;
  }
  .story .subcopy--1 {
    transform: translateY(63vh);
    margin-left: -57vh;
  }
  .story .subcopy--2 {
    transform: translateY(14vh);
    margin-left: -76vh;
  }
  .story .subcopy--3 {
    transform: translateY(69vh);
    margin-left: -29vh;
  }
  .story .subcopy--4 {
    transform: translateY(27vh);
    margin-left: -14vh;
  }
}

/* --- ROOMPLAN --- */
.roomplan {
  width: 100%;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .roomplan {
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.roomplan__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .roomplan__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 980px;
    height: clamp(540px, 78vh, 702px);
    padding: 0 20px;
    gap: 60px;
  }
}
.roomplan__primary {
  width: 100%;
}
@media (min-width: 768px) {
  .roomplan__primary {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.roomplan__header {
  margin-bottom: 30px;
}
.roomplan__title {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.roomplan__subtitle {
  display: block;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--color-primary);
  margin-top: 5px;
}
.roomplan__action {
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .roomplan__action {
    margin-top: 22px;
    text-align: left;
  }
}
.roomplan__description {
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 1.8;
}
.roomplan__lead {
  margin-bottom: 35px;
}
.roomplan__recommend-title {
  font-weight: normal;
  margin-bottom: 10px;
}
.roomplan__recommend-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.roomplan__recommend-list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 6px;
}
.roomplan__recommend-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.roomplan__note {
  font-size: 0.85rem;
  margin-bottom: 0px;
}
.roomplan__secondary {
  width: 100%;
}
@media (min-width: 768px) {
  .roomplan__secondary {
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.roomplan__image-wrapper {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .roomplan__image-wrapper {
    aspect-ratio: auto;
    height: clamp(140px, 35vh, 300px);
    margin-bottom: 0;
  }
}
.roomplan__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.roomplan__specs {
  border-top: 1px solid var(--color-primary);
}
@media (min-width: 768px) {
  .roomplan__specs {
    margin: auto 0 0;
  }
}
.roomplan__spec-item {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-primary);
  font-size: 0.85rem;
  color: var(--color-primary);
}
.roomplan__spec-item dt {
  width: 110px;
  flex-shrink: 0;
}
.roomplan__spec-item dd {
  margin: 0;
  flex: 1;
  min-width: 0;
  line-height: 1.6;
  overflow-wrap: break-word;
}
.roomplan__spec-sub {
  display: block;
  font-size: 0.8rem;
  margin-top: 4px;
}

/* --- ACCESS --- */
.access {
  width: 100%;
}
@media (min-width: 768px) {
  .access {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.access__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .access__inner {
    flex-direction: row;
    height: 100%;
    width: 100%;
  }
}
.access__primary {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .access__primary {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 5% 0 10%;
    height: clamp(540px, 78vh, 702px);
    margin: auto 0;
  }
}
.access__header {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .access__header {
    margin-bottom: clamp(30px, 12.5vh, 90px);
  }
}
.access__title {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin: 0;
  font-weight: normal;
  letter-spacing: 0.05em;
}
.access__subtitle {
  display: block;
  font-family: var(--font-en);
  font-size: 1rem;
  color: var(--color-primary);
  margin-top: 5px;
}
.access__description {
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .access__description {
    margin-top: auto;
  }
}
.access__description p {
  margin: 0;
}
.access__location {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .access__location {
    margin-top: 20px;
    flex-shrink: 0;
  }
}
.access__brand {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.access__brand-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23890101' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Ccircle cx='12' cy='12' r='3' fill='%23890101' stroke='none'%3E%3C/circle%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.access__brand-name, .access__brand-address {
  display: block;
  margin: 0;
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 1.7;
}
.access__brand-address {
  text-decoration: none;
  cursor: pointer;
}
.access__brand-address:hover {
  text-decoration: underline;
}
.access__map-wrapper {
  display: block;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .access__map-wrapper {
    width: auto;
    height: clamp(140px, 28vh, 220px);
  }
}
.access__map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.access__secondary {
  width: 100%;
  height: 350px;
  background-image: url("images/access-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .access__secondary {
    flex: 1;
    height: 100%;
    align-items: flex-start;
    justify-content: center;
  }
}
.access__cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media (min-width: 768px) {
  .access__cta-container {
    gap: clamp(60px, 26vh, 220px);
    margin-top: clamp(120px, 48vh, 420px);
  }
}
.access__instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-en);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.access__instagram-icon {
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 12px;
}

/* ==========================================
   4. ボタンパーツ (共通コンポーネント)
   ========================================== */
.c-btn-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  padding: 16px 22px;
  border: 1px solid var(--color-primary);
  border-radius: 14px;
  color: var(--color-primary);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.05em;
  box-sizing: border-box;
  gap: 15px;
}
.c-btn-reserve__label {
  display: inline-flex;
  align-items: center;
}
.c-btn-reserve__external {
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E") center/contain no-repeat;
  margin-left: 4px;
}
.c-btn-reserve__icon {
  display: inline-block;
  width: 38px;
  height: 13px;
  flex-shrink: 0;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 12' fill='none' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='0' y1='6' x2='30' y2='6'%3E%3C/line%3E%3Cline x1='22' y1='0.5' x2='31' y2='6'%3E%3C/line%3E%3C/svg%3E") center right/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 12' fill='none' stroke='%23000' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='0' y1='6' x2='30' y2='6'%3E%3C/line%3E%3Cline x1='22' y1='0.5' x2='31' y2='6'%3E%3C/line%3E%3C/svg%3E") center right/contain no-repeat;
}
.c-btn-reserve--light {
  border-color: var(--color-white);
  color: var(--color-white);
}

.c-btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 250px;
  padding: 15px 24px;
  border: 1px solid var(--color-white);
  border-radius: 14px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.c-btn-action::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ==========================================
   5. スマホ表示専用の微調整（767px以下のみ）
   ========================================== */
.u-br-sp {
  display: none;
}

@media (max-width: 767px) {
  .u-br-sp {
    display: inline;
  }
  .u-br-pc {
    display: none;
  }
  /* --- TOP --- */
  .top__overlay {
    position: relative;
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    height: 100%;
    padding: 0;
  }
  .top__row--start, .top__row--end {
    display: contents;
  }
  .top__logo {
    grid-row: 1;
    justify-self: center;
    width: 80%;
    max-width: none;
    margin-top: 3vh;
  }
  .top__copy {
    grid-row: 2;
    justify-self: end;
    margin-right: calc(10% - 3px);
    margin-top: 30px;
  }
  .top__copy-img {
    width: 100px;
    height: auto;
  }
  .top__brand {
    grid-row: 4;
    justify-self: start;
    margin-left: calc(10% - 10px);
    margin-bottom: 20px;
  }
  .top__mark {
    width: clamp(100px, 32vw, 140px);
  }
  .top__notice {
    grid-row: 5;
    justify-self: start;
    display: inline-block;
    color: var(--color-white);
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 0;
    margin-bottom: 10vh;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    margin-left: calc(10% - 10px);
  }
  /* --- STORY --- */
  .story {
    gap: 0;
    padding: 100px 0 60px;
  }
  .story .sub--1 {
    width: 77%;
    max-width: none;
    align-self: flex-start;
    margin-top: 0;
    aspect-ratio: 300/244;
  }
  .story .sub--2 {
    width: 55%;
    max-width: none;
    align-self: flex-end;
    margin-top: clamp(50px, 6.52vw, 9999px);
  }
  .story .sub--3 {
    width: 41%;
    max-width: none;
    align-self: flex-start;
    margin-left: 12%;
    margin-top: clamp(28px, 3.65vw, 9999px);
  }
  .story .sub--4 {
    width: 37%;
    max-width: none;
    align-self: flex-end;
    margin-right: 5%;
    margin-top: clamp(18px, 2.35vw, 9999px);
  }
  .story .sub--5 {
    width: 80%;
    max-width: none;
    align-self: center;
    margin-top: clamp(70px, 9.13vw, 9999px);
  }
  .story .subcopy {
    position: relative;
    z-index: 2;
    padding: 20px 22px;
  }
  .story .subcopy--1 {
    align-self: flex-end;
    width: 73%;
    margin-top: -2.61vw;
  }
  .story .subcopy--2 {
    align-self: flex-start;
    width: 63%;
    margin-left: 5%;
    margin-top: -8.74vw;
  }
  .story .subcopy--3 {
    align-self: flex-start;
    margin-left: 36%;
    width: 52%;
    margin-top: -13.69vw;
  }
  .story .subcopy--4 {
    align-self: flex-start;
    width: 63%;
    margin-left: 5%;
    margin-top: -10.95vw;
  }
  .story .subcopy .text {
    min-width: 0;
    font-size: 12px;
    word-break: keep-all;
    line-break: strict;
    overflow-wrap: break-word;
  }
  /* --- ROOMPLAN & ACCESS --- */
  .roomplan__title,
  .access__title {
    font-size: 22px;
  }
  .roomplan__subtitle,
  .access__subtitle {
    font-size: 17px;
  }
  .roomplan__description,
  .access__description {
    font-size: 13px;
  }
  .roomplan__action {
    text-align: left;
  }
  .roomplan__note, .roomplan__spec-item {
    font-size: 12px;
  }
  .roomplan__spec-sub {
    font-size: 11px;
  }
  .access__description p {
    word-break: keep-all;
    line-break: strict;
    overflow-wrap: break-word;
  }
  .access__brand-name, .access__brand-address, .access__instagram {
    font-size: 13px;
  }
  /* --- BUTTONS --- */
  .c-btn-reserve {
    font-size: 14px;
  }
  .c-btn-reserve__prefix {
    display: none;
  }
  .c-btn-action {
    font-size: 13px;
  }
}/*# sourceMappingURL=index.css.map */