@charset "UTF-8";
/* ================================================================ *
* MIXIN
* ================================================================ */
/* ================================================================ *
* BODY
* ================================================================ */
body {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overscroll-behavior-x: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic", "ヒラギノ角ゴ", "メイリオ", "Meiryo", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #242524;
  font-size: 18px;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 800px) {
  body {
    font-size: 15px;
    line-height: 1.6;
  }
}

a:link, a:visited {
  color: #248d9b;
  text-decoration: none;
}

a:active, a:hover {
  color: #ec9800;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
}

img {
  border: none;
  outline: none;
  max-width: 100%;
}

@media (min-width: 800px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 800px) {
  .pc {
    display: none !important;
  }
}
/* ================================================================ *
* parts
* ================================================================ */
img {
  pointer-events: none;
}

dl {
  margin: 0;
}

.txt_center {
  text-align: center;
}

.txt_red {
  color: #ff1717;
}

.mb10 {
  margin-bottom: 10px;
}

.btn {
  position: relative;
  width: min(100%, 320px);
  border: 1px solid #fff;
  border-radius: 70px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #fff;
  opacity: 0.95;
  transform-origin: 100% 0;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.btn a, .btn > p {
  display: block;
  padding: 12px 20px;
  position: relative;
  z-index: 2;
  color: #fff;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.15s ease-out;
}
.btn a:after, .btn > p:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 20px;
  width: 40px;
  height: calc(100% - 4px);
  background: url(../img/btn_icon.png) 50% 50% no-repeat;
  background-size: contain;
  transition: all 0.15s ease-out;
}
@media (min-width: 800px) {
  .btn:hover {
    transform: scale(1.05);
  }
  .btn:hover:after {
    transform-origin: 0 0;
    transform: scaleX(1);
    opacity: 1;
  }
  .btn:hover a, .btn:hover > p {
    color: #000;
  }
  .btn:hover a:after, .btn:hover > p:after {
    filter: brightness(0%);
  }
}
@media (max-width: 800px) {
  .btn {
    width: min(100%, 260px);
  }
  .btn:after {
    width: 30px;
  }
}
.btn.s {
  width: min(100%, 120px);
}
.btn.s a, .btn.s > p {
  font-size: 13px;
  padding: 6px 12px;
}
.btn.s a:after, .btn.s > p:after {
  width: 25px;
  right: 12px;
}
@media (max-width: 800px) {
  .btn.s {
    width: min(100%, 90px);
  }
  .btn.s a, .btn.s > p {
    font-size: 10px;
    padding: 4px 10px;
  }
  .btn.s a:after, .btn.s > p:after {
    width: 20px;
    right: 10px;
  }
}
.btn.l {
  width: min(100%, 600px);
}
.btn.l a, .btn.l > p {
  font-size: 130%;
  padding: 25px 40px;
}
.btn.l a:after, .btn.l > p:after {
  right: 40px;
}
@media (max-width: 800px) {
  .btn.l a, .btn.l > p {
    font-size: 120%;
    padding: 18px 30px;
  }
  .btn.l a:after, .btn.l > p:after {
    right: 30px;
  }
}
.btn.b {
  border-color: #000;
}
.btn.b:after {
  background: #000;
}
.btn.b a, .btn.b > p {
  color: #000;
}
.btn.b a:after, .btn.b > p:after {
  filter: brightness(0%);
}
.btn.b:hover a, .btn.b:hover > p {
  color: #fff;
}
.btn.b:hover a:after, .btn.b:hover > p:after {
  filter: brightness(100%);
}

.btnWrap {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 800px) {
  .btnWrap {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.pp_img_btn {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transition: all 0.3s ease-out;
}
.pp_img_btn:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 40px;
  height: 40px;
  top: 5px;
  right: 5px;
  border-radius: 20px;
  background: url(../img/popup_icon.png) 45% 45% no-repeat #000;
  background-size: 60% auto;
}
.pp_img_btn:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
@media (max-width: 800px) {
  .pp_img_btn:after {
    width: 28px;
    height: 28px;
    top: 5px;
    right: 5px;
  }
}

.table_spec {
  width: 100%;
  font-size: 90%;
  line-height: 1.3;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
}
.table_spec tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.table_spec tr th {
  padding: 15px 10px 15px 40px;
  width: 350px;
  font-weight: bold;
  opacity: 0.9;
  text-align: left;
}
.table_spec tr td {
  padding: 15px 30px 15px 10px;
}
@media (max-width: 800px) {
  .table_spec {
    font-size: 85%;
  }
  .table_spec tr th {
    width: 100px;
    padding: 10px 0px 10px 10px;
  }
  .table_spec tr td {
    padding: 10px 0px 10px 10px;
  }
}

.snsbox {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.snsbox > div {
  display: inline-block;
  width: 45px;
  aspect-ratio: 1/1;
  border-radius: 5px;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 150%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1px;
  transition: all 0.3s ease-out;
}
.snsbox a {
  display: block;
  width: 100%;
  height: 100%;
}
.snsbox .twitter {
  background-image: url(../img/snsicon_x_w.png);
}
.snsbox .line {
  background-image: url(../img/snsicon_line.png);
}
@media (max-width: 800px) {
  .snsbox {
    gap: 10px;
  }
}

.prr {
  opacity: 0;
  filter: blur(8px);
  transition: all 0.8s ease-out;
}
.prr.show {
  opacity: 1;
  filter: blur(0);
}

.prr2 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.9s ease-out;
}
@media (max-width: 800px) {
  .prr2 {
    transform: translateY(30px);
  }
}
.prr2.show {
  opacity: 1;
  transform: translateY(0);
}

.attention {
  font-size: 85%;
  opacity: 0.8;
}

.attention_dl dd:has(+ dt) {
  margin-bottom: 20px;
}

.attention_ul {
  font-size: 80%;
  opacity: 0.8;
}
.attention_ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.3;
  margin: 3px 0;
}

/* ================================================================ *
* menu
* ================================================================ */
#menuIcon {
  position: fixed;
  width: 80px;
  aspect-ratio: 1/1;
  top: 0;
  right: 0;
  z-index: 100;
  border-radius: 0 0 0 20px;
  padding: 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.8s ease-out;
}
#menuIcon[data-gr=st] {
  background: #726127;
}
#menuIcon[data-gr=qn] {
  background: #616161;
}
#menuIcon[data-gr=hv] {
  background: #142551;
}
#menuIcon span {
  position: relative;
  display: block;
  width: 60%;
  height: 4px;
  background: #fff;
  transition: all 0.2s ease-out;
}
#menuIcon span:before, #menuIcon span:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  transition: all 0.2s ease-out;
}
#menuIcon span:before {
  transform: translateY(-14px);
}
#menuIcon span:after {
  transform: translateY(14px);
}
#menuIcon.on {
  background: transparent !important;
}
#menuIcon.on span {
  background: transparent;
  width: 85%;
}
#menuIcon.on span:before {
  transform: rotate(45deg);
}
#menuIcon.on span:after {
  transform: rotate(-45deg);
}
#menuIcon.scroll {
  background: #242524;
}
@media (max-width: 800px) {
  #menuIcon {
    width: 60px;
    padding: 0 0 4px 3px;
    border-radius: 0 0 0 15px;
  }
  #menuIcon span {
    height: 4px;
    width: 70%;
  }
  #menuIcon span:before {
    transform: translateY(-12px);
  }
  #menuIcon span:after {
    transform: translateY(12px);
  }
}

#gMenu {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.5s ease-out;
}
#gMenu .bg {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transition: all 0.5s ease-out;
}
#gMenu nav {
  position: absolute;
  background: #248d9b;
  transform: translateX(100%);
  width: 500px;
  height: 100%;
  top: 0;
  right: 0;
  padding: 50px 50px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  letter-spacing: 2px;
  font-size: 120%;
  line-height: 1.5;
  transition: all 0.3s ease-out;
}
#gMenu nav ul {
  width: 100%;
  border-top: 1px solid #fff;
}
#gMenu nav ul li {
  border-bottom: 1px solid #fff;
}
#gMenu nav ul li a {
  display: block;
  color: #fff;
  padding: 30px;
}
#gMenu.show {
  pointer-events: auto;
  opacity: 1;
}
#gMenu.show .bg {
  opacity: 0.5;
}
#gMenu.show nav {
  transform: translateX(0%);
  transition-delay: 0.3s;
}
@media (max-width: 800px) {
  #gMenu nav {
    width: 100%;
    text-align: center;
  }
  #gMenu nav ul li a {
    padding: 25px;
  }
}

