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

html {
  font-size: 1rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #e2ddd6;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
  color: inherit;
}

p {
  margin: 0;
  line-height: 2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}
a:focus-visible {
  outline: 2px solid #918361;
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

li {
  margin: 0;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
  border: 0;
  margin: 0;
  cursor: pointer;
  color: inherit;
}

::selection {
  background-color: #918361;
  color: #ffffff;
}

#main-content {
  background-color: #e2ddd6;
  color: #1a1a1a;
  overflow: hidden;
}

.c-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 2rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 0;
  border: 1px solid currentColor;
  background: transparent;
  color: #1a1a1a;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.c-btn:hover {
  background-color: #1a1a1a;
  color: #e2ddd6;
  opacity: 1;
}
.c-btn--primary {
  background-color: #918361;
  color: #ffffff;
  border-color: #918361;
}
.c-btn--primary:hover {
  background-color: rgb(160.4690909091, 146.8254545455, 113.6909090909);
  color: #ffffff;
}
.c-btn--ghost-light {
  color: #ebe5d5;
  border-color: #ebe5d5;
}
.c-btn--ghost-light:hover {
  background-color: #ebe5d5;
  color: #231815;
}
.c-btn--inline {
  display: inline-block;
  padding: 0;
  min-height: 0;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  background: transparent;
  color: inherit;
  letter-spacing: 0.03em;
}
.c-btn--inline:hover {
  background: transparent;
  color: inherit;
  opacity: 0.7;
}

.c-img {
  position: relative;
  overflow: hidden;
  display: block;
}
.c-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.c-img--reveal img {
  transform: scale(1.12);
}
.c-img--reveal.is-inview img {
  transform: scale(1);
}

.c-section-title__en {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #918361;
  margin-bottom: 0.75rem;
}
.c-section-title__ja {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.625rem, 3.4vw, 2.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: #1a1a1a;
}

.js-fade-up,
.js-fade-in,
.js-stagger > * {
  will-change: transform, opacity;
}

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

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

.l-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .l-container {
    padding-left: 0;
    padding-right: 0;
  }
}

.l-container--narrow {
  max-width: 760px;
}

.l-section {
  position: relative;
}

.p-mv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100svh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-mv {
    min-height: 70vh;
    height: 70svh;
  }
}
.p-mv::after {
  content: "";
  position: absolute;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.55) 52.4%, #1A1A1A 100%);
  mix-blend-mode: multiply;
  height: 440px;
  z-index: 2;
}
.p-mv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.p-mv__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-mv__brand {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  width: 180px;
}
@media (min-width: 768px) {
  .p-mv__brand {
    top: 4rem;
    width: 252px;
  }
}
.p-mv__brand img {
  width: 100%;
  height: auto;
}
.p-mv__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  min-height: 100vh;
  padding: 0 1.5rem 4rem;
}
@media (max-width: 767px) {
  .p-mv__inner {
    min-height: 70vh;
  }
}
@media (min-width: 768px) {
  .p-mv__inner {
    padding: 0 3rem 6rem;
  }
}
@media (min-width: 1024px) {
  .p-mv__inner {
    padding: 0 20.5vw 5.5rem;
  }
}
.p-mv__hotel {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: #ebe5d5;
  text-shadow: 0 0 11px rgba(11, 26, 50, 0.85);
  margin-bottom: 0.75rem;
}
.p-mv__lead {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.4;
  color: #ebe5d5;
  text-shadow: 0 0 11px rgba(11, 26, 50, 0.85);
  margin-bottom: 0.75rem;
}
.p-mv__title {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  color: #ebe5d5;
  text-shadow: 0 0 11px rgba(11, 26, 50, 0.85);
  line-height: 1.2;
}

