@charset "UTF-8";
:root {
  --sideW: 8rem;
  --svh: 100vh;
  --color-text: var(--color-white);
  --color-bg: var(--color-brown-base);
  --color-black: #000;
  --color-white: #fff;
  --color-brown: #5c4930;
  --color-brown-base: #312618;
  --color-gold: #d7b257;
  --color-gold-dark: #9c7d23;
  --ease_out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease_inout: cubic-bezier(0.65, 0, 0.35, 1);
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html {
  width: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (min-width: 961px) {
  html {
    font-size: min(0.78125vw, 12.5px);
  }
}
@media screen and (max-width: 960px) {
  html {
    font-size: min(2.6666666667vw, 15px);
  }
}

body {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  color: var(--color-text);
  background: var(--color-bg);
  overflow: hidden;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-wrap: break-word;
}

a {
  color: var(--color-text);
  position: relative;
  text-decoration: none;
}

.clearfix:after {
  content: " . ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* {
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
*::before, *::after {
  box-sizing: border-box;
}
*:focus-visible {
  outline: 1px solid var(--color-black) !important;
}

input, select, textarea {
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=" tel "] {
  display: inline-block;
  color: inherit;
}

button {
  font-size: 1.6rem;
  line-height: 1.3;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0.05rem;
  font-feature-settings: "palt";
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ol, ul {
  list-style: none;
}

@media screen and (min-width: 961px) {
  .is-sp {
    display: none !important;
  }
  .is-sp-inline {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .sp-inline {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .is-pc {
    display: none !important;
  }
  .is-pc-inline {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
}
@media screen and (orientation: landscape) {
  .is-port {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .is-land {
    display: none !important;
  }
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
img::-moz-selection {
  background: none;
}
img::selection {
  background: none;
}
img[height] {
  height: auto !important;
}

[data-prefix]::before {
  content: attr(data-prefix);
}

[data-suffix]::after {
  content: attr(data-suffix);
}

.l-wrap {
  display: block;
  position: relative;
}
.l-wrap::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  background: var(--color-brown-base);
  pointer-events: none;
  -webkit-mask: url("../img/mask2.png") no-repeat 50% 100%/100% 1200%;
  mask: url("../img/mask2.png") no-repeat 50% 100%/100% 1200%;
  transform: translate(-50%, -50%);
  z-index: 50;
}
@media screen and (orientation: landscape) {
  .l-wrap::before {
    min-height: 75vw;
  }
}
@media screen and (orientation: portrait) {
  .l-wrap::before {
    -webkit-mask: url("../img/mask2.png") no-repeat 50% 100%/150% 1200%;
    mask: url("../img/mask2.png") no-repeat 50% 100%/150% 1200%;
  }
}
.is-load .l-wrap::before {
  animation: mask 1.2s steps(11, end);
}
.is-loaded .l-wrap::before {
  content: none;
}
.l-wrap::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/logo.png") no-repeat center/20rem auto;
  pointer-events: none;
  animation: op_scale 30s linear forwards;
  z-index: 55;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .l-wrap::after {
    background-size: 10rem auto;
  }
}
.is-load .l-wrap::after {
  opacity: 0;
  transition: opacity 2s var(--ease_inout);
}
.is-loaded .l-wrap::after {
  content: none;
}
@keyframes op_scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.l-wrap__container {
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .l-wrap__container {
    padding-right: var(--sideW);
  }
}
.is-load .l-wrap__container {
  opacity: 1;
  transition: opacity 1s var(--ease_inout);
}

.l-header {
  width: var(--sideW);
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .l-header {
    display: none;
  }
}
.l-header__brand {
  width: 100%;
  display: block;
  position: relative;
  padding: 2rem 0;
  margin: 0 auto;
}
.l-header__brand-link {
  width: 5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}

.l-nav {
  width: calc(100% - var(--sideW));
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
  background-color: var(--color-brown-base);
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .l-nav {
    width: 100%;
    height: 100%;
  }
}
.is-menu-show .l-nav {
  display: block;
}
.is-menu-open .l-nav {
  pointer-events: auto;
  opacity: 1;
  transition: opacity 1.4s var(--ease_inout);
}
.l-nav__container {
  width: 100%;
  min-height: var(--svh);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  margin: 0 auto;
  padding: 7rem 0;
  z-index: 0;
  background: var(--color-brown-base);
}
@media screen and (max-width: 960px) {
  .l-nav__container {
    align-items: flex-start;
    padding: 4rem 0 25rem;
  }
}
.l-nav__cover {
  width: 45%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .l-nav__cover {
    max-width: calc(100% - 66rem);
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 960px) {
  .l-nav__cover {
    width: 100%;
    height: 20rem;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s var(--ease_out);
  }
  .is-menu-open .l-nav__cover {
    opacity: 1;
    transition: opacity 1.4s var(--ease_inout) 1s;
  }
}
.l-nav__cover::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/top/main_02.jpg") no-repeat 20% 15%/cover;
}
@media screen and (min-width: 961px) {
  .l-nav__cover::after {
    transition: background-position-x 0s linear 1s;
  }
  .is-menu-open .l-nav__cover::after {
    transition: background-position-x 120s linear;
    background-position-x: 100%;
  }
}
.l-nav__content {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-nav__content {
    width: 55%;
    min-width: 66rem;
    background-color: var(--color-brown-base);
  }
}
@media screen and (max-width: 960px) {
  .l-nav__content {
    width: 100%;
  }
}
.l-nav__brand {
  width: 19rem;
  display: block;
  position: relative;
  margin: 0 auto 7rem;
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .l-nav__brand {
    width: 11.4rem;
    margin-bottom: 3.2rem;
  }
}
.is-menu-open .l-nav__brand {
  opacity: 1;
  transition: opacity 1.5s var(--ease_inout) 0.2s;
}
.l-nav__list {
  width: calc(100% - 20rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem 11.5rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-nav__list {
    width: calc(100% - 7.2rem);
    max-width: 45rem;
    gap: 0.9rem 6rem;
  }
}
.l-nav__list-item {
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}
.is-menu-open .l-nav__list-item {
  opacity: 1;
  transition: opacity 1.4s var(--ease_inout);
}
.is-menu-open .l-nav__list-item:nth-child(1) {
  transition-delay: 0.1s, 0.1s;
}
.is-menu-open .l-nav__list-item:nth-child(2) {
  transition-delay: 0.15s, 0.15s;
}
.is-menu-open .l-nav__list-item:nth-child(3) {
  transition-delay: 0.2s, 0.2s;
}
.is-menu-open .l-nav__list-item:nth-child(4) {
  transition-delay: 0.25s, 0.25s;
}
.is-menu-open .l-nav__list-item:nth-child(5) {
  transition-delay: 0.3s, 0.3s;
}
.is-menu-open .l-nav__list-item:nth-child(6) {
  transition-delay: 0.35s, 0.35s;
}
.is-menu-open .l-nav__list-item:nth-child(7) {
  transition-delay: 0.4s, 0.4s;
}
.is-menu-open .l-nav__list-item:nth-child(8) {
  transition-delay: 0.45s, 0.45s;
}
.is-menu-open .l-nav__list-item:nth-child(9) {
  transition-delay: 0.5s, 0.5s;
}
.is-menu-open .l-nav__list-item:nth-child(10) {
  transition-delay: 0.55s, 0.55s;
}
.is-menu-open .l-nav__list-item:nth-child(11) {
  transition-delay: 0.6s, 0.6s;
}
.is-menu-open .l-nav__list-item:nth-child(12) {
  transition-delay: 0.65s, 0.65s;
}
.is-menu-open .l-nav__list-item:nth-child(13) {
  transition-delay: 0.7s, 0.7s;
}
.is-menu-open .l-nav__list-item:nth-child(14) {
  transition-delay: 0.75s, 0.75s;
}
.is-menu-open .l-nav__list-item:nth-child(15) {
  transition-delay: 0.8s, 0.8s;
}
.is-menu-open .l-nav__list-item:nth-child(16) {
  transition-delay: 0.85s, 0.85s;
}
.is-menu-open .l-nav__list-item:nth-child(17) {
  transition-delay: 0.9s, 0.9s;
}
.is-menu-open .l-nav__list-item:nth-child(18) {
  transition-delay: 0.95s, 0.95s;
}
.is-menu-open .l-nav__list-item:nth-child(19) {
  transition-delay: 1s, 1s;
}
.is-menu-open .l-nav__list-item:nth-child(20) {
  transition-delay: 1.05s, 1.05s;
}
.l-nav__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.4rem 0;
}
@media screen and (min-width: 961px) {
  .l-nav__link {
    padding: 0.4rem 1.5rem 0.4rem 0;
  }
  .l-nav__link::before {
    content: "";
    width: 1rem;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../img/ar_w.png") no-repeat center/contain;
    opacity: 0;
  }
}
@media screen and (min-width: 961px) and (hover: hover) and (pointer: fine) {
  .l-nav__link::before {
    transform: translateX(-1.5rem);
    transition: opacity 0.2s var(--ease_out), transform 0.2s var(--ease_out);
  }
  .l-nav__link:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
}
.l-nav__link-text {
  display: block;
  position: relative;
  font-size: 2.6rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (min-width: 961px) and (hover: hover) and (pointer: fine) {
  .l-nav__link-text {
    transform: translateX(0);
    transition: transform 0.2s var(--ease_out);
  }
  .l-nav__link:hover .l-nav__link-text {
    transform: translateX(1.5rem);
  }
}
@media screen and (max-width: 960px) {
  .l-nav__link-text {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  @supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
    @media screen and (max-width: 960px) and (hover: hover) and (pointer: fine) {
      .l-nav__link-text {
        text-decoration: underline;
        -webkit-text-decoration-color: transparent;
        text-decoration-color: transparent;
        transition: -webkit-text-decoration-color 0.3s var(--ease_out);
        transition: text-decoration-color 0.3s var(--ease_out);
        transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
      }
      .l-nav__link-text:hover {
        -webkit-text-decoration-color: currentColor;
        text-decoration-color: currentColor;
      }
    }
  }
  @supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
    @media screen and (max-width: 960px) and (hover: hover) and (pointer: fine) {
      .l-nav__link-text:hover {
        text-decoration: underline;
      }
    }
  }
}
.l-nav__account {
  width: calc(100% - 20rem);
  display: block;
  position: relative;
  margin: 5.6rem auto 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}
@media screen and (max-width: 960px) {
  .l-nav__account {
    width: calc(100% - 7.2rem);
    max-width: 45rem;
    margin-top: 3.5rem;
  }
}
.is-menu-open .l-nav__account {
  opacity: 1;
  transition: opacity 1.4s var(--ease_inout) 1s;
}

.l-nav_account {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.l-nav_account__cap {
  display: block;
  position: relative;
  margin-right: 0.8rem;
  padding-right: 3rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .l-nav_account__cap {
    font-size: 1.4rem;
    padding-right: 2.5rem;
  }
}
.l-nav_account__cap::after {
  content: "";
  width: 2rem;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  border-bottom: 1px solid var(--color-white);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .l-nav_account__cap::after {
    width: 1.6rem;
  }
}
.l-nav_account__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.l-nav_account__list-item {
  display: block;
  position: relative;
}
.l-nav_account__link {
  width: 2rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-nav_account__link {
    width: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-nav_account__link {
    transition: opacity 0.8s var(--ease_out);
  }
  .l-nav_account__link:hover {
    opacity: 0.4;
  }
}

.l-menu {
  width: var(--sideW);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 5;
  font-size: 0;
  color: var(--color-gold);
  background-color: var(--color-brown);
}
@media screen and (min-width: 961px) {
  .l-menu {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  .l-menu {
    width: 6rem;
    height: 6rem;
    left: 0;
    bottom: 0;
    z-index: 20;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-menu {
    transition: color 0.3s var(--ease_out), background-color 0.3s var(--ease_out);
  }
  .l-menu:hover {
    background-color: #473824;
  }
}
.l-menu__content {
  width: 4rem;
  height: 2.4rem;
  display: block;
  position: absolute;
  box-sizing: content-box;
}
@media screen and (min-width: 961px) {
  .l-menu__content {
    bottom: 3.2rem;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 960px) {
  .l-menu__content {
    width: 3rem;
    height: 1.6rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.l-menu__line {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s var(--ease_out);
}
.l-menu__line.--open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform-origin: right bottom;
}
.l-menu__line-bar {
  width: 100%;
  height: 2px;
  display: block;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.l-menu__line-bar:nth-child(1) {
  --delay1: 0s;
  --delay2: 0.05s;
}
.l-menu__line-bar:nth-child(2) {
  --delay1: 0.05s;
  --delay2: 0.1s;
}
.l-menu__line-bar:nth-child(3) {
  --delay1: 0.1s;
  --delay2: 0.15s;
}
.--close .l-menu__line-bar {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
}
.--close .l-menu__line-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (hover: hover) and (pointer: fine) {
  .--close .l-menu__line-bar:nth-child(1) {
    transition: transform 0.3s var(--ease_out);
  }
  .l-menu:hover .--close .l-menu__line-bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(35deg);
  }
}
.--close .l-menu__line-bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (hover: hover) and (pointer: fine) {
  .--close .l-menu__line-bar:nth-child(2) {
    transition: transform 0.3s var(--ease_out);
  }
  .l-menu:hover .--close .l-menu__line-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
}
.l-menu__line-bar::before {
  content: "";
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: currentColor;
  transition: width 0.4s var(--ease_inout);
}
.--open .l-menu__line-bar::before {
  width: 100%;
  right: 0;
  left: auto;
  transition: width 0.8s var(--ease_inout) calc(var(--delay1) + 0.2s);
}
.is-menu-open .--open .l-menu__line-bar::before {
  width: 0 !important;
  left: 0 !important;
  transition: width 0.8s var(--ease_inout) var(--delay1);
}
.--close .l-menu__line-bar::before {
  width: 0;
  transition: width 0.7s var(--ease_inout) var(--delay1);
}
.is-menu-open .--close .l-menu__line-bar::before {
  width: 100%;
  left: auto;
  right: 0;
  transition: width 0.7s var(--ease_inout) calc(var(--delay1) + 0.2s);
}

.l-main {
  display: block;
  position: relative;
}

.l-footer {
  display: block;
  position: relative;
  padding: 7.8rem 0;
  color: var(--color-white);
  background-color: var(--color-brown-base);
}
@media screen and (max-width: 960px) {
  .l-footer {
    padding: 6rem 0 8rem;
  }
}
.l-footer__container {
  width: calc(100% - 12rem);
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .l-footer__container {
    width: 90%;
  }
}
.l-footer__content {
  display: block;
  position: relative;
}
.l-footer__share {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .l-footer__share {
    width: 30%;
    position: absolute;
    top: 0.2rem;
    left: 0;
  }
}
.l-footer__help {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .l-footer__help {
    width: 70%;
    margin: 3.6rem auto 0;
  }
}
.l-footer__legal {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin-left: auto;
  margin-top: 0.6rem;
}
@media screen and (max-width: 960px) {
  .l-footer__legal {
    width: 100%;
    margin: 1rem auto 0;
  }
}
.l-footer__legal-text {
  display: block;
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  text-align: right;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .l-footer__legal-text {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
  }
}
.l-footer__legal-text + .l-footer__legal-text {
  margin-top: 1.5rem;
}

.l-footer_share {
  /* display: block; */
  display: flex;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.l-footer_share__cap {
  display: block;
  position: relative;
  font-size: 1.6rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  color: var(--color-gold);
  margin: 5px 10px 0 0;
}
@media screen and (min-width: 961px) {
  .l-footer_share__cap {
    margin-bottom: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  .l-footer_share__cap {
    font-size: 1.3rem;
    margin-right: 2rem;
  }
}
.l-footer_share__list {
  display: flex;
  justify-content: flex-start;
  gap: 1.7rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-footer_share__list {
    gap: 1.6rem;
  }
}
.l-footer_share__list-item {
  display: block;
  position: relative;
}
.l-footer_share__link {
  width: 3rem;
  display: block;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer_share__link {
    transition: opacity 0.8s var(--ease_out);
  }
  .l-footer_share__link:hover {
    opacity: 0.4;
  }
}
.l-footer_share__link-img {
  display: block;
  position: relative;
}

.l-footer_help {
  display: block;
  position: relative;
}
.l-footer_help__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
  padding: 0 0.5rem;
}
@media screen and (max-width: 960px) {
  .l-footer_help__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 0;
  }
}
.l-footer_help__list-item {
  display: block;
  position: relative;
}
.l-footer_help__list-item::before {
  content: "";
  width: 0.7rem;
  height: 100%;
  display: block;
  position: absolute;
  top: -0.1rem;
  left: 0;
  transform: translate(-50%, 0);
  background: url("../img/footer_deco.png") no-repeat center/contain;
}
.l-footer_help__list-item:last-child::after {
  content: "";
  width: 0.7rem;
  height: 100%;
  display: block;
  position: absolute;
  top: -0.1rem;
  right: 0;
  transform: translate(50%, 0);
  background: url("../img/footer_deco.png") no-repeat center/contain;
}
.l-footer_help__link {
  display: block;
  position: relative;
  padding: 0 1.2rem;
  font-size: 1.3rem;
  letter-spacing: 0.15rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .l-footer_help__link {
    font-size: 1rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-footer_help__link {
      text-decoration: underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .l-footer_help__link:hover {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .l-footer_help__link:hover {
      text-decoration: underline;
    }
  }
}

.c-back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  color: var(--color-brown-base);
}
.c-back__text {
  display: block;
  position: relative;
  padding: 1rem 3rem;
  font-size: 2.4rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
}
@media screen and (max-width: 960px) {
  .c-back__text {
    padding: 0.5rem 2rem;
    font-size: 1.8rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-back__text {
      -webkit-text-decoration: 2px underline;
      text-decoration: 2px underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .c-back:hover .c-back__text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-back:hover .c-back__text {
      text-decoration: underline;
    }
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0 21rem;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .c-pagination {
    box-sizing: content-box;
  }
}
@media screen and (max-width: 960px) {
  .c-pagination {
    width: 100%;
    padding: 0 4rem;
    margin: 0 auto;
  }
}
.c-pagination__nav {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0.1rem 2.5rem;
  color: var(--color-white);
  background: var(--color-orange);
  border-radius: 20rem;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .c-pagination__nav {
    padding: 0.25rem 0.05rem;
  }
}
.c-pagination__nav.--prev {
  left: 0;
}
.c-pagination__nav.--next {
  right: 0;
}
.c-pagination__nav-text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  color: var(--color-brown-base);
}
@media screen and (max-width: 960px) {
  .c-pagination__nav-text {
    font-size: 1.8rem;
    letter-spacing: 0.15rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__nav-text {
      -webkit-text-decoration: 2px underline;
      text-decoration: 2px underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .c-pagination__nav:hover .c-pagination__nav-text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__nav:hover .c-pagination__nav-text {
      text-decoration: underline;
    }
  }
}
.c-pagination__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
  align-items: center;
  position: relative;
}
.c-pagination__list-item {
  display: block;
  position: relative;
}
.c-pagination__list-item:nth-child(n+6) {
  display: none;
}
.c-pagination__link {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--color-brown-base);
}
.is-current .c-pagination__link {
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .c-pagination__link {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.c-pagination__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-gold);
  transform: rotate(45deg);
  opacity: 0;
}
.is-current .c-pagination__link::before {
  opacity: 1;
}
.c-pagination__link-text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .c-pagination__link-text {
    font-size: 1.6rem;
  }
}
@supports ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__link-text {
      -webkit-text-decoration: 2px underline;
      text-decoration: 2px underline;
      -webkit-text-decoration-color: transparent;
      text-decoration-color: transparent;
      transition: -webkit-text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out);
      transition: text-decoration-color 0.3s var(--ease_out), -webkit-text-decoration-color 0.3s var(--ease_out);
    }
    .c-pagination__link:hover .c-pagination__link-text {
      -webkit-text-decoration-color: currentColor;
      text-decoration-color: currentColor;
    }
  }
}
@supports not ((-webkit-text-decoration-color: transparent) or (text-decoration-color: transparent)) {
  @media (hover: hover) and (pointer: fine) {
    .c-pagination__link:hover .c-pagination__link-text {
      text-decoration: underline;
    }
  }
}

.p-in {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--color-brown-base);
}
.p-in__container {
  display: block;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.is-load .p-in__container {
  opacity: 1;
  transition: opacity 1s var(--ease_out) 0.4s;
}
.p-in__container::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/news/bg_01.jpg") no-repeat center/cover;
}
.p-in__header {
  display: block;
  position: relative;
  padding: min(6.2rem, 62px) 0 min(6.5rem, 65px);
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-in__header {
    padding: 4.5rem 0 4.6rem;
  }
}
.p-in__header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/news/bg_02.jpg") no-repeat center/cover;
}
.p-in__header::after {
  content: "";
  width: 100%;
  height: 1.2rem;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 0.2rem solid var(--color-gold);
  border-bottom: 0.5rem solid var(--color-gold);
}
@media screen and (max-width: 960px) {
  .p-in__header::after {
    height: 0.6rem;
    border-top: 0.1rem solid var(--color-gold);
    border-bottom: 0.25rem solid var(--color-gold);
  }
}
.p-in__brand {
  width: 19rem;
  max-width: 190px;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-in__brand {
    width: 10rem;
  }
}
.is-load .p-in__brand {
  opacity: 1;
  transition: opacity 2s var(--ease_out);
}
.p-in__title {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  position: relative;
  left: 0.05em;
  margin: 1.6rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-in__title {
    margin-top: 0.7rem;
  }
}
.p-in__title-word {
  display: block;
  position: relative;
  font-size: min(8rem, 80px);
  letter-spacing: 0.4rem;
  font-family: "Modern Antiqua", "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", "Noto Serif JP", serif;
  text-align: center;
  font-weight: 400;
  opacity: 0;
  transform: scale(1.15);
}
@media screen and (max-width: 960px) {
  .p-in__title-word {
    font-size: 4rem;
    letter-spacing: 0.2rem;
  }
}
.is-load .p-in__title-word {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1.4s var(--ease_inout), transform 2.2s var(--ease_out);
}
.is-load .p-in__title-word:nth-child(1) {
  transition-delay: 0.5s, 0.5s;
}
.is-load .p-in__title-word:nth-child(2) {
  transition-delay: 0.55s, 0.55s;
}
.is-load .p-in__title-word:nth-child(3) {
  transition-delay: 0.6s, 0.6s;
}
.is-load .p-in__title-word:nth-child(4) {
  transition-delay: 0.65s, 0.65s;
}
.is-load .p-in__title-word:nth-child(5) {
  transition-delay: 0.7s, 0.7s;
}
.is-load .p-in__title-word:nth-child(6) {
  transition-delay: 0.75s, 0.75s;
}
.is-load .p-in__title-word:nth-child(7) {
  transition-delay: 0.8s, 0.8s;
}
.is-load .p-in__title-word:nth-child(8) {
  transition-delay: 0.85s, 0.85s;
}
.is-load .p-in__title-word:nth-child(9) {
  transition-delay: 0.9s, 0.9s;
}
.is-load .p-in__title-word:nth-child(10) {
  transition-delay: 0.95s, 0.95s;
}
.is-load .p-in__title-word:nth-child(11) {
  transition-delay: 1s, 1s;
}
.is-load .p-in__title-word:nth-child(12) {
  transition-delay: 1.05s, 1.05s;
}
.is-load .p-in__title-word:nth-child(13) {
  transition-delay: 1.1s, 1.1s;
}
.is-load .p-in__title-word:nth-child(14) {
  transition-delay: 1.15s, 1.15s;
}
.is-load .p-in__title-word:nth-child(15) {
  transition-delay: 1.2s, 1.2s;
}
.is-load .p-in__title-word:nth-child(16) {
  transition-delay: 1.25s, 1.25s;
}
.is-load .p-in__title-word:nth-child(17) {
  transition-delay: 1.3s, 1.3s;
}
.is-load .p-in__title-word:nth-child(18) {
  transition-delay: 1.35s, 1.35s;
}
.is-load .p-in__title-word:nth-child(19) {
  transition-delay: 1.4s, 1.4s;
}
.is-load .p-in__title-word:nth-child(20) {
  transition-delay: 1.45s, 1.45s;
}
.p-in__inner {
  display: block;
  position: relative;
  z-index: 0;
}

.u-text-indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.u-ta-center {
  text-align: center !important;
}

.u-display-block {
  display: block !important;
}

.u-display-inline-block {
  display: inline-block !important;
}

.u-ta-left {
  text-align: left !important;
}

.u-ta-right {
  text-align: right !important;
}

.u-fw-lighter {
  font-weight: lighter !important;
}

.u-fw-normal {
  font-weight: normal !important;
}

.u-fw-bold {
  font-weight: bold !important;
}

.u-fs-1 {
  font-size: 0.1em;
}

.u-fs-2 {
  font-size: 0.2em;
}

.u-fs-3 {
  font-size: 0.3em;
}

.u-fs-4 {
  font-size: 0.4em;
}

.u-fs-5 {
  font-size: 0.5em;
}

.u-fs-6 {
  font-size: 0.6em;
}

.u-fs-7 {
  font-size: 0.7em;
}

.u-fs-8 {
  font-size: 0.8em;
}

.u-fs-9 {
  font-size: 0.9em;
}

.u-fs-10 {
  font-size: 1em;
}

.u-fs-11 {
  font-size: 1.1em;
}

.u-fs-12 {
  font-size: 1.2em;
}

.u-fs-13 {
  font-size: 1.3em;
}

.u-fs-14 {
  font-size: 1.4em;
}

.u-fs-15 {
  font-size: 1.5em;
}

.u-fs-16 {
  font-size: 1.6em;
}

.u-fs-17 {
  font-size: 1.7em;
}

.u-fs-18 {
  font-size: 1.8em;
}

.u-fs-19 {
  font-size: 1.9em;
}

.u-fs-20 {
  font-size: 2em;
}

.u-color-white {
  color: var(--color-white);
}

.u-color-black {
  color: var(--color-black);
}

.u-lazy {
  min-height: 10rem;
  opacity: 0;
}
.u-lazy.is-lazy-loaded {
  opacity: 1;
  min-height: auto;
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.u-lazy__loader {
  height: 4rem;
  width: 4rem;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 25;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader {
  display: block;
}
.u-lazy__loader::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top: 2px solid var(--color-black);
  pointer-events: none;
}
.is-lazy-loading + .u-lazy__loader::before {
  content: "";
  animation: rotate 0.6s linear infinite;
}

[data-modal] {
  cursor: pointer;
}

template {
  display: none;
}

.m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100%;
  overflow: auto;
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
  overscroll-behavior-y: none;
  outline: none;
  opacity: 0;
  transition: all 0.8s var(--ease_out);
}
.m-modal.is-open {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
  opacity: 1;
}
.m-modal.is-load-start {
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
.m-modal.is-close {
  visibility: hidden;
  touch-action: none;
  pointer-events: none;
}
.m-modal__container {
  width: 100%;
  min-height: var(--svh);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 3% 0;
  z-index: 0;
  background: var(--color-brown-base);
  -webkit-mask: url("../img/mask_area1.png") no-repeat 50% 100%/110% 1500%;
  mask: url("../img/mask_area1.png") no-repeat 50% 100%/110% 1500%;
  opacity: 0;
  transition: opacity 0.8s var(--ease_out);
}
@media screen and (orientation: portrait) {
  .m-modal__container {
    padding: 5% 0;
  }
}
@media screen and (max-width: 960px) {
  .m-modal__container {
    -webkit-mask-size: 200% 1500%;
    mask-size: 200% 1500%;
  }
}
.is-open .m-modal__container {
  opacity: 1;
  transition: opacity 0 var(--ease_out);
  animation: mask 1s steps(14, end);
}
.m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: -1;
}
.m-modal__content {
  width: 100%;
  height: auto !important;
  display: block;
  position: relative;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1);
}
@media screen and (max-width: 960px) {
  .m-modal__content {
    width: 90%;
  }
}
[data-modal-type=youtube] .m-modal__content {
  width: 90%;
  max-width: min(153vh, 1600px);
}
@media screen and (max-width: 960px) {
  [data-modal-type=youtube] .m-modal__content {
    width: 100%;
    max-width: min(153vh, 750px);
  }
}
[data-modal-type=youtube] .m-modal__content::before {
  content: "";
  width: calc(100% + 2.5rem);
  height: calc(100% + 2.5rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--color-gold);
  opacity: 1;
}
@media screen and (max-width: 960px) {
  [data-modal-type=youtube] .m-modal__content::before {
    border-width: 2px;
  }
}
[data-modal-type=youtube] .m-modal__content::after {
  content: "";
  width: calc(100% + 1.5rem);
  height: calc(100% + 1.5rem);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--color-gold);
}
[data-modal-type=img] .m-modal__content {
  width: 80%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.is-modal-show .m-modal__content {
  opacity: 1;
}
.is-modal-overflow-prep .m-modal__content {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 6rem auto;
}
@media screen and (max-width: 960px) {
  .is-modal-overflow-prep .m-modal__content {
    margin-top: 8rem;
  }
}
.m-modal__content > * {
  width: 100%;
  height: auto;
}
.m-modal__content > * img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  margin: 0 auto;
}
.m-modal__content-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .m-modal__content-btn {
    position: relative;
    top: auto;
    right: auto;
    width: 84%;
    height: auto;
    margin: 2rem auto 0;
  }
}
.m-modal__player {
  display: block;
  position: relative;
}
.m-modal__player-iframe {
  display: block;
  position: relative;
  padding-top: 56.25%;
}
.m-modal__player iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.m-modal__cover {
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  display: block;
  position: absolute;
  top: -2rem;
  left: -2rem;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transform: scale(1.05);
}
@media screen and (max-width: 960px) {
  .m-modal__cover {
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    top: -1rem;
    left: -1rem;
  }
}
.is-modal-show .m-modal__cover {
  opacity: 1;
  transform: scale(1.001);
  transition: transform 0.8s var(--ease_inout), opacity 0.8s var(--ease_inout);
  animation: flash 0.1s steps(1) 4 0.2s;
}
.m-modal__cover-deco {
  width: 2rem;
  height: 2rem;
  display: block;
  position: absolute;
}
@media screen and (max-width: 960px) {
  .m-modal__cover-deco {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.m-modal__cover-deco.--deco1 {
  top: 0;
  left: 0;
}
.m-modal__cover-deco.--deco2 {
  top: 0;
  right: 0;
}
.m-modal__cover-deco.--deco3 {
  bottom: 0;
  right: 0;
}
.m-modal__cover-deco.--deco4 {
  bottom: 0;
  left: 0;
}
.m-modal__cover-deco::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.m-modal__cover-deco.--deco1::before {
  border-top: 0.1rem solid var(--color-white);
  border-left: 0.1rem solid var(--color-white);
}

.m-modal__cover-deco.--deco2::before {
  border-top: 0.1rem solid var(--color-white);
  border-right: 0.1rem solid var(--color-white);
}

.m-modal__cover-deco.--deco3::before {
  border-bottom: 0.1rem solid var(--color-white);
  border-right: 0.1rem solid var(--color-white);
}

.m-modal__cover-deco.--deco4::before {
  border-bottom: 0.1rem solid var(--color-white);
  border-left: 0.1rem solid var(--color-white);
}

.m-modal__close {
  width: 8rem;
  height: 8rem;
  display: block;
  position: fixed;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .m-modal__close {
    width: 5rem;
    height: 5rem;
    top: 1rem;
    right: 1rem;
  }
}
.m-modal__close::before {
  content: "";
  width: 75%;
  height: 75%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 3px solid var(--color-gold);
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .m-modal__close::before {
    border-width: 0.2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close::before {
    transition: opacity 0.2s var(--ease_out);
  }
  .m-modal__close:hover::before {
    opacity: 0.5;
  }
}
.m-modal__close::after {
  content: "";
  width: 60%;
  height: 60%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid var(--color-gold);
}
@media (hover: hover) and (pointer: fine) {
  .m-modal__close::after {
    transition: opacity 0.2s var(--ease_out);
    opacity: 1;
  }
  .m-modal__close:hover::after {
    opacity: 0.5;
  }
}
.m-modal__close-text {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
}
.m-modal__close-text::before {
  content: "";
  width: 50%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--color-gold);
  z-index: 1;
  border-radius: 20rem;
}
.m-modal__close-text::after {
  content: "";
  width: 50%;
  height: 1px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: var(--color-gold);
  z-index: 1;
  border-radius: 20rem;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes arrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, 0);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, 0);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, 0);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes arrow_prev {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, 0) scale(-1, 1);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, 0) scale(-1, 1);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(-1, 1);
  }
}
@keyframes arrow_centerY {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes arrow_centerY_prev {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  25% {
    opacity: 0;
    transform: translate(-1rem, -50%);
  }
  26% {
    opacity: 0;
    transform: translate(1rem, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(1rem, -50%);
    animation-timing-function: cubic-bezier(0.5, 1, 0.89, 1);
  }
  75% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  100% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
@keyframes skeleton_screen {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes mask {
  0% {
    -webkit-mask-position: 50% 0;
    mask-position: 50% 0;
  }
  100% {
    -webkit-mask-position: 50% 100%;
    mask-position: 50% 100%;
  }
}


.site {
  display: flex;
  margin: -25px 0 20px;
}

@media screen and (max-width: 960px) {
  .site {
    width: 80%;
    justify-content: center;
    margin: 0 auto 40px;
  }
}

.site li img {
  width: 100px;
  transition: opacity 0.8s var(--ease_out);
}

.site li img:hover {
  width: 100px;
  opacity: 0.4;
}

.site li:first-child {
  border-right: var(--color-brown) solid 1px;
  margin-right: 15px;
  padding-right: 15px;
}