@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Maru+Gothic:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid #ff1414; */
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

:root {
  --semi-fontsize: 0.77rem;
  --normal-fontsize: 0.83rem;
  --middle-fontsize: 0.95rem;
  --big-fontsize: 1.2rem;
  --line-height: 1.4;
}

@media screen and (min-width: 600px) {
  :root {
    --semi-fontsize: 0.8rem;
    --normal-fontsize: 0.9rem;
    --middle-fontsize: 1.1rem;
    --big-fontsize: 1.4rem;
    --line-height: 1.5;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --semi-fontsize: 0.83rem;
    --normal-fontsize: 1.05rem;
    --middle-fontsize: 1.2rem;
    --big-fontsize: 1.7rem;
    --line-height: 1.6;
  }
}
@media screen and (min-width: 1536px) {
  :root {
    --semi-fontsize: 0.97rem;
    --normal-fontsize: 1.15rem;
    --middle-fontsize: 1.5rem;
    --big-fontsize: 2.1rem;
    --line-height: 1.7;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #231815;
  line-height: var(--line-height);
  letter-spacing: 0rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

@media screen and (min-width: 1680px) {
  body {
    font-weight: 500;
  }
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
a {
  text-decoration: none;
  color: #000;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.sp-only {
  display: block;
}
.tb-only{
  display: none;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 599px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}

/*-- ここからHEADER --*/
.logo_group{
  display: flex;
  align-items: center;
}
header {
  z-index: 99;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 1em;
}
.header {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logo_group{
  display: flex;
  align-items: center;
}
.h_logo{
  width: 120px;
}
.h_logo img{
  padding: 2px 0;
}
.header {
  margin: 0;
  padding: 10px;
}
.header nav {
  margin: 0 0 0 auto;
}
.header ul {
  list-style: none;
  margin: 0;
  display: flex;
}
.pc-nav li {
  margin: 0 0 0.2em 2em;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color:#d9d9d9;
  position: relative;
}
.pc-nav a{
  text-decoration: none;
  font-size: 0.8rem;
  color: #FFF;
}
.pc-nav a::after {
  position: absolute;
  top: 20px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #D2AC5E;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
  
.pc-nav a:hover::after {
  visibility: visible;
  bottom: 12px;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .h_logo img{
    padding: 7px 0 0;
  }
}

@media screen and (max-width: 768px) {
  .pc-nav {
      display: none;
  }
}

@media (max-width: 430px) {
  header{
    padding: 0;
  }
  .header {
    padding: 0 0.5em;
  }
  .h_logo {
  width: 100px;
  }
  .h_logo img {
    padding: 7px 0;
  }
}
/*-- ここまでHEADER --*/

/* ここから 共通 */
.l-inner{
  padding: 6% 10%;
}

@media screen and (min-width: 1024px) {
  .l-inner{
    padding: 4rem 0;
    width: 900px;
    margin: auto;
  }
}

@media screen and (min-width: 1680px) {
  .l-inner{
    padding: 6rem 0;
    width: 880px;
  }
}

/* ここまで 共通 */

/* ここからMAIN VISUAL */
.mv__wrapper {
  position: relative;
  width: 100vw;
  height: 100svh;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.mv__wrapper h1{
  width: 60vw;
}

.loader {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loader.disappear {
  opacity: 0;
  pointer-events: none;
}

.loader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}
.curtain {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #000, #111);
  transform: translateY(100%);
  transition: transform 0.8s ease-in-out;
}

.curtain.active {
  transform: translateY(0);
}

.curtain.upwards {
  transform: translateY(-100%);
}

.curtain.hidden {
  display: none;
}

#youtube-area {
  display: none;
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
}

#youtube-area.appear {
  display: block;
}

#youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (min-aspect-ratio: 16/9) {
  #youtube {
    width: 100vw;
    height: 56.25vw;
  }
}

#youtube-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 10;
  width: 60vw;
}

.logo.expand {
  transform: translate(-50%, -50%) scale(1.2);
  opacity: 1;
}

@media screen and (min-width: 990px) {
  .logo {
      width: calc(100% - 65vw);
  }
}
/* scroll */
.scroll_down{
  display: none;
}

@media screen and (min-width: 990px) {
  .scroll_down{
    display: block;
    position: absolute;
    top: 100vh;
    left: 95%;
    z-index: 99;
  }
  .scroll_down.hidden {
    display: none;
  }
  .scroll_down a{
    position: absolute;
    left: 10px;
    bottom: 90px;
    color: #FFF;
    font-size: 12px;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .2em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
  }

  .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background:#FFF;
    animation:
      circlemove 1.6s ease-in-out infinite,
      cirlemovehide 1.6s ease-out infinite;
  }

  @keyframes circlemove{
    0%{bottom:160px;}
    100%{bottom:0px;}
  }

  @keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
  }

  .scroll_down:after{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width: 1.5px;
    height: 160px;
    background:#FFF;
  }
}
/* scroll */

/* ここまでMAIN VISUAL */

/* ここから INTRODUCTION */
.intro__contents{
  background:
  linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.75) 100%),
  url("../images/bg_intro.jpg") bottom no-repeat;
  background-size: cover;
  margin: auto;
}
.intro__wrap{
  padding: 6% 10%;
}
.intro__ttl{
  font-size: var(--big-fontsize);
  font-weight: bold;
  text-align: center;
  color: #D2AC5E;
  margin: 0 0 0.5rem 0.7rem;
}
.intro__txt{
  color: #FFF;
  font-weight: 500;
  padding: 0.5rem 1rem 1.5rem;
}
.intro__contents h2{
  max-width: 180px;
  margin: auto;
  padding: 1rem 0 0.5rem;
}
.intro__mainttl{
  font-size: var(--big-fontsize);
  font-weight: bold;
  text-align: center;
  color: #D2AC5E;
}
.title{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: bold;
  font-size: 6.8vw;
  color: #D2AC5E;
  text-align: center;
  padding: 1.5rem 0 0;
  background: linear-gradient(
    to right,
        #ddb86c,#ddb86c,#d2ac5e,#b38b43);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
#loop-video-area {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  max-width: 900px;
  margin: auto;
  pointer-events: none;
}
#loop-video-area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.spec__wrapper{
  padding: 1rem 0 0;
}
.spec__header{
  color: #FFF;
}
.spec__ttl{
  font-size: var(--middle-fontsize);
  font-weight: 900;
  color: #D2AC5E;
  text-align: center;
  padding: 0.7rem 0 0.5rem;
}
.spec__text{
  font-size: var(--semi-fontsize);
  padding: 0 0 1rem;
}
.detail__text__wrap{
  padding: 1rem 0;
  color: #FFF;
}
.detail__mainttl{
  text-align: center;
  padding: 0.5rem 0 0;
  font-size: var(--middle-fontsize);
  color: #D2AC5E;
  font-weight: 900;
}
.detail__title{
  font-weight: 700;
  line-height: 1.2;
  padding: 1rem 0 0.5rem;
  text-align: center;
}
.detail__title span{
  color: #D2AC5E;
  padding-right: 0.5rem;
}
.detail__text{
  font-size: var(--semi-fontsize);
}

@media screen and (min-width: 600px) {
  .intro__contents h2{
    max-width: 280px;
  }
  .intro__txt {
    padding: 1rem 0 2rem;
  }
  .spec__text {
    font-size: var(--normal-fontsize);
  }
  .spec__image{
    padding: 0 8vw 0.5rem;
  }
  .spec__header{
    padding: 1rem 0;
  }
  .detail__title {
    font-size: var(--middle-fontsize);
    padding: 1.5rem 0 0.5rem;
  }
  .detail__text{
    font-size: var(--normal-fontsize);
    padding: 0 0 0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .intro__txt{
    text-align: center;
    padding: 1.5rem 0 4rem;
  }
}

@media screen and (min-width: 1280px) {
  .intro__wrap{
    padding: 6% 8%;
  }
  .intro__txt{
    font-size: 1.4rem;
    width: 1100px;
    margin: auto;
  }
  .intro__ttl{
    font-size: var(--big-fontsize);
    margin: 0 0 1rem;
  }
  .spec__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 60px;
  }
  .spec__wrapper.rev{
    flex-direction: row-reverse;
  }
  .spec__image,
  .spec__header,
  .detail__text__wrap {
    flex: 0 0 auto;
  }
  .spec__header,
  .detail__text__wrap {
    width: 60%;
    margin: 0;
    padding: 0;
  }
  .spec__image {
    width: 40%;
    margin: 0;
    padding: 0;
  }
  .spec__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  .spec__ttl {
    padding: 0 0 1rem;
    text-align: left;
  }
  .spec__text{
    padding: 0 0 2rem;
  }
  .pr_gap{
    padding-right: 2rem;
  }
  .pl_gap{
    padding-left: 2rem;
  }
  .detail__mainttl{
    text-align: left;
    padding: 0;
  }
  .detail__title {
    text-align: left;
  }
  .detail__text__wrap{
    padding: 0;
  }
}

@media screen and (min-width: 1440px) {
  .intro__contents h2 {
    max-width: 420px;
  }
  .intro__txt {
    padding: 2rem 0 6rem;
  }
  .title {
    font-size: 6rem;
  }
  #loop-video-area {
    max-width: 1000px;
  }
  .spec__wrapper {
    margin-bottom: 6rem;
    padding: 2rem 0 0;
  }
  .spec__header,
  .detail__text__wrap,
  .spec__image {
    width: 50%;
  }
  .pr_gap{
    padding-right: 6rem;
  }
  .pl_gap{
    padding-left: 6rem;
  }
}
/* ここから special model */

/* ここから LINEUP */
.lineup__wrapper{
  background: #000;
  padding: 0 8% 2rem;
}
.lineup__contents{
  margin: 1rem auto 4rem;
}
.lineup__contents h2{
  max-width: 320px;
  margin: auto;
}

@media screen and (min-width: 1024px) {
  .lineup__contents{
    max-width: 1200px;
    margin: 2rem auto 8vw;
  }
}

.lineup__title{
  font-size: var(--big-fontsize);
  font-weight: bold;
  color:#b38b43;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .lineup__title{
    padding: 0 0 2vw;
  }
}

.spec-image{
  padding: 1rem 0;
  max-width: 800px;
  margin: auto;
}

.spec-block {
  max-width: 1200px;
  margin: 0 auto 32px;
  color: #fff;
}

.basic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--semi-fontsize);
}

.basic-table th,
.basic-table td {
  padding: 8px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.basic-table th {
  width: 1%;
  white-space: nowrap;
  text-align: left;
  font-weight: 600;
  color: #efc671;
}

.basic-table td {
  text-align: left;
}

.spec-option {
  padding: 0 20px;
}

.option-title{
  color: #efc671;
  text-align: center;
}

.option-subtitle{
  color: #FFF;
  text-align: center;
  font-size: var(--semi-fontsize);
  padding: 0.5rem 0;
}

.option-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: fit-content;
  margin: 12px auto 0;
}

.option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  box-sizing: border-box;
  background: #232323;
}

.opt-image,
.opt-btn-wrap {
  flex: 2;
}

.opt-wrap {
  flex: 3;
}

.opt-image {
  width: 100%;
  cursor: zoom-in;
}

.opt-image img {
  width: 100%;
  height: auto;
  display: block;
}

.opt-wrap{
  text-align: center;
}

.opt-btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.image-popup.is-active {
  display: flex;
  opacity: 1;
}

.popup-inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(.98);
  transition: transform .35s ease;
}

.image-popup.is-active .popup-inner {
  transform: scale(1);
}

.popup-inner img {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.popup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 12px;
}

.popup-arrow.prev { left: 0; }
.popup-arrow.next { right: 0; }

.opt-gpu {
  line-height: 1.2;
  font-weight: 600;
}

.opt-price {
  margin: 4px 0 8px;
}

.opt-gpu,
.opt-price {
  display: block;
}

.opt-btn {
  margin-left: 0;
  margin-top: 6px;
  padding: 4px 12px;
  text-align: center;
  white-space: nowrap;
  font-size: 11px;
  text-decoration: none;
  color: #000;
  border-radius: 999px;
  background: #f2f2f2;
  transition: background-color .2s ease, color .2s ease;
}

.opt-btn-bk{
  background: #5b5b5c;
  color: #FFF;
}

.opt-btn:hover {
  background: #efc671;
}

.accent {
  color: #efc671;
}

@media (min-width: 768px) {
  .spec-option {
    padding: 0;
  }

  .spec-basic {
    padding: 0 60px;
  }

  .spec-image{
    padding: 2rem 0;
  }

  .basic-table th, 
  .basic-table td {
    padding: 8px 20px;
  }

  .option-grid {
    max-width: none;
    flex-direction: row;
  }

  .option-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
    min-height: auto;
    padding: 14px;
  }

  .opt-image,
  .opt-wrap,
  .opt-btn-wrap  {
    flex: none;
    width: 100%;
  }

  .opt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0;
  }

  .opt-btn {
    margin: 0 0 8px;
    align-self: stretch;
    text-align: center;
    padding: 4px 12px;
  }

  .opt-price {
    margin-top: 0;
  }

  .popup-arrow.prev { left: -48px; }
  .popup-arrow.next { right: -48px; }
}

@media (min-width: 1024px) {
  .spec-basic {
    width: 640px;
    padding: 2rem 0;
  }
  .basic-table {
    font-size: 1rem;
  }
  .basic-table th,
  .basic-table td {
    padding: 10px 30px;
  }
  .option-item {
    gap: 8px;
    padding: 20px;
  }
  .opt-gpu,
  .opt-price {
    font-size: 1.1rem;
  }
  .opt-btn {
    font-size: 0.9rem;
  }
}

@media (min-width: 1440px) {
  .option-grid {
    gap: 22px;
  }
  .option-item {
    gap: 10px;
    padding: 20px 40px;
  }
  .option-title {
    font-size: 1.1rem;
  }
}

.btn_anime_wrap{
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 1.5rem auto 3rem;
}
#btn_animation p {
  color: #FFF;
  text-align: center;
}
#btn_animation .btn {
  display: block;
  position: relative;
  border: 2px solid #efc671;
  width: fit-content;
  margin: 0.3rem auto 0;
  padding: 0 2rem;
  line-height: 40px;
  font-size: var(--middle-fontsize);
  font-weight: 700;
  text-decoration: none;
  color: #efc671;
  text-align: center;
  overflow: hidden;
}

#btn_animation .btn:hover {
  text-decoration: none;
  color: #f1d498;
}

#btn_animation .btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fbfbfb;
  animation: btn_animation 2.5s ease-in-out infinite;
}

@keyframes btn_animation {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

@media screen and (min-width: 600px) {
  .btn_anime_wrap {
    margin: 2rem auto 6rem;
  }
  #btn_animation .btn {
    padding: 0.3rem 3rem;
  }
  #btn_animation p {
    font-size: var(--middle-fontsize);
    font-weight: bold;
  }
}

@media screen and (min-width: 1024px) {
  #btn_animation .btn {
    padding: 0.3rem 3rem;
    margin: 1rem auto 0;
  }
}

@media screen and (min-width: 1440px) {
  .btn_anime_wrap{
    max-width: 700px;
    margin: 4rem auto;
  }
  #btn_animation .btn {
    padding: 1rem 5rem;
  }
}
/* ここまで LINEUP */

/* ここから movie */
.movie__contents {
  padding: 0 16% 8%;
  background: #000;
}

#movie-video-area {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 56.25%;
  overflow: hidden;
}

#moviePlayer,
#moviePlayer iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

#moviePlayer iframe {
  transform: none !important;
}

@media (max-width: 768px) {
  .movie__contents {
    padding: 0 8% 8%;
  }
  .movie-inner{
    margin-top: 1rem;
  }
}

/* ここまで movie */


/* ここから VGA OPTION */
.vga__contents{
  background-color: #000;
  color: #FFF;
}
.vga__wrap{
  padding: 3rem 10% 1rem;
}
.vga__contents h2{
  font-family: 'Josefin Sans', sans-serif;
  font-weight: bold;
  font-size: 6.8vw;
  color: #efc671;
  text-align: center;
  line-height: 1;
  background: linear-gradient(to right, #efc671,#ddb86c, #ddb86c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.vga__title {
  text-align: center;
  padding: 1vw 0 0;
  font-size: var(--semi-fontsize);
}
.vga__header__explain{
  padding: 6vw 0 8vw;
  font-size: var(--semi-fontsize);
}
.vga__header__explain span{
  font-weight: bold;
  color: #efc671;
}
.vga__explain h3{
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 6.2vw;
  text-align: center;
  padding: 1.5rem 0 0.8rem;
}
.vga__detail{
  padding: 6%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
}
.vga__detail img{
  width: 60%;
  display: block;
  margin: 0 auto 1rem;
}
.vga__detail p{
  font-size: var(--semi-fontsize);
}
.vga__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
  max-width: 1200px;
  margin: 2rem auto;
}
.vga__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0 1rem;
}
.vga__item img {
  width: 100%;
}
.vga__price {
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  font-size: 4.8vw;
  padding: 0.5rem 0;
}
.vga__price span {
  font-size: 3vw;
}

@media screen and (min-width: 600px) {
  .vga__explain h3{
    padding: 1.5rem 0 0;
  }
  .vga__detail {
    display: flex;
    align-items: center;
    gap: 0 2rem;
    max-width: 1000px;
    margin: 1rem auto 3rem;
    padding: 2rem;
  }
  .vga__detail img {
    width: 40%;
    max-width: 320px;
    margin: 0 auto;
  }
  .vga__detail p {
    flex: 1;
  }
  .vga__group{
    gap: 0 2rem;
    margin: 4rem 0;
  }
}

@media screen and (min-width: 1024px) {
  .vga__wrap{
    padding: 8%;
  }
  .vga__explain h3 {
    font-size: 3.4rem;
    padding: 3rem 0 0;
  }
  .vga__detail p {
    font-size: var(--normal-fontsize);
    line-height: 1.5;
  }
  .vga__price {
    font-size: 2.8rem;
  }
  .vga__price span{
    font-size: 1.6rem;
  }
  .vga__header__explain{
    font-size: var(--normal-fontsize);
    text-align: center;
    padding: 4vw 0 6vw;
    line-height: 2.2;
  }
}

@media screen and (min-width: 1440px) {
  .vga__contents h2 {
    font-size: 6rem;
  }
  .vga__explain h3 {
    font-size: 4.2rem;
    padding: 6rem 0 0;
  }
  .vga__group {
    gap: 0 4rem;
    margin: 6rem auto 4rem;
  }
}

@media screen and (min-width: 1900px) {
  .vga__wrap{
    padding: 8% 8% 4%;
  }
}

.btn-gold {
  position: relative;
  display: inline-block;
  padding: 0.3rem 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, #d4af37, #f9e076, #d4af37);
  color: #222;
  font-size: var(--semi-fontsize);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}
.btn-gold:hover {
  transform: translateY(-2px);
}
.btn-gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
}

