@charset "UTF-8";
/* ================================================================ *
* MIXIN
* ================================================================ */
/* ================================================================ *
//* BODY
* ================================================================ */
body {
  position: relative;
  caret-color: transparent;
  font-family: "M PLUS 1p", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic", "ヒラギノ角ゴ", "メイリオ", "Meiryo", "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #000;
  font-size: 18px;
  line-height: 1.6;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 800px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
}

a:link, a:visited {
  color: #2186ee;
  text-decoration: none;
  transition: all 0.15s ease-out;
}

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

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

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

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

.red {
  color: #c0300f;
}

.aalt {
  font-feature-settings: "aalt" 1;
}

.aalt2 {
  font-feature-settings: "aalt" 2;
}

.salt {
  font-feature-settings: "salt" 1;
}

.flex_wrap {
  display: flex;
  gap: 50px;
}
@media (max-width: 800px) {
  .flex_wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.borderBox, .borderBox_white, .borderBox_blue {
  position: relative;
  padding: 70px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.borderBox:after, .borderBox_white:after, .borderBox_blue:after {
  content: "";
  display: block;
  position: absolute;
  inset: 8px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  -o-border-image: url(../img/box_border_b.png) 30/20px round;
     border-image: url(../img/box_border_b.png) 30/20px round;
}
.borderBox_white {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.5);
}
.borderBox_white:after {
  -o-border-image: url(../img/box_border_w.png) 30/20px round;
     border-image: url(../img/box_border_w.png) 30/20px round;
}
@media (max-width: 800px) {
  .borderBox, .borderBox_white, .borderBox_blue {
    padding: 40px 30px;
  }
  .borderBox:after, .borderBox_blue:after, .borderBox_white:after {
    inset: 4px;
    border-image-width: 10px;
  }
}

.btn, .btn-border, .btn-b {
  position: relative;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  width: min(100%, 330px);
  border-radius: 50px;
  text-align: left;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid #000;
  transition: all 0.3s ease-out;
}
.btn:before, .btn-border:before, .btn-b:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #ccc;
  text-align: center;
  transform-origin: 100% 0;
  transform: scaleX(0);
  transition: transform 0.15s ease-out;
}
.btn a, .btn-border a, .btn-b a, .btn > p, .btn-border > p, .btn-b > p {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  color: #fff;
  line-height: 1.3;
  padding: 5px 20px;
}
.btn a:after, .btn-border a:after, .btn-b a:after, .btn a:before, .btn-border a:before, .btn-b a:before, .btn > p:after, .btn-border > p:after, .btn-b > p:after, .btn > p:before, .btn-border > p:before, .btn-b > p:before {
  content: "→";
  display: block;
  position: absolute;
  width: 15px;
  aspect-ratio: 1/1;
  border-radius: 15px;
  background: #fff;
  font-size: 10px;
  line-height: 15px;
  top: calc(50% - 8px);
  right: 13px;
  color: #000;
  text-align: center;
  transition: transform 0.2s ease-out;
}
.btn a:before, .btn-border a:before, .btn-b a:before, .btn > p:before, .btn-border > p:before, .btn-b > p:before {
  display: none;
}
@media (min-width: 800px) {
  .btn:hover a, .btn-border:hover a, .btn-b:hover a {
    color: #000;
  }
  .btn:hover:before, .btn-border:hover:before, .btn-b:hover:before {
    transform-origin: 0 0;
    transform: scaleX(1);
  }
}
@media (max-width: 800px) {
  .btn a:after, .btn-border a:after, .btn-b a:after, .btn > p:after, .btn-border > p:after, .btn-b > p:after {
    right: 3px;
    transform: scale(0.7);
  }
}
.btn-b {
  width: min(100%, 400px);
}
.btn-b a, .btn-b > p {
  padding: 20px 40px;
}
.btn-b a:after, .btn-b > p:after {
  width: 22px;
  font-size: 12px;
  line-height: 21px;
  top: calc(50% - 12px);
  right: 15px;
}
@media (max-width: 800px) {
  .btn-b a, .btn-b > p {
    padding: 15px 25px;
  }
  .btn-b a:after, .btn-b > p:after {
    right: 5px;
  }
}
.btn-border {
  width: min(100%, 350px);
  border: 1px solid rgba(0, 0, 0, 0.8);
  background: transparent;
}
.btn-border a {
  color: #000;
  display: flex;
  align-items: center;
  font-size: 75%;
  padding: 12px 25px;
  line-height: 1.4;
}
.btn-border a:after {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.btn-border:hover {
  transform: none;
  background: rgba(0, 0, 0, 0.15);
}
@media (max-width: 800px) {
  .btn-border a {
    padding: 8px 20px;
  }
  .btn-border a:after {
    right: 8px;
  }
}
.btn-border.pnav a:after, .btn-border.pnav p:after {
  writing-mode: vertical-rl;
}

.btnWrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  width: 100%;
}
@media (max-width: 800px) {
  .btnWrap {
    flex-wrap: wrap;
    gap: 8px;
  }
  .btnWrap .btn, .btnWrap .btn-b, .btnWrap .btn-border {
    width: 100%;
  }
}
.btnWrap.pg_btnWrap {
  width: min(1200px, 100%);
  margin: -20px auto 50px;
}
@media (max-width: 800px) {
  .btnWrap.pg_btnWrap {
    padding: 0 30px;
    margin: -10px auto 25px;
  }
  .btnWrap.pg_btnWrap a {
    padding: 5px 0;
  }
}

.pp_img_btn, #privilege .item_wrapper li.item_box .pp_ajax_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, #privilege .item_wrapper li.item_box .pp_ajax_btn:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  width: 40px;
  height: 40px;
  top: -6px;
  right: -6px;
  border-radius: 20px;
  background: url(../img/popup_icon.png) 45% 45% no-repeat #555;
  background-size: 60% auto;
}
.pp_img_btn:hover, #privilege .item_wrapper li.item_box .pp_ajax_btn:hover {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}
@media (max-width: 800px) {
  .pp_img_btn:after, #privilege .item_wrapper li.item_box .pp_ajax_btn:after {
    width: 25px;
    height: 25px;
    top: -4px;
    right: -4px;
  }
}

.table_spec, .table_spec-colon {
  text-align: left;
  width: 100%;
  font-size: 90%;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  line-height: 1.4;
}
.table_spec tr:not(:nth-last-of-type(1)), .table_spec-colon tr:not(:nth-last-of-type(1)) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.table_spec tr th, .table_spec-colon tr th {
  position: relative;
  opacity: 0.7;
  font-size: 90%;
  line-height: 1.7;
  vertical-align: top;
  width: 9em;
  padding: 15px 2em 15px 2em;
  font-weight: 600;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: inter-ideograph;
  text-justify: inter-character;
}
.table_spec tr th span, .table_spec-colon tr th span {
  display: inline-block;
  width: 100%;
}
.table_spec tr th:after, .table_spec-colon tr th:after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 26px);
  top: 13px;
  right: 0;
  background: rgba(0, 0, 0, 0.3);
}
.table_spec tr td, .table_spec-colon tr td {
  padding: 15px 0 15px 1.5em;
}
@media (max-width: 800px) {
  .table_spec, .table_spec-colon {
    font-size: 85%;
  }
  .table_spec tr th, .table_spec-colon tr th {
    line-height: 1.5;
    font-size: 80%;
    width: 5em;
    padding: 10px 0.7em 10px 0.3em;
  }
  .table_spec tr td, .table_spec-colon tr td {
    padding: 10px 0 10px 0.5em;
  }
}
.table_spec-colon {
  font-size: 80%;
}
.table_spec-colon tr th {
  vertical-align: top;
  width: 7em;
  padding: 9px 1em 9px 0.5em;
}
.table_spec-colon tr th:after {
  content: ":";
  background: none;
  top: 0;
  padding: 9px 0;
}
.table_spec-colon tr td {
  padding: 9px 0 9px 1em;
}
@media (max-width: 800px) {
  .table_spec-colon tr th {
    width: 5em;
    padding: 8.5px 0.5em 8.5px 0.3em;
    line-height: 1.7;
  }
  .table_spec-colon tr td {
    padding: 8px 0 8px 0.5em;
  }
}

