/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
img {
  border-style: none;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --font-family-base: 'Sans Sefif JP', sans-serif;
  --font-family-roboto: 'Roboto', sans-serif;

  --text-color: white;
  --link-color: #564000;
  --link-hover: #564000;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-size: 62.5%;
  scroll-behavior: smooth;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.8;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background-color: #000;
}

a {
  color: var(--link-color);
}

a:hover {
  color: var(--link-hover);
}

a:focus {
  outline: none;
}

a img {
  outline: none;
  border: none;
  backface-visibility: hidden;
}

a,
a img,
button {
  transition: all 0.3s ease;
  box-shadow: #000 0 0 0;
}

a[href^='tel:'] {
  cursor: default;
}

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

iframe,
figure {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

input,
textarea,
select,
button {
  font-size: 1.6rem;
  font-family: var(--font-family-base);
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

div:focus {
  outline: none;
}

/*--------------------------------------------------------------
# Style
--------------------------------------------------------------*/
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site {
  padding: 40px;
}

.container {
  width: 100%;
  max-width: 1590px;
  margin: 0 auto;
}

.header {
  margin-bottom: 30px;
}

.header__title {
  margin: 0 0 50px 0;
  line-height: 1;
  text-align: center;
}

.header__title span {
  position: relative;
  display: inline-block;
  width: 100%;
  line-height: 0;
}

.header__title span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
}

.header__title span img {
  display: block;
  width: 100%;
  opacity: 0;
}

.header__title.is-revealed span::after {
  animation: title-revealer 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.header__title.is-revealed span img {
  animation: title-img-reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes title-revealer {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: left;
  }

  51% {
    transform: scaleX(1);
    transform-origin: right;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes title-img-reveal {
  0% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.header__subtitle {
  margin: 0;
  font-family: var(--font-family-roboto);
  font-size: 2.2rem;
  font-weight: normal;
}

.header__subtitle > span {
  position: relative;
  display: inline-block;
}

.header__subtitle > span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
}

.header__subtitle__line {
  display: none;
  opacity: 0;
}

.header__subtitle__text {
  opacity: 0;
}

.header__subtitle.is-revealed > span::after {
  animation: title-revealer 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.header__subtitle.is-revealed .header__subtitle__line,
.header__subtitle.is-revealed .header__subtitle__text {
  animation: title-img-reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.main {
  margin-bottom: 80px;
}

.block--en {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #818181;
}

.block__table {
  width: 100%;
  line-height: 1.5;
}

.block__table th {
  width: 100px;
  padding-top: calc(8px + 0.2rem);
  padding-bottom: 8px;
  font-size: 1rem;
  text-align: left;
  vertical-align: top;
}

.block__table td {
  padding: 8px 0;
  font-size: 1.2rem;
  text-align: left;
  vertical-align: top;
}

.footer__instagram {
  margin-bottom: 16px;
}

.footer__instagram img {
  width: 21px;
  height: auto;
}

.footer__copyright {
  margin: 0;
  font-family: var(--font-family-roboto);
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .wrapper {
    padding-bottom: 140px;
  }

  .site {
    width: 100%;
  }

  .container {
    display: flex;
    justify-content: space-between;
  }

  .header {
    width: 40%;
  }

  .header__title {
    margin-bottom: 28px;
  }

  .header__title span img {
    width: 100%;
  }

  .header__subtitle > span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .header__subtitle__line {
    display: block;
    flex-shrink: 0;
    width: 40px;
    height: 1px;
    background-color: #fff;
  }

  .main {
    width: 50%;
  }

  .block__table th {
    width: 120px;
    font-size: 1.2rem;
    color: #989898;
  }

  .block__table td {
    font-size: 1.4rem;
  }

  .footer {
    position: absolute;
    bottom: 40px;
    right: 40px;
  }

  .footer__instagram {
    margin-bottom: 10px;
  }
}

@media (min-width: 1024px) {
  .header {
    width: 22%;
  }
  .main {
    width: 68%;
  }
  .block {
    display: flex;
    gap: 12%;
  }

  .block__table {
    width: 50%;
  }
}
