@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
line-heightが％の場合
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------
*  フォント読み込み
---------------------------*/
body {
  font-family: "リュウミン M-KL", "Ryumin Medium KL", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, "ヒラギノ明朝 Pro W3", メイリオ, Meiryo, serif;
  color: #1a2027;
  background-color: #ffffff;
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*--------------------------------
* リキッドの設定（PCファースト）
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 1440px) and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all ease 0.3s;
}

a:hover {
  opacity: 0.7;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ==================================================
*  header
================================================== */
html.is-drawer-open,
html.is-drawer-open body {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5625rem;
}

/* ハンバーガー */
.site-header__burger {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1005;
}

.site-header__burger-line {
  display: block;
  width: 1.4375rem;
  height: 0.1875rem;
  background: #5a7269;
  border-radius: 0.125rem;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transform-origin: center;
}

html.is-drawer-open .site-header__burger-line:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

html.is-drawer-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

html.is-drawer-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ドロワー本体 */
.sp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 1002;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.5s ease-out;
  will-change: transform;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 3.4375rem 0;
}

html.is-drawer-open .sp-drawer {
  transform: translateX(0);
}

/* 背景オーバーレイ */
.sp-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: transparent;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

html.is-drawer-open .sp-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

.sp-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
}

.sp-drawer__item + .sp-drawer__item {
  border-top: 1px solid #FFFFFF;
}

