@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600&display=swap');
@font-face {
  font-family: "GTHaptik";
  src: url("../fonts/GT-Haptik-Black-2.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
    font-family: "GTHaptik";
    src: url("../fonts/GT-Haptik-Medium-2.woff") format('woff');
    font-weight: 500;
    font-style: normal;
}

html, body {
	margin: 0;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  background: #f4f4f4;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: .5s;
}
a:hover {
  opacity: .5!important;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none!important;
  }
    :root {
    --width: 1400;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
  :root {
    --width: 375;
  }
}

/*------------
  common
------------*/

.fade {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}
.fade-delay {
  transform: translateY(50px);
  opacity: 0;
  transition: 1s;
}
.fade.in {
  transform: translateY(0);
  opacity: 1;
}

/*------------
  header
------------*/

header {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  padding: calc((var(--width) / 1400) * 35px) calc((var(--width) / 1400) * 40px);
  background: #f7f3ed;
  transition: .5s;
}
header.scroll,
header.active {
  transform: translateY(0);
}
.header-logo {
  position: relative;
  z-index: 999;
  height: calc((var(--width) / 1400) * 64px);
}
.header-logo img {
  width: auto;
  height: 100%;
}
.header-ttl {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: min(calc((var(--width) / 1400) * 38px), 38px);
  font-weight: 100;
  font-family: "CharlevoixPro";
  letter-spacing: 2px;
}
.header-menu {
  display: flex;
}
.active .header-menu {
  display: none;
}
.header-menu p {
  display: flex;
  align-items: center;
  font-size: min(calc((var(--width) / 1400) * 28px), 28px);
  cursor: pointer;
}
.header-menu p img {
  width: auto;
  height: calc((var(--width) / 1400) * 30px);
  padding-right: calc((var(--width) / 1400) * 20px);
}
.header-menu a {
  display: flex;
  align-items: flex-start;
  margin-left: clamp(30px, 3vw, 75px);
  font-size: min(calc((var(--width) / 1400) * 30px), 30px);
  font-family: "CharlevoixPro";
  font-weight: 400;
}
.header-menu a img {
  width: calc((var(--width) / 1400) * 30px);
  padding-left: 5px;
}
.header-close {
  display: none;
  position: absolute;
  top: calc((var(--width) / 1400) * 55px);
  right: calc((var(--width) / 1400) * 45px);
  width: calc((var(--width) / 1400) * 58px);
  cursor: pointer;
}
.active .header-close {
  display: block;
}
.header-movie {
  overflow-y: scroll;
  display: none;
  position: absolute;
  z-index: 99;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f7f3ed;
}
.header-movie .movie-inner {
  width: calc((var(--width) / 1400) * 1800px);
  margin: 0 auto;
  margin-top: calc((var(--width) / 1400) * 200px);
  padding-bottom: calc((var(--width) / 1400) * 200px);
}
.header-movie .movie-ttl {
  margin-bottom: calc((var(--width) / 1400) * 160px);
  font-size: min(calc((var(--width) / 1400) * 58px), 58px);
}
.header-movie .movie-item {
  display: flex;
  margin-top: calc((var(--width) / 1400) * 35px);
}
.header-movie .movie-item .item-info {
  width: 74%;
}
.header-movie .movie-item .item-info p {
  margin-bottom: 10px;
  font-size: min(calc((var(--width) / 1400) * 78px), 78px);
  font-weight: 100;
  line-height: calc((var(--width) / 1400) * 118px);
  font-family: "CharlevoixPro";
}
.header-movie .movie-item .item-info p img {
  width: auto;
  height: calc((var(--width) / 1400) * 34px);
  padding-left: calc((var(--width) / 1400) * 30px);
  vertical-align: super;
}
.header-movie .movie-item .item-info span {
  font-size: min(calc((var(--width) / 1400) * 24px), 24px);
}
.header-movie .movie-item .item-thumb {
  position: relative;
  width: 26%;
  cursor: pointer;
}
.header-movie .movie-item .item-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  text-align: center;
  color: #fff;
}
.header-movie .movie-item .item-overlay img {
  width: calc((var(--width) / 1400) * 75px);
}
.header-movie .movie-item .item-overlay span {
  display: block;
  margin-top: calc((var(--width) / 1400) * 15px);
  font-size: min(calc((var(--width) / 1400) * 26px), 26px);
  font-family: "CharlevoixPro";
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  header {
    padding: calc((var(--width) / 375) * 25px) 5%;
  }
  .header-logo {
    height: calc((var(--width) / 375) * 45px);
  }
  .header-ttl {
    display: none;
    font-size: calc((var(--width) / 375) * 30px);
  }
  .active .header-ttl {
    display: block;
  }
  .header-menu p {
    font-size: calc((var(--width) / 375) * 24px);
  }
  .header-menu p img {
    height: calc((var(--width) / 375) * 22px);
  }
  .header-menu a {
    margin-left: calc((var(--width) / 375) * 55px);
    font-size: calc((var(--width) / 375) * 26px);
  }
  .header-menu a img {
    width: calc((var(--width) / 375) * 35px);
  }
  .header-close {
    top: calc((var(--width) / 375) * 25px);
    right: calc((var(--width) / 375) * 30px);
    width: calc((var(--width) / 375) * 42px);
  }
  .header-movie .movie-inner {
    width: 90%;
    margin: calc((var(--width) / 375) * 150px) auto;
  }
  .header-movie .movie-ttl {
    margin-bottom: calc((var(--width) / 375) * 75px);
    font-size: calc((var(--width) / 375) * 34px);
  }
  .header-movie .movie-item {
    align-items: flex-start;
    margin-top: calc((var(--width) / 375) * 80px);
  }
  .header-movie .movie-item .item-info {
    width: calc((var(--width) / 375) * 347px);
  }
  .header-movie .movie-item .item-info p {
    margin-bottom: calc((var(--width) / 375) * 25px);
    font-size: calc((var(--width) / 375) * 44px);
    line-height: calc((var(--width) / 375) * 52px);
  }
  .header-movie .movie-item .item-info p img {
    width: 13%;
    vertical-align: middle;
  }
  .header-movie .movie-item .item-info span {
    font-size: calc((var(--width) / 375) * 24px);
  }
  .header-movie .movie-item .item-thumb {
    width: calc((var(--width) / 375) * 328px);
  }
  .header-movie .movie-item .item-overlay img {
    width: calc((var(--width) / 375) * 52px);
  }
  .header-movie .movie-item .item-overlay span {
    margin-top: calc((var(--width) / 375) * 15px);
    font-size: calc((var(--width) / 375) * 22px);
  }
}


/*------------
  footer
------------*/

footer {
  margin-top: calc((var(--width) / 1400) * 235px);
}
.footer-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: calc((var(--width) / 1400) * 85px);
  padding-right: calc((var(--width) / 1400) * 85px);
}
.footer-banner a {
  width: calc(97.5% / 2);
}
.footer-banner a + a {
  margin-left: 2.5%;
}
.footer-credits {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc((var(--width) / 1400) * 153px);
  padding-left: calc((var(--width) / 1400) * 85px);
  padding-right: calc((var(--width) / 1400) * 85px);
  font-family: "GTHaptik";
  font-weight: 500;
}
.footer-box {
  width: calc(100% / 3);
  text-align: center;
}
.footer-box h3 {
  margin-bottom: calc((var(--width) / 1400) * 13px);
  font-size: min(calc((var(--width) / 1400) * 15px), 15px);
  line-height: 1.2;
  font-weight: 900;
}
.footer-box p {
  font-size: min(calc((var(--width) / 1400) * 11px), 11px);
  line-height: 1.4;
}
.footer-box a {
  display: block;
  font-size: min(calc((var(--width) / 1400) * 13px), 13px);
  line-height: 1.5;
}
.footer-copyright {
  margin-top: calc((var(--width) / 1400) * 188px);
  padding-bottom: calc((var(--width) / 1400) * 45px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 10px), 10px);
  font-weight: 500;
  line-height: 1.5;
  color: #808080;
  font-family: "GTHaptik";
}
.footer-copyright img {
  width: calc((var(--width) / 1400) * 149px);
  padding-bottom: calc((var(--width) / 1400) * 31px);
}

