<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ------------------------- */
/* Main header temp css */
/* ------------------------- */
/* Used pixels as I dont know the global setup in regards to rem etc. */

.main {
  position: relative;
}

.text-danger {
  color: #a94442;
}

.errormsg {
  margin-block-start: 0;
}

a:hover:not(:only-child) {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
}

/* Specifically target links that only contain an image as a child */
a:only-child:hover {
  opacity: 0.6;
  transition: all 0.3s ease-in-out;
  /* Making opacity 0.1 here will keeps the opacity at 100% for image-only links */
}

.ctaButton:hover{
  .ctaButton:hover:has(+ a)
    opacity: 1;
}

.btn-submit{
  overflow: hidden;
  border: none;
  box-sizing: border-box;
  background-color: #3dcc85;
  outline: none;

  color: #ffffff;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;

  transition: all 0.2s ease-in-out;
}

.btn-submit:hover {
  background-color: white;
  outline: solid 1px #3dcc85;
  color: #3dcc85;
  opacity: 1 !important;
}

.how-to-btn {
  padding: 16px 100px;
  margin: 0 auto;
}

:where(section.where-styling, aside.where-styling, footer.where-styling) a {
  opacity: 1;
}

.header-selection-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  font-family: 'Noto Sans JP', Helvetica;
  overflow: hidden;
}

.header-buttons-container a {
  color: #606060;
}

.header-buttons-container a:hover {
  color: #3dcc85;
  transition: all 0.3s ease-in-out;
}

.header-buttons-container a svg {
  fill: #606060;
}

.header-buttons-container a:hover svg {
  fill: #3dcc85;
}

.header-buttons-container .green-button {
  width: 100%;
  padding: 15px 32px;
  display: inline-block;
  text-align: center;
  color: white;
  line-height: 17px;
  font-size: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.header-selection-container .link-selection-container {
  padding: 0px;
}

.header-selection-container .link-selection-container p.nav-text:hover {
  color: #3dcc85;
}

.header-selection-container .link-selection-container .link-icon {
  margin-right: 1px;
}

.header-selection-container .link-icon-text-container a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  color: #606060;
}

.header-selection-container .link-icon-text-container a:hover {
  color: #3dcc85;
  transition: all 0.3s ease-in-out;
}

.header-selection-container .link-icon-text-container a svg {
  fill: #606060;
}

.header-selection-container .link-icon-text-container a:hover svg {
  fill: #3dcc85;
}

.header-selection-container .link-selection-container p.large-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 20px 0px;
  color: #606060;
}

.header-selection-container .link-selection-container p.nav-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 20px 0px;
}

/* Header container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  width: 100%;
  border-bottom: solid 1px #e9e9e9;
  touch-action: manipulation;
}

.header-logo-container {
  display: flex;
  align-items: center;
}

.header-logo-image {
  width: 112px;
  height: 60px;
  margin-right: 30px;
}

.header-divider-image {
  height: 40px;
  margin-right: 30px;
}

.header-logo-gs-image {
  height: 30px;
  margin-right: 20px;
}

.header-catch-image {
  height: 18px;
  margin-right: 30px;
}

.header-logo-image-sp,
.header-divider-image-sp,
.header-logo-gs-image-sp,
.header-catch-image-sp {
  display: none;
}

.header-buttons-container {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #606060;
}

.header-button-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}

.header-button-text-container p {
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  font-family: 'Noto Sans JP', Helvetica;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.btn-cart .header-icon,
.btn-cart-mobile .header-icon {
  width: auto;
  height: 23px;
}

#cart-popup .inner {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: white;
  max-width: 500px;
  position: absolute;
  top: -20px;
  right: 156px;
  border-radius: 5px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

#cart-popup-mobile .inner {
  display: flex;
  flex-direction: column;
  background: white;
  position: absolute;
  width: 100vw;
  left: 0;
  right: 0;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
}

#cart-popup,
#cart-popup-mobile {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--White, #fff);
  box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 104px;
  right: 0;
  color: var(--Black1, #606060);
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.4);
}

#cart-popup .item_box,
#cart-popup-mobile .item_box {
  display: flex;
  flex-direction: row;
}

#cart-popup .item_photo,
#cart-popup-mobile .item_photo {
  text-align: center;
}

#cart-popup .item_name,
#cart-popup-mobile .item_name {
  color: var(--Black1, #606060);
  /* h4 */
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  /* 177.778% */
  letter-spacing: 0.54px;
}