/* ================================================================ *
* loading
* ================================================================ */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", sans-serif;
  transition: all 0.8s ease-out;
  pointer-events: none;
  display: none;
}
#loading .txt {
  position: relative;
  z-index: 1;
  color: rgba(0, 0, 0, 0.15);
  font-size: 2em;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.15em;
  text-align: center;
  transition: all 0.3s ease-out;
}
#loading .txt.on {
  font-size: 120px;
  letter-spacing: 0;
  transition: all 0s ease-out;
}
#loading .txt.off {
  filter: blur(15px);
  opacity: 0 !important;
  transition: all 1s ease-out;
}
#loading.off {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 800px) {
  #loading .txt {
    font-size: 30px;
  }
}

#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  transition: all 0.8s ease-out;
}
#splash p {
  opacity: 0;
  transition: all 0.3s ease-out;
}
#splash .img {
  margin-bottom: 30px;
}
#splash .bar {
  position: absolute;
  width: 100%;
  height: 15px;
  bottom: 0;
  left: 0;
}
#splash .bar span {
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}
#splash .bar span:after {
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #c4b379, #c9c9ca, #5a6686);
}
#splash.on p {
  opacity: 1;
}
#splash.off {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 800px) {
  #splash .img {
    width: 50%;
  }
}

/* ================================================================ *
* bg
* ================================================================ */
#bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: #fff;
  transition: all 1s ease-out;
}
#bg.about {
  background: #248d9b;
}

.obj {
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s ease-out 0.5s;
}
.obj.show {
  opacity: 1;
}
.obj.obj_01 {
  right: 0;
  top: -150px;
}
.obj.obj_02 {
  left: 0;
  top: -300px;
}
.obj.obj_03 {
  right: 0;
  top: -300px;
}
.obj.obj_04 {
  left: 0;
  top: -450px;
}
@media (max-width: 800px) {
  .obj {
    transform-origin: 0 50%;
    transform: scale(0.7);
  }
  .obj.obj_01 {
    transform-origin: 100% 50%;
    top: -250px;
  }
  .obj.obj_02 {
    transform: scale(0.65);
    top: -260px;
  }
  .obj.obj_03 {
    transform: scale(0.8);
    transform-origin: 100% 50%;
    top: -250px;
  }
  .obj.obj_04 {
    top: -300px;
  }
}

/* ================================================================ *
* common
* ================================================================ */
#container {
  padding: 0;
  z-index: 3;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  min-width: 1260px;
  max-height: 1500px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 800px) {
  #container {
    min-width: 0;
  }
}

#wrapper {
  position: relative;
}

section.pg {
  position: relative;
  padding: 180px 40px 220px;
  z-index: 3;
}
@media (max-width: 800px) {
  section.pg {
    padding: 80px 30px;
  }
}
section.pg.gr {
  background: #248d9b;
  color: #fff;
}
section.pg.gr .h01:after {
  background-image: url(../img/ttl_subtxt_gray.png);
}

.pg_wrapper {
  width: min(100%, 1300px);
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.h01 {
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  font-size: 120px;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 10px;
  margin-bottom: 50px;
  transform: translateX(-3px);
}
.h01:after {
  content: "";
  display: block;
  position: absolute;
  width: 415px;
  aspect-ratio: 415/49;
  bottom: 15px;
  right: -200px;
  background: url(../img/ttl_subtxt_green.png) 50% 50% no-repeat;
  background-size: contain;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 0.5s ease-out 0.5s;
}
.h01 p {
  transform: translateY(30px);
  opacity: 0;
  filter: blur(8px);
  transition: all 0.8s ease-out;
}
.h01.show:after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.h01.show p {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media (max-width: 800px) {
  .h01 {
    font-size: 70px;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 0.9;
  }
  .h01:after {
    width: 200px;
    right: -70px;
    bottom: 12px;
  }
}

.h02 {
  font-size: 110%;
  font-weight: 600;
  margin-bottom: 15px;
}

/*================================================================ *
* top
* ================================================================ */
.top_bg {
  position: fixed;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.8s ease-out, background-color 0.8s ease-out;
}
.top_bg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0.05;
}
.top_bg.off {
  opacity: 0;
  pointer-events: none;
}
.top_bg .grd {
  position: absolute;
  display: block;
  width: 200vw;
  aspect-ratio: 1/1;
  opacity: 1;
  mix-blend-mode: soft-light;
  background: radial-gradient(#fff, rgba(0, 0, 0, 0) 50%);
}
.top_bg .grd:nth-of-type(1) {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.top_bg .grd:nth-of-type(2) {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.top_bg[data-gr=st] {
  background: #726127;
}
.top_bg[data-gr=qn] {
  background: #616161;
}
.top_bg[data-gr=hv] {
  background: #142551;
}
@media (max-width: 800px) {
  .top_bg:after {
    opacity: 0.1;
  }
  .top_bg .grd {
    width: 300vw;
    opacity: 0.7;
  }
}

#equalizer {
  position: fixed;
  z-index: 2;
  opacity: 0.3;
  width: calc(100vw + 15px);
  height: 400px;
  bottom: 5%;
  left: 0;
  display: flex;
  justify-content: space-between;
}
#equalizer > div {
  position: relative;
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  width: 3%;
}
#equalizer > div:before, #equalizer > div:after {
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 400px;
  bottom: 5%;
  left: 0;
  transform-origin: 50% 50%;
  transition: all 0.8s ease-out;
}
#equalizer > div:nth-of-type(odd):before, #equalizer > div:nth-of-type(odd):after {
  animation: equalizer_anim_1 1.5s linear infinite alternate;
}
#equalizer > div:nth-of-type(even):before, #equalizer > div:nth-of-type(even):after {
  animation: equalizer_anim_2 0.8s linear infinite alternate;
}
#equalizer > div:before {
  background: #fff;
  opacity: 0.4;
}
#equalizer > div:after {
  background: linear-gradient(122deg, #c4b379, #c9c9ca, #5a6686);
  opacity: 0;
}
#equalizer > div:nth-of-type(1):after, #equalizer > div:nth-of-type(1):before {
  animation-delay: -1.5s;
}
#equalizer > div:nth-of-type(2):after, #equalizer > div:nth-of-type(2):before {
  animation-delay: -2.3s;
}
#equalizer > div:nth-of-type(3):after, #equalizer > div:nth-of-type(3):before {
  animation-delay: -2.4s;
}
#equalizer > div:nth-of-type(4):after, #equalizer > div:nth-of-type(4):before {
  animation-delay: -1.9s;
}
#equalizer > div:nth-of-type(5):after, #equalizer > div:nth-of-type(5):before {
  animation-delay: -1s;
}
#equalizer > div:nth-of-type(6):after, #equalizer > div:nth-of-type(6):before {
  animation-delay: -2.4s;
}
#equalizer > div:nth-of-type(7):after, #equalizer > div:nth-of-type(7):before {
  animation-delay: -0.6s;
}
#equalizer > div:nth-of-type(8):after, #equalizer > div:nth-of-type(8):before {
  animation-delay: -0.9s;
}
#equalizer > div:nth-of-type(9):after, #equalizer > div:nth-of-type(9):before {
  animation-delay: -0.9s;
}
#equalizer > div:nth-of-type(10):after, #equalizer > div:nth-of-type(10):before {
  animation-delay: -0.1s;
}
#equalizer > div:nth-of-type(11):after, #equalizer > div:nth-of-type(11):before {
  animation-delay: -0.8s;
}
#equalizer > div:nth-of-type(12):after, #equalizer > div:nth-of-type(12):before {
  animation-delay: -2.5s;
}
#equalizer > div:nth-of-type(13):after, #equalizer > div:nth-of-type(13):before {
  animation-delay: -1.4s;
}
#equalizer > div:nth-of-type(14):after, #equalizer > div:nth-of-type(14):before {
  animation-delay: -0.7s;
}
#equalizer > div:nth-of-type(15):after, #equalizer > div:nth-of-type(15):before {
  animation-delay: -0.1s;
}
#equalizer > div:nth-of-type(16):after, #equalizer > div:nth-of-type(16):before {
  animation-delay: -2.1s;
}
#equalizer > div:nth-of-type(17):after, #equalizer > div:nth-of-type(17):before {
  animation-delay: -0.8s;
}
#equalizer > div:nth-of-type(18):after, #equalizer > div:nth-of-type(18):before {
  animation-delay: -1.5s;
}
#equalizer > div:nth-of-type(19):after, #equalizer > div:nth-of-type(19):before {
  animation-delay: -2s;
}
#equalizer > div:nth-of-type(20):after, #equalizer > div:nth-of-type(20):before {
  animation-delay: -1.9s;
}
#equalizer > div:nth-of-type(21):after, #equalizer > div:nth-of-type(21):before {
  animation-delay: -1.4s;
}
#equalizer > div:nth-of-type(22):after, #equalizer > div:nth-of-type(22):before {
  animation-delay: -0.9s;
}
#equalizer > div:nth-of-type(23):after, #equalizer > div:nth-of-type(23):before {
  animation-delay: -1.6s;
}
#equalizer > div:nth-of-type(24):after, #equalizer > div:nth-of-type(24):before {
  animation-delay: -1s;
}
#equalizer > div:nth-of-type(25):after, #equalizer > div:nth-of-type(25):before {
  animation-delay: -1.5s;
}
#equalizer > div:nth-of-type(26):after, #equalizer > div:nth-of-type(26):before {
  animation-delay: -0.1s;
}
@keyframes equalizer_anim_1 {
  0% {
    transform: scaleY(100%);
  }
  100% {
    transform: scaleY(0%);
    opacity: 0.4;
  }
}
@keyframes equalizer_anim_2 {
  0% {
    transform: scaleY(100%);
  }
  100% {
    transform: scaleY(40%);
    opacity: 0.4;
  }
}
#equalizer.off > div:before {
  opacity: 0;
}
#equalizer.off > div:after {
  opacity: 1;
}
@media (max-width: 800px) {
  #equalizer {
    height: 160px;
    bottom: 5%;
    opacity: 0;
  }
  #equalizer.off {
    opacity: 0.3;
  }
  #equalizer > div {
    width: 5%;
  }
  #equalizer > div:before, #equalizer > div:after {
    height: 160px;
    bottom: 5%;
  }
}