@media screen and (max-width: 768px) {
  footer {
    margin-top: calc((var(--width) / 375) * 113px);
  }
  .footer-banner {
    padding: 0 calc((var(--width) / 375) * 14px);
  }
  .footer-banner span {
    width: 100%;
  }
  .footer-banner a {
    width: 100%;
  }
  .footer-credits {
    display: block;
    margin-top: calc((var(--width) / 375) * 84px);
    padding: 0 calc((var(--width) / 375) * 14px);
  }
  .footer-box {
    width: 100%;
  }
  .footer-box + .footer-box {
    margin-top: calc((var(--width) / 375) * 84px);
  }
  .footer-box h3 {
    margin-bottom: calc((var(--width) / 375) * 16px);
    font-size: calc((var(--width) / 375) * 13px);
    line-height: 1.2;
  }
  .footer-box p {
    font-size: calc((var(--width) / 375) * 11px);
    line-height: 1.4;
  }
  .footer-box a {
    font-size: calc((var(--width) / 375) * 11px);
    line-height: 2.7;
  }
  .footer-banner a + a {
    margin: calc((var(--width) / 375) * 20px) 0 0;
  }
  .footer-copyright {
    margin-top: calc((var(--width) / 375) * 107px);
    padding-bottom: calc((var(--width) / 375) * 20px);
    font-size: calc((var(--width) / 375) * 10px);
  }
  .footer-copyright img {
    width: calc((var(--width) / 375) * 125px);
    padding-bottom: calc((var(--width) / 375) * 20px);
  }
}


/*------------
  main
------------*/

/*
  kv
------------*/

#kv {
  position: relative;
  height: 100vh;
  /*background: url("../img/kv_bg.jpg") no-repeat center/cover;*/
  font-family: "GTHaptik";
}
#kv .kv-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#kv .kv-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#kv .kv-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  text-align: center;
  color: #fff;
}
#kv .kv-ttl h1 {
  font-size: min(calc((var(--width) / 1400) * 149px), 149px);
  font-weight: 900;
  line-height: 0.9;
}
#kv .kv-ttl p {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: calc((var(--width) / 1400) * -112px);
  left: 50%;
  transform: translateX(-50%);
  font-size: min(calc((var(--width) / 1400) * 40px), 40px);
  font-weight: 900;
  line-height: 0.9;
  cursor: pointer;
}
#kv .kv-ttl p img {
  width: auto;
  height: calc((var(--width) / 1400) * 36px);
  margin-right: calc((var(--width) / 1400) * 7px);
}
#kv .kv-menu {
  position: absolute;
  bottom: calc((var(--width) / 1400) * 66px);
  left: calc((var(--width) / 1400) * 21px);
  font-size: min(calc((var(--width) / 1400) * 17px), 17px);
  font-weight: 900;
  line-height: 1.3;
  color: #fff;
}
#kv .kv-menu h2 {
  margin-bottom: calc((var(--width) / 1400) * 10px);
  line-height: 1.7;
}
#kv .kv-menu h2:first-line {
  line-height: 0.9;
}
#kv .kv-logo {
  position: absolute;
  top: calc((var(--width) / 1400) * 16px);
  left: calc((var(--width) / 1400) * 20px);
  height: calc((var(--width) / 1400) * 32px);
}
#kv .kv-logo img {
  width: auto;
  height: 100%;
}
#kv .kv-buy {
  display: flex;
  position: absolute;
  top: calc((var(--width) / 1400) * 12px);
  right: calc((var(--width) / 1400) * 22px);
  font-size: min(calc((var(--width) / 1400) * 17px), 17px);
  color: #fff;
  line-height: 1.4;
}
#kv .kv-buy a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: 900;
}
#kv .kv-buy a + a {
  margin-left: calc((var(--width) / 1400) * 41px);
}
#kv .kv-buy img {
  width: calc((var(--width) / 1400) * 13px);
  margin-left: calc((var(--width) / 1400) * 7px);
}

@media screen and (max-width: 768px) {
  #kv {
    background: url("../img/sp/kv_bg.jpg") no-repeat center/cover;
  }
  #kv .kv-ttl h1 {
    margin-bottom: calc((var(--width) / 375) * 47px);
    font-size: calc((var(--width) / 375) * 56px);
    letter-spacing: -0.02em;
  }
  #kv .kv-ttl h1 span {
    letter-spacing: -0.04em;
  }
  #kv .kv-ttl p {
    font-size: calc((var(--width) / 375) * 40px);
  }
  #kv .kv-ttl p img {
    height: calc((var(--width) / 375) * 36px);
    margin-right: calc((var(--width) / 375) * 7px);
  }
  #kv .kv-menu {
    bottom: calc((var(--width) / 375) * 38px);
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    text-align: center;
    font-size: calc((var(--width) / 375) * 17px);
    line-height: 2.2;
  }
  #kv .kv-menu h2 {
    margin-bottom: calc((var(--width) / 375) * 14px);
    font-size: calc((var(--width) / 375) * 12px);
    line-height: 0.9;
  }
  #kv .kv-logo {
    top: calc((var(--width) / 375) * 11px);
    left: calc((var(--width) / 375) * 15px);
    height: calc((var(--width) / 375) * 22px);
  }
  #kv .kv-buy {
    top: calc((var(--width) / 375) * 11px);
    right: calc((var(--width) / 375) * 16px);
    font-size: calc((var(--width) / 375) * 14px);
  }
  #kv .kv-buy img {
    width: calc((var(--width) / 375) * 13px);
    margin-left: calc((var(--width) / 375) * 4px);
  }
}


/*
  concept
------------*/

#concept {
  position: relative;
  background: #b2d1e2;
}
#concept .concept-txt {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  text-align: center;
}
#concept .concept-txt h2 {
  margin-bottom: calc((var(--width) / 1400) * 90px);
  font-size: min(calc((var(--width) / 1400) * 74px), 74px);
  font-weight: 900;
  line-height: 1.1;
  font-family: "GTHaptik";
}
#concept .concept-txt p {
  font-size: min(calc((var(--width) / 1400) * 19px), 19px);
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #concept .concept-txt {
    width: 100%;
  }
  #concept .concept-txt h2 {
    width: calc((var(--width) / 375) * 254px);
    margin-left: calc((var(--width) / 375) * 17px);
    margin-bottom: calc((var(--width) / 375) * 30px);
    font-size: calc((var(--width) / 375) * 41px);
    letter-spacing: -0.04em;
  }
  #concept .concept-txt p {
    width: calc((var(--width) / 375) * 254px);
    margin-left: calc((var(--width) / 375) * 17px);
    font-size: calc((var(--width) / 375) * 13px);
    letter-spacing: -0.02em;
  }
}


/*
  gallery
------------*/

#gallery {
  background: #b2d1e2;
}
#gallery h2 {
  padding-top: calc((var(--width) / 1400) * 55px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 19px), 19px);
  font-weight: 400;
  line-height: 2;
}
#gallery .gallery-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
}
#gallery .gallery-child {
  position: relative;
}
#gallery .gallery-txt {
  position: absolute;
  z-index: 99;
  max-width: none;
}