@keyframes mv-scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.p-award {
  position: relative;
  padding: 6.5rem 0 5.407rem;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(74deg, #232225 1.34%, #3F433C 100%);
}
@media (max-width: 767px) {
  .p-award {
    padding: 4rem 0;
  }
}
.p-award__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% + 160px);
}
.p-award__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background: url(../img/award-bg.jpg) no-repeat;
  background-position: 100% 80%;
  filter: blur(5px);
}
@media (max-width: 767px) {
  .p-award__bg::before {
    background-position: -650px bottom;
  }
}
.p-award__bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.7;
  height: 100vh;
  background: linear-gradient(74deg, #232225 1.34%, #3F433C 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.p-award__inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.p-award__text {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(0.9375rem, 1.6vw, 1rem);
  line-height: 2.2;
  color: #ffffff;
}
@media (max-width: 767px) {
  .p-award__text {
    text-align: left;
  }
}

.p-scroll {
  position: relative;
  padding-block: 10rem;
  background-color: #e2ddd6;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-scroll {
    padding-block: 2.5rem;
  }
}
.p-scroll__viewport {
  width: 100%;
  overflow: hidden;
}
.p-scroll__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  gap: 1.5rem;
  will-change: transform;
}
@media (min-width: 768px) {
  .p-scroll__track {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .p-scroll__track {
    gap: 2.5rem;
  }
}
.p-scroll__item {
  flex-shrink: 0;
  height: 450px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-scroll__item {
    height: 480px;
  }
}
@media (min-width: 1024px) {
  .p-scroll__item {
    height: 745px;
  }
}
.p-scroll__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s, opacity 0.5s;
}
.p-scroll__item:hover img {
  transform: scale(1.04);
  filter: grayscale(0);
  opacity: 0.8;
}
.p-scroll__item--w-narrow {
  width: 220px;
}
@media (min-width: 768px) {
  .p-scroll__item--w-narrow {
    width: 320px;
  }
}
@media (min-width: 1024px) {
  .p-scroll__item--w-narrow {
    width: 566px;
  }
}
.p-scroll__item--w-wide {
  width: 460px;
}
@media (min-width: 768px) {
  .p-scroll__item--w-wide {
    width: 700px;
  }
}
@media (min-width: 1024px) {
  .p-scroll__item--w-wide {
    width: 1184px;
  }
}
.p-scroll__item--w-medium {
  width: 380px;
}
@media (min-width: 768px) {
  .p-scroll__item--w-medium {
    width: 600px;
  }
}
@media (min-width: 1024px) {
  .p-scroll__item--w-medium {
    width: 870px;
  }
}

.p-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding-block: 6rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-hero {
    padding-block: 2.5rem;
  }
}
.p-hero__bg {
  position: absolute;
  inset: -100px 0;
  z-index: 1;
  width: 100%;
  height: calc(100% + 200px);
}
.p-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background: url("../img/forbes-bg.jpg") no-repeat;
  background-position: center 100px;
  filter: blur(20px);
}
.p-hero__bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.7;
  background: linear-gradient(74deg, #232225 1.34%, #3F433C 100%);
  mix-blend-mode: multiply;
  z-index: 2;
}
.p-hero__inner {
  position: relative;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
}
@media (max-width: 767px) {
  .p-hero__inner {
    gap: 1.5rem;
    text-align: left;
  }
}
.p-hero__lead {
  text-align: center;
  font-weight: 200;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 2;
  color: #e2ddd6;
  max-width: 720px;
}
@media (max-width: 767px) {
  .p-hero__lead {
    text-align: left;
  }
}
.p-hero__lead p {
  margin: 0;
}
.p-hero__history {
  text-align: center;
  color: #e2ddd6;
}
.p-hero__history-title {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 2;
  margin: 0 auto 1rem;
  position: relative;
  padding-inline: 1.5rem;
  max-width: max-content;
}
.p-hero__history-title::before, .p-hero__history-title::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 29px;
  height: 21px;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-hero__history-title::before {
  left: 0;
  background-position: left center;
  background-image: url("../img/icon-rice-left.svg");
}
.p-hero__history-title::after {
  right: 0;
  background-position: right center;
  background-image: url("../img/icon-rice-right.svg");
}
.p-hero__history-list {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  text-align: left;
}
.p-hero__history-item--blank {
  height: 1rem;
}

.p-forbes {
  position: relative;
  background-color: #e2ddd6;
  padding-block: 10rem;
}
@media (max-width: 767px) {
  .p-forbes {
    padding-block: 2.5rem;
  }
}