#top {
  position: sticky;
  top: 0;
  z-index: 3;
  width: 100%;
  height: 100svh;
  transition: all 0.8s ease-out;
}
#top.off {
  opacity: 0;
  pointer-events: none;
}
#top #topSlider {
  position: absolute;
  inset: 0;
  z-index: 2;
}
#top #topSlider .slideWrap {
  position: absolute;
  inset: 0;
  padding-left: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top #topSlider .slideWrap .box {
  position: relative;
  border-radius: 50px;
}
@media (min-width: 800px) {
  #top #topSlider .slideWrap .box {
    width: 90%;
    height: 77%;
    min-height: 600px;
    max-width: min(140vh, 1700px);
  }
}
#top #topSlider .slideWrap .box > * {
  pointer-events: none;
}
#top #topSlider .slideWrap .box .bg {
  position: absolute;
  inset: 0;
  border-radius: 100px 0 100px 0;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 80px -30px rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  transition: all 0.4s ease-out;
  opacity: 0;
  clip-path: polygon(calc(-100% - 100vh) 0, 0 0, -100vh 100%, calc(-100% - 100vh) 100%);
}
#top #topSlider .slideWrap .box .bg:after {
  content: "";
  display: block;
  position: absolute;
  opacity: 0.7;
  width: min(100%, 1000px);
  height: 100%;
  top: 0;
  right: 0;
  background: #000;
  clip-path: polygon(100% 10%, 100% 100%, 0 100%);
  background-size: cover;
}
#top #topSlider .slideWrap .box .bg.st {
  background: #c4b379;
}
#top #topSlider .slideWrap .box .bg.st:after {
  background-image: url(../img/pattern_st.png);
  background-color: #726127;
}
#top #topSlider .slideWrap .box .bg.qn {
  background: #dadada;
}
#top #topSlider .slideWrap .box .bg.qn:after {
  background-image: url(../img/pattern_qn.png);
  background-color: #616161;
}
#top #topSlider .slideWrap .box .bg.hv {
  background: #6376a9;
}
#top #topSlider .slideWrap .box .bg.hv:after {
  background-image: url(../img/pattern_hv.png);
  background-color: #142551;
}
#top #topSlider .slideWrap .box .bg.on {
  opacity: 1;
  clip-path: polygon(-80px -80px, calc(100% + 100vh + 80px) -80px, calc(100% + 80px) calc(100% + 80px), -80px calc(100% + 80px));
  transition: all 0.6s ease-out;
}
#top #topSlider .slideWrap .box .bgtxt {
  position: fixed;
  top: -10px;
  left: 5px;
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  pointer-events: none;
  z-index: 2;
  font-size: clamp(7.5rem, 6.31rem + 5.95vw, 13.75rem);
  line-height: 0.9;
  color: transparent;
  opacity: 0.3;
  -webkit-text-stroke: 2px #fff;
  filter: drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.2));
  transition: all 0.3s ease-out;
}
#top #topSlider .slideWrap .box .bgtxt.off {
  opacity: 0;
}
#top #topSlider .slideWrap .box h1 {
  position: absolute;
  bottom: calc(11% + 50px);
  left: -10vw;
  color: #fff;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.9vw;
  justify-content: flex-start;
  align-items: flex-start;
}
#top #topSlider .slideWrap .box h1 p {
  position: relative;
  padding: 10px;
}
#top #topSlider .slideWrap .box h1 p.logo img {
  width: clamp(280px, 23vw, 450px);
}
#top #topSlider .slideWrap .box h1 .ttl {
  font-size: clamp(1.25rem, -0.344rem + 2.13vw, 2.313rem);
  line-height: 0.9;
  font-weight: 600;
  letter-spacing: 0.1em;
}
#top #topSlider .slideWrap .box h1 .model {
  position: relative;
  white-space: nowrap;
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  font-size: clamp(2.5rem, -0.781rem + 4.38vw, 4.688rem);
  line-height: 0.9;
  letter-spacing: 5px;
}
#top #topSlider .slideWrap .box h1 .model p {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
  transform: scaleY(0);
}
#top #topSlider .slideWrap .box h1 .model p.on {
  opacity: 1;
  transition: all 0.5s ease-out;
  transform: scaleY(1);
}
#top #topSlider .slideWrap .box h1[data-gr=st] p {
  background: rgba(114, 97, 39, 0.9);
}
#top #topSlider .slideWrap .box h1[data-gr=qn] p {
  background: rgba(97, 97, 97, 0.9);
}
#top #topSlider .slideWrap .box h1[data-gr=hv] p {
  background: rgba(20, 37, 81, 0.9);
}
#top #topSlider .slideWrap .box .ch {
  position: absolute;
  z-index: 3;
  inset: 0;
}
#top #topSlider .slideWrap .box .ch > div {
  position: absolute;
  inset: 0;
  border-radius: 50px;
  transition: all 0.4s ease-out;
  opacity: 0;
  clip-path: polygon(calc(-100% - 100vh) 0, 0 0, -100vh 100%, calc(-100% - 100vh) 100%);
}
#top #topSlider .slideWrap .box .ch > div .img {
  position: absolute;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 800px) {
  #top #topSlider .slideWrap .box .ch > div .img {
    width: 56%;
    height: calc(100% - 35px);
    bottom: 0;
    right: 0;
  }
}
#top #topSlider .slideWrap .box .ch > div.st .img {
  background-image: url(../img/top_img_st.webp);
}
#top #topSlider .slideWrap .box .ch > div.qn .img {
  background-image: url(../img/top_img_qn.webp);
}
#top #topSlider .slideWrap .box .ch > div.hv .img {
  background-image: url(../img/top_img_hv.webp);
}
#top #topSlider .slideWrap .box .ch > div.on {
  opacity: 1;
  clip-path: polygon(-80px -80px, calc(100% + 100vh + 80px) -80px, calc(100% + 80px) calc(100% + 80px), -80px calc(100% + 80px));
  transition: all 0.6s ease-out;
}
#top #topSlider .slideWrap .box .item {
  z-index: 4;
}
@media (min-width: 800px) {
  #top #topSlider .slideWrap .box .item {
    position: absolute;
    top: 10%;
    left: 7%;
    height: 100%;
    width: 43%;
  }
}
#top #topSlider .slideWrap .box .item .item_box {
  position: absolute;
  margin: 0 auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(30vw, 53vh);
  aspect-ratio: 1/1;
}
#top #topSlider .slideWrap .box .item .item_box > div {
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.4s ease-out;
  transform: translateY(-20px);
}
#top #topSlider .slideWrap .box .item .item_box.on > div {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.8s ease-out;
}
#top #topSlider .slideWrap .box .item .item_box.on > div.case {
  transition-delay: 0.3s;
}
#top #topSlider .slideWrap .box .item .item_box.on > div.l {
  transition-delay: 0.5s;
}
#top #topSlider .slideWrap .box .item .item_box.on > div.r {
  transition-delay: 0.7s;
}
#top #topSlider .slideWrap .box .item .item_box.st {
  filter: drop-shadow(15px 30px 30px #726127);
}
#top #topSlider .slideWrap .box .item .item_box.qn {
  filter: drop-shadow(15px 30px 30px #616161);
}
#top #topSlider .slideWrap .box .item .item_box.hv {
  filter: drop-shadow(15px 30px 30px #142551);
}
#top #topSlider .slideWrap .box .ctrl {
  position: absolute;
  z-index: 4;
  padding: 8px 20px 8px 30px;
  right: 0;
  bottom: 50px;
  border-radius: 50px 0 0 50px;
  pointer-events: auto;
  display: flex;
  gap: 10px;
  transition: all 0.5s ease-out 0.6s;
}
#top #topSlider .slideWrap .box .ctrl > div {
  transform: scale(0.7);
  opacity: 0.3;
  width: 40px;
  transition: all 0.15s ease-out;
  cursor: pointer;
}
#top #topSlider .slideWrap .box .ctrl > div.on, #top #topSlider .slideWrap .box .ctrl > div:hover {
  transform: scale(1);
  opacity: 1;
}
#top #topSlider .slideWrap .box .ctrl.off {
  opacity: 0;
  transition-delay: 0s;
}
#top #topSlider .slideWrap .box .ctrl[data-gr=st] {
  background: rgba(114, 97, 39, 0.9);
}
#top #topSlider .slideWrap .box .ctrl[data-gr=qn] {
  background: rgba(97, 97, 97, 0.9);
}
#top #topSlider .slideWrap .box .ctrl[data-gr=hv] {
  background: rgba(20, 37, 81, 0.9);
}
#top .scroll {
  position: absolute;
  bottom: 30px;
  right: 20px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