#gallery .gallery01 {
  padding-top: calc((var(--width) / 1400) * 30px);
}
#gallery .gallery01-01 {
  z-index: 5;
  width: calc((var(--width) / 1400) * 525px);
  margin-top: calc((var(--width) / 1400) * 59px);
}
#gallery .gallery01-02 {
  z-index: 3;
  width: calc((var(--width) / 1400) * 396px);
  margin-top: calc((var(--width) / 1400) * 522px);
  margin-left: calc((var(--width) / 1400) * -82px);
}
#gallery .gallery01-03 {
  width: calc((var(--width) / 1400) * 444px);
  margin-left: calc((var(--width) / 1400) * -59px);
}
#gallery .gallery01-04 {
  width: calc((var(--width) / 1400) * 256px);
  margin-top: calc((var(--width) / 1400) * -309px);
  margin-left: auto;
  margin-right: calc((var(--width) / 1400) * 126px);
}
#gallery .gallery-txt01 {
  top: calc((var(--width) / 1400) * -98px);
  right: calc((var(--width) / 1400) * -117px);
  width: calc((var(--width) / 1400) * 288px);
}
#gallery .gallery-txt02 {
  bottom: calc((var(--width) / 1400) * -163px);
  left: calc((var(--width) / 1400) * -166px);
  width: calc((var(--width) / 1400) * 274px);
}

#gallery .gallery02 {
  padding-top: calc((var(--width) / 1400) * 124px);
}
#gallery .gallery02-01 {
  z-index: 1;
  width: calc((var(--width) / 1400) * 316px);
  margin-top: calc((var(--width) / 1400) * 17px);
}
#gallery .gallery02-02 {
  z-index: 3;
  width: calc((var(--width) / 1400) * 521px);
  margin-top: calc((var(--width) / 1400) * 369px);
  margin-left: calc((var(--width) / 1400) * -62px);
}
#gallery .gallery02-03 {
  width: calc((var(--width) / 1400) * 551px);
  margin-left: auto;
}

#gallery .gallery03 {
  padding-top: calc((var(--width) / 1400) * 60px);
}
#gallery .gallery03-01 {
  width: calc((var(--width) / 1400) * 417px);
  margin-top: calc((var(--width) / 1400) * 140px);
  margin-left: calc((var(--width) / 1400) * 59px);
}
#gallery .gallery03-02 {
  z-index: 3;
  width: calc((var(--width) / 1400) * 329px);
  margin-left: auto;
  margin-right: calc((var(--width) / 1400) * -47px);
}
#gallery .gallery03-03 {
  width: calc((var(--width) / 1400) * 480px);
  margin-top: calc((var(--width) / 1400) * 220px);
}
#gallery .gallery-txt03 {
  top: calc((var(--width) / 1400) * -124px);
  right: calc((var(--width) / 1400) * -119px);
  width: calc((var(--width) / 1400) * 275px);
}

#gallery .gallery04 {
  padding-top: calc((var(--width) / 1400) * 24px);
}
#gallery .gallery04-01 {
  width: calc((var(--width) / 1400) * 548px);
  margin-top: calc((var(--width) / 1400) * 381px);
}
#gallery .gallery04-02 {
  z-index: 3;
  width: calc((var(--width) / 1400) * 478px);
  margin-left: calc((var(--width) / 1400) * -145px);
}
#gallery .gallery04-03 {
  width: calc((var(--width) / 1400) * 459px);
  margin-top: calc((var(--width) / 1400) * 230px);
  margin-left: auto;
}
#gallery .gallery04-04 {
  width: calc((var(--width) / 1400) * 190px);
  margin-top: calc((var(--width) / 1400) * -306px);
  margin-left: auto;
  margin-right: calc((var(--width) / 1400) * 51px);
}
#gallery .gallery-txt04 {
  bottom: calc((var(--width) / 1400) * -239px);
  left: calc((var(--width) / 1400) * -168px);
  width: calc((var(--width) / 1400) * 321px);
}

#gallery .gallery-image01 {
  padding-top: calc((var(--width) / 1400) * 160px);
}
#gallery .gallery-image02 {
  padding-top: calc((var(--width) / 1400) * 114px);
}

#gallery .gallery-cap {
  margin-top: calc((var(--width) / 1400) * 10px);
  text-align: right;
  font-size: min(calc((var(--width) / 1400) * 9px), 9px);
  line-height: 1.2;
  white-space: nowrap;
}

#gallery .gallery-spec {
  position: absolute;
  text-align: right;
}
#gallery .spec01-01 {
  top: calc((var(--width) / 1400) * 785px);
  right: calc((var(--width) / 1400) * 95px);
}
#gallery .spec01-03 {
  top: calc((var(--width) / 1400) * 621px);
  right: calc((var(--width) / 1400) * -6px);
}
#gallery .spec03-01 {
  top: calc((var(--width) / 1400) * 590px);
  right: calc((var(--width) / 1400) * -12px);
}
#gallery .spec03-03 {
  top: calc((var(--width) / 1400) * 694px);
  right: calc((var(--width) / 1400) * 38px);
}
#gallery .spec04-02 {
  top: calc((var(--width) / 1400) * 701px);
  right: calc((var(--width) / 1400) * 33px);
}

#gallery .gallery-spec .spec-box {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  padding: calc((var(--width) / 1400) * 5px) calc((var(--width) / 1400) * 10px) calc((var(--width) / 1400) * 10px);
  border: 3px solid #000;
}
#gallery .gallery-spec .spec-box._warm {
  background: #E9BD69;
}
#gallery .gallery-spec .spec-box._cool {
  background: #B2D1E2;
}
#gallery .gallery-spec .spec-icon {
  display: flex;
  align-items: center;
  margin-right: calc((var(--width) / 1400) * 5px);
}
#gallery .gallery-spec .spec-icon div {
  margin-top: auto;
}
#gallery .gallery-spec .spec-icon img {
  width: auto;
  height: calc((var(--width) / 1400) * 29px);
}
#gallery .gallery-spec .spec-icon img._high {
  height: calc((var(--width) / 1400) * 35px);
}
#gallery .gallery-spec .spec-icon span {
  margin: 0 calc((var(--width) / 1400) * 3px);
}
#gallery .gallery-spec .spec-value {
  text-align: left;
  font-size: min(calc((var(--width) / 1400) * 9px), 9px);
  line-height: 2;
}
#gallery .gallery-spec .spec-value p {
  font-size: min(calc((var(--width) / 1400) * 25px), 25px);
  font-weight: 900;
  line-height: 0.9;
  font-family: "GTHaptik";
}
#gallery .gallery-spec .spec-value small {
  font-size: min(calc((var(--width) / 1400) * 12px), 12px);
}
#gallery .gallery-spec .spec-ttl {
  margin-top: calc((var(--width) / 1400) * 10px);
  font-size: min(calc((var(--width) / 1400) * 9px), 9px);
  line-height: 1.2;
  white-space: nowrap;
}