.sp-drawer__link {
  display: block;
  padding: 0.625rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-drawer__link.is-soon {
  pointer-events: none;
  opacity: 0.6;
}
.sp-drawer__link .icon {
  max-width: 0.625rem;
  width: 100%;
  height: auto;
  display: inline-block;
  margin-left: 0.375rem;
}

.sp-drawer__link:active {
  opacity: 0.85;
}

@media screen and (min-width: 769px) {
  .site-header,
.sp-drawer,
.sp-drawer-overlay {
    display: none;
  }
}
/* ==================================================
*  スクロールバー
================================================== */
.scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar::-webkit-scrollbar {
  display: none;
}

/* ==================================================
*  fv
================================================== */
.fv {
  padding: 1.875rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    padding: 0.9375rem;
  }
}
.fv .fv__inner {
  background: #c3dfbd;
  padding-top: calc(100vh - 3.75rem);
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  .fv .fv__inner {
    padding-top: calc(100vh - 1.875rem);
  }
}
.fv .fv__inner::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.fv .fv__title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 5rem;
  line-height: 1.0875;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv .fv__title {
    font-size: 3.125rem;
  }
}
.fv.fv--home .fv__centerBox {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  width: 100%;
  text-align: center;
  font-weight: normal;
}
.fv.fv--home .fv__centerBox h1 img {
  max-width: 12rem;
  width: 100%;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .fv.fv--home .fv__centerBox h1 img {
    max-width: 7.5rem;
  }
}
.fv.fv--home .fv__centerBox,
.fv.fv--home .fv__side {
  opacity: 0;
  transform: translateY(0.625rem);
  transition: opacity 1.2s ease, transform 1.2s ease;
  will-change: opacity, transform;
}
.fv.fv--home .fv__centerBox {
  transform: translateY(-20%);
}
.fv.fv--home.is-animate .fv__centerBox {
  opacity: 1;
  transform: translateY(-50%);
  transition-delay: 0.3s;
}
.fv.fv--home.is-animate .fv__side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}
.fv.fv--about .fv__centerBox {
  position: absolute;
  top: 3.75rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 45.25rem;
  width: 100%;
  z-index: 10;
  padding-bottom: 3.125rem;
}
.fv.fv--about .fv-about__section--career {
  margin-top: 3.875rem;
}
.fv.fv--about .fv-about__section--service {
  margin-top: 1.5625rem;
}
.fv.fv--about .fv-about__heading {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fv.fv--about .fv-about__heading span.en {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, "ヒラギノ明朝 Pro W3", メイリオ, Meiryo, serif;
  display: block;
  margin-top: 0.5rem;
}
.fv.fv--about .fv-about__career,
.fv.fv--about .fv-about__service-list {
  margin-top: 1.375rem;
}
.fv.fv--about .fv-about__career p,
.fv.fv--about .fv-about__career li,
.fv.fv--about .fv-about__service-list p,
.fv.fv--about .fv-about__service-list li {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #5a7269;
}
.fv.fv--about .fv-about__career p.fv-about__name,
.fv.fv--about .fv-about__service-list p.fv-about__name {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
  margin-bottom: 1rem;
}
.fv.fv--about .fv-about__career p.fv-about__name span.en,
.fv.fv--about .fv-about__service-list p.fv-about__name span.en {
  display: inline-block;
  margin-left: 0.75rem;
  font-family: "リュウミン M-KL", "Ryumin Medium KL", Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, "ヒラギノ明朝 Pro W3", メイリオ, Meiryo, serif;
  font-size: 1.25rem;
  font-weight: 400;
}
.fv.fv--about .fv-about__visual {
  max-width: 46.875rem;
  width: 100%;
  opacity: 0.3;
  position: absolute;
  top: 0;
  right: 0;
}
.fv.fv--access .fv__centerBox {
  position: absolute;
  top: 3.75rem;
  left: 55%;
  transform: translateX(-50%);
  max-width: 53.125rem;
  width: 100%;
  z-index: 10;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .fv.fv--access .fv__centerBox {
    top: 3.4375rem;
    left: 50%;
  }
}
.fv.fv--access .fv-access__info {
  margin-top: 1.6875rem;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #5a7269;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .fv.fv--access .fv-access__map {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
.fv.fv--access .fv-access__actions {
  margin-top: 1.9375rem;
  max-width: 18.75rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.fv.fv--access .fv-access__actions a {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #5a7269;
  color: #fff;
  border-radius: 1.25rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.fv .fv__side {
  position: absolute;
  top: 1.6875rem;
  left: 1.875rem;
  z-index: 2;
  max-width: 16.25rem;
}
.fv .fv__side .fv__side-brand img {
  max-width: 15.1875rem;
  width: 100%;
  height: auto;
  display: block;
}
.fv .fv__side .fv__side-nav {
  margin-top: 5.625rem;
  padding-bottom: 3.125rem;
}
.fv .fv__side .fv__side-nav .fv__side-item a {
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.0666666667;
  font-weight: 400;
}
.fv .fv__side .fv__side-nav .fv__side-item a span.ja {
  color: #808080;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.6923076923;
  font-weight: 500;
  display: block;
}
.fv .fv__side .fv__side-nav .fv__side-item a span.ja .icon {
  max-width: 0.625rem;
  width: 100%;
  height: auto;
  display: inline-block;
  margin-left: 0.375rem;
}
.fv .fv__side .fv__side-nav .fv__side-item:nth-child(n+2) {
  margin-top: 1.25rem;
}
.fv .fv__side .fv__side-nav .fv__side-item.is-soon a {
  opacity: 0.6;
  pointer-events: none;
}
.fv .fv__side .fv__side-nav .fv__side-item.is-soon a span.soon {
  display: inline-block;
  margin-left: 0.625rem;
  font-size: 0.875rem;
}
.fv .fv__side .fv__side-nav .fv__side-item-list {
  margin-top: 0.625rem;
  margin-left: 0.875rem;
}
.fv .fv__side .fv__side-nav .fv__side-item-list .fv__side-item.is-soon a {
  font-size: 1.5rem;
}
.fv .fv__side .fv__side-nav .fv__side-cta {
  display: inline-block;
  margin-top: 1.25rem;
  color: #fff;
  background: linear-gradient(to right, #b5a000, #8d7226);
  padding: 0.4375rem 1.40625rem;
  border-radius: 0.9375rem;
  font-size: 1rem;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .fv .fv__side {
    display: none;
  }
}

.fv__side-item a.is-active,
.fv__side-item a[aria-current=page] {
  opacity: 1;
  color: #5a7269;
}

.page-home .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=home],
.page-about .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=about],
.page-order .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=order],
.page-chocolat .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=chocolat],
.page-dessert .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=dessert],
.page-gallery .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=gallery],
.page-access .fv .fv__side .fv__side-nav .fv__side-item a[data-nav=access] {
  opacity: 1;
  color: #5a7269;
}
/*# sourceMappingURL=style.css.map */