*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
ul,
p,
h2,
h3,
h4,
li,
a {
  margin: 0;
  padding: 0;
}

ol,
ul,
menu,
summary {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

body {
  margin: 0;
  font-family: 'Shippori Mincho B1', serif;
  background-color: var(--base-color);
}

html {
  scroll-behavior: smooth;
}

img {
  width: auto;
  max-width: 100%;
  vertical-align: top;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.section {
  padding: 80px 0 80px;
  background-color: var(--base-color);
  color: #fffcee;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 48px 0 48px;
    text-align: left;
  }
}
.section__inner {
  width: min(100% - 40px, 1104px);
  margin: 0 auto;
}

.js-fade-in-section {
  opacity: 0;
  transition: opacity 1s ease-out;
}
.js-fade-in-section.is-view {
  opacity: 1;
}

.section-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section-head {
    text-align: center;
    margin-bottom: 24px;
  }
}
.section-head__heading {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #ccbb9f;
}
@media screen and (max-width: 768px) {
  .section-head__heading {
    font-size: 30px;
  }
}
.section-head__subheading {
  display: block;
  font-size: 16px;
  font-weight: bold;
  margin: 24px 0 0;
  line-height: 2;
  color: #fffcee;
}
@media screen and (max-width: 768px) {
  .section-head__subheading {
    font-size: 16px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-image: url('../images/top_bg.jpg');
  background-position: center;
  color: var(--text-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  height: 71px;
}
@media screen and (max-width: 768px) {
  .header {
    position: relative;
  }
}
.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-image {
  height: 39px;
  width: auto;
}

.main-visual {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main-visual {
    height: calc(100svh - 71px);
  }
}

.mv-background {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  animation: zoomUp 10s linear 0s 1 normal both;
}
@media screen and (min-width: 769px) {
  .mv-background {
    background-image: url('../images/mv/top_mv01.jpg');
  }
}
@media screen and (max-width: 768px) {
  .mv-background {
    background-image: url('../images/mv/top_mv01_sp.jpg');
  }
}

.mv__inner {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv__inner {
    top: 0;
  }
}

.mv__logo {
  width: 587px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 100px;
  }
}
.mv__logo .mv__logo-image {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.breadcrumb {
  position: absolute;
  top: 93px;
  left: 16px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    top: 8px;
  }
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.breadcrumb li {
  font-size: 12px;
  color: #fffcee;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.breadcrumb li:first-child::before {
  content: '';
  display: inline-block;
  background-image: url('../images/home_icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-right: 8px;
}
.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin: 0 8px;
  color: #fffcee;
}
.breadcrumb a {
  color: #fffcee;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.fixed-reservation-button {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 100;
  width: 60px;
  height: 189px;
  background-color: var(--base-color);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .fixed-reservation-button {
    display: none;
  }
}
.fixed-reservation-button:hover {
  opacity: 0.8;
}
.fixed-reservation-button__text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
  color: var(--accent-color);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.fixed-reservation-button__icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-reservation-button__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.concept-section {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .concept-section {
    padding-top: 96px;
  }
}
.concept-section .section-head__heading {
  position: relative;
  z-index: 1;
}
.concept-section .section-head__heading::before {
  content: '';
  position: absolute;
  z-index: -1;
  background-image: url('../images/decoration.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 482px;
  height: 288px;
  opacity: 1;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -42%);
}
@media screen and (max-width: 768px) {
  .concept-section .section-head__heading::before {
    width: 314px;
    height: 192px;
  }
}
.concept-section__sub-heading {
  font-size: 24px;
  margin-bottom: 16px;
  line-height: 1.7;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .concept-section__sub-heading {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
  }
}
.concept-section__text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .concept-section__text {
    font-size: 14px;
    line-height: 2.4;
    margin-bottom: 0;
  }
}
.concept-section__images {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 66.57% 33.42%;
  gap: 4px;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .concept-section__images {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.concept-section__images img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.concept-section__images .image-A {
  margin-top: auto;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media screen and (max-width: 768px) {
  .concept-section__images .image-A {
    grid-row: 1 / span 2;
    grid-column: 1 / span 2;
  }
}
.concept-section__images .image-B {
  grid-column-start: 2;
  grid-row-start: 1;
}
@media screen and (max-width: 768px) {
  .concept-section__images .image-B {
    grid-row: 3;
    grid-column: 1;
  }
}
.concept-section__images .image-C {
  grid-column-start: 2;
  grid-row-start: 2;
}
@media screen and (max-width: 768px) {
  .concept-section__images .image-C {
    grid-row: 3;
    grid-column: 2;
  }
}
.concept-section__specialty {
  display: grid;
  grid-template-columns: 80px auto;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .concept-section__specialty {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
    padding: 0;
  }
}
.concept-section__specialty-title {
  grid-column: 1;
  grid-row-start: 1;
  grid-row-end: 3;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--accent-color);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .concept-section__specialty-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    transform: none;
    padding-right: 0;
    margin-bottom: 20px;
    grid-column: 1;
    grid-row-start: auto;
    grid-row-end: auto;
    border-bottom: 1px solid #ccbb9f;
    line-height: 2;
  }
}
.concept-section__specialty-sub-heading {
  grid-column: 2;
  font-size: 22px;
  font-weight: normal;
  text-align: left;
  padding-left: 40px;
  padding-bottom: 16px;
  line-height: 2;
  border-left: 1px solid var(--text-color);
}
@media screen and (max-width: 768px) {
  .concept-section__specialty-sub-heading {
    font-size: 16px;
    grid-column: 1;
    padding-left: 0;
    border-left: none;
    text-align: center;
  }
}
.concept-section__specialty-text {
  grid-column: 2;
  font-size: 16px;
  line-height: 2;
  text-align: left;
  padding-left: 40px;
  border-left: 1px solid var(--text-color);
}
@media screen and (max-width: 768px) {
  .concept-section__specialty-text {
    font-size: 14px;
    grid-column: 1;
    padding-left: 0;
    border-left: none;
    line-height: 2.2;
  }
}

@media screen and (max-width: 768px) {
  .access-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.access-section .section-head__heading {
  position: relative;
  z-index: 1;
}
.access-section .section-head__heading::before {
  content: '';
  position: absolute;
  z-index: -1;
  background-image: url('../images/decoration.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 482px;
  height: 288px;
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .access-section .section-head__heading::before {
    width: 314px;
    height: 192px;
  }
}
.access-section .shop-list-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto 56px auto;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-main {
    gap: 96px;
    margin-bottom: 96px;
  }
}
.access-section .shop-list-main__item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #fffcee;
  background-color: #000;
}
.access-section .shop-list-main__item:hover .shop-list-main__image {
  transform: scale(1.1);
}
.access-section .shop-list-main__item:hover .shop-list-main__button {
  background-color: rgba(255, 255, 238, 0.6);
}
.access-section .shop-list-main__image-wrapper {
  width: 100%;
  height: 434px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-main__image-wrapper {
    height: 335px;
  }
}
.access-section .shop-list-main__image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-main__image-wrapper::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
  }
}
.access-section .shop-list-main__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 1, 0.2, 1);
}
.access-section .shop-list-main__content {
  position: absolute;
  bottom: 32px;
  left: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-main__content {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
}
.access-section .shop-list-main__text-wrapper {
  text-align: left;
  flex-grow: 1;
}
.access-section .shop-list-main__title {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-main__title {
    font-size: 19px;
  }
}
.access-section .shop-list-main__text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.access-section .shop-list-main__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 12px 40px;
  background-color: rgba(255, 255, 238, 0.7);
  color: #02010d;
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #ccbb9f;
  transition: background-color 0.3s ease, color 0.3s ease, filter 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-main__button {
    display: none;
  }
}
.access-section .shop-list-main__button-icon {
  width: 14px;
  height: 14px;
  margin-left: 24px;
  transition: filter 0.3s ease;
}
.access-section .shop-list-section {
  position: relative;
  width: 100%;
  margin-top: 56px;
}
.access-section .shop-list-section__heading {
  font-size: 24px;
  font-weight: bold;
  color: #ccbb9f;
  margin-bottom: 40px;
  text-align: center;
}
.access-section .shop-list-section__swiper-wrapper {
  position: relative;
  max-width: 1104px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-section__swiper-wrapper {
    margin-bottom: 0px;
  }
}
.access-section .shop-list-section__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(332px, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: 729px;
  margin: 0 auto;
}
.access-section .shop-list-section__cards .swiper-wrapper {
  display: contents;
}
.access-section .shop-list-section__cards .swiper-slide {
  width: auto !important;
}
@media screen and (max-width: 768px) {
  .access-section .shop-list-section__cards {
    display: block;
  }
  .access-section .shop-list-section__cards .swiper-wrapper {
    display: flex;
  }
  .access-section .shop-list-section__cards .swiper-slide {
    width: 100% !important;
    margin-right: 0;
  }
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev,
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: inherit;
  right: inherit;
  display: grid;
  place-content: center;
  width: 3.2rem;
  height: 3.2rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev::before,
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  border-radius: 50%;
  background-color: rgba(243, 243, 243, 0.61);
  box-shadow: 0.5rem 0.5rem 0.75rem rgba(0, 0, 0, 0.1), -0.5rem -0.5rem 0.75rem rgba(255, 255, 255, 0.2);
}
@media screen and (min-width: 1025px) {
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev::before,
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next::before {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev::after,
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next::after {
  width: 0.6rem;
  height: 0.6rem;
  content: '';
  border: solid #534c48;
  border-width: 3px 3px 0 0;
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev.swiper-button-disabled,
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.1;
}
@media screen and (min-width: 1025px) {
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev:hover::before,
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next:hover::before {
    transform: scale(1.2);
  }
}
@media screen and (min-width: 769px) {
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev,
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next {
    display: none;
  }
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev {
  left: -1.1rem;
  right: auto;
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-prev::after {
  margin-left: 0.2rem;
  transform: rotate(-135deg);
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next {
  right: -1.1rem;
  left: auto;
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-button-next::after {
  margin-right: 0.2rem;
  transform: rotate(45deg);
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-pagination {
  position: static;
  width: auto;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 0;
}
@media screen and (min-width: 1025px) {
  .access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-pagination {
    display: none;
  }
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-pagination .swiper-pagination-bullet {
  background: #fffcee;
  opacity: 1;
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-pagination .swiper-pagination-bullet:not(:first-of-type) {
  margin-left: 40px;
}
.access-section .shop-list-section .shop-list-section__swiper-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ccbb9f;
}
.access-section .shop-list-section .shop-list-card {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  color: #fffcee;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.access-section .shop-list-section .shop-list-card:hover .shop-list-card__image img {
  transform: scale(1.1);
}
.access-section .shop-list-section .shop-list-card__image {
  width: 100%;
  width: min(100%, 352px);
  height: 144px;
  overflow: hidden;
  margin-bottom: 16px;
}
.access-section .shop-list-section .shop-list-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.access-section .shop-list-section .shop-list-card__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
}
.access-section .shop-list-section .shop-list-card__text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.access-section .shop-list-section .shop-list-card__text:last-child {
  margin-bottom: 0;
}

.footer {
  background-color: #02010d;
  color: #fffcee;
  padding: 60px 0;
}
.footer__inner {
  width: min(100% - 32px, 1104px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__social-links {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.footer__social-link {
  display: block;
  width: 21px;
  height: 21px;
  transition: opacity 0.3s ease;
}
.footer__social-link:hover {
  opacity: 0.7;
}
.footer__social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.footer__social-icon.x-only {
  filter: brightness(0);
}
.footer__info-links {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .footer__info-links {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__info-link {
  color: #fffcee;
  font-size: 12px;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer__info-link:hover {
  color: hsl(49.4117647059, 100%, 116.6666666667%);
}
.footer__copyright {
  font-size: 12px;
  color: hsl(49.4117647059, 100%, 116.6666666667%);
  margin: 0;
}

:root {
  --base-color: #151e4b;
  --text-color: #fffcee;
  --accent-color: #ccbb9f;
  --light-accent: #ccbb9f;
  --base-color-rgb: 2, 1, 13;
  --button-bg: #fffcee;
  --card-text: #02010d;
  --plan-button-accent: #534c48;
  --caption-base-color: 2, 1, 13;
  --caption-color: #fffcee;
}

.site-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-image: url('../images/top_bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body {
  background-color: var(--base-color);
}

.section {
  background-color: transparent;
}

.concept-section__text {
  line-height: 2.5;
}