@media screen and (max-width: 768px) {
  #gallery h2 {
    margin-left: calc((var(--width) / 375) * 33px);
    padding-top: calc((var(--width) / 375) * 26px);
    text-align: left;
    font-size: calc((var(--width) / 375) * 10px);

  }
  #gallery .gallery01 {
    flex-direction: column;
    padding-top: calc((var(--width) / 375) * 34px);
  }
  #gallery .gallery01-01 {
    z-index: 5;
    order: 2;
    width: calc((var(--width) / 375) * 214px);
    margin-top: calc((var(--width) / 375) * -46px);
  }
  #gallery .gallery01-02 {
    z-index: 1;
    order: 3;
    width: calc((var(--width) / 375) * 175px);
    margin-top: calc((var(--width) / 375) * -145px);
    margin-left: auto;
    margin-right: calc((var(--width) / 375) * 10px);
  }
  #gallery .gallery01-03 {
    z-index: 3;
    order: 1;
    width: calc((var(--width) / 375) * 193px);
    margin-right: calc((var(--width) / 375) * 63px);
    margin-left: auto;
  }
  #gallery .gallery01-04 {
    order: 4;
    width: calc((var(--width) / 375) * 87px);
    margin-top: calc((var(--width) / 375) * -23px);
    margin-left: calc((var(--width) / 375) * 78px);
    margin-right: 0;
  }
  #gallery .gallery-txt01 {
    top: calc((var(--width) / 375) * -60px);
    right: calc((var(--width) / 375) * -51px);
    width: calc((var(--width) / 375) * 140px);
  }
  #gallery .gallery-txt02 {
    bottom: calc((var(--width) / 375) * -64px);
    left: calc((var(--width) / 375) * -60px);
    width: calc((var(--width) / 375) * 131px);
  }

  #gallery .gallery02 {
    flex-direction: column;
    padding-top: calc((var(--width) / 375) * 77px);
  }
  #gallery .gallery02-01 {
    z-index: 3;
    order: 2;
    width: calc((var(--width) / 375) * 123px);
    margin-top: calc((var(--width) / 375) * -109px);
  }
  #gallery .gallery02-02 {
    order: 3;
    width: calc((var(--width) / 375) * 264px);
    margin-top: calc((var(--width) / 375) * -9px);
    margin-left: auto;
  }
  #gallery .gallery02-03 {
    order: 1;
    width: calc((var(--width) / 375) * 239px);
    margin-left: auto;
  }

  #gallery .gallery03 {
    flex-direction: column;
    padding-top: calc((var(--width) / 375) * 49px);
  }
  #gallery .gallery03-01 {
    z-index: 3;
    order: 2;
    width: calc((var(--width) / 375) * 171px);
    margin-top: calc((var(--width) / 375) * -20px);
    margin-left: calc((var(--width) / 375) * 18px);
  }
  #gallery .gallery03-02 {
    z-index: 3;
    order: 3;
    width: calc((var(--width) / 375) * 97px);
    margin-top: calc((var(--width) / 375) * -156px);
    margin-left: auto;
    margin-right: calc((var(--width) / 375) * 2px);
  }
  #gallery .gallery03-03 {
    order: 1;
    width: calc((var(--width) / 375) * 197px);
    margin-top: 0;
    margin-left: auto;
    margin-right: calc((var(--width) / 375) * 20px);
  }
  #gallery .gallery-txt03 {
    top: calc((var(--width) / 375) * -33px);
    left: calc((var(--width) / 375) * -137px);
    right: 0;
    width: calc((var(--width) / 375) * 159px);
  }

  #gallery .gallery04 {
    flex-direction: column;
    padding-top: calc((var(--width) / 375) * 116px);
  }
  #gallery .gallery04-01 {
    z-index: 3;
    order: 2;
    width: calc((var(--width) / 375) * 211px);
    margin-top: calc((var(--width) / 375) * -103px);
  }
  #gallery .gallery04-02 {
    z-index: 5;
    order: 1;
    width: calc((var(--width) / 375) * 180px);
    margin-right: calc((var(--width) / 375) * 47px);
    margin-left: auto;
  }
  #gallery .gallery04-03 {
    z-index: 1;
    order: 3;
    width: calc((var(--width) / 375) * 170px);
    margin-top: calc((var(--width) / 375) * -34px);
    margin-left: auto;
    margin-right: calc((var(--width) / 375) * 17px);
  }
  #gallery .gallery04-04 {
    order: 4;
    width: calc((var(--width) / 375) * 79px);
    margin-top: calc((var(--width) / 375) * -2px);
    margin-left: 0;
    margin-right: auto;
  }
  #gallery .gallery-txt04 {
    bottom: calc((var(--width) / 375) * -57px);
    left: calc((var(--width) / 375) * -102px);
    width: calc((var(--width) / 375) * 161px);
  }

  #gallery .gallery-image01 {
    padding-top: calc((var(--width) / 375) * 124px);
  }
  #gallery .gallery-image02 {
    padding-top: calc((var(--width) / 375) * 20px);
  }

  #gallery .gallery-cap {
    width: calc((var(--width) / 375) * 111px);
    margin-left: auto;
    font-size: calc((var(--width) / 375) * 8px);
    white-space: normal;
  }

  #gallery .gallery-spec {
    text-align: left;
  }
  #gallery .spec01-01 {
    top: calc((var(--width) / 375) * 314px);
    left: calc((var(--width) / 375) * 14px);
    right: unset;
  }
  #gallery .gallery-spec.spec01-01 .spec-ttl {
    margin-left: 0;
  }
  #gallery .spec01-03 {
    top: calc((var(--width) / 375) * 272px);
    right: calc((var(--width) / 375) * -60px);
  }
  #gallery .spec03-01 {
    top: calc((var(--width) / 375) * 233px);
    left: calc((var(--width) / 375) * 6px);
    right: unset;
  }
  #gallery .spec03-03 {
    top: calc((var(--width) / 375) * 274px);
    right: calc((var(--width) / 375) * 1px);
  }
  #gallery .spec04-02 {
    top: calc((var(--width) / 375) * 260px);
    right: calc((var(--width) / 375) * -34px);
  }


  #gallery .gallery-spec .spec-box {
    padding: calc((var(--width) / 375) * 4px) calc((var(--width) / 375) * 8px) calc((var(--width) / 375) * 8px);
  }
  #gallery .gallery-spec .spec-icon {
    margin-top: calc((var(--width) / 375) * 4px);
    margin-right: calc((var(--width) / 375) * 5px);
  }
  #gallery .gallery-spec .spec-icon div {
    margin-top: 0;
  }
  #gallery .gallery-spec .spec-icon img {
    height: calc((var(--width) / 375) * 21px);
  }
  #gallery .gallery-spec .spec-icon img._high {
    height: calc((var(--width) / 375) * 26px);
  }
  #gallery .gallery-spec .spec-icon span {
    margin: 0 calc((var(--width) / 375) * 3px);
  }

  #gallery .gallery-spec .spec-value {
    font-size: calc((var(--width) / 375) * 9px);
  }
  #gallery .gallery-spec .spec-value p {
    font-size: calc((var(--width) / 375) * 20px);
  }
  #gallery .gallery-spec .spec-value small {
    font-size: calc((var(--width) / 375) * 9px);
  }

  #gallery .gallery-spec .spec-ttl {
    width: calc((var(--width) / 375) * 111px);
    margin-left: auto;
    font-size: calc((var(--width) / 375) * 8px);
    white-space: normal;
  }
}


/*
  change
------------*/