#top .scroll p {
  color: #fff;
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  font-size: 13px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}
#top .scroll:after {
  content: "";
  display: block;
  width: 10px;
  height: 50px;
  transform: translateX(-2px);
  background: url(../img/top_scroll_icon.png) 50% 50% no-repeat;
  background-size: contain;
}
@media (max-width: 800px) {
  #top .bgtxt_sp {
    position: absolute;
    bottom: 0;
    left: 0;
    font-family: "matrix-ii";
    font-feature-settings: "lnum";
    pointer-events: none;
    z-index: 2;
    line-height: 0.9;
    color: transparent;
    opacity: 0.3;
    -webkit-text-stroke: 1px #fff;
    letter-spacing: 6px;
    text-align: right;
    font-size: 90px;
    writing-mode: vertical-rl;
  }
  #top #topSlider .slideWrap .box {
    aspect-ratio: 500/628;
    width: 77vw;
    border-radius: 30px;
    margin-bottom: 0px;
    margin-top: 10px;
  }
  #top #topSlider .slideWrap .box .bg {
    border-radius: 30px;
    transform: rotate(10deg) translateX(20px);
  }
  #top #topSlider .slideWrap .box .bg:after {
    clip-path: polygon(100% 10%, 100% 100%, 0 100%, 0 90%);
  }
  #top #topSlider .slideWrap .box h1 {
    position: fixed;
    top: 30px;
    left: 0;
    bottom: auto;
    gap: 7px;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
  }
  #top #topSlider .slideWrap .box h1 p {
    padding: 7px;
  }
  #top #topSlider .slideWrap .box h1 p.logo img {
    width: 250px;
  }
  #top #topSlider .slideWrap .box h1 .ttl {
    font-size: 95%;
  }
  #top #topSlider .slideWrap .box h1 .model {
    font-size: 33px;
    letter-spacing: 2px;
  }
  #top #topSlider .slideWrap .box .ch {
    inset: 0;
    transform: rotate(10deg) translateX(20px);
  }
  #top #topSlider .slideWrap .box .ch > div {
    border-radius: 30px;
    overflow: hidden;
  }
  #top #topSlider .slideWrap .box .ch > div .img {
    width: 100%;
    height: 100%;
    background-size: auto 95%;
    background-position: 50% 100%;
  }
  #top #topSlider .slideWrap .box .ch > div .img:after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 1;
    border-radius: 30px;
    mix-blend-mode: multiply;
  }
  #top #topSlider .slideWrap .box .ch > div.st .img:after {
    background: linear-gradient(to bottom, transparent 60%, rgb(95, 80.8333333333, 32.5));
  }
  #top #topSlider .slideWrap .box .ch > div.qn .img:after {
    background: linear-gradient(to bottom, transparent 60%, rgb(84.25, 84.25, 84.25));
  }
  #top #topSlider .slideWrap .box .ch > div.hv .img:after {
    background: linear-gradient(to bottom, transparent 60%, rgb(14.9504950495, 27.6584158416, 60.5495049505));
  }
  #top #topSlider .slideWrap .box .item {
    position: fixed;
    bottom: calc(10% - 100px);
    left: 20px;
    width: 75vw;
    height: 80vw;
  }
  #top #topSlider .slideWrap .box .item .item_box {
    width: 100%;
  }
  #top #topSlider .slideWrap .box .item .item_box .r, #top #topSlider .slideWrap .box .item .item_box .l {
    width: 90%;
  }
  #top #topSlider .slideWrap .box .item .item_box .r {
    right: -45px;
    bottom: -75px;
  }
  #top #topSlider .slideWrap .box .item .item_box .l {
    right: -25px;
    bottom: -45px;
  }
  #top #topSlider .slideWrap .box .item .item_box.st {
    filter: drop-shadow(10px 20px 20px #726127);
  }
  #top #topSlider .slideWrap .box .item .item_box.qn {
    filter: drop-shadow(10px 20px 20px #616161);
  }
  #top #topSlider .slideWrap .box .item .item_box.hv {
    filter: drop-shadow(10px 20px 20px #142551);
  }
  #top #topSlider .slideWrap .box .ctrl {
    position: fixed;
    padding: 4px 5px 4px 20px;
    gap: 5px;
  }
  #top #topSlider .slideWrap .box .ctrl > div {
    width: 30px;
  }
  #top .scroll {
    display: none;
  }
}

