@charset "UTF-8";

/* ------------------------------------------------------------ */

:root {
  --text: #fff;
  --text-gray: #888;

  --large-space: clamp(3rem, 2.429rem + 2.86vw, 5rem);
  --medium-space: calc( var(--large-space) * 0.75 );
  --small-space: calc( var(--large-space) * 0.4 );
}

* {
  box-sizing: border-box;
  font-weight: 500;
}
html,
body,
.content {
  height: 100%;
}
body {
  background: #000;
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.875rem, 0.857rem + 0.09vw, 0.938rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
img {
  max-width: 100%;
  height: auto;
}
h1 {
  margin: 0;
}
a {
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: underline;
  text-decoration-color: #888;
}
a:visited {
  color: #fff;
}
a:hover {
  text-decoration: none;

}
a img {
  transition: opacity 0.3s ease;
}
a:hover img {
  opacity: 0.7;
}

/* ------------------------------------------------------------ */

.content {
  padding-block-end: clamp(3.375rem, 2.911rem + 2.32vw, 5rem);
}
.container {
  padding-inline: clamp(1.25rem, 1.036rem + 1.07vw, 2rem);
}
.store-info-inner-sections {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  align-items: start;
  gap: 1.5rem;
  margin-block: clamp(2rem, 1.857rem + 0.71vw, 2.5rem) 1.25rem;
}
.store-info-inner-content {
  margin-block-start: -0.125lh;
}

/* ------------------------------------------------------------ */

.teaser-first-view {
  display: grid;
  width: 100%;

  @media (orientation: portrait) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 50svh;
  }
  @media (orientation: landscape) {
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}
.teaser-first-view__logo {
  display: grid;
  place-items: center;
  z-index: 1;

  @media (orientation: portrait) {
    height: 50svh;
  }
  @media (orientation: landscape) {
    position: sticky;
    top: 0;
    padding-inline: calc( 70 / 1440 * 100vw );
  }
}
.teaser-first-view__image {
  background: url("../images/teaser/img_main.webp") no-repeat center center / cover;
  width: 100%;

  @media (orientation: portrait) {
    height: 50svh;
  }
  @media (orientation: landscape) {
    height: 100svh;
  }
}


.multi-lang-title {
  font-size: 0.88em;
  line-height: 1.3;
}
.multi-lang-title *[lang="ja"] {
  margin-block-end: 0.25em;
}
.multi-lang-title *[lang="en"] {
  display: block;
  color: var(--text-gray);
  font-size: 0.75em;
}

.button {
  display: block;
  border: 1px solid #666;
  padding: 0.75em 1.5em;
  width: fit-content;
  min-width: calc(0.0625rem * 180);
  text-align: center;
  text-decoration: none;
}
.button:hover {
  border-color: #fff;
}

.iconed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.iconed-link::after {
  content: "";
  display: block;
  background: currentColor;
  translate: 0 0.125em;
}
.iconed-link--newtab::after {
  mask: url("../images/common/icon_newtab.svg") no-repeat center center / contain;
  -webkit-mask: url("../images/common/icon_newtab.svg") no-repeat center center / contain;
  width: 1.1em;
  height: 1.1em;
}
.iconed-link--map::after {
  mask: url("../images/common/icon_map.svg") no-repeat center center / contain;
  -webkit-mask: url("../images/common/icon_map.svg") no-repeat center center / contain;
  width: 1.25em;
  height: 1.25em;
}

.screen-reader-text {
  position: absolute;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  margin: -1px;
  padding: 0;
  overflow: hidden;
  width: 1px;
  height: 1px;
  word-wrap: normal !important;
}

.embedded-form {
  display: block;
  border: 0;
  margin-inline: auto;
  height: 980px;
  width: 100%;
  max-width: 720px;
}
@media (max-width: 650px) {
  .embedded-form {
    height: 1400px;
  }
}