#change {
  padding: calc((var(--width) / 1400) * 120px) 0 calc((var(--width) / 1400) * 161px);
}
#change h2 {
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 76px), 76px);
  font-weight: 900;
  line-height: 1.7;
  font-family: "GTHaptik";
}
#change h3 {
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 14px), 14px);
  line-height: 1.3;
}
#change .change-wrapper {
  display: flex;
  align-items: center;
  margin-top: calc((var(--width) / 1400) * 32px);
}
#change .change-spec {
  flex-shrink: 0;
  margin-left: calc((var(--width) / 1400) * 114px);
  margin-right: calc((var(--width) / 1400) * 152px);
}
#change .change-spec p {
  font-size: min(calc((var(--width) / 1400) * 19px), 19px);
  font-weight: 600;
  line-height: 2;
}
#change .change-spec .spec-box {
  position: relative;
  width: calc((var(--width) / 1400) * 217px);
  padding: calc((var(--width) / 1400) * 20px);
  text-align: right;
  background: #b2d1e2;
  border: 5px solid #000;
}
#change .change-spec .spec-icon {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc((var(--width) / 1400) * 12px);
  left: calc((var(--width) / 1400) * 12px);
}
#change .change-spec .spec-icon div + div {
  margin-top: calc((var(--width) / 1400) * 6px);
}
#change .change-spec .spec-icon img {
  width: auto;
  height: calc((var(--width) / 1400) * 23px);
}
#change .change-spec .spec-value {
  font-size: min(calc((var(--width) / 1400) * 84px), 84px);
  font-weight: 900;
  line-height: 0.9;
  font-family: "GTHaptik";
}
#change .change-spec .spec-value span {
  font-size: min(calc((var(--width) / 1400) * 32px), 32px);
}
#change .change-spec .spec-separator {
  display: inline-block;
  position: relative;
  right: calc((var(--width) / 1400) * 71px);
  width: calc((var(--width) / 1400) * 6px);
  height: calc((var(--width) / 1400) * 39px);
  margin: calc((var(--width) / 1400) * 6px) 0;
  background: #000;
}
#change .change-item {
  width: calc(100% - ((var(--width) / 1400) * 266px));
}
#change .change-item .item-block,
#change .change-item .item-block.value-high.active {
  display: flex;
}
#change .change-item .item-block.value-high {
  display: none;
}
#change .change-item .item-slider {
  width: calc((var(--width) / 1400) * 438px);
}
#change .change-item .item-slider .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: calc((var(--width) / 1400) * 438px);
}
#change .change-item .item-slider .slick-slide img {
  width: auto;
  height: 100%;
}
#change .change-item .item-slider .slick-slide._none img {
  height: 70%;
}
#change .change-item .item-slider .slick-slide .slide-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--width) / 1400) * 256px);
  padding: calc((var(--width) / 1400) * 30px);
  color: #ffffff;
  background: rgba(0, 0, 0, .7);
  transition: .5s;
  opacity: 0;
  pointer-events: none;
}
#change .change-item .item-slider .slick-slide:hover .slide-overlay {
  opacity: 1;
  pointer-events: auto;
}
#change .change-item .item-slider .slick-slide .slide-overlay h3 {
  font-size: min(calc((var(--width) / 1400) * 14px), 14px);
  font-weight: 700;
  line-height: 1.2;
}
#change .change-item .item-slider .slick-slide .slide-overlay p {
  margin-top: calc((var(--width) / 1400) * 21px);
  font-size: min(calc((var(--width) / 1400) * 12px), 12px);
  line-height: 1.6;
}
#change .change-item .item-slider .slick-slide .slide-buy {
  margin-top: calc((var(--width) / 1400) * 24px);
  text-align: center;
}
#change .change-item .item-slider .slick-slide .slide-buy a {
  display: inline-block;
  position: relative;
  padding: calc((var(--width) / 1400) * 7px) calc((var(--width) / 1400) * 31px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 14px), 14px);
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 50px;
  transition: .5s;
  font-family: "GTHaptik";
}
#change .change-item .item-slider .slick-slide .slide-buy a:hover {
  color: #fff;
  background: #000;
}
#change .change-item .item-slider .slick-slide .slide-buy a img {
  position: absolute;
  top: calc((var(--width) / 1400) * 7px);
  right: calc((var(--width) / 1400) * 11px);
  height: calc((var(--width) / 1400) * 10px);
}

#change .change-item .item-slider .slick-prev,
#change .change-item .item-slider .slick-next {
  z-index: 99;
  width: calc((var(--width) / 1400) * 31px);
  height: calc((var(--width) / 1400) * 47px);
}
#change .change-item .item-slider .slick-prev {
  left: calc((var(--width) / 1400) * -60px);
}
#change .change-item .item-slider .slick-next {
  right: calc((var(--width) / 1400) * -60px);
}
#change .change-item .item-slider .slick-prev::before,
#change .change-item .item-slider .slick-next::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
}
#change .change-item .item-slider .slick-prev::before {
  background: url("../img/arrow_prev.svg") no-repeat center/contain;
}
#change .change-item .item-slider .slick-next::before {
  background: url("../img/arrow_next.svg") no-repeat center/contain;
}