.attention_txt {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

.attention_dl {
  color: rgba(0, 0, 0, 0.7);
}
.attention_dl dd:has(+ dt) {
  margin-bottom: 20px;
}

.attention_ul {
  font-size: 80%;
  color: rgba(0, 0, 0, 0.7);
}
.attention_ul li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.2;
  margin: 4px 0;
}
@media (max-width: 800px) {
  .attention_ul {
    font-size: 10px;
  }
}

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

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

/* ================================================================ *
//* loading
/* ================================================================ */
#loading {
  position: fixed;
  width: 100vw;
  height: 100svh;
  top: 0;
  left: 0;
  z-index: 2000;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.2s ease-out 0.6s;
  opacity: 1;
}
#loading .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transition: all 0.5s ease-out;
  width: 300px;
  margin-bottom: 10px;
}
#loading p {
  font-size: 16px;
  color: #000;
  opacity: 0.4;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Hiragino Mincho ProN", "Hiragino Mincho", "Noto Serif JP", "游明朝", "游明朝体", "Yu Mincho", "HGS明朝E", "HG明朝E", "HG明朝", "リュウミン", "メイリオ", "Meiryo", serif;
  letter-spacing: 1px;
  font-weight: 600;
}
#loading .bar {
  position: relative;
  transition: all 0.5s ease-out;
  width: 100%;
  height: 15px;
  margin-top: 5px;
  background: rgba(0, 0, 0, 0.1);
  clip-path: polygon(5px 0, 100% 0, 100% calc(100% - 5px), calc(100% - 5px) 100%, 0 100%, 0 5px);
}
#loading .bar span {
  display: block;
  position: absolute;
  z-index: 1;
  background: #999;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
}
#loading.off {
  opacity: 0;
  pointer-events: none;
}
#loading.off .box {
  filter: blur(10px);
  opacity: 0;
}
@media (max-width: 800px) {
  #loading .box {
    width: 200px;
    gap: 5px;
  }
  #loading .bar {
    height: 10px;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
  }
}

/* ================================================================ *
//* menu
/* ================================================================ */
#menuIcon {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  width: 84px;
  border-radius: 0 0 0 20px;
  padding: 13px 14px 14px;
  aspect-ratio: 1/1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#menuIcon.scroll {
  opacity: 1;
}
#menuIcon.unit_a {
  background: #924a94;
}
#menuIcon.unit_b {
  background: #f5b091;
}
#menuIcon.unit_c {
  background: #9d4c85;
}
#menuIcon.unit_d {
  background: #cda26f;
}
#menuIcon .icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menuIcon .icon span {
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
  background: #fff;
}
#menuIcon .icon span:before, #menuIcon .icon span:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #fff;
  transition: all 0.15s ease-out;
}
#menuIcon .icon span:before {
  transform: translateY(-18px);
}
#menuIcon .icon span:after {
  transform: translateY(18px);
}
#menuIcon.on .icon span {
  background: transparent;
}
#menuIcon.on .icon span:before {
  transform: rotate(45deg);
}
#menuIcon.on .icon span:after {
  transform: rotate(-45deg);
}
@media (max-width: 800px) {
  #menuIcon {
    width: 52px;
    padding: 5px 9px 7px;
    border-radius: 0 0 0 10px;
    gap: 4px;
    opacity: 1;
  }
  #menuIcon .icon span:before {
    transform: translateY(-12px);
  }
  #menuIcon .icon span:after {
    transform: translateY(12px);
  }
  #menuIcon p {
    font-size: 10px;
    letter-spacing: 0;
  }
}

#gMenu {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.3s ease-out;
  pointer-events: none;
  background: #465497;
}
#gMenu.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#gMenu .wrap {
  position: absolute;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  display: flex;
}
#gMenu .bg {
  width: 50%;
}
#gMenu nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#gMenu nav ul {
  width: 80%;
  height: 100%;
  max-height: 900px;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
}
#gMenu nav ul li {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #fff;
}
#gMenu nav ul li:nth-last-of-type(1) {
  border-bottom: 1px solid #fff;
}
#gMenu nav ul li a {
  position: relative;
  display: block;
  padding: 10px 0;
  width: 100%;
  z-index: 1;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: gotham, sans-serif;
  font-weight: 400;
  font-style: normal;
}
#gMenu nav ul li a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.8;
  transform: scaleX(0);
  background: #fff;
  transition: all 0.15s ease-out;
}
#gMenu nav ul li a:hover:after {
  transform: scaleX(1);
}
#gMenu.unit_a {
  background: #2d90c4;
}
#gMenu.unit_a .bg {
  background: url(../img/top_bg_unit_a.webp) 50% 50% no-repeat;
  background-size: cover;
}
#gMenu.unit_a nav ul li a:hover {
  color: #2d90c4;
}
#gMenu.unit_b {
  background: #8bc783;
}
#gMenu.unit_b .bg {
  background: url(../img/top_bg_unit_b.webp) 50% 50% no-repeat;
  background-size: cover;
}
#gMenu.unit_b nav ul li a:hover {
  color: #8bc783;
}
#gMenu.unit_c {
  background: #ffdb40;
}
#gMenu.unit_c .bg {
  background: url(../img/top_bg_unit_c.webp) 50% 50% no-repeat;
  background-size: cover;
}
#gMenu.unit_c nav ul li a:hover {
  color: #ffdb40;
}
#gMenu.unit_d {
  background: #b81059;
}
#gMenu.unit_d .bg {
  background: url(../img/top_bg_unit_d.webp) 50% 50% no-repeat;
  background-size: cover;
}
#gMenu.unit_d nav ul li a:hover {
  color: #b81059;
}
@media (max-width: 800px) {
  #gMenu .wrap {
    flex-direction: column;
  }
  #gMenu .bg {
    width: 100%;
    height: 25%;
    background-position: 0 0;
    box-shadow: 0 0 50px inset rgba(0, 0, 0, 0.5);
  }
  #gMenu nav ul {
    width: 90%;
    padding: 30px 0;
  }
  #gMenu nav ul li a {
    font-size: 18px;
    padding: 10px 0;
  }
}

/* ================================================================ *
//* bg
* ================================================================ */
#bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
#bg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url(../img/filter.png);
}
#bg .bg_box {
  position: absolute;
  inset: -16px;
  z-index: 1;
  opacity: 0;
  transition: all 1s ease-out;
  filter: blur(8px);
}
#bg .bg_box:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.3;
}
#bg .bg_box.on {
  opacity: 1;
}
#bg .bg_box.unit_a {
  background: url(../img/top_bg_unit_a.webp) 50% 50% no-repeat;
  background-size: cover;
}
#bg .bg_box.unit_a:after {
  background: #2d90c4;
}
#bg .bg_box.unit_b {
  background: url(../img/top_bg_unit_b.webp) 50% 50% no-repeat;
  background-size: cover;
}
#bg .bg_box.unit_b:after {
  background: #8bc783;
}
#bg .bg_box.unit_c {
  background: url(../img/top_bg_unit_c.webp) 50% 50% no-repeat;
  background-size: cover;
}
#bg .bg_box.unit_c:after {
  background: #ffdb40;
}
#bg .bg_box.unit_d {
  background: url(../img/top_bg_unit_d.webp) 50% 50% no-repeat;
  background-size: cover;
}
#bg .bg_box.unit_d:after {
  background: #b81059;
}

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

