@charset "UTF-8";
html {
  line-height: 1;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  border-width: 0;
  border-style: solid;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-weight: 400;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  clear: both;
  height: 0;
  overflow: visible;
  margin: 0;
  border-top-width: 1px;
  color: inherit;
  box-sizing: content-box;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 100%;
}

sub,
sup {
  position: relative;
  line-height: 0;
  vertical-align: baseline;
  font-size: 75%;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  -webkit-appearance: none;
  appearance: none;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  font-weight: bold;
  text-align: left;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.arial {
  font-family: "Arial", "メイリオ";
}

.img-wrap {
  max-width: fit-content;
  width: 100%;
}
.img-wrap img {
  width: 100%;
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-f {
    display: flex !important;
  }
}

:root {
  --header-height: 80px;
}
@media screen and (max-width: 767px) {
  :root {
    --header-height: 53px;
  }
}

*[data-scroll=fade-up] {
  transform: translateY(20px);
  opacity: 0;
}
*.fade-up {
  animation: fadeup 1.5s forwards;
}
@keyframes fadeup {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*[data-scroll=fade-in] {
  opacity: 0;
}
*.fade-in {
  animation: fade-in 1.5s forwards;
}
@keyframes fade-in {
  100% {
    opacity: 1;
  }
}

html {
  overflow: visible;
  height: 100%;
}

body {
  overflow: hidden;
  height: 100%;
}

#page-wrapper .header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  height: var(--header-height);
  width: 100%;
  transition: background 0.3s 0.3s;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .header {
    background: #fff;
  }
}
#page-wrapper .header.is-active {
  background: #fff;
}
#page-wrapper .header__inner {
  height: 100%;
  padding: 0 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .header__right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