/* ================================================================ *
* about
* ================================================================ */
#about {
  z-index: 5;
}
#about #about_catch {
  font-size: 120%;
  letter-spacing: 2px;
  line-height: 2.3;
  margin-bottom: 400px;
}
#about #about_catch p {
  margin-bottom: 30px;
}
#about #about_point .flexWrap {
  display: flex;
  gap: 120px;
  align-items: center;
}
#about #about_point .flexWrap:not(:nth-last-of-type(1)) {
  margin-bottom: 80px;
}
#about #about_point .imgWrap {
  width: 550px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 5px 10px 50px -10px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: all 0.7s ease-out;
  opacity: 0;
}
#about #about_point .imgWrap > * {
  transform: scale(1.3);
  transition: all 1s ease-out;
}
#about #about_point .imgWrap.show {
  opacity: 1;
  clip-path: polygon(-50px -50px, calc(100% + 50px) -50px, calc(100% + 50px) calc(100% + 50px), -50px calc(100% + 50px));
}
#about #about_point .imgWrap.show > * {
  transform: scale(1);
}
#about #about_point .slick-dots {
  position: absolute;
  z-index: 10;
  bottom: 30px;
  left: 30px;
  display: flex;
  gap: 10px;
}
#about #about_point .slick-dots li {
  position: relative;
}
#about #about_point .slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  opacity: 0.4;
  width: 15px;
  aspect-ratio: 1/1;
  transform: scale(0.8);
  border-radius: 10px;
  background: #000;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  transition: all 0.15s ease-out;
  cursor: pointer;
}
#about #about_point .slick-dots li button:hover, #about #about_point .slick-dots li button:focus {
  outline: none;
  opacity: 1;
}
#about #about_point .slick-dots li.slick-active, #about #about_point .slick-dots li:hover {
  transform-origin: 50%;
}
#about #about_point .slick-dots li.slick-active button, #about #about_point .slick-dots li:hover button {
  opacity: 1;
  transform: scale(1.1);
}
#about #about_point .slick-dots li:nth-of-type(1) button {
  background: #726127;
}
#about #about_point .slick-dots li:nth-of-type(2) button {
  background: #616161;
}
#about #about_point .slick-dots li:nth-of-type(3) button {
  background: #142551;
}
#about #about_point .txtWrap {
  flex: 1;
  color: #fff;
  font-size: 120%;
  letter-spacing: 2px;
  line-height: 2.3;
}
#about #about_point .txtWrap .wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#about #about_point .txtWrap .btn {
  margin-bottom: 10px;
  margin-top: 40px;
}
@media (max-width: 800px) {
  #about #about_catch {
    margin-bottom: 300px;
    font-size: 110%;
    line-height: 1.9;
    letter-spacing: 0;
  }
  #about #about_point .flexWrap {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  #about #about_point .flexWrap:not(:nth-last-of-type(1)) {
    margin-bottom: 90px;
  }
  #about #about_point .flexWrap .imgWrap {
    width: 80%;
    border-radius: 20px;
    box-shadow: 2.5px 5px 30px -10px rgba(0, 0, 0, 0.3);
  }
  #about #about_point .flexWrap .slick-dots {
    bottom: 15px;
    left: 15px;
  }
  #about #about_point .flexWrap .slick-dots li button {
    width: 10px;
  }
  #about #about_point .flexWrap .txtWrap {
    font-size: 100%;
    line-height: 1.8;
  }
  #about #about_point .flexWrap .txtWrap .btn {
    margin-top: 15px auto 0;
    width: 100%;
  }
  #about #about_point .flexWrap:nth-last-of-type(1) .imgWrap {
    order: 1;
  }
  #about #about_point .flexWrap:nth-last-of-type(1) .txtWrap {
    order: 2;
  }
}

/* ================================================================ *
* lineup
* ================================================================ */
#lineup {
  background: #fff;
}
#lineup .disc {
  font-size: 120%;
  line-height: 2;
  margin-bottom: 80px;
  letter-spacing: 2px;
}
#lineup ul {
  position: relative;
  padding: 0 50px 0 130px;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 150px 0;
}
#lineup ul li {
  position: relative;
  width: 50%;
}
#lineup ul li .box {
  position: relative;
  cursor: pointer;
  width: 420px;
  aspect-ratio: 420/550;
  color: #fff;
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  transition: all 0.3s ease-out;
  perspective: 1600px;
}
#lineup ul li .box .txt {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  box-shadow: 5px 10px 50px -10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-out;
}
#lineup ul li .box .txt:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: 90% auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
#lineup ul li .box .txt .num {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 120%;
  letter-spacing: 2px;
  z-index: 2;
  line-height: 1;
}
#lineup ul li .box .txt .ver {
  position: absolute;
  right: 20px;
  top: 30px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 48px;
  letter-spacing: 5px;
  line-height: 1;
}
#lineup ul li .box .txt .btn {
  position: absolute;
  bottom: 25px;
  right: 25px;
  z-index: 4;
}
#lineup ul li .box .img {
  position: absolute;
  bottom: -30px;
  left: -100px;
  z-index: 3;
  transition: all 0.3s ease-out;
}
@media (min-width: 800px) {
  #lineup ul li .box:hover {
    transform: translateY(-15px);
  }
  #lineup ul li .box:hover .txt {
    transition-delay: 0s;
    box-shadow: 10px 30px 50px -10px rgba(0, 0, 0, 0.5);
    transform: rotate3d(1, 1, -0.5, -10deg) translateY(-10px) !important;
  }
  #lineup ul li .box:hover .txt .btn:after {
    transform-origin: 0 0;
    transform: scaleX(1);
    opacity: 1;
  }
  #lineup ul li .box:hover .txt .btn a, #lineup ul li .box:hover .txt .btn > p {
    color: #000;
  }
  #lineup ul li .box:hover .txt .btn a:after, #lineup ul li .box:hover .txt .btn > p:after {
    filter: brightness(0%);
  }
  #lineup ul li .box:hover .img {
    transform: scale(1.05) !important;
    transition: all 0.6s ease-out;
  }
}
@media (min-width: 800px) {
  #lineup ul li .box .txt {
    opacity: 0;
    transform: rotateY(-90deg);
    transition: all 0.5s ease-out 0.2s;
  }
  #lineup ul li .box .img {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease-out 0.6s;
  }
  #lineup ul li .box.show .txt {
    opacity: 1;
    transform: rotate(0);
  }
  #lineup ul li .box.show .img {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 800px) {
  #lineup ul li.qn {
    display: flex;
    justify-content: flex-end;
    transform: translateY(200px);
  }
  #lineup ul li.hv {
    transform: translateX(120px);
  }
}
#lineup ul li.st .box .txt {
  background: rgb(185.0865284974, 164.9419689119, 96.2134715026);
}
#lineup ul li.st .box .txt:after {
  background-image: url(../img/grobj_st.png);
}
#lineup ul li.st .box .img {
  filter: drop-shadow(15px 30px 30px #726127);
}
#lineup ul li.qn .box .txt {
  background: rgb(200.15, 200.15, 200.15);
}
#lineup ul li.qn .box .txt:after {
  background-image: url(../img/grobj_qn.png);
}
#lineup ul li.qn .box .img {
  filter: drop-shadow(15px 30px 30px #616161);
}
#lineup ul li.hv .box .txt {
  background: rgb(82.552892562, 100.791322314, 149.747107438);
}
#lineup ul li.hv .box .txt:after {
  background-image: url(../img/grobj_hv.png);
}
#lineup ul li.hv .box .img {
  filter: drop-shadow(15px 30px 30px #142551);
}
@media (max-width: 800px) {
  #lineup .disc {
    font-size: 105%;
    line-height: 1.8;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
  #lineup ul {
    padding: 0;
    flex-direction: column;
    gap: 40px;
  }
  #lineup ul li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  #lineup ul li .wrap {
    width: 80%;
  }
  #lineup ul li .box {
    width: 100%;
    aspect-ratio: 420/440;
  }
  #lineup ul li .box .txt {
    inset: 0 0 0 50px;
    opacity: 0;
    transition: all 0.5s ease-out 0.2s;
  }
  #lineup ul li .box .txt .num {
    top: 18px;
    left: 18px;
    font-size: 90%;
  }
  #lineup ul li .box .txt .ver {
    right: 10px;
    top: 18px;
    font-size: 28px;
    letter-spacing: 2px;
  }
  #lineup ul li .box .txt .btn {
    bottom: 18px;
    right: 15px;
  }
  #lineup ul li .box .img {
    width: 70%;
    left: 0;
    top: calc(50% + 10px);
    bottom: auto;
    opacity: 0;
    transform: translateY(calc(-40% - 10px));
    transition: all 0.8s ease-out 0.6s;
  }
  #lineup ul li .box.show .txt {
    opacity: 1;
    transform: translateX(0) !important;
  }
  #lineup ul li .box.show .img {
    opacity: 1;
    transform: translateY(-40%);
  }
  #lineup ul li.st, #lineup ul li.hv {
    transform: translateX(-30px);
  }
  #lineup ul li.st .box .txt, #lineup ul li.hv .box .txt {
    inset: 0 50px 0 0;
    border-radius: 0 18px 18px 0;
    transform: translateX(-30%);
  }
  #lineup ul li.st .box .txt .num, #lineup ul li.hv .box .txt .num {
    left: auto;
    right: 18px;
  }
  #lineup ul li.st .box .txt .ver, #lineup ul li.hv .box .txt .ver {
    right: auto;
    left: 18px;
  }
  #lineup ul li.st .box .txt .btn, #lineup ul li.hv .box .txt .btn {
    right: auto;
    left: 15px;
  }
  #lineup ul li.st .img, #lineup ul li.hv .img {
    left: auto;
    right: -50px;
  }
  #lineup ul li.qn {
    justify-content: flex-end;
    transform: translateX(30px);
  }
  #lineup ul li.qn .txt {
    border-radius: 18px 0 0 18px;
    transform: translateX(30%);
  }
  #lineup ul li.qn .txt .ver {
    letter-spacing: 1px;
  }
  #lineup ul li.qn .img {
    left: -60px;
  }
  #lineup ul li.st .box .img {
    filter: drop-shadow(10px 10px 20px rgba(114, 97, 39, 0.5));
  }
  #lineup ul li.qn .box .img {
    filter: drop-shadow(10px 10px 20px rgba(97, 97, 97, 0.5));
  }
  #lineup ul li.hv .box .img {
    filter: drop-shadow(10px 10px 20px rgba(20, 37, 81, 0.5));
  }
}