#cart-popup .item_quantity,
#cart-popup-mobile .item_quantity {
  margin-top: 8px;
}

#cart-popup .item_price,
#cart-popup-mobile .item_price {
  font-family: 'Sofia Pro Soft';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 160% */
}

#cart-popup .bg-danger,
#cart-popup-mobile .bg-danger {
  color: var(--White, #fff);
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.54px;
  background: #f99;
  padding: 24px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cart-popup-mobile .bg-danger {
  flex-direction: row;
}

#cart-popup .bg-danger img,
#cart-popup-mobile img {
  margin: 0 12px;
}

#cart-popup-mobile img {
  margin-bottom: 12px;
}

#cart-popup .btn,
#cart-popup-mobile .btn {
  display: flex;
  width: 100%;
  max-width: 460px;
  height: 48px;
  padding: 16px 0px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 100px;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  border-radius: 100px;
  margin-top: 15px;
  cursor: pointer;
}

#cart-popup .btn.cta-btn,
#cart-popup-mobile .btn.cta-btn {
  background: #3dcc85;
  color: #fff;
}

#cart-popup .btn.cancel,
#cart-popup-mobile .btn.cancel {
  background: #fff;
  border: 1px solid #606060;
  color: #606060;
}

#cart-popup #btn-cancel {
  width: 100%;
  margin-top: 15px;
}

.header-button-text-container .badge,
#btn-cart-mobile .badge {
  background: #f00;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 8px;
  color: var(--White, #fff);
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.3px;
  position: absolute;
  top: -5px;
  right: 7px;
}

#btn-cart-mobile .badge {
  top: -5px;
  right: -7px;
}

.header-icon {
  width: 26px;
  height: 27px;
}

.large-text {
  font-family: 'Noto Sans JP', Helvetica;
  font-weight: 700;
  color: rgba(96, 96, 96, 1);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 16px;
  white-space: nowrap;
  transition: all 0.2s ease-in;
}

.header-button-text-container svg {
  height: 24px;
}

.header-button-text-container .large-text {
  font-size: 16px;
}

.header-button-text-container:hover .large-text {
  color: #3dcc85;
}

.header-button-text-container:hover svg{
  fill: #3dcc85;
}

.ol-display-number {
  list-style: decimal;
  margin-left: 2%;
  color: rgba(96, 96, 96, 1);
}

.ol-display-bullet {
  list-style: disc;
  margin-left: 2%;
  color: rgba(96, 96, 96, 1);
}

.ol-display-square {
  list-style: square;
  margin-left: 2%;
  color: rgba(96, 96, 96, 1);
}

ol#parenthesizedList {
  list-style-type: none;
  /* Remove default numbering */
  counter-reset: list-counter;
  /* Reset the counter */
  padding-left: 4%;
  /* Adjust padding as needed */
}

ol#parenthesizedList li {
  counter-increment: list-counter;
  /* Increment the counter for each list item */
  position: relative;
  /* Needed for positioning the pseudo-element */
  padding: 1%;
}

ol#parenthesizedList li::before {
  content: '(' counter(list-counter) ') ';
  /* Create content with counter and parentheses */
  position: absolute;
  /* Position the pseudo-element */
  left: -28px;
  /* Adjust distance to align numbers correctly */
  line-height: normal;
  color: #606060;
}

/* Or use global button style if available */

/* Buttons  */
.green-button {
  overflow: hidden;
  border: none;
  border-radius: 100px;
  width: auto;
  box-sizing: border-box;
  background-color: #3dcc85;
  outline: none;
  padding: 15px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  color: #ffffff !important;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;

  transition: all 0.2s ease-in-out;
}

