body {
  background: #192649;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  line-height: 1.6;
}
body.is-fixed {
  overflow: hidden;
}

img {
  vertical-align: bottom;
}

.only-sp,
.only-pc {
  display: none;
}

@media screen and (max-width: 599px) {
  .only-sp {
    display: initial;
  }
}
@media screen and (min-width: 1025px) {
  .only-pc {
    display: initial;
  }
}
.header__logo {
  padding: 12px 0;
  text-align: center;
}
.header__logoImage {
  width: 50px;
  height: auto;
}
.header__toggle {
  position: fixed;
  top: 13px;
  right: 11px;
  z-index: 300;
  border: none;
  width: 22px;
  height: 18px;
  cursor: pointer;
}
.header__toggleLine {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__toggleLine:nth-child(1) {
  top: 0;
}
.header__toggleLine:nth-child(2) {
  top: 8px;
}
.header__toggleLine:nth-child(3) {
  bottom: 0;
}
.header__toggle[aria-expanded=true] .header__toggleLine:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle[aria-expanded=true] .header__toggleLine:nth-child(2) {
  opacity: 0;
}
.header__toggle[aria-expanded=true] .header__toggleLine:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  background: rgba(25, 38, 73, 0.9);
  width: 100%;
  height: 100vh;
  padding: 45px 10px 20px;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  overflow-y: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__list {
  display: flex;
  flex-direction: column;
}
.drawer__item {
  border-bottom: 1px solid #E5E7EB;
  padding: 0 10px;
}
.drawer__item:first-child {
  border-top: 1px solid #E5E7EB;
}
.drawer__link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1px;
}
.drawer__linkIcon {
  width: 17px;
  height: 17px;
  font-size: 1px;
  line-height: 1;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  width: 100%;
  height: 520px;
}
.hero__images {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  overflow: hidden;
}
.hero__image.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__imageThumb {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: heroZoom 10s ease-in-out infinite;
}
.hero__text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
.hero__sub {
  font-size: 17px;
}
.hero__title {
  font-size: 34px;
}
.hero__indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero__indicatorLine {
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: #C5C5C5;
  width: 35px;
  height: 10px;
}
.hero__indicatorLine.is-active {
  background: #5B5B5B;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.intro {
  padding: 50px 10px;
  text-align: center;
}
.intro__inner {
  max-width: 640px;
  margin: 0 auto;
}
.intro__text {
  margin-bottom: 1.75em;
}
.section {
  padding: 0 10px 50px;
}
.section__inner {
  padding: 0 10px;
}
.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #d2b48c;
  font-size: 20px;
}
.section__title::before, .section__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
}

.news__inner {
  padding-left: 0;
  padding-right: 0;
}
.news__title {
  margin-bottom: 7px;
}
.news__list {
  display: grid;
  gap: 20px;
}
.news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 10px 16px;
}
.news__date {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  opacity: 0.8;
}
.news__link {
  text-decoration: underline;
}

.concept__lead {
  margin-bottom: 1.75em;
}
.concept__text {
  margin-bottom: 1.75em;
}
.concept__text:last-child {
  margin-bottom: 0;
}
.concept__image {
  margin: 20px 0;
}
.concept__image:first-of-type {
  margin-top: 40px;
}
.concept__image:last-of-type {
  margin-bottom: 40px;
}
.concept__imageThumb {
  display: block;
  width: 100%;
  height: auto;
}

.reviews__list {
  display: grid;
  gap: 30px;
  margin-bottom: 30px;
}
.reviews__name {
  margin-bottom: 10px;
  font-weight: 700;
}
.reviews__name .reviews__star {
  margin-left: 10px;
  color: #FFE200;
}
.reviews__comment {
  position: relative;
  padding-left: 20px;
}
.reviews__comment::before {
  content: url(../img/ico-quote.svg);
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 1px;
  width: 12px;
  height: 9px;
  font-size: 1px;
  line-height: 1;
}
.reviews__more {
  text-align: center;
}
.reviews__link {
  display: inline-block;
  border-radius: 1px;
  border: 1px solid #3D4E7B;
  background: #253255;
  padding: 5px 20px;
  font-weight: 700;
}
.reviews__link::after {
  content: url(../img/ico-window.svg);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 7px;
  font-size: 1px;
  line-height: 1;
}

.cafe__lead {
  margin-bottom: 1.75em;
}
.cafe__text {
  margin-bottom: 1.75em;
}
.cafe__gallery {
  display: grid;
  gap: 20px;
  margin: 40px 0;
}
.cafe__imageThumb {
  width: 100%;
  height: auto;
}
.cafe__menuImageThumb {
  display: block;
  border-radius: 10px;
  width: 100%;
  height: auto;
  box-shadow: 0 0 10px rgba(3, 12, 21, 0.4);
}