#wrapper {
  position: relative;
}
@media (max-width: 800px) {
  #wrapper .content_wrapper {
    padding: 0 10px;
  }
}

section.pg {
  position: relative;
  z-index: 1;
  margin: 0 auto 4vh;
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 120px 80px;
}
@media (max-width: 800px) {
  section.pg {
    padding: 40px 20px;
    margin-bottom: 15px;
  }
}
section.pg.unit_a .h01 {
  color: #2d90c4;
}
section.pg.unit_a .h01 .h01_obj {
  fill: #924a94;
}
section.pg.unit_b .h01 {
  color: #8bc783;
}
section.pg.unit_b .h01 .h01_obj {
  fill: #f5b091;
}
section.pg.unit_c .h01 {
  color: #ffdb40;
}
section.pg.unit_c .h01 .h01_obj {
  fill: #9d4c85;
}
section.pg.unit_d .h01 {
  color: #b81059;
}
section.pg.unit_d .h01 .h01_obj {
  fill: #cda26f;
}
section.pg {
  clip-path: polygon(-100% 0, 0 0, -100% 100%, -200% 100%);
  transition: clip-path 0.8s ease-out, opacity 1.2s ease-out;
}
section.pg.show {
  opacity: 1;
  clip-path: polygon(0 0, 200% 0, 100% 100%, -100% 100%);
}

.pg_wrapper {
  position: relative;
  width: min(1300px, 100%);
  margin: 0 auto;
}
h1, h2, h3, h4 {
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.h01 {
  position: relative;
  margin-bottom: 50px;
  font-family: p22-flw-exhibition, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 75px;
  line-height: 1;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: all 0.5s ease-out;
  opacity: 0;
}
.h01 .h01_obj {
  height: 0.8lh;
  fill: #fff;
  transition: all 0.5s ease-out;
}
.h01 .h01_obj.l {
  transform: translateX(60px);
}
.h01 .h01_obj.r {
  transform: rotate(180deg) translateX(60px);
}
.h01 p {
  opacity: 0;
  transition: all 0.5s ease-out 0.3s;
}
.h01.show {
  opacity: 1;
}
.h01.show .h01_obj.l {
  transform: translateX(0px);
}
.h01.show .h01_obj.r {
  transform: rotate(180deg) translateX(0px);
}
.h01.show p {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 800px) {
  .h01 {
    font-size: 38px;
    letter-spacing: 0;
    text-indent: 0;
    gap: 13px;
    margin-bottom: 20px;
  }
}

#h01_obj .d {
  opacity: 0.5;
}

/* ================================================================ *
//* top
* ================================================================ */
.top_wrap {
  position: relative;
}
.top_wrap .padding_wrap {
  height: 500px;
}
.top_wrap:after {
  content: "";
  display: block;
  position: relative;
  height: 900px;
  pointer-events: none;
}
@media (max-width: 800px) {
  .top_wrap:after {
    height: 600px;
  }
}

