@charset "UTF-8";

/*==================================================
reset
==================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  vertical-align: baseline;
}

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

* {
  font-size: inherit;
  line-height: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

span {
  line-height: inherit;
  font-size: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

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

em,
strong,
em *,
strong * {
  font-weight: bold;
}

/*--form初期化--*/
input[type=submit],
button {
  cursor: pointer;
}

button,
input[type=text],
input[type=image],
input[type=password],
input[type=file],
input[type=submit],
input[type=reset],
input[type=button],
input[type=email],
input[type=tel],
textarea {
  font-family: inherit;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

a {
  text-decoration: none;
  border: none;
  color: inherit;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

th {
  text-align: left;
}

a {
  transition: opacity 0.4s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {

  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  button,
  input[type=text],
  input[type=image],
  input[type=password],
  input[type=file],
  input[type=submit],
  input[type=reset],
  input[type=button],
  input[type=email],
  input[type=tel] textarea {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    border-radius: 0;
    box-shadow: none;
    appearance: none;
  }

  textarea,
  input[type=email],
  input[type=text],
  input[type=image],
  input[type=password] {
    -webkit-appearance: none;
  }
}

/*==================================================
sp pc
==================================================*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .sp-tb-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .tb-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .tb-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .tb-pc-only {
    display: none !important;
  }
}

/*==================================================
leyout 
==================================================*/
:root {
  /*size*/
  --site-width: 1680px;
  --site-padding: 40px;
  --section-space: 200px;
  /*color*/
  --bg-color: #1a1919;
  /*font*/
  --font-base: 1.2rem;
  --font-serif: "Noto Serif JP", serif;
  --font-go: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  --base-line: 2;
}

@media all and (min-width: 768px) and (max-width: 1023px) {
  :root {
    /*size*/
    --section-space: 100px;
  }
}

@media all and (max-width: 767px) {
  :root {
    /*size*/
    --site-padding: 25px;
    --section-space: 100px;
    /*font*/
    --font-base: 1.2rem;
    --font-large: 1.8rem;
    --font-small: 1em;
  }
}

/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
  font-family: var(--font-serif);
  font-size: 62.5%;
  font-weight: 200;
}

body {
  background: var(--bg-color);
  color: #fff;
  letter-spacing: 0.1em;
}


/*--------------------------------------
l-header
----------------------------------------*/
.l-header {
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  padding: 30px 40px 0 40px;
  font-size: 1.4rem;
}

@media all and (max-width: 767px) {
  .l-header {
    padding: 15px 15px;
  }
}

.l-header-row {
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 767px) {
  .l-header-logo {
    width: 30px;
  }
}

.l-header-side {
  display: flex;
  align-items: center;
  gap: 70px;
}

@media all and (max-width: 767px) {
  .l-header-side {
    display: none;
  }
}

.l-header-lang {
  display: flex;
  align-items: center;
}

.l-header-lang a {
  padding-inline: 5px;
  font-family: var(--font-en);
}

.l-header-btn {
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  width: 240px;
  height: 50px;
  border: 1px solid #fff;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

.l-header-btn:before {
  content: "";
  transition: transform 0.4s;
  transform: translateX(-100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

@media (hover: hover) and (pointer: fine) {
  .l-header-btn:hover {
    color: #fff;
    opacity: 1;
  }

  .l-header-btn:hover:before {
    transform: translateX(0);
  }
}

.l-header-btn__txt {
  position: relative;
}

/*--------------------------------------
header btn
----------------------------------------*/
.l-nav-switch {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  margin: auto;
  background: none;
  border: none;
}

.l-nav-switch__line {
  position: absolute;
  right: 15px;
  width: 45px;
  height: 0;
  margin: 0 auto;
  border-top: solid 1px #fff;
  transition: all 0.4s;
}

.l-nav-switch__line:nth-child(1) {
  top: 15px;
}

.l-nav-switch__line:nth-child(2) {
  top: 28px;
}

.l-nav-switch.l-nav-switch--show .l-nav-switch__line:nth-child(1) {
  top: 50%;
  transform: rotate(-20deg);
}

.l-nav-switch.l-nav-switch--show .l-nav-switch__line:nth-child(2) {
  top: 50%;
  transform: rotate(20deg);
}

.l-sp-nav {
  transition: opacity 1s ease-in-out;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  background: url("../img/common/nav-bg.png") no-repeat center bottom/cover;
  color: #fff;
  font-size: 3rem;
}

.l-sp-nav:before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  background: #666;
}

.l-sp-nav__body {
  position: relative;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 4em;
  padding: 50px;
  width: 100vw;
  height: 100vh;
}

.l-sp-nav a {
  display: inline-block;
  opacity: 0;
  transition: transform 0.8s ease-in-out, opacity 0.8s linear;
  transform: translateY(30px);
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.l-sp-nav__list {
  display: grid;
  gap: 0.9em;
  width: fit-content;
  margin-inline: auto;
}

.l-sp-nav__list li:nth-child(1) a {
  transition-delay: 0;
}

.l-sp-nav__list li:nth-child(2) a {
  transition-delay: 0.03s;
}

.l-sp-nav__list li:nth-child(3) a {
  transition-delay: 0.06s;
}

.l-sp-nav__list li:nth-child(4) a {
  transition-delay: 0.09s;
}

.l-sp-nav__list li:nth-child(5) a {
  transition-delay: 0.12s;
}

.l-sp-nav__lang {
  position: absolute;
  bottom: 45px;
  left: 0;
  right: 0;
  display: flex;
  width: fit-content;
  gap: 0.7em;
  margin: auto;
  font-size: 2.4rem;
  line-height: 1;
}

.l-sp-nav__lang a {
  padding-right: 0.7em;
}

.l-sp-nav__lang li:nth-child(1) a {
  transition-delay: 0.15s;
}

.l-sp-nav__lang li:nth-child(2) a {
  transition-delay: 0.2s;
}

.l-sp-nav__lang li:nth-child(3) a {
  transition-delay: 0.25s;
}

.l-sp-nav__sl {
  padding-left: 1em;
}

.l-sp-nav.l-sp-nav--show {
  opacity: 1;
  pointer-events: auto;
}

.l-sp-nav.l-sp-nav--show:before {
  mask-image: linear-gradient(-45deg, transparent 0%, transparent 15%, rgba(255, 255, 255, 0.2) 30%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.2) 70%, transparent 85%, transparent 100%);
  mask-repeat: no-repeat;
  mask-size: 200% 200%;
  mask-position: -100% -100%;
  animation: mask-slide 1s ease-in-out 1 forwards;
}

.l-sp-nav.l-sp-nav--show a {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mask-slide {
  0% {
    mask-position: -100% -100%;
  }

  100% {
    mask-position: 200% 200%;
  }
}

@media screen and (min-width: 769px) {
  .l-sp-nav {
    display: none;
  }
}

/*--------------------------------------
l-main
----------------------------------------*/
.l-main {
  line-height: var(--base-line);
  font-size: var(--font-base);
}

/*--------------------------------------
l-footer
----------------------------------------*/
.l-footer {
  position: relative;
  z-index: 1;
  padding-block: var(--section-space) 0;
  line-height: 2;
  letter-spacing: 0.1em;
  background: var(--bg-color);
}

.l-footer-restaurant {
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
  padding-block: 100px;
}

@media all and (max-width: 767px) {
  .l-footer-restaurant {
    padding-block: 50px;
  }
}

.l-footer-restaurant:before,
.l-footer-restaurant:after {
  content: "";
  transition: width 1s;
  position: absolute;
  left: 0;
  display: block;
  width: 0;
  border-top: 1px solid #fff;
}

.l-footer-restaurant:before {
  top: 0;
}

.l-footer-restaurant:after {
  bottom: 0;
}

.l-footer-restaurant.js-show:before,
.l-footer-restaurant.js-show:after {
  width: 100%;
}

.l-footer-map {
  margin-top: 35px;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.l-footer-ttl {
  margin-bottom: 55px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media all and (max-width: 767px) {
  .l-footer-ttl {
    margin-bottom: 35px;
    font-size: 1.8rem;
  }
}

@media all and (max-width: 767px) {
  .l-footer-nav {
    display: none;
  }
}

.l-footer-nav ul {
  display: grid;
  gap: 10px;
}

.l-footer-data {
  display: grid;
  gap: 10px;
}

@media all and (max-width: 767px) {
  .l-footer-data dt {
    margin-bottom: 20px;
  }
}

@media all and (max-width: 767px) {
  .l-footer-data {
    gap: 0px;
  }
}

.l-footer-data__time {
  margin-bottom: 10px;
  line-height: 3;
}

@media all and (max-width: 767px) {
  .l-footer-data__time {
    margin-bottom: 20px;
    line-height: 2;
  }
}

.l-footer-data__time:last-child {
  margin-bottom: 0;
}

.l-footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

@media all and (max-width: 767px) {
  .l-footer-row {
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
    gap: 45px;
  }
}

.l-footer-row__col {
  display: grid;
  gap: 30px;
}

@media all and (max-width: 767px) {
  .l-footer-row__col {
    gap: 20px;
  }
}

.l-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 60px;
}

@media all and (max-width: 767px) {
  .l-footer-bottom {
    display: block;
    padding: 0 0 30px 0;
  }
}

@media all and (max-width: 767px) {
  .l-footer-logo {
    display: none;
  }
}

.l-footer-side {
  display: grid;
  grid-template-columns: 1fr 32px 10px;
  align-items: center;
  gap: 40px;
}

@media all and (max-width: 767px) {
  .l-footer-side {
    position: relative;
    width: 100%;
    grid-template-columns: 100%;
    justify-content: center;
    gap: 0;
  }
}

.l-footer-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 40px;
}

@media all and (max-width: 767px) {
  .l-footer-lang {
    position: relative;
    justify-content: center;
    margin-right: 0;
    padding-block: 40px;
  }
}

.l-footer-lang a {
  font-family: var(--font-en);
  font-size: 1.2rem;
}

.l-footer-copy {
  width: 1em;
}

@media all and (max-width: 767px) {
  .l-footer-copy {
    position: absolute;
    right: 0;
    top: 42px;
    bottom: 0;
    margin: auto;
  }
}

.l-footer-copy span {
  position: relative;
  top: -3px;
  right: 1.5em;
  display: block;
  width: 4em;
  font-size: 1rem;
  text-align: left;
  transform: rotate(-90deg);
}

.l-footer-ig {
  width: 30px;
}

@media all and (max-width: 767px) {
  .l-footer-ig {
    position: relative;
    display: block;
    width: 100%;
    padding: 25px 0;
  }

  .l-footer-ig img {
    display: block;
    width: 16px;
    margin-inline: auto;
  }
}

@media all and (max-width: 767px) {

  .l-footer-lang:after,
  .l-footer-ig:after {
    content: "";
    transition: width 1s;
    position: absolute;
    left: 0;
    display: block;
    width: 0;
    border-top: 1px solid #fff;
  }

  .l-footer-lang:before,
  .l-footer-ig:before {
    top: 0;
  }

  .l-footer-lang:after,
  .l-footer-ig:after {
    bottom: 0;
  }

  .l-footer-lang.js-show:before,
  .l-footer-lang.js-show:after,
  .l-footer-ig.js-show:before,
  .l-footer-ig.js-show:after {
    width: 100%;
  }
}

/*==================================================
module
==================================================*/
/*--------------------
btn
--------------------*/
.m-btn {
  color: #fff;
}

.m-btn.-center {
  margin: 0 auto;
}

/*--------------------
ttl 
--------------------*/
.section-ttl {
  overflow: hidden;
}

.section-ttl--chef {
  margin-bottom: 110px;
}

@media all and (max-width: 767px) {
  .section-ttl--chef {
    margin-bottom: 40px;
  }
}

.section-ttl__en {
  overflow: hidden;
  margin-bottom: 55px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media all and (max-width: 1023px) {
  .section-ttl__en {
    margin-bottom: 45px;
  }
}

.section-ttl__jp {
  overflow: hidden;
  margin-bottom: 75px;
  font-size: 4.8rem;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

@media all and (max-width: 1499px) {
  .section-ttl__jp {
    font-size: 4.2rem;
  }
}

@media all and (max-width: 1379px) {
  .section-ttl__jp {
    font-size: 3.8rem;
  }
}

@media all and (max-width: 1023px) {
  .section-ttl__jp {
    font-size: 3.6rem;
  }
}

@media all and (max-width: 767px) {
  .section-ttl__jp {
    margin-bottom: 30px;
    font-size: 3rem;
    line-height: 1.3;
  }
}

.section-ttl__en-txt {
  display: block;
  transition: transform 0.7s cubic-bezier(0.24, 0.38, 0.19, 0.88);
  transform: translateY(70px);
}

.section-ttl__name,
.section-ttl__jp-txt {
  display: block;
  transition: transform 0.7s cubic-bezier(0.24, 0.38, 0.19, 0.88);
  transform: translateY(120px);
}

.section-ttl.js-ttl-show .section-ttl__name,
.section-ttl.js-ttl-show .section-ttl__jp-txt,
.section-ttl.js-ttl-show .section-ttl__en-txt {
  transform: translateY(0);
}

.section-ttl__name-01,
.section-ttl__name-02 {
  display: block;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.section-ttl__name-01 {
  font-size: 2.4rem;
}

.section-ttl__name-02 {
  font-size: 1.4rem;
}

/*--------------------
list nav
--------------------*/
/*--------------------
table
--------------------*/
.m-table {
  width: 100%;
}

/*--------------------
row
--------------------*/
.m-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*--------------------
inner
--------------------*/
.inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1480px;
  padding-inline: var(--site-padding);
}

@media all and (max-width: 767px) {
  .inner {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .inner.inner--sp-none {
    padding: 0;
  }
}

/*--------------------
box unit
--------------------*/
.js-txt {
  overflow: hidden;
}

.js-txt__item {
  transition: transform 0.6s, opacity 0.6s;
  opacity: 0;
  transform: translateY(20px);
  display: block;
}

.js-txt__item:nth-child(2) {
  transition-delay: 0.1s;
}

.js-txt.js-txt-show .js-txt__item {
  transform: translateY(0);
  opacity: 1;
}

/*==================================================
main-visual
==================================================*/
.main-visual {
  padding-top: 100vh;
}

@media all and (max-width: 767px) {
  .main-visual--pc {
    display: none;
  }
}

@media all and (min-width: 1201px) {
  .main-visual--sp {
    display: none;
  }
}

.main-visual__img {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100vh;
}

/*==================================================
concept
==================================================*/
.concept {
  position: relative;
  z-index: 1;
  padding: var(--section-space) 0;
  background: var(--bg-color);
}

.concept-row {
  display: grid;
  grid-template-columns: 2fr 4.3fr 3.7fr;
  gap: 70px;
  justify-content: space-between;
  width: min(1500px, 100%);
  margin-inline: auto;
  padding-inline: var(--site-padding);
}

@media all and (max-width: 1023px) {
  .concept-row {
    grid-template-columns: 4.3fr 3.7fr;
    gap: 50px;
  }
}

@media all and (max-width: 767px) {
  .concept-row {
    width: fit-content;
    justify-content: center;
    grid-template-columns: 1fr;
  }
}

.concept-row__img-01 {
  align-self: end;
}

@media all and (max-width: 1023px) {
  .concept-row__img-01 {
    display: none;
  }
}

.concept-row__body {
  padding-top: 90px;
}

@media all and (max-width: 1023px) {
  .concept-row__body {
    padding-top: 0;
  }
}

.concept-row__img-02 {
  margin-bottom: 100px;
}

@media all and (max-width: 1023px) {
  .concept-row__img-02 {
    margin-bottom: 0;
  }
}

.concept-txt {
  display: grid;
  gap: 2em;
}

.concept-txt p {
  font-family: var(--font-go);
}

/*==================================================
chef
==================================================*/
.chef {
  position: relative;
  background: var(--bg-color);
  padding: var(--section-space) 0;
}

.chef-row {
  max-width: 1160px;
  display: grid;
  align-items: center;
  grid-template-columns: 40.52% 50%;
  gap: 18.1%;
}

@media all and (max-width: 1379px) {
  .chef-row {
    grid-template-columns: 46% 46%;
    gap: 8%;
  }
}

@media all and (max-width: 1023px) {
  .chef-row {
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}

@media all and (max-width: 767px) {
  .chef-row {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-left: 60px;
  }
}

.chef-row__txt {
  max-width: 580px;
}

@media all and (max-width: 767px) {
  .chef-row__txt {
    padding-right: var(--site-padding);
  }
}

/*==================================================
curtain
==================================================*/
.curtain__spacer {
  background: var(--bg-color);
}

@media screen and (max-width: 769px) {
  .curtain__spacer {
    display: none;
  }
}

.curtain {
  overflow: hidden;
  position: relative;
  background: var(--bg-color);
}

@media screen and (max-width: 769px) {
  .curtain {
    display: none;
  }
}

.curtain__item {
  height: 200vh;
}

.curtain__inner {
  width: 100%;
  height: 100vh;
}

.curtain__img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  cursor: pointer;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}


.curtain__img:hover {
  filter: grayscale(0);
}

.curtain-sp {
  display: none;
}



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

  .curtain-sp__img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
  }

  .curtain-sp__img:hover {
    filter: grayscale(0%);
  }
}

.curtain-sp__img {
  width: 100%;
}

/*==================================================
    stones
 ==================================================*/
.stones {
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100%;
}

@media all and (max-width: 767px) {
  .stones {
    height: 370px;
  }
}

.stones__img {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.stones__img:hover {
  filter: grayscale(0%);
}

.stones__txt {
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100px;
  display: flex;
  justify-content: center;
  gap: 340px;
  height: 220px;
}

@media all and (max-width: 1379px) {
  .stones__txt {
    bottom: 70px;
    gap: 150px;
    height: 150px;
  }
}

@media all and (max-width: 767px) {
  .stones__txt {
    height: 60px;
    gap: 75px;
    bottom: 30px;
  }

  .stones__txt img {
    width: auto;
  }
}

.stones__down {
  display: block;
  transform: translateY(-500px);
  transition: transform 0.6s;
  font-size: 30rem;
  font-family: var(--font-en);
  line-height: 0.7;
  font-weight: 300;
}

@media all and (max-width: 1379px) {
  .stones__down {
    font-size: 20rem;
  }
}

@media all and (max-width: 767px) {
  .stones__down {
    padding-top: 2px;
    transform: translateY(-100px);
    font-size: 7.5rem;
  }
}

.stones__down--show {
  opacity: 1;
  transform: translateY(0);
}

.stones__down--txt-k {
  transition-delay: 0s;
}

.stones__down--txt-u {
  transition-delay: 0.4s;
}

.stones__down--txt-r {
  transition-delay: 0.8s;
}

/*==================================================
img-hover
==================================================*/
.img-hover {
  cursor: pointer;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.img-hover:hover {
  filter: grayscale(0);
}

/*==================================================
under-page
==================================================*/
.under-page {
  font-size: 1.4rem;
  line-height: 3.4285714286;
  letter-spacing: 0.05em;
  background-color: #202020;
}

@media all and (max-width: 767px) {
  .under-page {
    line-height: 2;
    font-size: 1.2rem;
  }
}

.under-page__inner {
  max-width: 1040px;
  margin-inline: auto;
  padding: 320px var(--site-padding) 200px var(--site-padding);
}

@media all and (max-width: 767px) {
  .under-page__inner {
    padding-block: 160px 100px;
  }
}

.page-ttl {
  margin-bottom: 90px;
  font-size: 4.8rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1;
}

@media all and (max-width: 767px) {
  .page-ttl {
    margin-bottom: 70px;
    font-size: 3.6rem;
  }
}

.page-lead {
  margin-bottom: 60px;
}

@media all and (max-width: 767px) {
  .page-lead {
    margin-bottom: 80px;
  }
}

.block {
  margin-bottom: 80px;
}

@media all and (max-width: 767px) {
  .block {
    margin-bottom: 60px;
  }
}

.block-ttl {
  margin-bottom: 30px;
  font-size: 3.6rem;
  line-height: 1;
}

@media all and (max-width: 767px) {
  .block-ttl {
    font-size: 2.4rem;
  }
}

.btn {
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 560px;
  height: 80px;
  margin-top: 130px;
  margin-inline: auto;
  border: 1px solid #fff;
  font-size: 1.8rem;
}

@media all and (max-width: 767px) {
  .btn {
    margin-top: 70px;
    height: 60px;
  }
}

.btn:before {
  content: "";
  transition: transform 0.4s;
  transform: translateX(-100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    color: #fff;
  }

  .btn:hover:before {
    transform: translateX(0);
  }
}

.btn__txt {
  position: relative;
}

/*==================================================

==================================================*/
[lang=en] .section-ttl__jp-txt {
  line-height: 1.35;
}

/*JS*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider * {
  outline: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.slick-dots {
  position: absolute;
  bottom: -20px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: red;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
}

.slick-dots li.slick-active button {
  background: blue;
}

/*SASS MODULE*/
.first {
  opacity: 0;
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 99999;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100vh;
  background: var(--bg-color);
}

.first__wave {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  width: 400px;
  height: 150px;
  margin: auto;
}

.first__wave div {
  background: var(--bg-color);
  transform: scale(1.3);
  will-change: opacity, transform;
}

.first__logo {
  transition: transform 1s ease-in-out, opacity 1s;
  transform: scale(1);
}

.start.first__logo {
  transform: scale(0);
  opacity: 0;
}