#page-wrapper .menu {
  display: none;
}
@media screen and (max-width: 768px) {
  #page-wrapper .menu {
    display: block;
    height: calc(100% - var(--header-height));
    width: 100%;
    position: fixed;
    top: var(--header-height);
    left: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
}
#page-wrapper .menu.is-active {
  opacity: 1;
  visibility: visible;
}
#page-wrapper .menu__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  height: 100%;
  width: 100%;
}
#page-wrapper .menu__list {
  width: 100%;
}
#page-wrapper .menu__item {
  border-bottom: solid 2px #fff;
}
#page-wrapper .menu__item:first-child {
  border-top: solid 2px #fff;
}
#page-wrapper .menu__link {
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 900;
  padding: 25px 0;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0em;
}
#page-wrapper .menu .front-text {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
  padding-left: 30px;
  color: #fff;
  position: relative;
}
#page-wrapper .menu .front-text::after {
  content: "";
  height: auto;
  width: 12px;
  aspect-ratio: 16/8;
  -webkit-mask-image: url(../img/left-arrow.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/left-arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
#page-wrapper .hamburger {
  display: none;
  height: auto;
  width: 25px;
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  #page-wrapper .hamburger {
    display: block;
  }
}
#page-wrapper .hamburger.is-active .hamburger__line--first {
  top: 50%;
  rotate: 45deg;
}
#page-wrapper .hamburger.is-active .hamburger__line--second {
  top: 50%;
  rotate: -45deg;
}
#page-wrapper .hamburger__inner {
  position: relative;
  height: 9px;
  width: 100%;
}
#page-wrapper .hamburger__line {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #000;
  transition: all 0.3s;
}
#page-wrapper .hamburger__line--first {
  top: 0;
}
#page-wrapper .hamburger__line--second {
  top: 100%;
}
#page-wrapper .logo {
  display: block;
  max-width: 120px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .logo {
    max-width: 60px;
  }
}
#page-wrapper .language {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 30px;
  width: 101px;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .language {
    height: 24px;
    width: 81px;
  }
}
#page-wrapper .language__button {
  height: 100%;
  width: 100%;
  display: flex;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
  justify-content: center;
  align-items: center;
  color: #191919;
  background: #ebebeb;
}
@media screen and (max-width: 767px) {
  #page-wrapper .language__button {
    font-size: 10px;
  }
}
#page-wrapper .language__button--jp {
  border-radius: 15px 0 0 15px;
}
#page-wrapper .language__button--en {
  border-radius: 0 15px 15px 0;
}
#page-wrapper .language__button.is-active {
  color: #ebebeb;
  background: #191919;
}
#page-wrapper .fv {
  z-index: 90;
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: fixed;
  transition: opacity 0.3s 0.3s ease-in-out, visibility 0.3s 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #page-wrapper .fv {
    padding-top: var(--header-height);
    height: 100dvh;
    background: #fff;
  }
}
#page-wrapper .fv.is-active {
  opacity: 1;
  visibility: visible;
}
#page-wrapper .fv::after {
  content: "";
  z-index: 5;
  position: absolute;
  right: 78%;
  bottom: 0;
  translate: 0 22%;
  -webkit-mask-image: url(../img/first_item-bg.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/first_item-bg.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #595959;
  height: auto;
  width: 15.1388888889%;
  aspect-ratio: 218/279;
}
@media screen and (max-width: 500px) {
  #page-wrapper .fv::after {
    width: 21.7333333333%;
    right: 75%;
    top: 15%;
    bottom: auto;
    background-color: #595959;
  }
}
#page-wrapper .fv__wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
#page-wrapper .fv__top {
  position: relative;
  z-index: 5;
  max-height: 78.125vh;
  display: flex;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__top {
    flex-direction: column-reverse;
    justify-content: flex-end;
    max-height: calc(100% - 56px - 40px);
  }
}
#page-wrapper .fv__left {
  background: #fff;
  width: 43.0555555556%;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__left {
    position: relative;
    z-index: 5;
    margin-top: -8vw;
    height: 100%;
    width: 100%;
    background: #000;
  }
}
#page-wrapper .fv__contents {
  max-height: 71.875%;
  height: 100%;
  overflow-y: auto;
  width: 100%;
  background: #000;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__contents {
    max-height: 100%;
    margin-bottom: auto;
  }
}
#page-wrapper .fv__inner {
  width: 71.7741935484%;
  margin: 0 auto;
  color: #ebebeb;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__inner {
    width: 90%;
  }
}
#page-wrapper .fv__right {
  background: #000;
  width: 56.9444444444%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__right {
    width: 32%;
    margin-left: auto;
    position: relative;
    z-index: 10;
  }
}
@media screen and (max-width: 767px) and (min-height: 700px) {
  #page-wrapper .fv__right {
    width: 60%;
  }
}
#page-wrapper .fv__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-wrapper .fv__title {
  font-size: clamp(1.75rem, 0.893rem + 1.79vw, 2.5rem);
  line-height: 1.1;
  margin-top: 3.90625vw;
  margin-bottom: 1em;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__title {
    margin-top: 14vw;
    font-size: 23px;
    margin-bottom: 10px;
  }
}
#page-wrapper .fv__title-first {
  display: block;
  font-size: clamp(0.875rem, 0.446rem + 0.89vw, 1.25rem);
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__title-first {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
#page-wrapper .fv__text {
  line-height: 2;
  font-size: clamp(0.75rem, 0.607rem + 0.3vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__text {
    font-size: 13px;
    line-height: 1.8461538462;
    letter-spacing: 0em;
  }
}
#page-wrapper .fv__bottom {
  position: relative;
  z-index: 3;
  max-height: 21.875vh;
  height: 100%;
  width: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__bottom {
    max-height: 96px;
  }
}
#page-wrapper .fv__enter-btn {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 112px;
  max-height: 7.8vw;
  width: 48.75%;
  max-width: 702px;
  color: #c8102e;
  background: #fff;
  border: solid 5px #c8102e;
  font-weight: 900;
  transition: all 0.3s;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__enter-btn {
    height: 56px;
    max-height: 56px;
    font-size: 15px;
    border-width: 3px;
  }
}
@media (hover) {
  #page-wrapper .fv__enter-btn:hover {
    color: #fff;
    background: #c8102e;
  }
  #page-wrapper .fv__enter-btn:hover::after {
    background-color: #fff;
  }
}
#page-wrapper .fv__enter-btn::after {
  content: "";
  width: 34px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 40px;
  translate: 0 -50%;
  -webkit-mask-image: url(../img/enter.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/enter.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #c8102e;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  #page-wrapper .fv__enter-btn::after {
    width: 15px;
    right: 30px;
  }
}
#page-wrapper .scroll-area {
  position: relative;
}
#page-wrapper .scroll-section-title {
  position: relative;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.25;
  letter-spacing: 0em;
}
@media screen and (max-width: 1300px) {
  #page-wrapper .scroll-section-title {
    font-size: 44px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 767px) {
  #page-wrapper .scroll-section-title {
    font-size: 42px;
    line-height: 1.1428571429;
    letter-spacing: 0em;
  }
}
#page-wrapper .scroll-section-title img {
  width: 42px;
  margin-left: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .scroll-section-title img {
    width: 30px;
  }
}
#page-wrapper .scroll-section-title.white {
  color: #fff;
}
#page-wrapper .scroll-section-title__mini {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .scroll-section-title__mini {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0em;
  }
}
#page-wrapper .left-nav {
  position: fixed;
  top: calc(var(--header-height) + 70px);
  left: 3.4722222222vw;
  z-index: 10;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (max-width: 1440px) {
  #page-wrapper .left-nav {
    top: calc(var(--header-height) + 50px);
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  #page-wrapper .left-nav {
    display: none;
  }
}
#page-wrapper .left-nav.is-hidden {
  opacity: 0;
  visibility: hidden;
}
#page-wrapper .left-nav__list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.089rem + 1.49vw, 1.25rem);
  margin-bottom: clamp(0.938rem, 0.223rem + 1.49vw, 1.563rem);
}
#page-wrapper .left-nav__map {
  max-width: clamp(6.25rem, 3.321rem + 6.1vw, 8.813rem);
  transition: opacity 0.3s, visibility 0.3s;
}
#page-wrapper .left-nav__map.is-active {
  opacity: 0;
  visibility: hidden;
}
#page-wrapper .left-nav__link {
  display: block;
  width: fit-content;
  font-size: clamp(0.75rem, 0.179rem + 1.19vw, 1.25rem);
  padding: 0.8em 0.9em;
  font-weight: bold;
  border: solid 0.2em #000;
  background: #fff;
  transition: color 0.3s, background 0.3s;
}
#page-wrapper .left-nav__link.is-active {
  background: #000;
  color: #fff;
}
#page-wrapper .left-nav__front {
  margin-bottom: clamp(2.5rem, 0rem + 5.21vw, 4.688rem);
}
#page-wrapper .left-nav__front-text {
  font-weight: 700;
  font-size: clamp(0.75rem, 0.464rem + 0.6vw, 1rem);
  padding-left: 30px;
  position: relative;
}
#page-wrapper .left-nav__front-text.is-active {
  color: #fff;
}
#page-wrapper .left-nav__front-text.is-active::after {
  background-color: #fff;
}
#page-wrapper .left-nav__front-text::after {
  content: "";
  height: auto;
  width: 16px;
  aspect-ratio: 16/8;
  -webkit-mask-image: url(../img/left-arrow.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/left-arrow.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
#page-wrapper .innovation {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .innovation {
    flex-direction: column;
  }
}
#page-wrapper .innovation__vert {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: calc(var(--header-height) + 30px);
  left: 0;
  font-size: 128px;
  line-height: 0.625;
  letter-spacing: 0em;
  color: #000;
  font-weight: 900;
  z-index: 5;
}
#page-wrapper .innovation__text {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 2.1333333333;
  letter-spacing: 0em;
}
@media screen and (max-width: 1440px) {
  #page-wrapper .innovation__text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1440px) and (max-width: 767px) {
  #page-wrapper .innovation__text {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
#page-wrapper .innovation__left {
  top: 0;
  position: sticky;
  height: 100vh;
  width: 66.6666666667%;
  clip-path: inset(0 0 0 0);
}
@media screen and (max-width: 1024px) {
  #page-wrapper .innovation__left {
    width: 55%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  #page-wrapper .innovation__left {
    height: auto;
    position: relative;
    width: 100%;
  }
}
#page-wrapper .innovation__left::after {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  width: 100%;
  height: 100vh;
  background-image: url(../img/innovation_left-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#page-wrapper .innovation__inner {
  width: 35.4166666667vw;
  margin-left: auto;
  padding-top: calc(var(--header-height) + 70px);
  margin-right: 4.1666666667vw;
}
@media screen and (max-width: 1440px) {
  #page-wrapper .innovation__inner {
    padding-top: calc(var(--header-height) + 50px);
  }
}
@media screen and (max-width: 1440px) and (max-width: 1024px) {
  #page-wrapper .innovation__inner {
    margin-right: auto;
    width: 90%;
    padding-bottom: 50px;
  }
}
#page-wrapper .innovation__right {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 50px;
  color: #fff;
  background: #1f1f1f;
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .innovation__right {
    width: 45%;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  #page-wrapper .innovation__right {
    padding-top: 50px;
    width: 100%;
  }
}
#page-wrapper .innovation__right-wrap {
  position: relative;
  z-index: 10;
}
#page-wrapper .innovation__sub-title {
  width: fit-content;
  margin-inline: auto;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .innovation__sub-title {
    font-size: 19px;
    line-height: 1.4736842105;
    letter-spacing: 0.04em;
  }
}
#page-wrapper .innovation__first-text {
  position: relative;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .innovation__first-text {
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.04em;
    padding-bottom: 15px;
  }
}
#page-wrapper .innovation__first-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  height: 3px;
  width: 50px;
  background: #c8102e;
}
@media screen and (max-width: 767px) {
  #page-wrapper .innovation__first-text::after {
    height: 2px;
    width: 40px;
  }
}
#page-wrapper .product {
  padding-left: 12.5%;
  padding-right: 12.5%;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .product {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1024px) {
  #page-wrapper .product {
    padding: 0;
    width: 90%;
    margin: 0 auto;
  }
}
#page-wrapper .product__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#page-wrapper .product .item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .product .item {
    gap: 15px;
  }
}
@media (hover) {
  #page-wrapper .product .item:hover {
    opacity: 0.7;
  }
}
#page-wrapper .product .item__left {
  width: 100%;
  max-width: 100%;
}
#page-wrapper .product .item__right {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
#page-wrapper .product .item__content {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
#page-wrapper .product .item__plus-img {
  width: 16px;
  height: auto;
  aspect-ratio: 16/18;
}
#page-wrapper .product .item__name {
  margin-top: 5px;
  display: block;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.04em;
}
#page-wrapper .analog {
  clip-path: inset(0 0 0 0);
  padding-top: calc(var(--header-height) + 80px);
  background-color: #333;
  padding-bottom: 185px;
}
@media screen and (max-width: 1100px) {
  #page-wrapper .analog {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1100px) and (max-width: 767px) {
  #page-wrapper .analog {
    padding-top: 50px;
  }
}
#page-wrapper .analog::after {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/analog-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
}
#page-wrapper .analog__inner {
  margin-left: auto;
  padding-right: 3.4722222222vw;
  width: calc(35.4166666667vw + 4.1666666667vw + 33.3333333333%);
}
@media screen and (max-width: 1024px) {
  #page-wrapper .analog__inner {
    padding-right: 0;
    width: 90%;
    margin: 0 auto;
  }
}
#page-wrapper .analog__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4.8611111111vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .analog__top {
    flex-direction: column;
    margin: 0 auto 65px;
    gap: 20px;
  }
}
#page-wrapper .analog__left {
  width: 35.4166666667vw;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .analog__left {
    width: 100%;
  }
}
#page-wrapper .analog__right {
  width: 31.25vw;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .analog__right {
    width: 100%;
  }
}
#page-wrapper .analog__right-img {
  max-width: 100%;
}
#page-wrapper .analog__text {
  font-size: 15px;
  line-height: 2.3333333333;
  letter-spacing: 0em;
  margin-top: 50px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #page-wrapper .analog__text {
    margin-top: 30px;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0em;
  }
}
#page-wrapper .process__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7777777778%;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .process__list {
    gap: 1.3888888889%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  #page-wrapper .process__list {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