#top {
  position: sticky;
  top: 0;
  min-height: 550px;
  width: 100%;
  height: 100svh;
  padding: 4vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .kado {
  display: block;
  position: absolute;
  z-index: 10 !important;
  width: 18px;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: radial-gradient(circle 18px at 100% 100%, transparent 99%, #000 100%);
          mask: radial-gradient(circle 18px at 100% 100%, transparent 99%, #000 100%);
}
#top .top_wrapper {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 4.5vh;
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-width: 1100px;
  font-family: gotham, sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
}
#top h1 {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1vw 2.5vw 2.5vw 10px;
  z-index: 5;
  background: #fff;
  border-radius: 0 0 35px 0;
  top: 4.5vh;
  left: 4.5vh;
}
#top h1:before {
  content: "";
  display: block;
  position: relative;
  aspect-ratio: 1037/398;
  width: min(32vw, 1000px);
  max-width: 60vh;
  transition: all 0.8s ease-out;
}
#top h1 .h1Wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#top h1 p {
  position: absolute;
  inset: 0;
  padding: 1vw 2.5vw 2.5vw 10px;
  opacity: 0;
  background-color: #fff;
  border-radius: 0 0 35px 0;
  transition: all 0.5s ease-out;
}
#top h1 p.on {
  opacity: 1;
}
#top h1 .kado.t {
  top: 0;
  right: -18px;
}
#top h1 .kado.b {
  bottom: -18px;
  left: 300px;
}
#top .menu_wrap {
  position: relative;
  width: clamp(200px, 25%, 400px);
  z-index: 6;
  transition: all 0.5s ease-out;
}
#top .menu_wrap .menu_box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0 35px 0 10px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease-out;
}
#top .menu_wrap nav {
  position: relative;
  z-index: 3;
  margin-bottom: 20px;
}
#top .menu_wrap nav ul {
  font-size: clamp(1rem, 0.25rem + 1vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 7px;
}
#top .menu_wrap .unit_select {
  margin-bottom: 10px;
}
#top .menu_wrap .unit_select p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  white-space: nowrap;
  transition: all 0.3s ease-out;
}
#top .menu_wrap .unit_select ul {
  position: relative;
  width: 100%;
  display: flex;
  gap: 5px;
  height: 7px;
}
#top .menu_wrap .unit_select ul li {
  flex: 1;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0, 1.06, 0.69, 1.15);
}
#top .menu_wrap .unit_select ul li.on {
  flex: 4;
}
#top .content_wrap {
  position: relative;
  flex: 1;
  z-index: 1;
  border-radius: 18px 18px 0 18px;
  overflow: hidden;
}
#top .content_wrap .bg_wrap, #top .content_wrap .img_wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: all 0.5s ease-out;
}
#top .content_wrap .bg_wrap .slide_box, #top .content_wrap .img_wrap .slide_box {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
}
#top .content_wrap .bg_wrap .slide_box.on, #top .content_wrap .img_wrap .slide_box.on {
  opacity: 1;
}
#top .content_wrap .img_wrap .slide_box {
  clip-path: polygon(-100vh 0, 0 0, -100vh 100vh, -200vh 100vh);
  transition: clip-path 0.7s ease-out;
  opacity: 0;
}
#top .content_wrap .img_wrap .slide_box:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: polygon(0 0, 200vh 0, 100vh 100vh, -100vh 100vh);
  transition: all 0.7s ease-out 0.5s;
}
#top .content_wrap .img_wrap .slide_box.on {
  clip-path: polygon(0 0, 200vh 0, 100vh 100vh, -100vh 100vh);
}
#top .content_wrap .img_wrap .slide_box.on:after {
  clip-path: polygon(200vh 0, 400vh 0, 300vh 100vh, 100vh 100vh);
}
#top .content_wrap .bg_wrap .slide_box {
  transition: all 0.8s ease-out 0.3;
  transition: all 0.8s ease-out;
}
#top .content_wrap .bg_wrap .slide_box:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: all 1s ease-out;
}
#top .content_wrap .unit_member {
  position: absolute;
  bottom: -1px;
  right: -1px;
  z-index: 10 !important;
  font-size: 12px;
  background: #fff;
  border-radius: 18px 0 0 0;
  width: 30em;
  height: 2lh;
}
#top .content_wrap .unit_member p {
  position: absolute;
  display: flex;
  gap: 5px;
  padding: 5px 0 0 10px;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out;
}
#top .content_wrap .unit_member p span {
  display: flex;
  gap: 5px;
}
#top .content_wrap .unit_member p span:not(:nth-last-of-type(1)):after {
  content: "/";
}
#top .content_wrap .unit_member p.on {
  opacity: 1;
}
#top .content_wrap .unit_member:before, #top .content_wrap .unit_member:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  aspect-ratio: 1/1;
  background: #fff;
  -webkit-mask: radial-gradient(circle 18px at 0 0, transparent 99%, #000 100%);
          mask: radial-gradient(circle 18px at 0 0, transparent 99%, #000 100%);
}
#top .content_wrap .unit_member:before {
  top: -18px;
  right: 0;
}
#top .content_wrap .unit_member:after {
  bottom: 0;
  left: -18px;
}
#top .menu_wrap .unit_select ul li.unit_a {
  background: #2d90c4;
}
#top .content_wrap .unit_member p.unit_a {
  color: #2d90c4;
}
#top .content_wrap .img_wrap .slide_box.unit_a:after {
  background: #2d90c4;
}
#top .content_wrap .bg_wrap .slide_box.unit_a {
  background-image: url(../img/top_bg_unit_a.webp);
}
#top .content_wrap .bg_wrap .slide_box.unit_a:after {
  background: rgb(16.4771784232, 119.4408782391, 173.5228215768);
}
#top .content_wrap .img_wrap .slide_box.unit_a {
  background-image: url(../img/top_img_unit_a.webp);
}
#top.unit_a .menu_wrap nav ul li:nth-of-type(odd) a {
  color: #924a94;
}
#top.unit_a .menu_wrap nav ul li:nth-of-type(even) a {
  color: #2d90c4;
}
#top.unit_a .menu_wrap .unit_select p {
  color: #2d90c4;
}
#top.unit_a .content_wrap .unit_member {
  color: #924a94;
}
@media (min-width: 800px) {
  #top.unit_a .content_wrap .bg_wrap {
    box-shadow: inset 0 0 50px #2d90c4;
  }
}
#top .menu_wrap .unit_select ul li.unit_b {
  background: #8bc783;
}
#top .content_wrap .unit_member p.unit_b {
  color: #8bc783;
}
#top .content_wrap .img_wrap .slide_box.unit_b:after {
  background: #8bc783;
}
#top .content_wrap .bg_wrap .slide_box.unit_b {
  background-image: url(../img/top_bg_unit_b.webp);
}
#top .content_wrap .bg_wrap .slide_box.unit_b:after {
  background: rgb(88.468627451, 206.2333333333, 72.7666666667);
}
#top .content_wrap .img_wrap .slide_box.unit_b {
  background-image: url(../img/top_img_unit_b.webp);
}
#top.unit_b .menu_wrap nav ul li:nth-of-type(odd) a {
  color: #f5b091;
}
#top.unit_b .menu_wrap nav ul li:nth-of-type(even) a {
  color: #8bc783;
}
#top.unit_b .menu_wrap .unit_select p {
  color: #8bc783;
}
#top.unit_b .content_wrap .unit_member {
  color: #f5b091;
}
@media (min-width: 800px) {
  #top.unit_b .content_wrap .bg_wrap {
    box-shadow: inset 0 0 50px #8bc783;
  }
}
#top .menu_wrap .unit_select ul li.unit_c {
  background: #ffdb40;
}
#top .content_wrap .unit_member p.unit_c {
  color: #ffdb40;
}
#top .content_wrap .img_wrap .slide_box.unit_c:after {
  background: #ffdb40;
}
#top .content_wrap .bg_wrap .slide_box.unit_c {
  background-image: url(../img/top_bg_unit_c.webp);
}
#top .content_wrap .bg_wrap .slide_box.unit_c:after {
  background: rgb(255, 209.387434555, 13);
}
#top .content_wrap .img_wrap .slide_box.unit_c {
  background-image: url(../img/top_img_unit_c.webp);
}
#top.unit_c .menu_wrap nav ul li:nth-of-type(odd) a {
  color: #9d4c85;
}
#top.unit_c .menu_wrap nav ul li:nth-of-type(even) a {
  color: #ffdb40;
}
#top.unit_c .menu_wrap .unit_select p {
  color: #ffdb40;
}
#top.unit_c .content_wrap .unit_member {
  color: #9d4c85;
}
@media (min-width: 800px) {
  #top.unit_c .content_wrap .bg_wrap {
    box-shadow: inset 0 0 50px #ffdb40;
  }
}
#top .menu_wrap .unit_select ul li.unit_d {
  background: #b81059;
}
#top .content_wrap .unit_member p.unit_d {
  color: #b81059;
}
#top .content_wrap .img_wrap .slide_box.unit_d:after {
  background: #b81059;
}
#top .content_wrap .bg_wrap .slide_box.unit_d {
  background-image: url(../img/top_bg_unit_d.webp);
}
#top .content_wrap .bg_wrap .slide_box.unit_d:after {
  background: rgb(149, 0, 64.744047619);
}
#top .content_wrap .img_wrap .slide_box.unit_d {
  background-image: url(../img/top_img_unit_d.webp);
}
#top.unit_d .menu_wrap nav ul li:nth-of-type(odd) a {
  color: #cda26f;
}
#top.unit_d .menu_wrap nav ul li:nth-of-type(even) a {
  color: #b81059;
}
#top.unit_d .menu_wrap .unit_select p {
  color: #b81059;
}
#top.unit_d .content_wrap .unit_member {
  color: #cda26f;
}
@media (min-width: 800px) {
  #top.unit_d .content_wrap .bg_wrap {
    box-shadow: inset 0 0 50px #b81059;
  }
}
#top #about {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.5s ease-out;
  text-align: center;
}
@media (min-width: 800px) {
  #top #about {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  }
}
#top #about .h01 {
  color: #fff;
}
#top #about .content_wrap {
  color: #fff;
  font-weight: 600;
  font-size: 115%;
  line-height: 1.8;
  letter-spacing: 5px;
}
#top #about .content_wrap p:not(:nth-last-of-type(1)) {
  margin-bottom: 30px;
}
#top #about .prr:nth-of-type(1) {
  transition-delay: 0.3s;
}
#top #about .prr:nth-of-type(2) {
  transition-delay: 0.6s;
}
#top .top_wrapper {
  clip-path: polygon(-100% 0, 0 0, -100% 100%, -200% 100%);
  transition: clip-path 0.8s ease-out, opacity 1.2s ease-out;
}
#top .top_wrapper .content_wrap, #top .top_wrapper .h1Wrap, #top .top_wrapper .menu_wrap > * {
  opacity: 0;
}
#top.show .top_wrapper {
  opacity: 1;
  clip-path: polygon(0 0, 200% 0, 100% 100%, -100% 100%);
}
#top.show .top_wrapper .content_wrap, #top.show .top_wrapper .h1Wrap, #top.show .top_wrapper .menu_wrap > * {
  opacity: 1;
  transition: opacity 1.2s ease-out 0.5s;
}
@media (min-width: 800px) {
  #top.scroll h1 .kado.b {
    left: 0;
    transition: all 0.8s ease-out;
  }
  #top.scroll h1:before {
    width: 300px;
    transition: all 0.8s ease-out;
  }
  #top.scroll .menu_wrap {
    transition: all 0.8s ease-out;
    width: 0;
    padding: 0;
    overflow: hidden;
  }
  #top.scroll .menu_wrap .menu_box {
    opacity: 0 !important;
    transition: all 0.5s ease-out;
  }
}
#top.scroll .content_wrap .bg_wrap .slide_box:after {
  opacity: 0.4;
}
#top.scroll .content_wrap .img_wrap {
  opacity: 0;
}
#top.scroll #about {
  opacity: 1;
  transition: all 0.8s ease-out 0.4s;
}
@media (max-width: 800px) {
  #top {
    min-height: 0;
    padding: 10px 0;
    margin-bottom: 5px;
  }
  #top .top_wrapper {
    min-width: 0;
    flex-direction: column-reverse;
    padding: 15px;
    gap: 10px;
  }
  #top h1 {
    top: 15px;
    left: 15px;
    padding: 7px 18px 18px 6px;
    border-radius: 0 0 16px 0;
  }
  #top h1:before {
    width: 67vw;
  }
  #top h1 p {
    padding: 7px 18px 18px 6px;
  }
  #top h1 .kado {
    width: 15px;
    -webkit-mask: radial-gradient(circle 15px at 100% 100%, transparent 99%, #000 100%);
            mask: radial-gradient(circle 15px at 100% 100%, transparent 99%, #000 100%);
  }
  #top h1 .kado.t {
    right: -15px;
  }
  #top h1 .kado.b {
    display: block;
    top: auto;
    bottom: -15px;
    left: 0;
  }
  #top .menu_wrap {
    background: #f3f3f3;
    border-radius: 13px;
    transition: all 0.5s ease-out;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #top .menu_wrap .menu_box {
    display: contents;
  }
  #top .menu_wrap nav {
    display: none;
  }
  #top .menu_wrap .unit_select {
    margin-bottom: 0;
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #top .menu_wrap .unit_select p {
    margin: 0;
  }
  #top .content_wrap {
    border-radius: 15px 15px 0 15px;
  }
  #top .content_wrap .kado {
    display: none;
  }
  #top .content_wrap .bg_wrap .slide_box, #top .content_wrap .img_wrap .slide_box {
    background-position: 50% 10%;
  }
  #top .content_wrap .unit_member {
    font-size: 8px;
    border-radius: 15px 0 0 0;
    width: 26.5em;
    height: 30px;
  }
  #top .content_wrap .unit_member p {
    gap: 2px;
  }
  #top .content_wrap .unit_member p span {
    gap: 2px;
  }
  #top .content_wrap .unit_member:before, #top .content_wrap .unit_member:after {
    width: 15px;
    -webkit-mask: radial-gradient(circle 15px at 0 0, transparent 99%, #000 100%);
            mask: radial-gradient(circle 15px at 0 0, transparent 99%, #000 100%);
  }
  #top .content_wrap .unit_member:before {
    top: -15px;
  }
  #top .content_wrap .unit_member:after {
    left: -15px;
  }
  #top .content_wrap .bg_wrap .slide_box.unit_a {
    background-image: url(../img/top_bg_unit_a_sp.webp);
  }
  #top .content_wrap .img_wrap .slide_box.unit_a {
    background-image: url(../img/top_img_unit_a_sp.webp);
  }
  #top .content_wrap .bg_wrap .slide_box.unit_b {
    background-image: url(../img/top_bg_unit_b_sp.webp);
  }
  #top .content_wrap .img_wrap .slide_box.unit_b {
    background-image: url(../img/top_img_unit_b_sp.webp);
  }
  #top .content_wrap .bg_wrap .slide_box.unit_c {
    background-image: url(../img/top_bg_unit_c_sp.webp);
  }
  #top .content_wrap .img_wrap .slide_box.unit_c {
    background-image: url(../img/top_img_unit_c_sp.webp);
  }
  #top .content_wrap .bg_wrap .slide_box.unit_d {
    background-image: url(../img/top_bg_unit_d_sp.webp);
  }
  #top .content_wrap .img_wrap .slide_box.unit_d {
    background-image: url(../img/top_img_unit_d_sp.webp);
  }
  #top #about {
    padding-top: 40px;
  }
  #top #about .content_wrap {
    font-size: 110%;
    line-height: 1.7;
    letter-spacing: 2px;
  }
  #top #about .content_wrap p:not(:nth-last-of-type(1)) {
    margin-bottom: 15px;
  }
  #top.scroll {
    height: calc(100vh - 40px);
    transition: all 0.5s ease-out;
  }
  #top.scroll .menu_wrap {
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  #top.scroll .menu_wrap .menu_box {
    opacity: 0;
  }
}

/* ================================================================ *
//* detail
* ================================================================ */
#detail .unit_member {
  display: flex;
  justify-content: center;
  gap: 2px;
  white-space: nowrap;
}
#detail .unit_member span {
  display: flex;
  gap: 2px;
}
#detail .unit_member span:not(:nth-last-of-type(1)):after {
  content: "/";
}
#detail .detail_content {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}
#detail .jkWrap {
  width: clamp(480px, 45%, 550px);
}
#detail .jkWrap .jk {
  position: relative;
  aspect-ratio: 1/1;
  z-index: 1;
  margin-bottom: 10px;
}
#detail .jkWrap .jk > div {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#detail .jkWrap .jk > div.on {
  opacity: 1;
}
#detail .jkWrap .select {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#detail .jkWrap .select .ver {
  font-size: 100%;
  text-align: center;
  line-height: 40px;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
#detail .jkWrap .select .ver > p {
  position: absolute;
  inset: 0;
  opacity: 0;
}
#detail .jkWrap .select .ver > p.on {
  opacity: 1;
}
#detail .jkWrap .select .top_slider_btn-r, #detail .jkWrap .select .top_slider_btn-l {
  text-align: center;
  z-index: 10;
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  line-height: 38px;
  font-size: 20px;
  transition: all 0.3s ease-out;
}
@media (min-width: 800px) {
  #detail .jkWrap .select .top_slider_btn-r:hover, #detail .jkWrap .select .top_slider_btn-l:hover {
    color: #fff;
    border-color: #000;
    background: black;
  }
}
@media (max-width: 800px) {
  #detail .jkWrap .select .top_slider_btn-r, #detail .jkWrap .select .top_slider_btn-l {
    width: 30px;
    height: 30px;
    font-size: 17px;
    line-height: 28px;
  }
}
#detail .txtWrap {
  flex: 1;
  text-align: left;
}
#detail .txtWrap h3 {
  margin-bottom: 10px;
  line-height: 1.1;
  font-weight: 600;
}
#detail .txtWrap h3 .stxt {
  font-size: 105%;
  margin-bottom: 7px;
}
#detail .txtWrap h3 .ltxt {
  font-size: 200%;
}
#detail .txtWrap h3 span {
  display: inline-block;
}
#detail .txtWrap .table_spec-colon {
  font-size: 72%;
}
#detail .txtWrap .table_spec-colon p:not(:nth-last-of-type(1)) {
  margin-bottom: 7px;
}
#detail .syokaitokuten {
  position: relative;
  background: #f3f3f3;
  border-radius: 10px;
  text-align: center;
}
#detail .syokaitokuten .boxttl {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 105%;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#detail .syokaitokuten .boxttl span {
  display: inline-block;
}
@media (max-width: 800px) {
  #detail .syokaitokuten {
    border-radius: 6px;
  }
  #detail .syokaitokuten .boxttl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
  }
}
#detail .syokaitokuten {
  padding: 30px 40px 45px;
}
#detail .syokaitokuten .desc {
  margin-bottom: 25px;
  line-height: 1.8;
}
#detail .syokaitokuten .desc p {
  font-size: 110%;
}
#detail .syokaitokuten .flexWrap {
  display: flex;
  justify-content: space-around;
  padding: 0 20px;
  gap: 30px 15px;
}
#detail .syokaitokuten .flexWrap .box {
  width: 40%;
}
#detail .syokaitokuten .flexWrap p {
  font-size: 75%;
  margin-top: 5px;
}
#detail .syokaitokuten .flexWrap .pp_img_btn img, #detail .syokaitokuten .flexWrap #privilege .item_wrapper li.item_box .pp_ajax_btn img, #privilege .item_wrapper li.item_box #detail .syokaitokuten .flexWrap .pp_ajax_btn img, #detail .syokaitokuten .flexWrap .img img {
  border-radius: 5px;
}
@media (min-width: 1450px) {
  #detail .detail_content {
    gap: 45px;
  }
  #detail .txtWrap h3 {
    margin-bottom: 15px;
  }
  #detail .txtWrap h3 .stxt {
    font-size: 120%;
    margin-bottom: 10px;
  }
  #detail .txtWrap h3 .ltxt {
    font-size: 260%;
  }
  #detail .txtWrap .table_spec-colon {
    font-size: 85%;
  }
  #detail .txtWrap .table_spec-colon p:not(:nth-last-of-type(1)) {
    margin-bottom: 10px;
  }
  #detail .syokaitokuten .flexWrap .box {
    width: 23%;
    min-width: 230px;
  }
}
@media (max-width: 800px) {
  #detail .detail_content {
    flex-direction: column;
    gap: 17px;
    margin-bottom: 20px;
  }
  #detail .jkWrap {
    order: 2;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 10px;
  }
  #detail .jkWrap .jk > div:before {
    filter: blur(10px);
    transform: translate(4px, 4px) scale(0.97);
  }
  #detail .jkWrap .select .ver {
    font-size: 12px;
    line-height: 30px;
  }
  #detail .txtWrap {
    display: contents;
  }
  #detail .txtWrap h3 {
    order: 1;
    text-align: center;
    margin-bottom: 0;
  }
  #detail .txtWrap h3 .stxt {
    font-size: 100%;
  }
  #detail .txtWrap h3 .ltxt {
    font-size: 190%;
  }
  #detail .txtWrap .table_spec-colon {
    order: 3;
  }
  #detail .syokaitokuten {
    padding: 15px 10px 17px;
    text-align: center;
  }
  #detail .syokaitokuten .desc {
    margin-bottom: 15px;
  }
  #detail .syokaitokuten .flexWrap {
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
  }
  #detail .syokaitokuten .flexWrap > div {
    width: calc(50% - 10px);
  }
  #detail .syokaitokuten .flexWrap p {
    font-size: 9px;
  }
}

/* ================================================================ *
//* tracklist
* ================================================================ */
#tracklist .tracklist {
  flex: 1;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}
#tracklist .tracklist li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  display: flex;
  padding: 20px 3px 20px 5px;
}
#tracklist .tracklist li .track {
  font-size: 150%;
  line-height: 1.2;
  font-weight: 600;
  width: 60px;
  opacity: 0.5;
  text-align: center;
  font-family: p22-flw-exhibition, sans-serif;
  font-weight: 700;
  font-style: normal;
}
#tracklist .tracklist li .txt {
  flex: 1;
}
#tracklist .tracklist li .txt .ttl {
  font-size: 150%;
  line-height: 1.2;
  font-weight: 600;
}
#tracklist .tracklist li .txt .ttl .offvocal {
  font-size: 70%;
  display: inline-block;
  margin-left: 10px;
}
#tracklist .tracklist li .txt .artist {
  margin-top: 3px;
  opacity: 0.8;
  font-size: 78%;
  line-height: 1.5;
}
@media (min-width: 800px) {
  #tracklist .tracklist li .txt .artist span {
    display: inline-block;
  }
  #tracklist .tracklist li .txt .artist span:not(:last-child):after {
    content: " ／ ";
  }
}
#tracklist .tracklist li .player {
  width: 44px;
  margin-left: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#tracklist .tracklist li .player > div {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
}
#tracklist .tracklist li .player > div:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#tracklist .tracklist li .player > div:before {
  z-index: 1;
  background: url(../img/btn_play.png) 0 50% no-repeat;
  background-size: auto 100%;
}
#tracklist .tracklist li .player > div.on:before {
  background-position: 100% 50%;
}
@media (max-width: 800px) {
  #tracklist .pg_wrapper {
    display: block;
    gap: 0;
    margin-bottom: 0;
  }
  #tracklist .img {
    display: none;
  }
  #tracklist .tracklist li {
    padding: 12px 0px 12px 0px;
  }
  #tracklist .tracklist li .track {
    width: 35px;
    font-size: 130%;
  }
  #tracklist .tracklist li .txt .ttl {
    font-size: 130%;
    line-height: 1.1;
  }
  #tracklist .tracklist li .txt .ttl .offvocal {
    font-size: 50%;
    display: inline-block;
    margin-left: 5px;
    line-height: 1;
  }
  #tracklist .tracklist li .txt .artist {
    font-size: 10px;
    line-height: 1.3;
    margin-top: 3px;
  }
  #tracklist .tracklist li .txt .artist .singer {
    margin-bottom: 2px;
  }
  #tracklist .tracklist li .txt .artist span {
    display: block;
  }
  #tracklist .tracklist li .player {
    width: 28px;
    margin-left: 5px;
  }
}

/* ================================================================ *
//* movie
* ================================================================ */
#movie .pg_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
#movie .img, #movie .pp_movie_btn {
  border-radius: 15px;
  overflow: hidden;
}
#movie .pp_movie_btn {
  position: relative;
  transition: all 0.3s ease-out;
}
#movie .pp_movie_btn:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #000;
  opacity: 0.2;
  transition: all 0.3s ease-out;
}
#movie .pp_movie_btn:after {
  content: url(../img/movie_play.svg);
  display: block;
  position: absolute;
  z-index: 3;
  opacity: 0.9;
  text-align: center;
  padding: 5px 2px 0;
  aspect-ratio: 1/1;
  width: 220px;
  text-indent: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 200px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.3);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#movie .pp_movie_btn:hover:before {
  opacity: 0.5;
}
@media (max-width: 800px) {
  #movie .img, #movie .pp_movie_btn {
    border-radius: 10px;
    overflow: hidden;
  }
  #movie .pp_movie_btn {
    width: 80%;
    margin: 0 auto;
  }
  #movie .pp_movie_btn:after {
    transform: translate(-50%, -50%) scale(0.3);
  }
}

/*================================================================ *
//* privilege
* ================================================================ */
#privilege {
  text-align: center;
}
#privilege .desc {
  margin-bottom: 20px;
  font-size: 110%;
}
#privilege .item_wrapper {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
#privilege .item_wrapper li.item_box {
  position: relative;
  background: #f3f3f3;
  border-radius: 10px;
  text-align: center;
}
#privilege .item_wrapper li.item_box .boxttl {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 105%;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#privilege .item_wrapper li.item_box .boxttl span {
  display: inline-block;
}
@media (max-width: 800px) {
  #privilege .item_wrapper li.item_box {
    border-radius: 6px;
  }
  #privilege .item_wrapper li.item_box .boxttl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
  }
}
#privilege .item_wrapper li.item_box {
  translate: 0 50px;
  transition: all 0.8s ease-out, translate 0.8s ease-out;
}
#privilege .item_wrapper li.item_box.show {
  translate: 0 0;
}
@media (min-width: 800px) {
  #privilege .item_wrapper li.item_box:nth-of-type(3n - 1) {
    transition-delay: 0.15s, 0.15s;
  }
  #privilege .item_wrapper li.item_box:nth-of-type(3n) {
    transition-delay: 0.3s, 0.3s;
  }
}
#privilege .item_wrapper li.item_box {
  width: calc(33.3333% - 14px);
  padding: 20px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#privilege .item_wrapper li.item_box .boxttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding-bottom: 15px;
  line-height: 1.2;
}
#privilege .item_wrapper li.item_box .boxttl span {
  font-size: 80%;
  display: block;
  opacity: 0.8;
}
#privilege .item_wrapper li.item_box .pp_img_btn, #privilege .item_wrapper li.item_box .img, #privilege .item_wrapper li.item_box .pp_ajax_btn {
  width: 90%;
  max-width: 380px;
  margin-bottom: 15px;
}
#privilege .item_wrapper li.item_box .pp_img_btn img, #privilege .item_wrapper li.item_box .img img, #privilege .item_wrapper li.item_box .pp_ajax_btn img {
  border-radius: 5px;
}
#privilege .item_wrapper li.item_box .txt {
  margin-bottom: 17px;
  line-height: 1.5;
}
#privilege .item_wrapper li.item_box .txt .item_ch {
  font-size: 80%;
  margin-top: 0px;
  opacity: 0.7;
}
#privilege .item_wrapper li.item_box .txt .item_disc {
  font-size: 12px;
  margin-top: 5px;
  opacity: 0.7;
  letter-spacing: -0.5px;
}
#privilege .item_wrapper li.item_box .btnWrap {
  flex-direction: column;
  gap: 5px;
  align-items: center;
}
#privilege .item_wrapper li.item_box .btnWrap .btn a, #privilege .item_wrapper li.item_box .btnWrap .btn-b a, #privilege .item_wrapper li.item_box .btnWrap .btn-border a {
  font-size: 90%;
  padding: 10px 25px;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.ver a, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-b a, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-border a {
  font-size: 70%;
  padding: 4px 25px 3px;
  line-height: 1.2;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.ver a .name, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-b a .name, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-border a .name {
  font-size: 9px;
}
#privilege .item_wrapper li.item_box .btnWrap .btn:hover.ver a, #privilege .item_wrapper li.item_box .btnWrap .btn-b:hover.ver a, #privilege .item_wrapper li.item_box .btnWrap .btn-border:hover.ver a {
  color: #fff;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_a, #privilege .item_wrapper li.item_box .btnWrap .unit_a.btn-b, #privilege .item_wrapper li.item_box .btnWrap .unit_a.btn-border {
  border-color: #87b2dd;
  background: #87b2dd;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_a:before, #privilege .item_wrapper li.item_box .btnWrap .unit_a.btn-b:before, #privilege .item_wrapper li.item_box .btnWrap .unit_a.btn-border:before {
  background: #2d90c4;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_b, #privilege .item_wrapper li.item_box .btnWrap .unit_b.btn-b, #privilege .item_wrapper li.item_box .btnWrap .unit_b.btn-border {
  border-color: #a6d5b9;
  background: #a6d5b9;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_b:before, #privilege .item_wrapper li.item_box .btnWrap .unit_b.btn-b:before, #privilege .item_wrapper li.item_box .btnWrap .unit_b.btn-border:before {
  background: #8bc783;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_c, #privilege .item_wrapper li.item_box .btnWrap .unit_c.btn-b, #privilege .item_wrapper li.item_box .btnWrap .unit_c.btn-border {
  border-color: #f0c07a;
  background: #f0c07a;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_c:before, #privilege .item_wrapper li.item_box .btnWrap .unit_c.btn-b:before, #privilege .item_wrapper li.item_box .btnWrap .unit_c.btn-border:before {
  background: #ffdb40;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_d, #privilege .item_wrapper li.item_box .btnWrap .unit_d.btn-b, #privilege .item_wrapper li.item_box .btnWrap .unit_d.btn-border {
  border-color: #a5474e;
  background: #a5474e;
}
#privilege .item_wrapper li.item_box .btnWrap .btn.unit_d:before, #privilege .item_wrapper li.item_box .btnWrap .unit_d.btn-b:before, #privilege .item_wrapper li.item_box .btnWrap .unit_d.btn-border:before {
  background: #b81059;
}
@media (max-width: 800px) {
  #privilege .desc {
    margin-bottom: 10px;
    font-size: 100%;
    text-align: left;
  }
  #privilege .attention_ul {
    text-align: left;
  }
  #privilege .item_wrapper {
    margin-top: 20px;
    gap: 10px;
  }
  #privilege .item_wrapper li.item_box {
    width: calc(50% - 5px);
    padding: 3px 8px 15px;
  }
  #privilege .item_wrapper li.item_box:nth-of-type(2n) {
    transition-delay: 0.15s, 0.15s;
  }
  #privilege .item_wrapper li.item_box .boxttl {
    font-size: 85%;
    padding-bottom: 1px;
    height: 38px;
    letter-spacing: 0;
  }
  #privilege .item_wrapper li.item_box .pp_img_btn, #privilege .item_wrapper li.item_box .pp_ajax_btn, #privilege .item_wrapper li.item_box .img {
    width: 90%;
    margin-bottom: 8px;
  }
  #privilege .item_wrapper li.item_box .txt {
    font-size: 13px;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  #privilege .item_wrapper li.item_box .txt .item_ch {
    margin-top: 3px;
  }
  #privilege .item_wrapper li.item_box .txt .item_disc {
    font-size: 9px;
    margin-top: 3px;
  }
  #privilege .item_wrapper li.item_box .btnWrap {
    gap: 3px;
  }
  #privilege .item_wrapper li.item_box .btnWrap .btn a, #privilege .item_wrapper li.item_box .btnWrap .btn-b a, #privilege .item_wrapper li.item_box .btnWrap .btn-border a {
    font-size: 11px;
    padding: 4px 12px;
  }
  #privilege .item_wrapper li.item_box .btnWrap .btn a:after, #privilege .item_wrapper li.item_box .btnWrap .btn-b a:after, #privilege .item_wrapper li.item_box .btnWrap .btn-border a:after {
    right: 3px;
    transform: scale(0.7);
  }
  #privilege .item_wrapper li.item_box .btnWrap .btn.ver a, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-b a, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-border a {
    font-size: 9px;
    padding: 3px 10px 2px;
  }
  #privilege .item_wrapper li.item_box .btnWrap .btn.ver a .name, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-b a .name, #privilege .item_wrapper li.item_box .btnWrap .ver.btn-border a .name {
    font-size: 6.5px;
  }
}