/* ================================================================ *
* spec
* ================================================================ */
#spec .pg_content:not(:nth-last-of-type(1)) {
  margin-bottom: 80px;
}
@media (max-width: 800px) {
  #spec .pg_content:not(:nth-last-of-type(1)) {
    margin-bottom: 40px;
  }
}

/* ================================================================ *
* app
* ================================================================ */
#app {
  background: #fff;
}
#app .pg_content {
  display: flex;
  gap: 100px;
  justify-content: center;
}
#app .pg_content .txtWrap {
  flex: 1;
}
#app .pg_content .txtWrap p {
  font-size: 105%;
  line-height: 2;
}
#app .pg_content .txtWrap h2 {
  font-size: 46px;
  margin-bottom: 30px;
}
#app .pg_content .txtWrap dl {
  margin-top: 50px;
  margin-bottom: 70px;
}
#app .pg_content .txtWrap dl dt {
  font-weight: 600;
  font-size: 120%;
  color: #979797;
  margin-bottom: 20px;
}
#app .pg_content .imgWrap {
  width: 480px;
  background: rgba(159, 159, 159, 0.3);
  padding: 50px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#app .pg_content .bnrWrap {
  display: flex;
  gap: 20px;
}
#app .pg_content .bnrWrap a {
  transition: all 0.3s ease-out;
}
#app .pg_content .bnrWrap a:hover {
  transform: scale(1.05);
}
@media (max-width: 800px) {
  #app .pg_content {
    flex-wrap: wrap;
    align-items: center;
    gap: 35px;
  }
  #app .pg_content .txtWrap {
    order: 2;
    width: 100%;
  }
  #app .pg_content .txtWrap h2 {
    font-size: 200%;
    line-height: 1.3;
    margin-bottom: 15px;
  }
  #app .pg_content .txtWrap p {
    font-size: 95%;
    line-height: 1.8;
  }
  #app .pg_content .txtWrap dl {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  #app .pg_content .txtWrap dl dt {
    margin-bottom: 10px;
  }
  #app .pg_content .txtWrap .bnrWrap {
    gap: 5px;
  }
  #app .pg_content .imgWrap {
    position: relative;
    margin: 5px -30px 0;
    padding: 30px;
    order: 1;
    width: calc(100% + 60px);
    border-radius: 0;
  }
  #app .pg_content .imgWrap img {
    width: 40%;
  }
}

/* ================================================================ *
* buy
* ================================================================ */
#buy .disc {
  font-size: 120%;
  line-height: 2;
  margin-bottom: 50px;
  letter-spacing: 2px;
}
#buy .table_spec {
  margin-bottom: 80px;
}
#buy .btn {
  position: relative;
  z-index: 4;
}
@media (max-width: 800px) {
  #buy .disc {
    font-size: 105%;
    line-height: 1.8;
    letter-spacing: 0;
    margin-bottom: 30px;
  }
  #buy .table_spec {
    margin-bottom: 40px;
  }
  #buy .table_spec tr th {
    width: calc(4em + 15px);
  }
}

/* ================================================================ *
* support
* ================================================================ */
#support {
  background: #e2e4e5;
  padding: 150px 40px 170px;
}
#support h1 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 25px;
  font-weight: 600;
}
#support .txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#support .txt p {
  margin-bottom: 20px;
}
#support .txt .attention_ul {
  background: rgba(0, 0, 0, 0.08);
  margin-bottom: 50px;
  padding: 15px 20px;
  border-radius: 10px;
}
#support .txt .attention_ul a {
  text-decoration: underline;
}
@media (max-width: 800px) {
  #support {
    padding: 80px 30px;
  }
  #support h1 {
    margin-bottom: 20px;
  }
  #support .txt p {
    margin-bottom: 15px;
  }
  #support .txt .attention_ul {
    margin-bottom: 30px;
  }
  #support .btn_wrap .btn {
    width: 80%;
  }
}

/* ================================================================ *
* gfooter
* ================================================================ */
#gfooter {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 80px 40px 90px;
  background: #242524;
  color: #fff;
}
#gfooter .sns {
  margin-bottom: 50px;
}
#gfooter .sns .txt {
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
  margin-bottom: 5px;
  font-size: 150%;
  letter-spacing: 2px;
  margin-top: 2px;
}
#gfooter .btnWrap {
  gap: 20px 10px;
  flex-wrap: wrap;
  width: 1200px;
  margin: 0 auto 50px;
}
#gfooter .btnWrap .foot_btn {
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
  width: min(100%, 450px);
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 70px;
  color: #fff;
  font-size: 90%;
}
#gfooter .btnWrap .foot_btn:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  opacity: 0;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
}
#gfooter .btnWrap .foot_btn:hover {
  color: #000;
}
#gfooter .btnWrap .foot_btn:hover:after {
  transform-origin: 0 0;
  transform: scaleX(1);
  opacity: 1;
}
#gfooter .attentionWrap {
  font-size: 14px;
  margin-bottom: 20px;
}
#gfooter .copyWrap {
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#gfooter .copyWrap .logo {
  width: 30px;
}
@media (max-width: 800px) {
  #gfooter {
    padding: 50px 30px 60px;
  }
  #gfooter .btnWrap {
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
  }
  #gfooter .copyWrap {
    display: block;
  }
}