.table {
  text-align: center;
}
.table__list {
  display: inline-block;
  margin-bottom: 1.75em;
  padding-left: 1em;
  list-style: disc;
}
.table__item {
  text-align: left;
}
.table__note {
  text-align: center;
}
.table__image {
  margin-top: 40px;
  text-align: center;
}
.table__imageThumb {
  width: 100%;
  height: auto;
}

.access__list {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
.access__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  padding: 12px 10px;
}
.access__term {
  width: 110px;
  flex-shrink: 0;
}
.access__desc {
  flex: 1;
}
.access__image {
  margin-top: 40px;
  text-align: center;
}
.access__imageThumb {
  width: 100%;
  height: auto;
}

.contact {
  text-align: center;
}
.contact__text {
  margin-bottom: 1.75em;
}
.footer {
  border-top: 1px solid #E5E7EB;
  text-align: center;
  padding: 40px 10px 30px;
}
.footer__sns {
  margin-bottom: 30px;
}
.footer__copy {
  display: block;
  font-size: 12px;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
    line-height: 1.6;
  }
  .header__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
  }
  .header__toggle {
    display: none;
  }
  .drawer {
    position: static;
    background: none;
    height: auto;
    padding: 0 0 20px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    overflow: visible;
  }
  .drawer__list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
  .drawer__item {
    border: none !important;
    padding: 0;
  }
  .drawer__link {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    padding: 0;
    transition: opacity 0.3s ease;
  }
  .drawer__link:hover {
    opacity: 0.7;
  }
  .drawer__linkIcon {
    transform: translateY(0);
  }
  .hero {
    height: 680px;
  }
  .hero__text {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  }
  .hero__sub {
    font-size: 20px;
    line-height: 1;
  }
  .hero__title {
    font-size: 39px;
    line-height: 1.5;
  }
  .hero__indicator {
    bottom: 25px;
  }
  .hero__indicatorLine:not(.is-active) {
    cursor: pointer;
  }
  .hero__indicatorLine.is-active {
    pointer-events: none;
  }
  .intro {
    padding: 80px 0 100px;
  }
  .intro__sns {
    margin-top: 60px;
  }
  .section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
  }
  .section__inner {
    width: 100%;
    padding: 80px 0 110px;
  }
  .section__title {
    margin-bottom: 0;
    font-size: 26px;
    letter-spacing: 0.2em;
  }
  .news__inner {
    padding-top: 30px;
  }
  .news__list {
    display: grid;
    gap: 30px;
  }
  .news__item {
    padding: 0 20px 30px;
  }
  .news__date {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1;
  }
  .concept__inner {
    display: grid;
    grid-template-columns: 470px 470px;
    gap: 40px 60px;
    align-items: center;
    width: 1000px;
    margin: 0 auto;
  }
  .concept__image {
    margin: 0 !important;
  }
  .concept__image:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
  }
  .concept__image:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .reviews__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 1000px;
    margin: 0 auto 40px;
  }
  .reviews__name {
    margin-bottom: 10px;
  }
  .reviews__comment {
    padding-left: 24px;
  }
  .reviews__comment::before {
    width: 14px;
    height: 10px;
  }
  .reviews__link {
    padding: 5px 30px;
    font-size: 16px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .reviews__link::after {
    transform: translateY(-1px);
    margin-left: 10px;
  }
  .reviews__link:hover {
    opacity: 0.8;
    transform: scale(1.05);
  }
  .cafe {
    text-align: center;
  }
  .cafe__gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    width: 1000px;
    margin: 80px auto;
  }
  .cafe__image {
    width: 310px;
    height: 240px;
  }
  .cafe__imageThumb {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .cafe__menuImageThumb {
    border-radius: 30px;
    width: 800px;
    height: auto;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(3, 12, 21, 0.4);
  }
  .table__inner {
    display: grid;
    grid-template-columns: 400px 470px;
    grid-template-rows: auto auto;
    gap: 40px 60px;
    width: 960px;
    margin: 0 auto;
  }
  .table__list {
    margin: 0;
    padding-left: 1.5em;
  }
  .table__note {
    text-align: left;
  }
  .table__image {
    grid-column: 2/3;
    grid-row: 1/3;
    margin: 0;
  }
  .access__inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    width: 1000px;
    margin: 0 auto;
  }
  .access__list {
    order: 2;
    width: 470px;
  }
  .access__row {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .access__term {
    width: 160px;
  }
  .access__link {
    transition: opacity 0.3s ease;
  }
  .access__link:hover {
    opacity: 0.7;
  }
  .access__image {
    order: 1;
    margin: 0;
    width: 470px;
  }
  .access__imageThumb {
    width: 100%;
    height: auto;
  }
  .contact__link {
    transition: opacity 0.3s ease;
  }
  .contact__link:hover {
    opacity: 0.7;
  }
  .footer {
    padding: 60px 0 40px;
  }
  .footer__sns {
    transition: opacity 0.3s ease;
  }
  .footer__sns:hover {
    opacity: 0.7;
  }
  .footer__copy {
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */