@charset "UTF-8";
html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  color: #ffffff;
  background-color: #111;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

main {
  position: relative;
  overflow: hidden;
  padding-top: 0;
}

p {
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #ffffff;
}
a:hover {
  text-decoration: none;
  color: #ffffff;
  opacity: 0.8;
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

dl,
ol,
ul {
  padding: 0;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

@media (min-width: 576px) and (max-width: 991px) {
  .container {
    max-width: 96%;
  }
}

/* 背景：銀河 */
.galaxy-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bgimg.webp");
  background-size: cover;
  background-position: center;
  z-index: -3;
  mix-blend-mode: screen;
}

/* 背景：グリッド */
/* 走査線エフェクト */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.06) 50%);
  background-size: 100% 4px;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
}

.space-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, rgba(10, 63, 80, 0) 0%, rgba(9, 10, 15, 0.2196078431) 100%);
  perspective: 1000px;
  overflow: hidden;
  z-index: -1;
}

.stars-container {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--scroll-progress, 0) * 2500px));
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 6px #fff, 0 0 10px #fff;
}

.laser-bg {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #E60012;
  box-shadow: 0 0 25px 6px #E60012;
  z-index: 1;
  animation: laserScan 5s ease-in-out infinite;
}

@keyframes laserScan {
  0% {
    top: 10%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}
footer {
  background-color: #111;
  padding: 35px 25px;
}
footer .link-pageup {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.7); /* 半透明の黒 */
  border: 3px solid #E4F8F9; /* シアン（SFの定番色） */
  border-radius: 8px; /* 少し角を残すのがSF風 */
  transition: all 0.3s ease;
  position: fixed;
  bottom: 30px;
  right: 30px;
  /* 外側の光（グロウ効果） */
  box-shadow: 0 0 10px rgba(0, 242, 255, 0.5), inset 0 0 5px rgba(0, 242, 255, 0.2);
}
@media (max-width: 991px) {
  footer .link-pageup {
    right: 10px;
    bottom: 10px;
  }
}
footer .link-pageup:hover {
  background: #caeeff;
  box-shadow: 0 0 20px #e4f1fd, 0 0 50px rgba(141, 183, 247, 0.8);
  opacity: 1;
}
footer .link-pageup:hover .scroll-up-ico {
  border-color: #9b2727; /* 背景が光るので矢印は黒に */
  filter: none;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 991px) {
  footer .copyright .brSP {
    display: none;
  }
}
footer i.scroll-up-ico {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #E4F8F9;
  border-left: 3px solid #E4F8F9;
  transform: rotate(45deg);
  margin-top: 5px;
  filter: drop-shadow(0 0 5px #E4F8F9);
}

:root {
  scroll-behavior: auto !important;
}

.header-cyber {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
}
.header-cyber .header-bar {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 100010;
}
.header-cyber .header-bar .header-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 12px 20px;
}
@media (max-width: 767px) {
  .header-cyber .header-bar .header-inner {
    padding: 12px 14px;
  }
}
.header-cyber .tos_logo img {
  height: 40px;
}
@media (min-width: 992px) {
  .header-cyber .tos_logo img {
    height: 52px;
  }
}
.header-cyber .img-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .header-cyber .img-logo {
    width: 60%;
  }
}
.header-cyber .img-logo img {
  height: auto;
  width: auto;
}
@media (min-width: 992px) {
  .header-cyber .img-logo img {
    height: 56px;
  }
}
.header-cyber .menu-trigger {
  background: transparent;
  border: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s;
  outline: none;
}
@media (max-width: 575px) {
  .header-cyber .menu-trigger {
    padding: 10px 0 15px;
  }
}
.header-cyber .menu-trigger .toggler-text {
  color: #E60012;
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}
@media (max-width: 991px) {
  .header-cyber .menu-trigger .toggler-text {
    display: none;
  }
}
.header-cyber .menu-trigger .hamburger-icon {
  width: 30px;
  height: 21px;
  position: relative;
}
.header-cyber .menu-trigger .hamburger-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #E60012;
  box-shadow: rgba(230, 0, 18, 0.8);
  transition: all 0.4s ease;
}
.header-cyber .menu-trigger .hamburger-icon span:nth-child(1) {
  top: 0;
}
.header-cyber .menu-trigger .hamburger-icon span:nth-child(2) {
  top: 9px;
}
.header-cyber .menu-trigger .hamburger-icon span:nth-child(3) {
  top: 18px;
}
.header-cyber.is-active .menu-trigger .hamburger-icon span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header-cyber.is-active .menu-trigger .hamburger-icon span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header-cyber.is-active .menu-trigger .hamburger-icon span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header-cyber.is-active .full-screen-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-cyber .full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: rgba(5, 5, 5, 0.9607843137);
  z-index: 100000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.header-cyber .full-screen-menu .menu-content {
  text-align: center;
  width: 100%;
  margin: auto 0;
  padding: 100px 0;
}
@media screen and (min-width: 992px) {
  .header-cyber .full-screen-menu .menu-content {
    padding: 140px 0;
  }
}
.header-cyber .full-screen-menu .menu-content .navbar-nav {
  list-style: none;
  padding: 0;
}
.header-cyber .full-screen-menu .menu-content .navbar-nav .nav-item {
  margin: 30px 0;
}
@media screen and (max-height: 500px) {
  .header-cyber .full-screen-menu .menu-content .navbar-nav .nav-item {
    margin: 15px 0;
  }
}
.header-cyber .full-screen-menu .menu-content .navbar-nav .nav-item .nav-link {
  color: #fff !important;
  font-size: clamp(18px, 6vw, 36px);
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  font-weight: 900;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.header-cyber .full-screen-menu .menu-content .navbar-nav .nav-item .nav-link span {
  font-size: 13px;
  color: rgba(205, 205, 205, 0.7098039216);
  letter-spacing: 5px;
  margin-top: 8px;
}
.header-cyber .full-screen-menu .menu-content .navbar-nav .nav-item .nav-link:hover {
  color: #E60012 !important;
  transform: scale(1.1);
  text-shadow: 1px 1px 10px rgba(230, 0, 18, 0.8);
}
.header-cyber .full-screen-menu .menu-content .navbar-nav .nav-item .nav-link:hover span {
  color: #E60012;
}

body.js-no_scroll {
  overflow: hidden;
}

body.js-no_scroll {
  overflow-y: scroll !important;
  position: fixed;
  width: 100%;
}

::-webkit-scrollbar {
  width: 0px;
}

/*content
---------------------------------------*/
.section-item {
  margin-bottom: 120px;
}
.section-item:last-child {
  margin-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .section-item {
    margin-bottom: 100px;
  }
  .section-item:last-child {
    margin-bottom: 160px;
  }
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

/*見出し*/
h2.hdg-section {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(2deg, #83650e 0%, #f5e427 100%);
  text-shadow: 0px 0px 10px #c3ba4d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  font-size: 40px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  h2.hdg-section {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  h2.hdg-section {
    font-size: 30px;
  }
}
h2.hdg-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央配置 */
  width: 100%; /* 必要に応じて 200px など固定値に調整 */
  height: 100%; /* 必要に応じて調整 */
  background: url("../img/bgsearch.png") no-repeat center;
  background-size: contain; /* 画像全体を表示 */
  z-index: -1; /* 文字の背面に配置 */
  pointer-events: none; /* クリックなどの邪魔をしない */
}

h2.hdg-section2 {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-shadow: 2px 2px 13px #E60012;
}
@media screen and (max-width: 768px) {
  h2.hdg-section2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  h2.hdg-section2 {
    font-size: 32px;
  }
}
h2.hdg-section2 span {
  display: block;
  font-size: clamp(0.938rem, 0.835rem + 0.47vw, 1.188rem);
  letter-spacing: 0.1em;
  font-style: normal;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 24px;
  background: linear-gradient(2deg, #fefbfd 0%, #dbefff 100%);
  text-shadow: 0px 0px 4px #c2e8fb;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 5px;
}
h2.hdg-section2 img {
  width: 36vw;
  max-width: 400px;
}
@media (max-width: 575px) {
  h2.hdg-section2 img {
    width: 60vw;
    margin: 24px auto 16px;
  }
}

h3.hdg-sort {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  h3.hdg-sort {
    font-size: 18px;
    margin: 0 auto 20px;
  }
}
h3.hdg-sort::before {
  content: "";
  display: block;
  padding-top: 90px;
  margin-top: -90px;
}
h3.hdg-sort > span {
  color: #ffffff;
  display: block;
  text-shadow: 1px 1px 4px #E60012;
  margin: 0 auto;
  letter-spacing: 0.05em;
  padding: 8px 0px;
  z-index: 1;
  display: inline-block;
}
@media (max-width: 575px) {
  h3.hdg-sort > span {
    font-size: 16px;
    letter-spacing: 0;
    padding: 9px 0px;
  }
}

/*メインビジュアル*/
.section_kv {
  position: relative;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .section_kv {
    padding-bottom: 140px;
    border-width: 5px 0;
  }
}
.section_kv .kv_img {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  z-index: 2;
  padding-top: 140px;
}
@media (max-width: 1400px) {
  .section_kv .kv_img {
    max-width: 56%;
  }
}
@media (max-width: 991px) {
  .section_kv .kv_img {
    max-width: 77%;
  }
}
@media (max-width: 575px) {
  .section_kv .kv_img {
    width: 92%;
    max-width: 92%;
    padding-top: 120px;
  }
}

.section-item#anchor-search .container .search_container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding: 40px;
  margin-top: -50px;
}
@media (max-width: 575px) {
  .section-item#anchor-search .container .search_container {
    padding: 20px;
  }
}
.section-item#anchor-search .container .search_container {
  /* ────── ボタンリスト ────── */
}
.section-item#anchor-search .container .search_container ul.searchbtn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.section-item#anchor-search .container .search_container ul.searchbtn_list li {
  width: calc(50% - 10px);
  display: flex;
}
@media (max-width: 768px) {
  .section-item#anchor-search .container .search_container ul.searchbtn_list li {
    width: 100%;
  }
}
.section-item#anchor-search .container .search_container ul.searchbtn_list li a.sortbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  padding: 20px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-family: "Noto Sans JP";
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  /* グラスモーフィズムのベース */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* 斜めの光沢 */
}
.section-item#anchor-search .container .search_container ul.searchbtn_list li a.sortbtn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(37deg, rgba(134, 171, 227, 0.28) 0%, rgba(169, 204, 232, 0.0392156863) 50%, rgba(200, 215, 241, 0.52) 100%);
  opacity: 0.5;
  transition: 0.4s;
}
.section-item#anchor-search .container .search_container ul.searchbtn_list li a.sortbtn {
  /* ホバー効果 */
}
.section-item#anchor-search .container .search_container ul.searchbtn_list li a.sortbtn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6), 0 0 40px rgba(255, 255, 255, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.2);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}
.section-item#anchor-search .container .search_container ul.searchbtn_list li a.sortbtn:hover::before {
  opacity: 0.8;
}
.section-item#anchor-search .container .search_container {
  /* ────── 「全商品一覧へ戻る」ボタン ────── */
}
.section-item#anchor-search .container .search_container .js-sort-clear {
  text-align: center;
  margin-top: 40px;
}
.section-item#anchor-search .container .search_container .js-sort-clear a.linkbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid #E4F8F9;
  color: #E4F8F9;
  text-decoration: none;
  font-weight: bold;
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  transition: 0.3s;
}
.section-item#anchor-search .container .search_container .js-sort-clear a.linkbtn:hover {
  background: #E4F8F9;
  color: #2a2a49;
  box-shadow: 0 0 16px #ffffff;
}
.section-item#anchor-search .container .search_container .js-sort-clear a.linkbtn {
  /* アイコンフォント */
}
.section-item#anchor-search .container .search_container .js-sort-clear a.linkbtn .return::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.4em;
  vertical-align: middle;
  top: -2px;
  right: 4px;
  position: relative;
}
.section-item#anchor-search .container .search_container .js-sort-clear a.linkbtn .return.reset::before {
  content: "\e166";
}

/*商品一覧*/
.StyleF_Frame_ {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .StyleF_Frame_ {
    gap: 10px;
  }
}
.StyleF_Frame_ .StyleF_Item_ {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc((100% - 60px) / 4);
  padding: 22px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  backdrop-filter: blur(3px);
  border: 2px solid rgba(230, 0, 18, 0.3);
  transition: 0.3s;
}
@media screen and (max-width: 991px) {
  .StyleF_Frame_ .StyleF_Item_ {
    width: calc((100% - 20px) / 3);
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .StyleF_Item_ {
    width: calc((100% - 10px) / 2);
    padding: 15px;
  }
}
@media (max-width: 575px) {
  .StyleF_Frame_ .StyleF_Item_ {
    padding: 10px 5px;
  }
}
.StyleF_Frame_ .StyleF_Item_ a.goods_img_ {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .StyleF_Item_ a.goods_img_ {
    font-size: 10px;
  }
}
.StyleF_Frame_ .StyleF_Item_ a.goods_img_ .img_ {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.StyleF_Frame_ .StyleF_Item_ a.goods_img_ .img_::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.StyleF_Frame_ .StyleF_Item_ a.goods_img_ .img_ > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .StyleF_Item_ a.goods_img_ .img_ {
    margin-bottom: 5px;
  }
}
.StyleF_Frame_ .StyleF_Item_ .img_ {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .StyleF_Item_ .img_ {
    font-size: 10px;
  }
}
.StyleF_Frame_ .StyleF_Item_ .img_ a.goods_img_ {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.StyleF_Frame_ .StyleF_Item_ .img_ a.goods_img_::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.StyleF_Frame_ .StyleF_Item_ .img_ a.goods_img_ > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .StyleF_Item_ .img_ a.goods_img_ {
    margin-bottom: 5px;
  }
}
.StyleF_Frame_ .name_ {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .name_ {
    font-size: 12px;
    margin-top: 5px;
  }
}
.StyleF_Frame_ .price_ {
  font-size: 17px;
  font-weight: 600;
  margin-top: 12px;
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  text-align: end;
  color: #ffffff;
  text-shadow: 0 0 1px #ffffff;
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .price_ {
    font-size: 14px;
    margin-top: 8px;
  }
}
.StyleF_Frame_ .comment_ {
  display: none;
}
.StyleF_Frame_ .cart_ {
  margin-top: 10px;
}
.StyleF_Frame_ .rdt_ {
  flex-grow: 1;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .rdt_ {
    margin-top: 5px;
  }
}
.StyleF_Frame_ .rdt_,
.StyleF_Frame_ .pre_sales_ {
  color: #ff2c2c;
  text-shadow: 0 0 3px #ff5454;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .StyleF_Frame_ .rdt_,
  .StyleF_Frame_ .pre_sales_ {
    font-size: 10px;
  }
}
.StyleF_Frame_ .cart_btn_ {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  padding: 0.5em 0.5em 0.6em;
  letter-spacing: 0.2em;
  border-radius: 0;
}
.StyleF_Frame_ .cart_btn_.order_ {
  color: #e91322;
  border: 1px solid #e91322;
  background: #000;
  box-shadow: 1px 0px 6px rgba(223, 11, 26, 0.63), inset 0 0 12px rgba(233, 19, 34, 0.6);
  text-shadow: 0 0 2px rgba(227, 73, 84, 0.8);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.StyleF_Frame_ .cart_btn_.reservation_ {
  color: #00ffff;
  border: 1px solid #00ffff;
  background: #000;
  box-shadow: 1px 0px 6px rgba(131, 183, 207, 0.63), inset 0 0 12px rgba(121, 153, 201, 0.6);
  text-shadow: 0 0 2px rgba(170, 207, 241, 0.8);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.StyleF_Frame_ .cart_btn_.detail_ {
  color: #ffffff;
  border: 1px solid #ffffff;
  background: #000;
  box-shadow: 1px 0px 3px rgba(255, 255, 255, 0.63), inset 0 0 6px rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.StyleF_Frame_ .cart_btn_.sold_out_ {
  background: #220000;
  border: 1px solid #440000;
  color: #660000;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.StyleF_Frame_ .cart_btn_.closed_ {
  background: #111;
  color: #444;
  border-color: #222;
  cursor: not-allowed;
  filter: grayscale(1);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.02) 5px, rgba(255, 255, 255, 0.02) 10px);
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.linkbtn_box {
  text-align: center;
  margin: 60px auto 160px;
}
@media screen and (max-width: 768px) {
  .linkbtn_box {
    margin: 30px auto 100px;
  }
}
.linkbtn_box a.s_returnbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(230, 0, 18, 0.8);
  color: #E60012;
  text-decoration: none;
  font-weight: bold;
  font-family: "Orbitron", "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  transition: 0.3s;
}
.linkbtn_box a.s_returnbtn:hover {
  background: rgba(133, 61, 61, 0.2823529412);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(223, 61, 61, 0.6117647059);
}
.linkbtn_box a.s_returnbtn {
  /* アイコンフォント */
}
.linkbtn_box a.s_returnbtn .return::before {
  font-family: "Material Symbols Outlined";
  font-size: 1.4em;
  vertical-align: middle;
  top: -2px;
  right: 4px;
  position: relative;
}
.linkbtn_box a.s_returnbtn .return.search::before {
  content: "\e8b6";
}

/*MOVIE*/
.movie_area {
  max-width: 850px;
  margin: 0 auto;
  padding: 4px;
  overflow: hidden;
  background: rgba(255, 252, 252, 0.9450980392);
  box-shadow: 1px 0px 37px #E60012;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .movie_area {
    padding: 3px;
  }
}

.youtube_player_wrap iframe {
  aspect-ratio: 16/9;
}