/* ================================================================ *
* popup
* ================================================================ */
#popup, #popup_movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1010;
  pointer-events: none;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup > .bg, #popup_movie > .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
}
#popup > .bg:after, #popup_movie > .bg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto 80%;
  opacity: 0.5;
}
@media (max-width: 800px) {
  #popup > .bg:after, #popup_movie > .bg:after {
    background-size: 90% auto;
    background-position: calc(100% + 30px) 100%;
  }
}
#popup .close, #popup_movie .close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 16;
  width: 80px;
  aspect-ratio: 1/1;
  background: #242524;
  border-radius: 0 0 0 20px;
  padding: 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s ease-out;
  opacity: 0;
}
#popup .close span, #popup_movie .close span {
  position: relative;
  z-index: 10;
  display: block;
  width: 85%;
  height: 4px;
  transition: all 0.15s ease-out;
}
#popup .close span:before, #popup .close span:after, #popup_movie .close span:before, #popup_movie .close span:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.15s ease-out;
}
#popup .close span:before, #popup_movie .close span:before {
  transform: translateY(-7px);
  transform: rotate(45deg);
}
#popup .close span:after, #popup_movie .close span:after {
  transform: translateY(7px);
  transform: rotate(-45deg);
}
#popup .close.on, #popup_movie .close.on {
  opacity: 1;
}
#popup .content, #popup_movie .content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: scale(1.05);
  padding: 100px 50px;
}
#popup .content.on, #popup_movie .content.on {
  opacity: 1;
  transform: scale(1);
}
#popup .content .wrapper, #popup_movie .content .wrapper {
  position: relative;
  z-index: 10;
  width: min(100%, 1200px);
  margin: 0 auto;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup .content .wrapper.on, #popup_movie .content .wrapper.on {
  opacity: 1;
}
#popup .content .loading, #popup_movie .content .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  transition: all 0.3s ease-out;
  opacity: 1;
  letter-spacing: 2px;
  text-indent: 2px;
  font-size: 85%;
  color: rgba(255, 255, 255, 0.8);
}
#popup .content .loading.on, #popup_movie .content .loading.on {
  opacity: 0;
}
#popup.on, #popup_movie.on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 800px) {
  #popup .close, #popup_movie .close {
    width: 60px;
    height: 60px;
  }
  #popup .content, #popup_movie .content {
    padding: 70px 20px 50px;
  }
  #popup .content .wrapper, #popup_movie .content .wrapper {
    padding: 0;
  }
}

#popup.img .content {
  padding: 60px;
  margin-bottom: 10px;
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#popup.img .content .wrapper {
  padding: 0;
}
@media (max-width: 800px) {
  #popup.img .content {
    padding: 40px 0px;
  }
}

#popup_movie {
  padding: 0;
}
#popup_movie .close {
  right: 15px;
  top: 15px;
}
#popup_movie #movie_wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.4s ease-out 0.5s;
}
#popup_movie #movie_wrap:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
#popup_movie #movie_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
#popup_movie #movie_wrap iframe.on {
  display: block;
}
@media (min-width: 800px) {
  #popup_movie #movie_wrap iframe {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 800px) {
  #popup_movie #movie_wrap {
    width: 100%;
    height: auto;
  }
}
#popup_movie.on {
  top: 0;
}
#popup_movie.on #movie_wrap {
  opacity: 1;
  transform: scale(1);
}

#popup.pp_detail .item {
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 80px;
}
@media (max-width: 800px) {
  #popup.pp_detail .item {
    gap: 40px;
  }
}
#popup.pp_detail .item .imgWrap {
  width: 550px;
}
#popup.pp_detail .item .imgWrap .img {
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 10px 50px -10px rgba(0, 0, 0, 0.3);
}
#popup.pp_detail .item .imgWrap .img li {
  border-radius: 30px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup.pp_detail .item .imgWrap .img li.on {
  opacity: 1;
}
#popup.pp_detail .item .imgWrap .thumb {
  display: flex;
  gap: 10px;
}
#popup.pp_detail .item .imgWrap .thumb li {
  position: relative;
  box-shadow: 5px 10px 50px -10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
#popup.pp_detail .item .imgWrap .thumb li:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border: 5px solid #248d9b;
  border-radius: inherit;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup.pp_detail .item .imgWrap .thumb li.on:after {
  opacity: 0.8;
}
#popup.pp_detail .item .txtWrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#popup.pp_detail .item .txtWrap h1 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
#popup.pp_detail .item .txtWrap h1 .ttl {
  font-size: 150%;
}
#popup.pp_detail .item .txtWrap h1 .model {
  font-size: 280%;
}
#popup.pp_detail .item .txtWrap .price {
  font-weight: 600;
  font-size: 190%;
}
#popup.pp_detail .item .txtWrap .price span {
  font-size: 70%;
}
#popup.pp_detail .item .txtWrap .table_spec {
  font-size: 85%;
  border-color: rgba(0, 0, 0, 0.5);
  margin-top: auto;
}
#popup.pp_detail .item .txtWrap .table_spec tr {
  border-color: rgba(0, 0, 0, 0.5);
}
#popup.pp_detail .item .txtWrap .table_spec tr th {
  width: 150px;
  padding: 10px 10px 10px 30px;
}
@media (max-width: 800px) {
  #popup.pp_detail .item {
    flex-direction: column;
    margin-bottom: 40px;
  }
  #popup.pp_detail .item .imgWrap {
    width: 100%;
  }
  #popup.pp_detail .item .imgWrap .img {
    border-radius: 10px;
    margin-bottom: 10px;
  }
  #popup.pp_detail .item .imgWrap .thumb {
    gap: 5px;
  }
  #popup.pp_detail .item .imgWrap .thumb li {
    border-radius: 8px;
  }
  #popup.pp_detail .item .imgWrap .thumb li:after {
    border-width: 4px;
  }
  #popup.pp_detail .item .txtWrap h1 {
    margin-bottom: 0;
  }
  #popup.pp_detail .item .txtWrap h1 .ttl {
    font-size: 110%;
  }
  #popup.pp_detail .item .txtWrap h1 .model {
    font-size: 200%;
  }
  #popup.pp_detail .item .txtWrap .price {
    font-size: 160%;
    margin-bottom: 15px;
  }
  #popup.pp_detail .item .txtWrap .table_spec tr th {
    width: calc(3em + 20px);
    padding: 10px 7px 10px 13px;
    text-align: justify;
    -moz-text-align-last: justify;
         text-align-last: justify;
  }
}
#popup.pp_detail .voice {
  z-index: 2;
}
#popup.pp_detail .voice .chList {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#popup.pp_detail .voice .chList li {
  position: relative;
  flex: 1;
  text-align: center;
  background: rgba(160, 160, 160, 0.7);
  box-shadow: 5px 10px 50px -10px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 80%;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