.btn-gold:hover::before {
  animation: shine 0.8s forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@media screen and (min-width: 600px) {
  .btn-gold{
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1024px) {
  .btn-gold {
    padding: 0.5rem 3rem;
    letter-spacing: 1px;
  }
}

/* VGA 没入感 */
.specs-wrapper{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  width:100%;
  margin: 0 0 4vw;
}
.specs-table{
  min-width:940px;
  width:100%;
  border-collapse:collapse;
  display:table;
  table-layout:fixed;
}
.specs-head, .specs-row{
  display:table-row;
}
.specs-cell{
  display:table-cell;
  vertical-align:middle;
  padding:18px 22px;
  font-size: 0.93rem;
  white-space:normal;
  border-bottom:1px solid rgba(255,255,255,0.15);
}
.specs-head .specs-cell{
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:0.06em;
  opacity:0.92;
  border-bottom:2px solid rgba(255,255,255,0.3);
}
.col-gpu{
  color:#D2AC5E;
}
.specs-row .title{
  font-weight:700;
  letter-spacing:0.01em;
  opacity:1;
}

.col-gpu{width:20%;}
.col-res{width:18%;}
.col-graphics{width:24%;}
.col-scene{width:26%;}

@media (max-width: 599px){
  .specs-cell{
    font-size: var(--semi-fontsize);
  }
}

@media (max-width: 599px){
  .specs-cell{
    padding: 8px 12px;
    line-height: 1.2;
  }
}

.specs-wrapper:focus{
  outline: 2px dashed rgba(255,255,255,0.06);
  outline-offset:6px;
}

/* ここまで VGA OPTION */

/* ここから fadein */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* ここまで fadein */

/* ここから shop info */
.shop__infowrap {
  padding: 40px 20px;
  margin: 0 auto;
  background-color: #242222;
  color: #dbc053;
}

.shop__list__title {
  font-size: var(--big-fontsize);
  text-align: center;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid #dbc053;
  padding-bottom: 10px;
}

.shop__list_title span {
  background: linear-gradient(90deg, #f0d878 0%, #ffcc00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.shop__open {
  text-align: center;
  font-size: var(--semi-fontsize);
  margin-bottom: 30px;
}

.shop__adress__contents{
    max-width: 580px;
    margin: auto;
}
.shop__adress_wrap {
  margin-bottom: 40px;
  font-size: var(--semi-fontsize);
}

.shop__adress_wrap h3 {
  font-size: var(--middle-fontsize);
  border-left: 5px solid #dbc053;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #dbc053;
}

.shop__adress_wrap h3 span{
  color: #FF2323;
}

.shop__table {
  width: 100%;
  border-collapse: collapse;
}

.shop__table th,
.shop__table td {
  padding: 7px 15px;
  border-bottom: 1px solid #555;
  text-align: left;
}

.shop_table tbody tr:last-child th,
.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.shop__table th.tenpo {
  color: #D2AC5E;
  font-weight: bold;
  white-space: nowrap;
  width: 20%;
}

.shop__table td.adress {
  color: #ddd;
  width: 75%;
}

.shop__table td.detail{
  width: 15%;
}

.shop__table td.detail a {
  color: #D2AC5E;
  text-decoration: none;
  border-bottom: 1px dashed #D2AC5E;
  transition: all 0.3s ease;
  font-size: var(--semi-fontsize);
}

.shop__table td.detail a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1024px) {
  .shop__infowrap {
    padding: 6rem 2%;
  }
  .shop__list__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .shop__adress__contents {
    max-width: 900px;
    margin: 4rem auto 0;
  }
  .shop__table tbody{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
  .shop__table th.tenpo {
    width: 20%;
  }
  .shop__adress_wrap h3 {
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1536px) {
  .shop__adress__contents {
    max-width: 1000px;
  }
  .shop__table tbody{
    gap: 0 4rem;
  }
}
/* ここまで shop info */

/* ここから フッター */
.p-footer {
  padding: 20px 60px 10px;
  background-color: lightgray;
}
.p-footer__inner {
  display: block;
}
.p-footer__nav {
  font-size: 0.65rem;
}
.p-footer__navList {
  max-width: 200px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__navItem {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:nth-child(3n) {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
.p-footer__logo {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}
.p-footer__navItem a {
  color: #333;
  font-size: 0.8rem;
}
.p-footer__copyLight {
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
}

@media screen and (min-width: 599px) {
  .p-footer__navList {
    max-width: 100%;
}
.p-footer__navItem:nth-child(3n) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:last-child {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ここまで フッター */


/* go to TOP */
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  background:#D2AC5E;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #FFF;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
}

#page-top a:hover{
  background: #f1d498;
  color: #FFF;
}
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (max-width: 768px) {
  #page-top a{
    opacity: 0.5;
  }
}
#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}
.pagetop:hover {
  opacity: .8;
}
/* go to TOP */