#change .change-item .item-nav {
  margin-left: calc((var(--width) / 1400) * 77px);
}
#change .change-item .item-thumb {
  display: flex;
}
#change .change-item .item-thumb div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: calc((var(--width) / 1400) * 40px);
  height: calc((var(--width) / 1400) * 40px);
  cursor: pointer;
}
#change .change-item .item-thumb div.active::before {
  content: '';
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--width) / 1400) * 49px);
  height: calc((var(--width) / 1400) * 60px);
  border: 5px solid #000;
}
#change .change-item .item-thumb div + div {
  margin-left: calc((var(--width) / 1400) * 3px);
}
#change .change-item .item-thumb div img {
  width: auto;
  height: 100%;
}
#change .change-item .item-color {
  position: relative;
  margin-top: calc((var(--width) / 1400) * 38px);
}
#change .change-item .item-color div {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: fit-content;
  transition: .5s;
  opacity: 0;
  pointer-events: none;
}
#change .change-item .item-color div.active {
  opacity: 1;
  pointer-events: auto;
}
#change .change-item .item-color div span {
  display: block;
  position: relative;
  width: calc((var(--width) / 1400) * 32px);
  height: calc((var(--width) / 1400) * 32px);
  background: #000;
  border-radius: 100%;
  cursor: pointer;
}
#change .change-item .item-color div span.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--width) / 1400) * 52px);
  height: calc((var(--width) / 1400) * 52px);
  border: 5px solid #000;
  border-radius: 100%;
}
#change .change-item .item-color div span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--width) / 1400) * 21px);
  height: calc((var(--width) / 1400) * 21px);
  background: transparent;
  border-radius: 100%;
}
#change .change-item .item-color div .lampblack {
  background: #201614;
}
#change .change-item .item-color div .lampblack2 {
  background: #1f1614;
}
#change .change-item .item-color div .lampblack3 {
  background: #201715;
}
#change .change-item .item-color div .orientalblue {
  background: #004793;
}
#change .change-item .item-color div .mauve {
  background: #995794;
}
#change .change-item .item-color div .olivedrab {
  background: #5f5f49;
}
#change .change-item .item-color div .warblerbrown {
  background: #7a6746;
}
#change .change-item .item-color div .chromeyellow {
  background: #f7c522;
}
#change .change-item .item-color div .ironblack {
  background: #211816;
}
#change .change-item .item-color div .blackbrown {
  background: #3b2512;
}
#change .change-item .item-color div .wax {
  background: #2a211f;
}
#change .change-item .item-color div .blackbrown {
  background: #3b2512;
}
#change .change-item .item-color div .blackbrown {
  background: #3b2512;
}
#change .change-item .item-color div .taupe {
  background: #4a4747;
}
#change .change-item .item-color div .nileblue {
  background: #558595;
}
#change .change-item .item-color div .terracotta {
  background: #b15751;
}
#change .change-item .item-color div .susutake {
  background: #57513b;
}
#change .change-item .item-color div .carrotorange {
  background: #c74d19;
}
#change .change-item .item-color div .carrotorange2 {
  background: #c54d1b;
}
#change .change-item .item-color div .black {
  background: #101112;
}
#change .change-item .item-color div .cochinealred {
  background: #b03163;
}
#change .change-item .item-color div .midnightblue {
  background: #1a1a2f;
}
#change .change-item .item-color div .benikaba {
  background: #b25652;
}
#change .change-item .item-color div .olivegreen {
  background: #56523a;
}
#change .change-item .item-color div .irondarkblue {
  background: #1c1a31;
}
#change .change-item .item-color div .in-chromeyellow::before {
  background: #f7c522;
}
#change .change-item .item-color div .in-warblerbrown::before {
  background: #7a6746;
}
#change .change-item .item-color div .in-orientalblue::before {
  background: #004793;
}
#change .change-item .item-color div .in-sepia::before {
  background: #413718;
}
#change .change-item .item-color div .in-lampblack::before {
  background: #201614;
}
#change .change-item .item-color div .in-lampblack3::before {
  background: #201715;
}
#change .change-item .item-color div .in-parchment::before {
  background: #e3e1d2;
}
#change .change-item .item-color div .in-stonegray::before {
  background: #8d8980;
}
#change .change-item .item-color div .in-bluishblack::before {
  background: #233c4d;
}
#change .change-item .item-color div .in-olivegreen::before {
  background: #54513a;
}
#change .change-item .item-color div .in-sepia2::before {
  background: #393625;
}
#change .change-item .item-color div .in-bluegreen::before {
  background: #2a96a5;
}
#change .change-item .item-color div .in-tonoko::before {
  background: #dabe95;
}
#change .change-item .item-color div span + span {
  margin-left: calc((var(--width) / 1400) * 18px);
}
#change .change-item .item-separator {
  width: calc((var(--width) / 1400) * 438px);
  margin: calc((var(--width) / 1400) * 2px) 0;
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 79px) ,79px);
  font-weight: 900;
  line-height: 0.9;
  font-family: "GTHaptik";
}
#change .change-desc {
  margin: calc((var(--width) / 1400) * 140px) auto 0;
}
#change .change-desc .desc-ttl {
  margin-bottom: calc((var(--width) / 1400) * 25px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 11px), 11px);
  line-height: 1.6;
}
#change .change-desc .desc-list {
  display: flex;
  justify-content: center;
}
#change .change-desc .desc-box {
  margin: 0 calc((var(--width) / 1400) * 18px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 11px), 11px);
  line-height: 1.6;
}
#change .change-desc .desc-box img {
  width: auto;
  height: calc((var(--width) / 1400) * 37px);
}
#change .change-desc .desc-box p {
  margin-top: calc((var(--width) / 1400) * 11px);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  #change {
    padding: calc((var(--width) / 375) * 91px) 0 calc((var(--width) / 375) * 75px);
  }
  #change h2 {
    font-size: calc((var(--width) / 375) * 44px);
  }
  #change h3 {
    font-size: calc((var(--width) / 375) * 10px);
  }
  #change .change-wrapper {
    display: block;
    position: relative;
    margin-top: calc((var(--width) / 375) * 35px);
  }
  #change .change-spec {
    position: absolute;
    top: 50%;
    left: calc((var(--width) / 375) * 26px);
    transform: translateY(-50%);
    margin: 0;
  }
  #change .change-spec p {
    font-size: calc((var(--width) / 375) * 11px);
  }
  #change .change-spec .spec-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc((var(--width) / 375) * 95px);
    padding: calc((var(--width) / 375) * 3px) calc((var(--width) / 375) * 8px);
    border: 4px solid #000;
  }
  #change .change-spec .spec-icon {
    position: relative;
    top: 0;
    left: calc((var(--width) / 375) * -3px);
    margin-bottom: auto;
  }
  #change .change-spec .spec-icon div + div {
    margin-top: calc((var(--width) / 375) * 2px);
  }
  #change .change-spec .spec-icon img {
    height: calc((var(--width) / 375) * 12px);
  }
  #change .change-spec .spec-value {
    font-size: calc((var(--width) / 375) * 32px);
  }
  #change .change-spec .spec-value span {
    font-size: calc((var(--width) / 375) * 15px);
  }
  #change .change-spec .spec-separator {
    right: calc((var(--width) / 375) * 28px);
    width: calc((var(--width) / 375) * 6px);
    height: calc((var(--width) / 375) * 19px);
    margin: calc((var(--width) / 375) * 2px);
  }

  #change .change-item {
    width: 100%;
  }
  #change .change-item .item-block {
    flex-wrap: wrap;
  }
  #change .change-item .item-slider {
    width: 100%;
  }
  #change .change-item .value-row .item-slider {
    order: 2;
  }
  #change .change-item .value-high .item-slider {
    order: 1;
  }
  #change .change-item .item-slider .slick-slide {
    height: calc((var(--width) / 375) * 210px);
  }
  #change .change-item .item-slider .slick-slide .slide-overlay {
    width: calc((var(--width) / 375) * 200px);
    padding: calc((var(--width) / 375) * 15px);
  }
  #change .change-item .item-slider .slick-slide .slide-overlay h3 {
    font-size: calc((var(--width) / 375) * 13px);
  }
  #change .change-item .item-slider .slick-slide .slide-overlay p {
    font-size: calc((var(--width) / 375) * 11px);
  }
  #change .change-item .item-slider .slick-slide .slide-buy a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc((var(--width) / 375) * 90px);
    padding: 0;
    font-size: calc((var(--width) / 375) * 11px);
    line-height: 1.6;
  }
  #change .change-item .item-slider .slick-slide .slide-buy a img {
    position: relative;
    top: 0;
    right: 0;
    height: calc((var(--width) / 375) * 6px);
    margin-left: calc((var(--width) / 375) * 3px);
  }

  #change .change-item .item-slider .slick-prev,
  #change .change-item .item-slider .slick-next {
    width: calc((var(--width) / 375) * 34px);
    height: 100%;
    padding: 0 calc((var(--width) / 375) * 10px);
  }
  #change .change-item .item-slider .slick-prev {
    left: 0;
  }
  #change .change-item .item-slider .slick-next {
    right: 0;
  }
  #change .change-item .item-slider .slick-prev::before,
  #change .change-item .item-slider .slick-next::before {
    width: calc((var(--width) / 375) * 14px);
    height: calc((var(--width) / 375) * 21px);
  }
  #change .change-item .item-slider .slick-prev::before {
    left: calc((var(--width) / 375) * 10px);
  }
  #change .change-item .item-slider .slick-next::before {
    right: calc((var(--width) / 375) * 10px);
  }
  #change .change-item .item-nav {
    width: 100%;
    margin: 0;
  }
  #change .change-item .value-row .item-nav {
    order: 1;
  }
  #change .change-item .value-high .item-nav {
    order: 2;
    margin-top: calc((var(--width) / 375) * 16px);
  }
  #change .change-item .item-thumb {
    justify-content: center;
  }
  #change .change-item .item-thumb div {
    width: calc((var(--width) / 375) * 39px);
    height: calc((var(--width) / 375) * 39px);
  }
  #change .change-item .item-thumb div.active::before {
    width: calc((var(--width) / 375) * 47px);
    height: calc((var(--width) / 375) * 57px);
  }

  #change .change-item .item-color {
    height: calc((var(--width) / 375) * 25px);
    margin-top: calc((var(--width) / 375) * 25px);
    padding: 0 calc((var(--width) / 375) * 49px);
  }
  #change .change-item .item-color div.active {
    left: calc((var(--width) / 375) * 49px);
  }
  #change .change-item .item-color div span {
    width: calc((var(--width) / 375) * 25px);
    height: calc((var(--width) / 375) * 25px);
  }
  #change .change-item .item-color div span + span {
    margin-left: calc((var(--width) / 375) * 25px);
  }
  #change .change-item .item-color div span.active::after {
    width: calc((var(--width) / 375) * 41px);
    height: calc((var(--width) / 375) * 41px);
  }
  #change .change-item .item-color div span::before {
    width: calc((var(--width) / 375) * 14px);
    height: calc((var(--width) / 375) * 14px);
  }
  #change .change-item .item-separator {
    width: 100%;
    margin: calc((var(--width) / 375) * 17px) 0 calc((var(--width) / 375) * 13px);
    font-size: calc((var(--width) / 375) * 14px);
  }
  #change .change-desc {
    margin-top: calc((var(--width) / 375) * 66px);
  }
  #change .change-desc .desc-ttl {
    margin-bottom: calc((var(--width) / 375) * 20px);
    font-size: calc((var(--width) / 375) * 9px);
  }
  #change .change-desc .desc-list {
    flex-wrap: wrap;
    padding: 0 calc((var(--width) / 375) * 10px);
  }
  #change .change-desc .desc-box {
    width: calc(100% / 4);
    margin: calc((var(--width) / 375) * 15px) 0 0;
    font-size: calc((var(--width) / 375) * 9px);
  }
  #change .change-desc .desc-box img {
    height: calc((var(--width) / 375) * 24px);
  }
}


/*
  lineup
------------*/