#popup.pp_detail .voice .chList li p {
  position: relative;
  z-index: 2;
}
#popup.pp_detail .voice .chList li:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup.pp_detail .voice .chList li.on:after {
  opacity: 1;
}
#popup.pp_detail .voice .voiceWrap {
  position: relative;
  z-index: 2;
}
#popup.pp_detail .voice .voiceWrap .voiceBox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: 0;
  left: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 50px 50px 60px;
  box-shadow: 5px 10px 50px -10px rgba(0, 0, 0, 0.3);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.on {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  transition: all 0.3s ease-out;
}
#popup.pp_detail .voice .voiceWrap .voiceBox:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: 910px;
  aspect-ratio: 1/1;
  bottom: 0;
  right: 0;
  background: #000;
  border-radius: 0 0 20px 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background-size: cover;
}
#popup.pp_detail .voice .voiceWrap .voiceBox:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
  background-position: 100% 15px;
  background-repeat: no-repeat;
}
#popup.pp_detail .voice .voiceWrap .voiceBox h3 {
  position: relative;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
  z-index: 2;
  padding-left: 10px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox h3 .ttl, #popup.pp_detail .voice .voiceWrap .voiceBox h3 .en {
  font-family: "matrix-ii";
  font-feature-settings: "lnum";
}
#popup.pp_detail .voice .voiceWrap .voiceBox h3 .ttl {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox h3 .en {
  font-size: 105px;
  letter-spacing: 8px;
  transform: translateX(-7px);
  margin-bottom: 15px;
  white-space: nowrap;
}
#popup.pp_detail .voice .voiceWrap .voiceBox h3 .ja {
  font-size: 30px;
  letter-spacing: 3px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList {
  position: relative;
  border-radius: 20px;
  padding: 15px 30px;
  z-index: 4;
  background: rgba(249, 249, 249, 0.95);
  width: 700px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec {
  border: none;
  font-size: 80%;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr {
  border-color: rgba(0, 0, 0, 0.3);
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr:nth-last-of-type(1) {
  border: none;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr th {
  width: 11em;
  padding: 10px 1em;
  height: 51px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td {
  position: relative;
  padding: 10px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td.spvoice {
  padding: 0px;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td.spvoice > div {
  position: relative;
  height: min(51px, 100%);
  padding: 10px;
  display: flex;
  align-items: center;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td.spvoice > div:not(:nth-last-of-type(1)) {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td .player {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td .player > div {
  position: relative;
  width: 100%;
  aspect-ratio: 102/31;
  overflow: hidden;
  cursor: pointer;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td .player > div:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: calc(50% - 22px);
  left: 0;
  z-index: 1;
  background: url(../img/btn_play.png) 0 50% no-repeat;
  background-size: auto 100%;
}
#popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td .player > div.on:before {
  background-position: 100% 50%;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ranmaru h3 .en, #popup.pp_detail .voice .voiceWrap .voiceBox.masato h3 .en, #popup.pp_detail .voice .voiceWrap .voiceBox.natsuki h3 .en {
  letter-spacing: 2px;
}
#popup.pp_detail .voice .chList li.otoya:after {
  background: #e83836;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.otoya:before {
  background-color: #e83836;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.otoya:after {
  background-image: url(../img/popup/ch_otoya.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.otoya h3 {
  color: #e83836;
}
#popup.pp_detail .voice .chList li.masato:after {
  background: #2f59a3;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.masato:before {
  background-color: #2f59a3;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.masato:after {
  background-image: url(../img/popup/ch_masato.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.masato h3 {
  color: #2f59a3;
}
#popup.pp_detail .voice .chList li.natsuki:after {
  background: #fdd000;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.natsuki:before {
  background-color: #fdd000;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.natsuki:after {
  background-image: url(../img/popup/ch_natsuki.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.natsuki h3 {
  color: #fdd000;
}
#popup.pp_detail .voice .chList li.tokiya:after {
  background: #752782;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.tokiya:before {
  background-color: #752782;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.tokiya:after {
  background-image: url(../img/popup/ch_tokiya.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.tokiya h3 {
  color: #752782;
}
#popup.pp_detail .voice .chList li.ren:after {
  background: #ed6c00;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ren:before {
  background-color: #ed6c00;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ren:after {
  background-image: url(../img/popup/ch_ren.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ren h3 {
  color: #ed6c00;
}
#popup.pp_detail .voice .chList li.syo:after {
  background: #e46ca0;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.syo:before {
  background-color: #e46ca0;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.syo:after {
  background-image: url(../img/popup/ch_syo.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.syo h3 {
  color: #e46ca0;
}
#popup.pp_detail .voice .chList li.cecil:after {
  background: #9dc92a;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.cecil:before {
  background-color: #9dc92a;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.cecil:after {
  background-image: url(../img/popup/ch_cecil.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.cecil h3 {
  color: #9dc92a;
}
#popup.pp_detail .voice .chList li.reiji:after {
  background: #56b879;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.reiji:before {
  background-color: #56b879;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.reiji:after {
  background-image: url(../img/popup/ch_reiji.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.reiji h3 {
  color: #56b879;
}
#popup.pp_detail .voice .chList li.ranmaru:after {
  background: #b03760;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ranmaru:before {
  background-color: #b03760;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ranmaru:after {
  background-image: url(../img/popup/ch_ranmaru.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ranmaru h3 {
  color: #b03760;
}
#popup.pp_detail .voice .chList li.ai:after {
  background: #bb97c5;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ai:before {
  background-color: #bb97c5;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ai:after {
  background-image: url(../img/popup/ch_ai.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.ai h3 {
  color: #bb97c5;
}
#popup.pp_detail .voice .chList li.camus:after {
  background: #90d3ed;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.camus:before {
  background-color: #90d3ed;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.camus:after {
  background-image: url(../img/popup/ch_camus.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.camus h3 {
  color: #90d3ed;
}
#popup.pp_detail .voice .chList li.eiichi:after {
  background: #e83836;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.eiichi:before {
  background-color: #e83836;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.eiichi:after {
  background-image: url(../img/popup/ch_eiichi.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.eiichi h3 {
  color: #e83836;
}
#popup.pp_detail .voice .chList li.kira:after {
  background: #2f59a3;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.kira:before {
  background-color: #2f59a3;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.kira:after {
  background-image: url(../img/popup/ch_kira.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.kira h3 {
  color: #2f59a3;
}
#popup.pp_detail .voice .chList li.nagi:after {
  background: #fdd000;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.nagi:before {
  background-color: #fdd000;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.nagi:after {
  background-image: url(../img/popup/ch_nagi.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.nagi h3 {
  color: #fdd000;
}
#popup.pp_detail .voice .chList li.eiji:after {
  background: #752782;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.eiji:before {
  background-color: #752782;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.eiji:after {
  background-image: url(../img/popup/ch_eiji.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.eiji h3 {
  color: #752782;
}
#popup.pp_detail .voice .chList li.van:after {
  background: #ed6c00;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.van:before {
  background-color: #ed6c00;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.van:after {
  background-image: url(../img/popup/ch_van.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.van h3 {
  color: #ed6c00;
}
#popup.pp_detail .voice .chList li.yamato:after {
  background: #e46ca0;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.yamato:before {
  background-color: #e46ca0;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.yamato:after {
  background-image: url(../img/popup/ch_yamato.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.yamato h3 {
  color: #e46ca0;
}
#popup.pp_detail .voice .chList li.shion:after {
  background: #9dc92a;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.shion:before {
  background-color: #9dc92a;
}
#popup.pp_detail .voice .voiceWrap .voiceBox.shion:after {
  background-image: url(../img/popup/ch_shion.webp);
}
#popup.pp_detail .voice .voiceWrap .voiceBox.shion h3 {
  color: #9dc92a;
}
@media (max-width: 800px) {
  #popup.pp_detail .voice .chList {
    flex-wrap: wrap;
    gap: 5px 1.3%;
    margin-bottom: 10px;
  }
  #popup.pp_detail .voice .chList li {
    width: 24%;
    flex: none;
    padding: 10px 0px;
    border-radius: 7px;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox {
    border-radius: 10px;
    padding: 0;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox:before {
    width: 100%;
    bottom: auto;
    top: 60px;
    aspect-ratio: 1/1.5;
    clip-path: polygon(100% 0, 100% 100%, 3px 100%, 3px 50%);
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox:after {
    background-position: calc(100% + 45px) -55px;
    background-size: 90% auto;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox h3 {
    padding: 30px 20px 40px;
    margin-bottom: 0px;
    min-height: 230px;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox h3 .ttl {
    font-size: 15px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 3px;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox h3 .en {
    font-size: 50px;
    letter-spacing: 3px;
    transform: translateX(-2px);
    margin-bottom: 9px;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox h3 .ja {
    font-size: 20px;
    letter-spacing: 1px;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox .voiceList {
    border-radius: 10px;
    background: #eee;
    padding: 2px 0;
    width: 100%;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr th {
    width: 9.5em;
    padding: 10px 1em 10px 1.5em;
    height: 45px;
    line-height: 1.1;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td {
    padding: 10px 10px 10px 0;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td.spvoice > div {
    padding: 10px 10px 10px 0;
  }
  #popup.pp_detail .voice .voiceWrap .voiceBox .voiceList .table_spec tr td .player {
    width: 70px;
    right: 10px;
  }
}
#popup.pp_detail.st .bg:after {
  background-image: url(../img/grobj_st.png);
}
#popup.pp_detail.st .voice .voiceWrap .voiceBox:before {
  background-image: url(../img/pattern_st.png);
}
#popup.pp_detail.qn .bg:after {
  background-image: url(../img/grobj_qn.png);
}
#popup.pp_detail.qn .voice .voiceWrap .voiceBox:before {
  background-image: url(../img/pattern_qn.png);
}
#popup.pp_detail.hv .bg:after {
  background-image: url(../img/grobj_hv.png);
}
#popup.pp_detail.hv .voice .voiceWrap .voiceBox:before {
  background-image: url(../img/pattern_hv.png);
}/*# sourceMappingURL=style.css.map */