.p-forbes-intro {
  position: relative;
  padding: 6rem 0;
  color: #e2ddd6;
  overflow: hidden;
}
@media (max-width: 767px) {
  .p-forbes-intro {
    padding: 4rem 0;
  }
}

.p-forbes-card {
  position: relative;
  z-index: 10;
  background-color: #f8f8f8;
  max-width: 1200px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .p-forbes-card {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 6.725rem 3rem;
  }
}
@media (max-width: 767px) {
  .p-forbes-card {
    padding: 2rem 1rem;
    text-align: center;
  }
}
.p-forbes-card__logo {
  flex-shrink: 0;
  width: 180px;
}
@media (min-width: 768px) {
  .p-forbes-card__logo {
    width: 254px;
  }
}
.p-forbes-card__logo img {
  width: 100%;
  height: auto;
}
.p-forbes-card__body {
  flex: 1;
  max-width: 720px;
  color: #1a1a1a;
}
.p-forbes-card__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}
.p-forbes-card__desc {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1rem;
}
.p-forbes-card__link {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 1rem;
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}
.p-forbes-card__link:hover {
  color: #918361;
  opacity: 1;
}

.footer {
  position: relative;
  background-color: #918361;
  color: #fbfbfb;
  text-align: center;
  padding-top: 3rem;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 2rem;
  }
}
.footer__logo {
  width: 180px;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 226px;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .footer__social {
    margin-bottom: 1.5rem;
  }
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (min-width: 768px) {
  .footer__social a {
    width: 50px;
    height: 50px;
  }
}
.footer__social a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}
.footer__social a svg {
  width: 100%;
  height: 100%;
  fill: #fbfbfb;
}
.footer__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 2.5rem;
  color: #fbfbfb;
}
@media (max-width: 767px) {
  .footer__name {
    margin-bottom: 1.5rem;
  }
}
.footer__address {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.13em;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #fbfbfb;
}
.footer__address span {
  display: block;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.footer__nav a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  color: #fbfbfb;
  transition: opacity 0.2s ease;
  border-right: 1px solid #fbfbfb;
  padding-inline: 1rem;
}
.footer__nav a:first-child {
  border-left: 1px solid #fbfbfb;
}
.footer__nav a:last-child:last-child {
  border-left: 1px solid #fbfbfb;
}
.footer__nav a:hover {
  opacity: 0.75;
}
.footer__copyright {
  background-color: #231815;
  color: #ffffff;
  margin: 0;
  padding-block: 0.75rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 3.75rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  padding: 0;
  background: linear-gradient(160deg, #918361 0%, rgb(162.6175206612, 149.2839669421, 116.9024793388) 100%);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.92);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 14px rgba(145, 131, 97, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12);
}
@media (min-width: 768px) {
  .back-to-top {
    width: 56px;
    height: 56px;
    right: 1.5rem;
    bottom: 4rem;
  }
}
.back-to-top:hover {
  transform: translateY(-3px) scale(1);
  box-shadow: 0 8px 24px rgba(145, 131, 97, 0.4), 0 4px 10px rgba(0, 0, 0, 0.15);
}
.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.back-to-top__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: currentColor;
}
@media (min-width: 768px) {
  .back-to-top__icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition-duration: 0.01ms;
  }
  .back-to-top:hover {
    transform: translateY(0) scale(1);
  }
}
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-pc {
  display: block;
}
@media (max-width: 1023px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 1023px) {
  .u-sp {
    display: block;
  }
}

.u-pc-inline {
  display: inline;
}
@media (max-width: 1023px) {
  .u-pc-inline {
    display: none;
  }
}

.u-sp-inline {
  display: none;
}
@media (max-width: 1023px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-mt-sm {
  margin-top: 0.75rem;
}

.u-mt-md {
  margin-top: 1.5rem;
}

.u-mt-lg {
  margin-top: 2.5rem;
}

.u-mt-xl {
  margin-top: 4rem;
}

.u-no-scroll {
  overflow: hidden;
  height: 100vh;
}

/*# sourceMappingURL=main.css.map */