#lineup {
  padding-top: calc((var(--width) / 1400) * 95px);
  border-top: 7px solid #fff;
}
#lineup h2 {
  width: 100%;
  margin-bottom: calc((var(--width) / 1400) * 20px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 76px), 76px);
  font-weight: 900;
  line-height: 1.7;
  font-family: "GTHaptik";
}
#lineup .lineup-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-left: calc((var(--width) / 1400) * 60px);
  padding-right: calc((var(--width) / 1400) * 60px);
}
#lineup .lineup-wrapper + .lineup-wrapper {
  margin-top: calc((var(--width) / 1400) * 88px);
}
#lineup .lineup-wrapper h3 {
  width: 100%;
  font-size: min(calc((var(--width) / 1400) * 43px), 43px);
  font-weight: 900;
  line-height: 1.7;
  font-family: "GTHaptik";
}
#lineup .lineup-box {
  width: calc(95% / 3);
  margin-left: 2.5%;
}
#lineup .lineup-box:nth-of-type(3n + 1) {
  margin-left: 0;
}
#lineup .lineup-box:nth-of-type(n + 4) {
  margin-top: calc((var(--width) / 1400) * 40px);
}
#lineup .lineup-image {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: calc((var(--width) / 1400) * 100px) 0;
  background: #fff;
}
#lineup .lineup-image img {
  max-height: calc((var(--width) / 1400) * 291px);
}
#lineup .lineup-more {
  position: absolute;
  bottom: calc((var(--width) / 1400) * 50px);
  left: 50%;
  transform: translateX(-50%);
  font-size: min(calc((var(--width) / 1400) * 13px), 13px);
  line-height: 1.5;
  border-bottom: 1px solid #000;
  font-family: "GTHaptik";
  font-weight: 500;
  transition: .5s;
}
#lineup .lineup-image:hover .lineup-more {
  opacity: 0;
}
#lineup .lineup-color {
  display: flex;
  position: absolute;
  z-index: 999;
  bottom: calc((var(--width) / 1400) * 14px);
  right: calc((var(--width) / 1400) * 14px);
}
#lineup .lineup-color div {
  display: flex;
  align-items: center;
}
#lineup .lineup-color div + div {
  margin-left: calc((var(--width) / 1400) * 11px);
}
#lineup .lineup-color p {
  font-size: min(calc((var(--width) / 1400) * 13px), 13px);
  margin-left: calc((var(--width) / 1400) * 4px);
}
#lineup .lineup-image:hover .lineup-color p {
  color: #fff;
}
#lineup .lineup-color span {
  display: block;
  position: relative;
  width: calc((var(--width) / 1400) * 21px);
  height: calc((var(--width) / 1400) * 21px);
  background: transparent;
  border-radius: 100%;
}
#lineup .lineup-color span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--width) / 1400) * 11px);
  height: calc((var(--width) / 1400) * 11px);
  background: transparent;
  border-radius: 100%;
}
#lineup .lineup-color .lampblack {
  background: #201614;
}
#lineup .lineup-color .lampblack2 {
  background: #1f1614;
}
#lineup .lineup-color .lampblack3 {
  background: #201715;
}
#lineup .lineup-color .orientalblue {
  background: #004793;
}
#lineup .lineup-color .mauve {
  background: #995794;
}
#lineup .lineup-color .olivedrab {
  background: #5f5f49;
}
#lineup .lineup-color .warblerbrown {
  background: #7a6746;
}
#lineup .lineup-color .chromeyellow {
  background: #f7c522;
}
#lineup .lineup-color .ironblack {
  background: #211816;
}
#lineup .lineup-color .blackbrown {
  background: #3b2512;
}
#lineup .lineup-color .wax {
  background: #2a211f;
}
#lineup .lineup-color .blackbrown {
  background: #3b2512;
}
#lineup .lineup-color .blackbrown {
  background: #3b2512;
}
#lineup .lineup-color .taupe {
  background: #4a4747;
}
#lineup .lineup-color .nileblue {
  background: #558595;
}
#lineup .lineup-color .terracotta {
  background: #b15751;
}
#lineup .lineup-color .susutake {
  background: #57513b;
}
#lineup .lineup-color .carrotorange {
  background: #c74d19;
}
#lineup .lineup-color .carrotorange2 {
  background: #c54d1b;
}
#lineup .lineup-color .black {
  background: #101112;
}
#lineup .lineup-color .cochinealred {
  background: #b03163;
}
#lineup .lineup-color .midnightblue {
  background: #1a1a2f;
}
#lineup .lineup-color .benikaba {
  background: #b25652;
}
#lineup .lineup-color .olivegreen {
  background: #56523a;
}
#lineup .lineup-color .irondarkblue {
  background: #1c1a31;
}
#lineup .lineup-color .in-chromeyellow::before {
  background: #f7c522;
}
#lineup .lineup-color .in-warblerbrown::before {
  background: #7a6746;
}
#lineup .lineup-color .in-orientalblue::before {
  background: #004793;
}
#lineup .lineup-color .in-sepia::before {
  background: #413718;
}
#lineup .lineup-color .in-lampblack::before {
  background: #201614;
}
#lineup .lineup-color .in-lampblack3::before {
  background: #201715;
}
#lineup .lineup-color .in-parchment::before {
  background: #e3e1d2;
}
#lineup .lineup-color .in-stonegray::before {
  background: #8d8980;
}
#lineup .lineup-color .in-bluishblack::before {
  background: #233c4d;
}
#lineup .lineup-color .in-olivegreen::before {
  background: #54513a;
}
#lineup .lineup-color .in-sepia2::before {
  background: #393625;
}
#lineup .lineup-color .in-bluegreen::before {
  background: #2a96a5;
}
#lineup .lineup-color .in-tonoko::before {
  background: #dabe95;
}
#lineup .lineup-hover {
  overflow-y: auto;
  position: absolute;
  z-index: 99;
  left: 0;
  bottom: -50px;
  width: 100%;
  max-height: 100%;
  padding: calc((var(--width) / 1400) * 30px) calc((var(--width) / 1400) * 30px) calc((var(--width) / 1400) * 42px);
  font-size: min(calc((var(--width) / 1400) * 12px), 12px);
  line-height: 1.8;
  color: #fff;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: .5s;
}
#lineup .lineup-image:hover .lineup-hover {
  bottom: 0;
  opacity: 1;
}
#lineup .lineup-spec {
  margin-top: 1rem;
}
#lineup .lineup-detail {
  display: flex;
  margin-top: calc((var(--width) / 1400) * 15px);
  font-family: "GTHaptik";
  font-weight: 500;
}
#lineup .lineup-info {
  font-size: min(calc((var(--width) / 1400) * 13px), 13px);
  line-height: 1.5;
}
#lineup .lineup-btn {
  margin-left: auto;
}
#lineup .lineup-btn span {
  display: block;
  padding: calc((var(--width) / 1400) * 8px) calc((var(--width) / 1400) * 30px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 14px), 14px);
  font-weight: 700;
  color: #fff;
  background: #c9c5c0;
  border-radius: 50px;
  font-family: "GTHaptik";
  letter-spacing: 1px;
}
#lineup .lineup-btn a {
  display: block;
  position: relative;
  padding: calc((var(--width) / 1400) * 8px) calc((var(--width) / 1400) * 30px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 14px), 14px);
  font-weight: 700;
  border: 2px solid #000;
  border-radius: 50px;
  transition: .5s;
  font-family: "GTHaptik";
}
#lineup .lineup-btn a:hover {
  color: #fff;
  background: #000;
}
#lineup .lineup-btn a img {
  position: absolute;
  top: calc((var(--width) / 1400) * 7px);
  right: calc((var(--width) / 1400) * 11px);
  width: calc((var(--width) / 1400) * 13px);
}