#page-wrapper .process__cap {
  font-weight: bold;
  color: #000;
  background: #fff;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0em;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  translate: -50%;
  padding: 8px 15px;
  bottom: 15px;
}
#page-wrapper .process__item {
  width: 100%;
  color: #fff;
  background: #000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#page-wrapper .process__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: auto;
}
#page-wrapper .process__top {
  margin: -10px auto 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .process__top {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  #page-wrapper .process__top {
    width: 90%;
    flex-direction: row;
    margin-bottom: 30px;
    gap: 40px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) and (max-width: 500px) {
  #page-wrapper .process__top {
    gap: 20px;
  }
}
#page-wrapper .process__top-text {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.09em;
  margin-top: 15px;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .process__top-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  #page-wrapper .process__top-text {
    font-size: 14px;
  }
}
#page-wrapper .process__top-img {
  max-width: 79px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .process__top-img {
    max-width: 50px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  #page-wrapper .process__top-img {
    max-width: 70px;
  }
}
#page-wrapper .process__top-title {
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #7d7d7d;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .process__top-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  #page-wrapper .process__top-title {
    font-size: 14px;
  }
}
#page-wrapper .process__text {
  font-size: 14px;
  line-height: 1.7857142857;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .process__text {
    margin-top: 30px;
    font-size: 11px;
    line-height: 1.8181818182;
    letter-spacing: 0em;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  #page-wrapper .process__text {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0em;
    margin-top: 50px;
    text-align: left;
  }
}
#page-wrapper .process__img {
  position: relative;
  max-width: 100%;
}
#page-wrapper .process__img .plus {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  background: #c8102e;
  max-width: 62px;
  height: 38px;
  border: solid 4px #000;
  display: flex;
  border-radius: 17px;
  justify-content: center;
  align-items: center;
}
#page-wrapper .process__img .plus img {
  width: 16px;
}
#page-wrapper .history__top {
  background: #000;
  clip-path: inset(0 0 0 0);
  position: relative;
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 85px;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .history__top {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  #page-wrapper .history__top {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}
#page-wrapper .history__top::after {
  z-index: -1;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/history-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
#page-wrapper .history__map {
  max-width: 11.8055555556vw;
  position: absolute;
  right: 14.9305555556vw;
  top: 50%;
  translate: 0 -50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#page-wrapper .history__map.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .history__map {
    display: none;
  }
}
#page-wrapper .history__bottom {
  border-top: solid 1px #fff;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  background: #fff;
  height: 508px;
  display: flex;
}
@media screen and (max-width: 1120px) {
  #page-wrapper .history__bottom {
    height: auto;
    display: flex;
    flex-direction: column;
  }
}
#page-wrapper .history__bottom::before {
  content: "";
  background: #000;
  height: 8px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#page-wrapper .history__bottom::after {
  content: "";
  background: #000;
  height: 8px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#page-wrapper .history__left {
  width: calc(46.875% - 80px);
  background: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 1120px) {
  #page-wrapper .history__left {
    padding-right: 0;
    padding-top: 55px;
    padding-bottom: 55px;
    height: auto;
    width: 100%;
  }
}
#page-wrapper .history__left::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  background: url(../img/right-arrow.png) no-repeat;
  background-size: contain;
  width: 54px;
  height: auto;
  aspect-ratio: 54/38;
}
@media screen and (max-width: 1120px) {
  #page-wrapper .history__left::after {
    top: auto;
    bottom: 0;
    left: 50%;
    right: auto;
    rotate: 90deg;
    translate: -50% 0;
    width: 27px;
  }
}
#page-wrapper .history__left-inner {
  width: 29.5138888889vw;
}
@media screen and (max-width: 1440px) {
  #page-wrapper .history__left-inner {
    width: 90%;
  }
}
#page-wrapper .history__right {
  height: 100%;
  width: calc(53.125% + 80px);
  cursor: grab;
  overflow-x: auto;
}
@media screen and (max-width: 1120px) {
  #page-wrapper .history__right {
    height: 340px;
    width: 100%;
  }
}
#page-wrapper .history__right img {
  height: 100%;
  width: auto;
  margin-left: -40px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .history__right img {
    margin-left: -25px;
  }
}
#page-wrapper .history__right .scroll-hint-icon-wrap .scroll-hint-icon {
  background: none;
  width: auto;
  height: auto;
  top: auto;
  left: 15px;
  bottom: 25px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .history__right .scroll-hint-icon-wrap .scroll-hint-icon {
    left: 8px;
  }
}
#page-wrapper .history__right .scroll-hint-icon-wrap .scroll-hint-icon::before {
  height: auto;
  width: 90px;
  aspect-ratio: 90/45;
  background: url(../img/swipe.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  #page-wrapper .history__right .scroll-hint-icon-wrap .scroll-hint-icon::before {
    width: 60px;
  }
}
#page-wrapper .history__sub-title {
  font-size: clamp(1.25rem, 0.375rem + 1.25vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-weight: bold;
  margin-bottom: 1.75em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .history__sub-title {
    font-size: 19px;
    line-height: 1.4736842105;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }
}
#page-wrapper .history__sub-span {
  color: #c8102e;
}
#page-wrapper .history__sub-text {
  font-size: clamp(0.75rem, 0.536rem + 0.45vw, 0.938rem);
  line-height: 2.333;
}
@media screen and (max-width: 767px) {
  #page-wrapper .history__sub-text {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0em;
  }
}
#page-wrapper .history__inner {
  margin-left: auto;
  padding-right: 3.4722222222vw;
  width: calc(35.4166666667vw + 4.1666666667vw + 33.3333333333%);
}
@media screen and (max-width: 1024px) {
  #page-wrapper .history__inner {
    margin-right: auto;
    padding-right: 0;
    width: 90%;
  }
}
#page-wrapper .history__contents {
  width: 35.4166666667vw;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .history__contents {
    width: 100%;
  }
}
#page-wrapper .history__img {
  margin-top: 30px;
  max-width: 100%;
}
#page-wrapper .swiper-container .swiper {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper1 .img-wrap {
    height: 60vh;
    max-width: 100%;
    overflow-x: auto;
  }
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper1 .img-wrap img {
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper3 {
    max-height: 90dvh;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide {
  background: #000;
  border: solid #fff 3px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide {
    flex-direction: column;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left {
  width: 52%; /*コレ*/
  display: flex;
  align-items: stretch;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left {
    width: 100%;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-top {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-top .img-wrap {
  max-width: 60px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-top .img-wrap {
    max-width: 50px;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-top .title {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.09em;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-top .title {
    font-size: 16px;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-top .title span {
  margin-left: 10px;
  color: #7d7d7d;
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom {
  height: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom {
    height: auto;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner {
  padding: 30px 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner {
    padding: 15px 20px;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner .title {
  text-align: left;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: bold;
  color: #7d7d7d;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner .title {
    font-size: 18px;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner .title ruby rt {
  font-weight: 500;
  font-size: 12px;
  line-height: 2.25;
  letter-spacing: 0em;
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner .text {
  font-size: 14px;
  line-height: 1.9285714286;
  letter-spacing: 0em;
  text-align: left;
}
@media screen and (max-width: 1200px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .left-bottom__inner .text {
    font-size: 12px;
  }
}
#page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper.swiper3 .swiper-slide .right {
    width: 100%;
  }
}
#page-wrapper .swiper-container .swiper-wrapper {
  background: #000;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
#page-wrapper .swiper-container .swiper-button-prev {
  rotate: 180deg;
  left: 0;
  translate: -150%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper-button-prev {
    translate: -100%;
  }
}
#page-wrapper .swiper-container .swiper-button-next {
  right: 0;
  translate: 150%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper-button-next {
    translate: 100%;
  }
}
#page-wrapper .swiper-container .swiper-button-disabled {
  display: none;
}
#page-wrapper .swiper-container .swiper-button-prev, #page-wrapper .swiper-container .swiper-button-next {
  height: auto;
  width: 40px;
  aspect-ratio: 1;
}
#page-wrapper .swiper-container .swiper-button-prev::after, #page-wrapper .swiper-container .swiper-button-next::after {
  display: none;
}
#page-wrapper .swiper-container .swiper-button-prev img, #page-wrapper .swiper-container .swiper-button-next img {
  width: 100%;
}
#page-wrapper .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper-slide {
    gap: 15px;
  }
}
#page-wrapper .swiper-container .swiper-slide .img-wrap {
  max-width: 100%;
}
#page-wrapper .swiper-container .swiper-slide .caption {
  color: #fff;
  text-align: left;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .swiper-container .swiper-slide .caption {
    font-size: 14px;
  }
}
#page-wrapper .popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
#page-wrapper .popup.is-active {
  opacity: 1;
  visibility: visible;
}
#page-wrapper .popup__close-btn::after, #page-wrapper .popup__close-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 3px;
  content: "";
  background: #fff;
  translate: -50% -50%;
}

#page-wrapper .popup__close-btn {
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: -30px;
  border-radius: 9999px;
  height: auto;
  width: 35px;
  aspect-ratio: 1/1;
}
#page-wrapper .popup__close-btn::before {
  rotate: 45deg;
}
#page-wrapper .popup__close-btn::after {
  rotate: -45deg;
}
#page-wrapper .popup__overlay {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
}
#page-wrapper .popup__inner {
  width: 55.5555555556%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (max-width: 767px) {
  #page-wrapper .popup__inner {
    width: 80%;
  }
}
#page-wrapper .popup__inner.clicks {
  width: 70%;
}
#page-wrapper .click__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #000;
}
#page-wrapper .click__item {
  max-width: 20%;
  width: 100%;
  height: auto;
  aspect-ratio: 288/160;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #page-wrapper .click__item {
    max-width: 50%;
  }
}
#page-wrapper .click__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#page-wrapper .museum {
  padding: 60px 0 85px;
  background: url(../img/museum.jpg);
}
@media screen and (max-width: 767px) {
  #page-wrapper .museum {
    padding: 50px 0;
  }
}
#page-wrapper .museum__inner {
  width: 72.2916666667%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page-wrapper .museum__inner {
    width: 90%;
  }
}
#page-wrapper .museum iframe {
  display: block;
  width: 100%;
  height: 100%;
}
#page-wrapper .museum__text {
  color: #fff;
}
#page-wrapper .museum__text i {
  font-style: normal;
  display: block;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