.green-button:hover {
  background-color: white;
  outline: solid 1px #3dcc85;
  color: #3dcc85 !important;
  opacity: 1 !important;
}

.white-button {
  outline: none;
  border: none;
  border-radius: 100px;
  background: #fff;
  color: var(--Black1, #606060) !important;
  border: 1px solid var(--Black1, #606060) !important;
/*  height: 46px;*/
  padding: 15px 32px;
  display: inline-flex;
  justify-content: center; /* center the content horizontally */
  align-items: center;

  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;

  transition: all 0.2s ease-in-out;
}

.white-button:hover {
  border-radius: 100px;
  background: #606060;
  color: #fff !important;
  font-family: 'Noto Sans JP', Helvetica;
  font-weight: 700;
  opacity: 1 !important;
}

.white-button-gray {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 100px;
  background: #fff;
  color: var(--Black1, #606060);
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-weight: 700;
  border: 1px solid var(--Black1, #606060);
  height: 46px;
}

.green-button-logged-in {
  overflow: hidden;
  border: none;
  border-radius: 100px;
  width: 208px;
  height: 48px;
  box-sizing: border-box;
  background-color: #3dcc85;
  outline: none;
  transition: all 0.3s ease-in-out;

  color: #ffffff;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

input#btn-loginbox-login {
  width: 100%;
  max-width: 400px;
}

.login-container .login-box input.green-button{
  margin: 10px auto;
  text-indent: 10px;
  width: 100%;
  max-width: 400px;
}

.login-second .white-button {
  width: 100%;
}

/* Under Header selections temp css */
.link-selection-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 50px;
  width: 100%;
  border-bottom: solid 1px #e9e9e9;
}

.header-selection-container .link-icon-text-container {
  padding: 0px;
  gap: 0px;
}

.link-icon-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  position: relative;
}

.icon-link-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-link-container:first-child {
  width: 100%;
}

.link-icon {
  width: 20px;
  height: 18px;
}

.link-selection-container p.large-text {
  font-size: 20px;
  line-height: 16px;
}

/* ------------------------- */
/* Footer css */
/* Footer share section css */
/* ------------------------- */
.footer-share-logo-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  border-top: solid 1px #e9e9e9;
  z-index: 5;
  background: white;
  border-radius: 10px;
}

.footer-image-container {
  width: min-content;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.footer-share-container {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  margin-top: 8px;
}

.footer-share-text {
  font-family: 'Sofia Pro Soft-Bold', Helvetica;
  color: #a0a0a0;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.footer-share-icons-container {
  display: flex;
  gap: 30px;
}

.footer-share-icon img {
  width: 35px;
  height: 35px;
}

/* ------------------------- */
/* Footer main section css */
/* ------------------------- */
.footer-container {
  display: flex;
  justify-content: space-between;
  padding: 50px 150px 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.footer-nendoroid-image {
  width: 353px;
  height: 117px;
}

.footer-x-image {
  width: 353px;
  height: 63px;
}

.footer-content-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-color: #f6f6f6;
  width: 100%;
}

.footer-content-container .copyright {
  color: var(--Black1, #606060);
  font-family: "Sofia Pro Soft";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding: 30px 150px 20px;
  width: 100%;
}

.footer-image-section {
  width: 100%;
  aspect-ratio: 16/5;
  max-height: 280px;
  background-image: url('/contents/ver1/common/responsive/img/footer-bottom.png');
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.footer-image-section p.copyright {
  color: var(--White, #fff);
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  font-family: 'Sofia Pro Soft';
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  bottom: 24px;
  position: absolute;
  left: 40px;
}

.foot-wave-image {
  width: 100%;
}

.footer-inner {
  max-width: 1500px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer-links-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.footer-links-mobile-container {
  display: none;
  flex-direction: column;
  width: 100%;
}

.footer-mobile-chevron {
  width: 18px;
  height: auto;
  transition: all 0.4s ease-out;
}

.footer-mobile-chevron--active {
  transform: rotate(180deg);
}

.footer-link-list {
  display: flex;
  max-height: 0;
  height: 0;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.footer-link-chevron-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.footer-mobile-title {
  color: #606060;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 15px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 20px;
}

.footer-mobile-section-title {
  color: #a0a0a0;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  margin: 14px 0;
}

.footer-mobile-divider {
  border-top: solid 1px #e9e9e9;
  width: 100%;
  margin: 0;
  border-bottom: none;
  border-radius: 0px;
  border-left: none;
}

.footer-mobile-links {
  color: #606060;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 12px;
  font-weight: 400;
  line-height: 100%;
  margin: 12px 0;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-text {
  color: #606060;
  font-size: 14px;
  line-height: 21px;
  font-family: 'Noto Sans JP', Helvetica;
}

/* Footer bottom section css */
.footer-bottom-container {
  gap: 30px;
  display: none;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  width: 100%;
}

.footer-bottom-company-logo {
  width: 200px;
  height: 60px;
}

.footer-bottom-text {
  font-weight: 700;
  color: #a0a0a0;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 10px;
  white-space: nowrap;
  font-family: 'Sofia Pro Soft-Bold', Helvetica;
}

/* ------------------------- */
/* Mobile side menu css */
/* ------------------------- */
.side-menu-container {
  display: none;
}

.mobile-only {
  display: none;
}

.burger-icon {
  display: none;
}

.side-menu-buttons-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0px;
}

.side-menu-link-text {
  color: #606060;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.side-menu-divider {
  flex: 1;
  border: none;
  border-bottom: solid 1px #e9e9e9;
  height: 1px;
  width: 100%;
  margin: 8px 0px;
}

.side-menu-top-text {
  margin: 20px 0;
  padding: 10px 0;
  font-family: 'Noto Sans JP', Helvetica;
  line-height: 16px;
  white-space: nowrap;
  color: #606060;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.48px;
}

.close-button {
  position: absolute;
  top: 32px;
  right: 25px;
  width: 17px;
  height: 17px;
}

.side-menu-container-open .side-menu-content a button {
  width: 30%;
  width: 86% !important;
  margin-left: 20px;
}

.side-menu-container-open .link-selection-container {
  gap: 0px;
}

.side-menu-container-open .link-icon-text-container {
  padding: 10px 20px;
}

.ignore-browser-styles {
  -webkit-appearance: none;
  appearance: none;
}

span.amazonText {
  font-weight: bold;
}

#login_mypage button,
.login-box button,
#login_mypage input[type='submit'],
.login-box input[type='submit'],
#login_mypage input[type='button'],
.login-box input[type='button'] {
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}

.centered.link-password a {
  text-decoration: underline;
  font-size: 16px;
  color: var(--Black1, #606060);
}

.login-container {
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  font-family: 'Noto Sans JP';
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.login-container .login-box {
  width: 460px;
  border-radius: 10px;
  background: #fff;
  margin: 0 auto;
  margin-top: 20%;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: -30px;
  position: relative;
  max-height: 90%;
  overflow: auto;
}
.login-container .login-box .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}
.login-container .login-box p {
  margin-bottom: 30px;
  color: var(--Black1, #606060);
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.login-container .login-box input {
  margin: 10px auto;
  text-indent: 10px;
}
.login-container .login-box input.txt {
  width: 400px;
  height: 48px;
  border-radius: 5px;
  border: 1px solid #a0a0a0;
}
.login-container .login-box input.btn-submit {
  border-radius: 100px;
  background: #3dcc85;
  color: #fff;
  border-color: #fff;
  width: 400px;
  height: 48px;
  border: none;
}
.btn-amazon {
  width: 400px;
  height: 48px;
  border-radius: 100px;
  border: 1px solid #f8991d;
  background: #fff;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 1;
  color: var(--Black1, #606060);
}
.btn-amazon .logo-amazon {
  position: absolute;
  left: 24px;
}
.loginInner .green-button{
  width: 400px;
}



/* Header */
@media only screen and (max-width: 959px) {
  .header-container {
    padding: 15px 20px;
  }
  .header-right-container {
    display: flex;
    gap: 20px;
  }
  .header-logo-image,
  .header-divider-image,
  .header-logo-gs-image,
  .header-catch-image {
    display: none;
  }
  .header-logo-image-sp {
    display: block;
    width: 58.831px;
    height: 25.83px;
    margin-right: 10px;
  }
  .header-divider-image-sp {
    display: block;
    height: 40px;
    width: 1px;
    margin-right: 10px;
  }
  .header-logo-gs-image-sp {
    display: block;
    height: 16.73px;
    width: 55.74px;
    margin-right: 8px;
  }
  .header-catch-image-sp {
    display: block;
    /*width: 99.277px;*/
    height: 9.217px;
  }
  .header-container .header-button-text-container {
    display: none;
  }
  .header-container .green-button {
    display: none;
  }
  .header-container .btn {
    display: none;
  }
  .header-container .white-button {
    display: none;
  }
  .header-selection-container .link-selection-container {
    display: none;
  }
  .header-buttons-container .cta-btn {
    display: none;
  }
  .burger-icon {
    display: block;
    display: block;
    width: 30px;
    height: 20px;
    cursor: pointer;
  }
  #btn-cart-mobile {
    margin-top: 1px;
    position: relative;
  }
  #btn-cart-mobile img.header-icon{
    width: 24px;
    height: 21px;
  }
  .header-buttons-container {
    gap: 0;
  }
  #cart-popup-mobile {
    right: 0%;
    width: 100%;
    top: 73px;
  }
  #cart-popup-mobile .bg-danger {
    font-size: 16px;
  }
  #cart-popup-mobile img {
    margin: 0px 10px;
  }

  /* Side Menu */
  .side-menu-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    /* display: flex; */
    justify-content: flex-end;
    width: 100dvw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .side-menu-container-open {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999999;
  }
  .side-menu-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 75px 0px 20px;
    width: 90%;
    background-color: white;
    overflow: scroll;
  }
  .side-menu-top-text {
    margin: 0;
    border-top: 0;
    padding-left: 0;
    margin: 0 43px;
  }
  .side-menu-content a .green-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    padding: 15px 23px;
  }
  .side-menu-content a .green-button-logged-in {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 50px;
    font-size: 18px;
    padding: 15px 23px;
  }
  .link-selection-container {
    flex-direction: column;
    padding: 0;
    gap: 28px;
    border-bottom: none;
    align-items: flex-start;
    margin-top: 30px;
  }
  .link-icon-text-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding: 25px 20px;
  }

  #btn-cart-mobile.mobile-only {
    display: block;
  }

  #cart-popup-mobile .btn_area ul li {
    display: flex;
    justify-content: center;
  }

  .filter-gallery {
    display: flex;
    justify-content: flex-end !important;
  }
}

/* Body */
@media only screen and (max-width: 768px) {
  
  #g-item-lbBottom {
    padding: 35px 20px 60px 20px;
  }

  /* Footer */

  .footer-image-section {
    width: 100%;
    max-height: 213px;
    aspect-ratio: 393/401;
    background-image: url('/contents/ver1/common/responsive/img/footer-bottom-mobile.png');
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .footer-content-container a {
    text-decoration: none;
  }
  .footer-image-section p.copyright {
    color: var(--White, #fff);
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
    font-family: 'Sofia Pro Soft';
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    bottom: 10px;
    position: absolute;
    left: 10px;
  }
  .footer-content-container {
    gap: 40px;
    gap: 0;
  }
  .footer-container {
    flex-direction: column-reverse;
    padding: 40px 20px;
    gap: 30px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-links-container {
    display: none;
  }
  .footer-links-mobile-container {
    display: flex !important;
  }
  .footer-image-container {
    margin: 0 auto;
    aspect-ratio: 3/1;
    gap: 20px;
    margin: 0 auto;
    width: 100% !important;
    text-align: center;
  }
  .footer-image-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-bottom-container {
    gap: 20px;
  }
  .footer-nendoroid-image {
    width: 100%;
    height: auto;
    max-width: 353px;
  }
  .footer-x-image {
    width: 100%;
    height: auto;
    max-width: 353px;
  }
  .footer-nendoroid-image a {
    width: min-content;
  }
  .footer-x-image a {
    width: min-content;
  }
  .footer-content-container .copyright {
    padding: 0 20px 20px;
  }

  /* Other */
  .large-text {
    font-size: 20px;
  }
  .icon-link-container {
    display: flex;
    gap: 4px;
  }
  .main-link-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding: 0 20px;
  }
  .link-icon-text-container-main-menu {
    width: 100%;
    align-items: baseline;
    display: flex;
    flex-direction: inherit;
    border-top: solid 1px #e9e9e9;
    margin-top: 30px;
    margin-bottom: -37px;
  }
  .scroll-top {
    display: flex;
    margin: auto;
    background-color: transparent;
    border: none;
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    cursor: pointer;
    position: static;
    bottom: 0;
    right: 5%;
    flex-direction: column-reverse;
    row-gap: 5px;
    font-family: 'Sofia Pro Soft';
  }
  .green-button,
  .white-button {
    width: 100% !important;
  }
  .mobile-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1270px){
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-content-container .copyright {
    text-align: center;
  }
}

#copy-container {
  display: flex;
  align-items: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 4px 12px;
  width: 397px;
  margin-top: -4px;
  height: 48px;
}

#input-url {
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #333;
}