@media screen and (max-width: 768px) {
  #lineup {
    padding-top: calc((var(--width) / 375) * 61px);
  }
  #lineup h2 {
    margin-bottom: calc((var(--width) / 375) * 31px);
    font-size: calc((var(--width) / 375) * 44px);
  }
  #lineup .lineup-wrapper {
    padding: 0 5%;
  }
  #lineup .lineup-wrapper h3 {
    font-size: calc((var(--width) / 375) * 26px);
    letter-spacing: -0.02em;
  }
  #lineup .lineup-box,
  #lineup .lineup-box:nth-of-type(3n + 1) {
    width: calc(95% / 2);
    margin-left: 5%;
  }
  #lineup .lineup-box:nth-of-type(2n + 1) {
    margin-left: 0;
  }
  #lineup .lineup-box:nth-of-type(n + 3) {
    margin-top: calc((var(--width) / 375) * 37px);
  }
  #lineup .lineup-image {
    overflow: visible;
    padding: calc((var(--width) / 375) * 33px) 0 calc((var(--width) / 375) * 54px);
  }
  #lineup .lineup-image img {
    max-height: calc((var(--width) / 375) * 164px);
  }
  #lineup .lineup-more {
    bottom: calc((var(--width) / 375) * 23px);
    font-size: calc((var(--width) / 375) * 11px);
    cursor: pointer;
  }
  #lineup .lineup-image:hover .lineup-more {
    opacity: 1;
  }
  #lineup .lineup-image.active .lineup-more {
    opacity: 0;
  }
  #lineup .lineup-color {
    bottom: calc((var(--width) / 375) * 10px);
    right: calc((var(--width) / 375) * 12px);
  }
  #lineup .lineup-color span {
    width: calc((var(--width) / 375) * 9px);
    height: calc((var(--width) / 375) * 9px);
  }
  #lineup .lineup-color span::before {
    width: calc((var(--width) / 375) * 5px);
    height: calc((var(--width) / 375) * 5px);
  }
  #lineup .lineup-hover {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    width: 110%;
    height: 110%;
    max-height: 110%;
    top: -5%;
    left: -5%;
    padding: calc((var(--width) / 375) * 15px) calc((var(--width) / 375) * 15px) 0;
    font-size: calc((var(--width) / 375) * 10px);
    pointer-events: none;
  }
  #lineup .lineup-image:hover .lineup-hover {
    opacity: 0;
  }
  #lineup .lineup-image.active .lineup-hover {
    opacity: 1;
    pointer-events: auto;
  }
  #lineup .lineup-spec {
    display: none;
  }
  #lineup .lineup-close {
    position: absolute;
    bottom: calc((var(--width) / 375) * 33px);
    left: 50%;
    transform: translateX(-50%);
    margin: auto 0;
    text-align: center;
  }
  #lineup .lineup-close p {
    display: inline-block;
    border-bottom: 1px solid #fff;
    font-size: calc((var(--width) / 375) * 11px);
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    font-family: "GTHaptik";
  }
  #lineup .lineup-detail {
    display: block;
    margin-top: calc((var(--width) / 375) * 9px);
  }
  #lineup .lineup-info {
    font-size: calc((var(--width) / 375) * 11px);
  }
  #lineup .lineup-btn {
    margin-top: calc((var(--width) / 375) * 13px);
    text-align: center;
  }
  #lineup .lineup-btn span {
    display: inline-block;
    width: calc((var(--width) / 375) * 232px);
    padding: calc((var(--width) / 375) * 15px) 0;
    font-size: calc((var(--width) / 375) * 22px);
  }
  #lineup .lineup-btn a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: calc((var(--width) / 375) * 90px);
    padding: 0;
    font-size: calc((var(--width) / 375) * 11px);
    line-height: 1.6;
  }
  #lineup .lineup-btn a img {
    position: relative;
    top: 0;
    right: 0;
    width: calc((var(--width) / 375) * 8px);
    margin-left: calc((var(--width) / 375) * 3px);
  }
}


/*
  movie
------------*/

#movie {
  padding-top: calc((var(--width) / 1400) * 320px);
}
#movie .movie-wrapper {
  display: flex;
  flex-wrap: wrap;
  padding-left: calc((var(--width) / 1400) * 120px);
  padding-right: calc((var(--width) / 1400) * 120px);
}
#movie .movie-wrapper h2 {
  width: 100%;
  margin-bottom: calc((var(--width) / 1400) * 120px);
  text-align: center;
  font-size: min(calc((var(--width) / 1400) * 30px), 30px);
  font-weight: 300;
}
#movie .movie-box {
  position: relative;
  width: calc(97.5% / 2);
  margin-top: calc((var(--width) / 1400) * 60px);
  margin-left: 2.5%;
  cursor: pointer;
}
#movie .movie-box:nth-of-type(2n + 1) {
  margin-left: 0;
}
#movie .movie-icon {
  position: absolute;
  top: calc((var(--width) / 1400) * 40px);
  right: calc((var(--width) / 1400) * 30px);
  width: calc((var(--width) / 1400) * 81px);
  text-align: right;
}
#movie .movie-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: fit-content;
  text-align: center;
  color: #fff;
}
#movie .movie-overlay p {
  font-size: min(calc((var(--width) / 1400) * 28px), 28px);
}
#movie .movie-overlay h3 {
  margin-top: calc((var(--width) / 1400) * 55px);
  margin-bottom: calc((var(--width) / 1400) * 65px);
  font-size: min(calc((var(--width) / 1400) * 78px), 78px);
  font-weight: 100;
  font-family: "CharlevoixPro";
  letter-spacing: 2px;
}
#movie .movie-overlay img {
  width: calc((var(--width) / 1400) * 75px);
}
#movie .movie-overlay span {
  display: block;
  margin-top: calc((var(--width) / 1400) * 15px);
  font-size: min(calc((var(--width) / 1400) * 26px), 26px);
  font-weight: 400;
  font-family: "CharlevoixPro";
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  #movie {
    padding-top: calc((var(--width) / 375) * 175px);
  }
  #movie .movie-wrapper {
    padding: 0 5%;
  }
  #movie .movie-wrapper h2 {
    font-size: calc((var(--width) / 375) * 24px);
    line-height: calc((var(--width) / 375) * 40px);
  }
  #movie .movie-box {
    width: 100%;
    margin: 0 auto;
  }
  #movie .movie-box + .movie-box {
    margin-top: calc((var(--width) / 375) * 40px);
  }
  #movie .movie-icon {
    display: none;
  }
  #movie .movie-overlay p {
    font-size: calc((var(--width) / 375) * 24px);
  }
  #movie .movie-overlay h3 {
    margin: 0 auto;
    font-size: calc((var(--width) / 375) * 52px);
    line-height: calc((var(--width) / 375) * 78px);
  }
  #movie .movie-overlay img {
    width: calc((var(--width) / 375) * 42px);
  }
  #movie .movie-overlay span {
    margin-top: calc((var(--width) / 375) * 10px);
    font-size: calc((var(--width) / 375) * 20px);
  }
}


/*
  modal
------------*/

#modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .9);
  opacity: 0;
  pointer-events: none;
  transition: .5s;
}
#modal.active {
  opacity: 1;
  pointer-events: auto;
}
#modal .modal-close {
  position: absolute;
  top: calc((var(--width) / 1400) * 27px);
  right: calc((var(--width) / 1400) * 22px);
  width: calc((var(--width) / 1400) * 29px);
  cursor: pointer;
}
#modal .modal-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((var(--width) / 1400) * 840px);
  height: calc((var(--width) / 1400) * 425px);
  background: #fff;
}

@media screen and (max-width: 768px) {
  #modal .modal-close {
    top: calc((var(--width) / 375) * 25px);
    right: calc((var(--width) / 375) * 30px);
    width: calc((var(--width) / 375) * 42px);
  }
  #modal .modal-inner {
    width: 100vw;
    height: 56.25vw;
  }
}