#page-wrapper .museum__text span {
  padding-left: 1em;
  text-indent: -1em;
  display: block;
  font-size: 13px;
  line-height: 1.6153846154;
  letter-spacing: 0em;
}
#page-wrapper .museum__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #fff;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .museum__title {
    margin-bottom: 30px;
    font-size: 19px;
  }
}
#page-wrapper .museum__mini {
  color: #7a7a7a;
  display: block;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .museum__mini {
    font-size: 12px;
  }
}
#page-wrapper .museum__frame-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1041/585;
  background: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .museum__frame-wrap {
    margin-bottom: 20px;
    aspect-ratio: 71/80;
  }
}
#page-wrapper .museum__nav {
  display: flex;
  justify-content: center;
}
#page-wrapper .museum__nav-item:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: solid 1px #7a7a7a;
}
#page-wrapper .museum__nav-link {
  color: #7a7a7a;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .museum__nav-link {
    font-size: 10px;
  }
}
#page-wrapper .footer {
  padding: 70px 50px;
  color: #fff;
  background: #000;
}
@media screen and (max-width: 767px) {
  #page-wrapper .footer {
    padding: 50px 5% 25px;
  }
}
#page-wrapper .footer__title {
  font-weight: bold;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0em;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  gap: 6px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .footer__title {
    font-size: 27px;
    margin-bottom: 30px;
  }
}
#page-wrapper .footer__info-img {
  width: 28px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .footer__info-img {
    width: 24px;
  }
}
#page-wrapper .footer__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .footer__list {
    flex-direction: column;
    gap: 25px;
  }
}
#page-wrapper .footer__item-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .footer__item-title {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0em;
  }
}
#page-wrapper .footer__item-title--center {
  text-align: center;
}
#page-wrapper .footer__item-text {
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  #page-wrapper .footer__item-text {
    font-size: 12px;
    line-height: 2.1666666667;
    letter-spacing: 0em;
  }
}
#page-wrapper .footer__item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
  width: 23.8194444444vw;
  height: 56px;
  min-width: 100%;
  font-weight: bold;
  border: solid 2px #d9d9d9;
  border-radius: 5px;
  margin-bottom: 10px;
  transition: border 0.3s, color 0.3s, background 0.3s;
}
@media (hover) {
  #page-wrapper .footer__item-button:hover {
    border: solid 2px #fff;
    background: #fff;
    color: #000;
  }
}
#page-wrapper .footer__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  #page-wrapper .footer__bottom {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  #page-wrapper .footer__bottom {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }
}
#page-wrapper .footer__bottom-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#page-wrapper .footer__bottom-center {
  text-align: center;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 1024px) {
  #page-wrapper .footer__bottom-center {
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  #page-wrapper .footer__bottom-empty {
    display: none;
  }
}
#page-wrapper .footer__bottom-item:not(:last-child) {
  margin-right: 18px;
  padding-right: 18px;
  border-right: 1px solid #fff;
}
#page-wrapper .footer__bottom-link {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
}
#page-wrapper .sns {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .sns {
    margin-bottom: 40px;
  }
}
#page-wrapper .sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  #page-wrapper .sns__list {
    gap: 30px;
  }
}
#page-wrapper .sns__item {
  width: 35px;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page-wrapper .sns__item {
    width: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