#copy-url {
  background-color: #606060;
  color: white;
  border: none;
  border-radius: 30px;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  margin-left: 8px;
  transition: background-color 0.3s ease;
}

#copy-url:hover {
  background-color: #555;
}

@media (max-width: 768px) {
  #copy-container {
    border: none;
    width: auto;
    padding: 4px 0px;
  }

  #input-url {
    display: none;
  }

  #copy-url {
    height: 35px;
    padding: 0 15px;
    font-size: 14px;
    border-radius: 20px;
  }

  .modal {
    gap: 5px;
  }
  .footer-share-container {
    flex-direction: column;
  }
}
/*gallery item page*/
@media (max-width: 768px) {
  .g-item-header-container {									
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-left: 0px !important;
    margin-top: 10% !important;
  }

  .g-item-header-title, .g-item-header-number {
    margin: 0;
  }
  
  .g-item-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top:20px;
  }

  .g-item-green-button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .centered &gt; img {
    width: 390px;
    height: 390px;
  }

}
@media (max-width: 392px) {
  .centered &gt; img {
    width: 350px;
    height: 350px;
  }
}
.g-item-header-container {
  margin-left: 156px;
  margin-top: 3%;
  color: #8d8d8d;
  font-family: 'Noto Sans JP';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.54px;
}
.g-item-header-title {
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.6px;
  font-weight: 700;
  font-family: 'Noto Sans JP';
}
.g-item-header-number {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.6px;
  font-weight: 700;
  font-family: 'Noto Sans JP';
}
.g-item-header-number .number-icon {
  font-size: 16px;
}
.g-item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 357px;
}
.g-item-buttons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
}

.g-item-green-button {
  overflow: hidden;
  border: none;
  border-radius: 100px;
  width: auto;
  box-sizing: border-box;
  background-color: #3dcc85;
  outline: none;
  padding: 15px 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff !important;
  font-family: 'Noto Sans JP', Helvetica;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}

#g-item-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #E9E9E9;
  width: 100%;
}
#content-footer {
  font-family: Sofia Pro Soft;
  color: #A0A0A0;
  font-size: 10px;
  margin: 20px auto;
}

#g-item-lbBottom {
  padding: 35px 20px 80px 20px;
}

#g-item-lbShareButton {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.g-item-footer-share-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 584px;
  margin-top: 20px;
}

@media (max-width: 600px) {

  .g-item-footer-share-container {
    width: auto;
  }
  .g-item-footer-share-icons-container {
    gap: 19px !important;
  }
}

#g-item-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#content {
  flex: 1;
}

.g-item-footer-share-icons-container {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
}

#share-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

#line {
  width: 60%;
  opacity: 0.3;
  margin-top: 20px;
}

#numberDisplay {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  color: #A0A0A0;
}

#view-face-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}</pre></body></html>