/*================================================================ *
//* special
* ================================================================ */
#special {
  text-align: center;
}
#special .h01 + .btnWrap {
  margin: -20px 0 50px;
}
#special .pg_wrapper:has(+ .pg_wrapper), #special .pg_wrapper + .pg_wrapper {
  padding: 90px 0;
  border-top: 1px solid #000;
}
#special .pg_wrapper:has(+ .pg_wrapper):nth-last-of-type(1), #special .pg_wrapper + .pg_wrapper:nth-last-of-type(1) {
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}
#special .h03 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: 600;
}
#special .h03 .sub {
  font-size: 55%;
  display: block;
}
#special .desc {
  margin-bottom: 30px;
  line-height: 1.9;
}
#special .table_spec, #special .table_spec-colon {
  margin-bottom: 30px;
}
#special .table_spec .tokuten, #special .table_spec-colon .tokuten {
  display: flex;
  gap: 15px;
}
#special .table_spec .box, #special .table_spec-colon .box {
  padding: 30px 30px;
  flex: 1;
  position: relative;
  background: #f3f3f3;
  border-radius: 10px;
  text-align: center;
}
#special .table_spec .box .boxttl, #special .table_spec-colon .box .boxttl {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 105%;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#special .table_spec .box .boxttl span, #special .table_spec-colon .box .boxttl span {
  display: inline-block;
}
@media (max-width: 800px) {
  #special .table_spec .box, #special .table_spec-colon .box {
    border-radius: 6px;
  }
  #special .table_spec .box .boxttl, #special .table_spec-colon .box .boxttl {
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
  }
}
#special .table_spec .box, #special .table_spec-colon .box {
  text-align: left;
}
#special .table_spec .box .pp_img_btn, #special .table_spec-colon .box .pp_img_btn, #special .table_spec .box #privilege .item_wrapper li.item_box .pp_ajax_btn, #privilege .item_wrapper li.item_box #special .table_spec .box .pp_ajax_btn, #special .table_spec-colon .box #privilege .item_wrapper li.item_box .pp_ajax_btn, #privilege .item_wrapper li.item_box #special .table_spec-colon .box .pp_ajax_btn, #special .table_spec .box .img, #special .table_spec-colon .box .img {
  width: min(80%, 380px);
  margin: 0 auto 15px;
}
#special .table_spec .box .pp_img_btn img, #special .table_spec-colon .box .pp_img_btn img, #special .table_spec .box #privilege .item_wrapper li.item_box .pp_ajax_btn img, #privilege .item_wrapper li.item_box #special .table_spec .box .pp_ajax_btn img, #special .table_spec-colon .box #privilege .item_wrapper li.item_box .pp_ajax_btn img, #privilege .item_wrapper li.item_box #special .table_spec-colon .box .pp_ajax_btn img, #special .table_spec .box .img img, #special .table_spec-colon .box .img img {
  border-radius: 5px;
}
#special .table_spec .box .txt .item, #special .table_spec-colon .box .txt .item {
  margin-bottom: 5px;
  font-size: 85%;
}
#special .table_spec .box .txt span, #special .table_spec-colon .box .txt span {
  display: inline-block;
}
#special .table_spec .target li, #special .table_spec-colon .target li {
  font-size: 90%;
  line-height: 1.3;
}
#special .table_spec .target li:not(:nth-last-of-type(1)), #special .table_spec-colon .target li:not(:nth-last-of-type(1)) {
  margin-bottom: 5px;
}
#special .link p {
  margin-bottom: 25px;
}
@media (max-width: 800px) {
  #special .h01 + .btnWrap {
    margin: -10px 0 25px;
  }
  #special .pg_wrapper:has(+ .pg_wrapper), #special .pg_wrapper + .pg_wrapper {
    padding: 35px 0;
  }
  #special .h03 {
    font-size: 23px;
    margin-bottom: 10px;
  }
  #special .h03 .sub {
    margin-bottom: 2px;
  }
  #special .desc {
    margin-bottom: 15px;
    font-size: 90%;
    line-height: 1.6;
    text-align: left;
  }
  #special .table_spec, #special .table_spec-colon {
    margin-bottom: 15px;
  }
  #special .table_spec .tokuten, #special .table_spec-colon .tokuten {
    flex-direction: column;
    gap: 5px;
  }
  #special .table_spec .box, #special .table_spec-colon .box {
    padding: 10px;
  }
  #special .table_spec .box .pp_img_btn, #special .table_spec-colon .box .pp_img_btn, #special .table_spec .box #privilege .item_wrapper li.item_box .pp_ajax_btn, #privilege .item_wrapper li.item_box #special .table_spec .box .pp_ajax_btn, #special .table_spec-colon .box #privilege .item_wrapper li.item_box .pp_ajax_btn, #privilege .item_wrapper li.item_box #special .table_spec-colon .box .pp_ajax_btn, #special .table_spec .box .img, #special .table_spec-colon .box .img {
    width: min(70%, 380px);
    margin-bottom: 5px;
  }
  #special .table_spec .box .txt, #special .table_spec-colon .box .txt {
    text-align: left;
  }
}

/* ================================================================ *
//* gfooter
* ================================================================ */
#gfooter {
  position: relative;
  text-align: center;
  margin-top: 60px;
  padding: 120px 50px 110px;
  background: #f3f3f3;
}
#gfooter .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 45px;
  font-family: p22-flw-exhibition, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 30px;
}
#gfooter .btnWrap {
  margin-bottom: 40px;
  gap: 8px;
}
#gfooter .copy_wrap .logo {
  width: 30px;
}
#gfooter .copy_wrap {
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 800px) {
  #gfooter {
    padding: 40px 30px;
    margin-top: 0px;
  }
  #gfooter .sns {
    margin-bottom: 20px;
  }
  #gfooter .btnWrap {
    margin-bottom: 20px;
  }
  #gfooter .btnWrap .btn a:after, #gfooter .btnWrap .btn-b a:after, #gfooter .btnWrap .btn-border a:after {
    transform: scale(1);
    right: 10px;
  }
  #gfooter .copy_wrap {
    flex-direction: column;
    font-size: 10px;
    gap: 3px;
  }
  #gfooter .copy_wrap .logo {
    margin-bottom: 5px;
  }
}

/* ================================================================ *
//* popup
* ================================================================ */
#popup, #popup_movie {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1010;
  pointer-events: none;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  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;
}
#popup > .bg:after, #popup_movie > .bg:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.9;
}
@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;
  width: 85px;
  border-radius: 0 0 0 20px;
  z-index: 10;
  background: #ccc;
  padding: 13px 10px 14px;
  aspect-ratio: 1/1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transition: all 0.3s ease-out;
}
#popup .close.on, #popup_movie .close.on {
  opacity: 1;
}
#popup .close .icon, #popup_movie .close .icon {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.6;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup .close .icon span, #popup_movie .close .icon span {
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
}
#popup .close .icon span:before, #popup .close .icon span:after, #popup_movie .close .icon span:before, #popup_movie .close .icon span:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: #000;
}
#popup .close .icon span:before, #popup_movie .close .icon span:before {
  transform: rotate(45deg);
}
#popup .close .icon span:after, #popup_movie .close .icon span:after {
  transform: rotate(-45deg);
}
#popup .close p, #popup_movie .close p {
  position: relative;
  width: 100%;
  color: #fff;
  font-family: gotham, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 2px;
  text-indent: 0px;
  margin-top: 5px;
}
#popup .close.on, #popup_movie .close.on {
  opacity: 1;
}
#popup .content, #popup_movie .content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: scale(1.05);
}
#popup .content.on, #popup_movie .content.on {
  opacity: 1;
  transform: scale(1);
}
#popup .content .wrapper, #popup_movie .content .wrapper {
  position: relative;
  z-index: 10;
  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: #fff;
}
#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: 52px;
    padding: 8px 9px;
    border-radius: 0 0 0 10px;
    gap: 4px;
  }
  #popup .close p, #popup_movie .close p {
    font-size: 10px;
    letter-spacing: 0;
  }
  #popup .content .wrapper, #popup_movie .content .wrapper {
    padding: 0;
  }
}

#popup.img .content {
  padding: 0px;
  margin-bottom: 10px;
  height: auto;
  width: -moz-fit-content;
  width: fit-content;
}
#popup.img .content .wrapper {
  position: relative;
  text-align: center;
  padding: 5px;
}
#popup.img .content .wrapper img {
  position: relative;
  z-index: 5;
}
#popup.img .content .wrapper p {
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 800px) {
  #popup.img .content .wrapper p {
    border-radius: 5px;
  }
}

#popup_movie {
  z-index: 1001;
}
#popup_movie #movie_wrap {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1400px;
  opacity: 0;
  transform: scale(1.05);
  transition: all 0.4s ease-out 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popup_movie #movie_wrap iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
#popup_movie #movie_wrap iframe.shorts {
  aspect-ratio: 9/16;
}
#popup_movie #movie_wrap iframe.on {
  display: block;
}
@media (max-width: 800px) {
  #popup_movie #movie_wrap {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  #popup_movie #movie_wrap iframe.shorts {
    aspect-ratio: 9/16;
  }
}
#popup_movie.on {
  top: 0;
}
#popup_movie.on #movie_wrap {
  opacity: 1;
  transform: scale(1);
}

#popup.pp_item .wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: safe center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 20px 5px;
}
#popup.pp_item .wrapper #popup_item {
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100vw;
}
#popup.pp_item .wrapper .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#popup.pp_item .wrapper .img li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
#popup.pp_item .wrapper .img li.on {
  position: relative;
  opacity: 1;
}
#popup.pp_item .wrapper .thumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #ccc;
  padding: 10px 40px;
}
#popup.pp_item .wrapper .thumb li {
  max-width: 80px;
  border: 2px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  opacity: 0.5;
  cursor: pointer;
}
#popup.pp_item .wrapper .thumb li.on {
  opacity: 1;
  border-color: #999;
}
@media (max-width: 800px) {
  #popup.pp_item .wrapper #popup_item {
    border-radius: 5px;
  }
  #popup.pp_item .wrapper .thumb {
    gap: 5px;
  }
  #popup.pp_item .wrapper .thumb li {
    border-radius: 5px;
  }
}