<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500;700&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&amp;display=swap");
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: top;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
  color: inherit; /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

picture {
  display: block;
}

p {
  margin: 0;
  padding: 0;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*--------------- form reset ------------*/
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  font-family: inherit;
  font-size: 100%;
  display: block;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border: none;
}
button:hover {
  opacity: 0.7;
}

input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
}

input[type=checkbox], input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type=checkbox] + span {
  position: relative;
  padding-left: 15px;
}
label input[type=radio] + span {
  position: relative;
  padding-left: 25px;
}
label input[type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=checkbox] + span::before {
  border-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #1E2777;
}
label input[type=checkbox]:checked + span::before {
  background-color: #fff;
}
label input[type=checkbox]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
label input[type=checkbox] + span::before, label input[type=checkbox] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
label input[type=checkbox] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type=checkbox] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}
label input[type=radio] + span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #686868;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-color: transparent;
  width: 14px;
  height: 14px;
}
label input[type=radio]:checked + span::before {
  border-color: #007acc;
}
label input[type=radio]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #007acc;
  border-radius: 50%;
  z-index: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 3px;
  width: 8px;
  height: 8px;
}

/*-------- text email tel ---------*/
input[type=text], input[type=email], input[type=tel] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

input[type=button], input[type=submit] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
}

button[type=submit], input[type=reset], button[type=button] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*-------- select ------------*/
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

input[type=text], input[type=email], input[type=tel] {
  width: 100%;
  max-width: 100%;
}

textarea {
  width: 100%;
  max-width: 100%;
  resize: vertical;
  overflow: auto;
}

input[type=button] {
  color: #fff;
  border-style: none;
}
input[type=submit] {
  color: #fff;
  border-style: none;
}
input[type=submit]:hover {
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: calcvw(28) !important;
  }
  textarea {
    width: 100%;
    font-size: calcvw(28) !important;
  }
}
@media screen and (max-width: 640px) {
  input[type=text], input[type=email], input[type=tel] {
    width: 100%;
    font-size: 16px !important;
  }
  textarea {
    width: 100%;
    font-size: 16px !important;
  }
}
::-webkit-input-placeholder {
  color: #B7B7B7;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::-ms-input-placeholder, ::placeholder {
  color: #B7B7B7;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}

body {
  color: #000;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 3.7333333333vw;
  }
}
body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
}

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

img {
  image-rendering: -webkit-optimize-contrast;
  vertical-align: middle;
}

.safari img {
  image-rendering: auto;
}

label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: inherit;
  /*&amp;:hover,
  &amp;:focus {
  	text-decoration: underline;
  }*/
}
a:link, a:active, a:visited {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
  }
  a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.7;
  }
  .js-imgHover a:hover,
  .js-imgHover a:hover img {
    opacity: 1;
  }
  a,
  a * {
    outline: 1px solid transparent;
    outline: none;
  }
}
.m-red {
  color: #a91617;
}

.m-blue {
  color: #133CC3;
}

.m-bold {
  font-weight: bold;
}

.m-en {
  font-family: "Poppins", sans-serif;
}

.c-inner {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .c-inner {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-inner {
    width: 100%;
    padding: 0 5%;
  }
}

/*-------------- parts --------------*/
.c-top-headline {
  font-size: 4.5rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-top-headline {
    font-size: 7.4666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}

.c-allmodelbtn {
  background: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 40rem;
  height: 5rem;
  margin: 0 auto;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-allmodelbtn {
    width: 94%;
    border-radius: 1.3333333333vw;
    height: 10.6666666667vw;
  }
}
.c-allmodelbtn span {
  color: #fff;
  position: relative;
  padding-right: 1.7rem;
}
@media screen and (max-width: 767px) {
  .c-allmodelbtn span {
    font-size: 3.2vw;
    font-weight: 300;
    letter-spacing: 0.2666666667vw;
    padding-right: 5.3333333333vw;
  }
}
.c-allmodelbtn span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icn_window.svg) no-repeat left top/cover;
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-allmodelbtn span:after {
    width: 2.4vw;
    height: 2.4vw;
  }
}

.c-btn {
  background: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 24rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 0.4rem;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 94%;
    border-radius: 1.3333333333vw;
    height: 10.6666666667vw;
  }
}
.c-btn span {
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn span {
    font-size: 3.2vw;
    font-weight: 300;
    letter-spacing: 0.2666666667vw;
  }
}

.c-itemlist {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: stretch;
  -webkit-box-align: stretch;
          align-items: stretch;
  gap: 0 20rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-itemlist {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
            justify-content: flex-start;
    -ms-flex-align: stretch;
    -webkit-box-align: stretch;
            align-items: stretch;
    gap: 0;
  }
}
.c-itemlist li {
  position: relative;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .c-itemlist li {
    width: 50%;
    padding: 8vw 3% 10.6666666667vw;
    margin-bottom: 10.6666666667vw;
  }
}
.c-itemlist li.m-new:before {
  content: "NEW";
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  color: #fff;
  background: #a91617;
  padding: 0.6rem 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  line-height: 1.5384615385;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-itemlist li.m-new:before {
    left: 5.3333333333vw;
    padding: 0.5333333333vw 1.3333333333vw;
    font-size: 2.6666666667vw;
    letter-spacing: 1px;
  }
}
.c-itemlist li.m-new.m-limited:before {
  content: "LIMITED";
  background: #000;
}
.c-itemlist li.m-new.m-pluslimited:after {
  content: "LIMITED";
  font-family: "Poppins", sans-serif;
  letter-spacing: 0;
  color: #fff;
  background: #000;
  padding: 0.6rem 1.4rem;
  position: absolute;
  top: 0;
  left: 7rem;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  line-height: 1.5384615385;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-itemlist li.m-new.m-pluslimited:after {
    left: 16vw;
    padding: 0.5333333333vw 1.3333333333vw;
    font-size: 2.6666666667vw;
    letter-spacing: 1px;
  }
}
.c-itemlist .img {
  width: auto;
  height: 34.4rem;
  padding-left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .c-itemlist .img {
    margin: 0 auto;
    padding-left: 5%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-itemlist .img {
    height: 59.7333333333vw;
  }
}
.c-itemlist .img img {
  width: auto;
  height: 100%;
}
.c-itemlist .name {
  margin-top: 0.2rem;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-itemlist .name {
    font-size: 4vw;
    letter-spacing: 0;
    margin-top: 2.6666666667vw;
  }
}
.c-itemlist .price {
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-itemlist .price {
    font-size: 3.4666666667vw;
  }
}
.c-itemlist .price .tax {
  font-size: 1.2rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-itemlist .price .tax {
    font-size: 2.6666666667vw;
  }
}
.c-itemlist .release {
  margin-top: 1rem;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-itemlist .release {
    margin-top: 1.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-itemlist .limitedtxt {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1.9230769231;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-itemlist .limitedtxt {
    font-size: 3.2vw;
  }
}
.c-itemlist .morebtn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  width: 16rem;
  height: 4rem;
  font-size: 1.4rem;
  margin: 1.7rem auto 0;
  border: 1px solid #000;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .c-itemlist .morebtn {
    width: 32vw;
    height: 8vw;
    border-radius: 20px;
    font-size: 2.9333333333vw;
    margin-top: 2.6666666667vw;
  }
}
.c-itemlist .morebtn:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.c-itemlist .limited {
  margin-top: 1.4rem;
  text-align: center;
  position: relative;
}
.c-itemlist .limited:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-itemlist .limited:before {
    width: 80%;
    right: 0;
    margin: 0 auto;
  }
}
.c-itemlist .limited span {
  font-size: 1.4rem;
  display: inline-block;
  background: #fff;
  padding: 0 0.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-itemlist .limited span {
    font-size: 3.4666666667vw;
    padding: 0 1.3333333333vw;
  }
}
.c-itemlist.m-col2 {
  margin: 0 auto;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .c-itemlist.m-col2 {
    width: 100%;
    gap: 0;
    margin-bottom: 10.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .c-itemlist.m-col2 li {
    padding: 0 3% 10.6666666667vw;
  }
}

.c-lineuplist {
  /*20240819 fix*/
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.4rem 0.3%;
}
.c-lineuplist-headline {
  font-size: 4.5rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-lineuplist-headline {
    font-size: 7.4666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-lineuplist {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5333333333vw 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-lineuplist .unit {
    width: 100%;
  }
}
.c-lineuplist .unit a {
  display: block;
  width: 100%;
  position: relative;
}

/*animation*/
.js-anime {
  opacity: 0;
}

.is-show {
  -webkit-animation: fadeInUp 0.5s ease 0s forwards;
          animation: fadeInUp 0.5s ease 0s forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.c-shop {
  padding: 13rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .c-shop {
    padding: 16vw 0 21.3333333333vw;
  }
}
.c-shop-headline {
  font-size: 4.5rem;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-shop-headline {
    font-size: 7.4666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.c-shop-btn {
  background: #000;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 90rem;
  height: 15rem;
  margin: 0 auto;
  border-radius: 0.6rem;
}
@media screen and (max-width: 767px) {
  .c-shop-btn {
    width: 100%;
    border-radius: 1.3333333333vw;
    height: 24vw;
  }
}
.c-shop-btn span {
  color: #fff;
  position: relative;
  padding-right: 2.5rem;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 767px) {
  .c-shop-btn span {
    font-size: 4vw;
    font-weight: 300;
    letter-spacing: 0.2666666667vw;
    padding-right: 4vw;
  }
}
.c-shop-btn span:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/common/icn_window.svg) no-repeat left top/cover;
  width: 1.6rem;
  height: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-shop-btn span:after {
    width: 2.4vw;
    height: 2.4vw;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .tab {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .tab {
    display: block !important;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  preload
-------------------------------------------------- */
.u-preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --------------------------------------------------
  font,text
-------------------------------------------------- */
.u-underline {
  text-decoration: underline !important;
}

.u-bold {
  font-weight: bold;
}

.l-header {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition: 1s;
  transition: 1s;
  z-index: 99;
  /* /toggle */
}
@media screen and (max-width: 767px) {
  .l-header {
    background: none;
  }
}
.l-header-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 2.55% 0 2.5%;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .l-header-wrap {
    padding: 8vw 2.6666666667vw 8.8vw 5.3333333333vw;
  }
}
.l-header-logo {
  font-size: 1.6rem;
  margin: 0;
  line-height: 1;
}
.l-header-logo img {
  width: 11.6rem;
}
@media screen and (max-width: 767px) {
  .l-header-logo img {
    width: 26.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100svh;
    background: #fff;
  }
  .l-header-nav-logo { /*SP メニュー内ロゴ*/
    margin: 5.8666666667vw auto 0;
    width: 26.6666666667vw;
  }
}
.l-header-nav-wrap {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header-nav-wrap {
    display: block;
    padding-bottom: 13.3333333333vw;
    height: 100%;
    width: 100%;
    overflow-y: auto;
  }
}
.l-header-gnav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: end;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 5.4rem;
  margin-right: 5.1rem;
}
@media screen and (max-width: 1280px) {
  .l-header-gnav {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav {
    display: block;
    padding: 8vw 10.6666666667vw;
  }
}
.l-header-gnav li {
  position: relative;
}
.l-header-gnav li a, .l-header-gnav li span {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li a, .l-header-gnav li span {
    color: #000;
    font-size: 4.2666666667vw;
    font-weight: 700;
  }
}
.l-header-gnav li a.m-new:before {
  content: "【NEW】";
  position: absolute;
  top: -1.3rem;
  left: -0.5rem;
  font-size: 1.1rem;
  color: #ffe600;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li a.m-new:before {
    font-size: 2.9333333333vw;
    position: static;
    color: #ff0000;
  }
}
.l-header-gnav li.m-dropdown {
  cursor: pointer;
}
.l-header-gnav li.m-dropdown .key {
  position: relative;
  padding-right: 2rem;
}
@media print, screen and (min-width: 768px) {
  .l-header-gnav li.m-dropdown .key {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header-gnav li.m-dropdown .key:hover {
    opacity: 0.7;
  }
}
.l-header-gnav li.m-dropdown .key:after {
  content: "";
  background: url(../img/common/icn_arrow_down.svg) no-repeat left top/contain;
  width: 1.67rem;
  height: 0.76rem;
  position: absolute;
  right: 0;
  top: calc(50% - 0.25rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .key {
    padding-right: 6.6666666667vw;
  }
  .l-header-gnav li.m-dropdown .key:after {
    background: url(../img/common/icn_arrow_down_sp.svg) no-repeat left top/contain;
    width: 3.4666666667vw;
    height: 1.6vw;
  }
}
.l-header-gnav li.m-dropdown .key.is-on:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.l-header-gnav li.m-dropdown .dropmenu {
  position: absolute;
  top: 5.25rem;
  left: -4rem;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  padding: 2.3rem 3.5rem 4.5rem;
}
@media screen and (max-width: 1280px) {
  .l-header-gnav li.m-dropdown .dropmenu {
    padding: 2.3rem 2.5rem 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu {
    position: static;
    background: none;
    padding: 8vw 0 0 10.6666666667vw;
  }
}
.l-header-gnav li.m-dropdown .dropmenu li {
  font-size: 1.4rem;
  padding-left: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu li {
    padding-left: 4vw;
  }
}
.l-header-gnav li.m-dropdown .dropmenu li:before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background: #fff;
  position: absolute;
  left: 0;
  top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu li:before {
    background: #000;
    width: 0.8vw;
    height: 0.8vw;
    border-radius: 10px;
    top: 2.4vw;
  }
}
.l-header-gnav li.m-dropdown .dropmenu li + li {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu li + li {
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu li a {
    font-size: 3.4666666667vw;
  }
}
.l-header-gnav li.m-dropdown .dropmenu li a:hover {
  text-decoration: underline;
}
.l-header-gnav li.m-dropdown .dropmenu.m-lineup {
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu.m-lineup {
    width: 100%;
  }
}
.l-header-gnav li.m-dropdown .dropmenu.m-lineup li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu.m-lineup li a {
    font-size: 3.4666666667vw;
  }
}
.l-header-gnav li.m-dropdown .dropmenu.m-special {
  width: 22rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu.m-special {
    width: 100%;
  }
}
.l-header-gnav li.m-dropdown .dropmenu.m-special li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu.m-special li a {
    font-size: 3.2vw;
  }
}
.l-header-gnav li.m-dropdown .dropmenu.m-special li + li {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-header-gnav li.m-dropdown .dropmenu.m-special li + li {
    margin-top: 5.3333333333vw;
  }
}
.l-header-gnav li.m-outlink a {
  position: relative;
  padding-right: 1.8rem;
}
.l-header-gnav li.m-outlink a:after {
  content: "";
  background: url(../img/common/icn_window.svg) no-repeat left top/cover;
  width: 1.1rem;
  height: 1.1rem;
  position: absolute;
  right: 0;
  top: calc(50% - 0.3rem);
}
@media screen and (max-width: 767px) {
  .l-header-gnav li + li {
    margin-top: 9.3333333333vw;
  }
}
.l-header-lang {
  position: relative;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header-lang {
    width: 100%;
    margin-right: 0;
  }
}
.l-header-lang .current {
  letter-spacing: 0.4rem;
  position: relative;
  cursor: pointer;
  color: #fff;
  padding-right: 2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-header-lang .current {
    color: #000;
    border: 1px solid #000;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
            justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
            align-items: center;
    width: 37.3333333333vw;
    height: 10.6666666667vw;
    margin: 0 auto;
    font-size: 3.4666666667vw;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
}
.l-header-lang .current:after {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  right: 0;
  background: url(../img/common/icn_arrow_down.svg) no-repeat left top/contain;
  width: 1.67rem;
  height: 0.76rem;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-lang .current:after {
    background: url(../img/common/icn_arrow_down_sp.svg) no-repeat left top/contain;
    width: 2.4vw;
    height: 1.0666666667vw;
    top: 50%;
    right: 6.6666666667vw;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header-lang .current.is-on {
    opacity: 0.7;
  }
}
.l-header-lang .current.is-on:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.l-header-lang .list {
  position: absolute;
  top: 4.9rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header-lang .list {
    position: static;
    width: 100%;
    -webkit-transform: none;
            transform: none;
  }
}
.l-header-lang .list li {
  background: rgba(0, 0, 0, 0.6);
  padding: 0.6em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header-lang .list li {
    margin: 0 auto;
    width: 37.3333333333vw;
  }
}
.l-header-lang .list li:hover {
  opacity: 0.7;
}
.l-header-lang .list li + li {
  margin-top: 0.2rem;
}
@media screen and (max-width: 767px) {
  .l-header-lang .list li + li {
    margin-top: 0.2666666667vw;
  }
}
.l-header-lang .list li a {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  color: #fff;
  height: 100%;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 767px) {
  .l-header-lang .list li a {
    padding: 1.3333333333vw 0;
    font-size: 3.7333333333vw;
  }
}
.l-header-lang .list li a:hover {
  opacity: 1;
}
.l-header-citizen a {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-header-citizen a {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .l-header-citizen {
    margin-top: 5.3333333333vw;
    text-align: center;
  }
}
.l-header-citizen img {
  width: 10.4rem;
}
@media screen and (max-width: 767px) {
  .l-header-citizen img {
    width: 22.4vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header-toggle {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
  .l-header-toggle.m-close {
    position: absolute;
    right: 5%;
    top: 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .l-header.is-scroll {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(33, 33, 33, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(33, 33, 33, 0) 100%);
  }
}

@media screen and (max-width: 767px) {
  .m-white .l-header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(33, 33, 33, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(33, 33, 33, 0) 100%);
  }
}

/* --------------------------------------------------
    footer
-------------------------------------------------- */
.l-footer {
  padding: 14.9rem 0 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 21.3333333333vw 0 10.6666666667vw;
  }
}
.l-footer-pagetop {
  position: fixed;
  right: 4rem;
  bottom: 30px;
  opacity: 0;
  pointer-evetns: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .l-footer-pagetop {
    right: 2.6666666667vw;
    bottom: 5.3333333333vw;
  }
}
.l-footer-pagetop.is-on {
  pointer-events: auto;
  opacity: 1;
}
.l-footer-pagetop.is-foot {
  position: absolute;
  top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-pagetop.is-foot {
    top: 13.3333333333vw;
  }
}
.l-footer-pagetop img {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-pagetop img {
    width: 8vw;
  }
}
.l-footer-logo {
  margin: 0 auto;
  width: 20.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer-logo {
    width: 33.3333333333vw;
  }
}
.l-footer-sns {
  margin: 5rem 0 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-sns {
    margin-top: 8vw;
    gap: 6.6666666667vw;
  }
}
.l-footer-sns li img {
  width: 4.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-sns li img {
    width: 10.9333333333vw;
  }
}
.l-footer-menu {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin: 4rem 0 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-footer-menu {
    margin-top: 5.3333333333vw;
  }
}
.l-footer-menu li {
  position: relative;
  padding: 0 2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .l-footer-menu li {
    font-size: 3.2vw;
    font-weight: bold;
    padding: 0 5.3333333333vw 0 0;
    width: 50%;
    text-align: right;
    margin-bottom: 2.6666666667vw;
  }
}
.l-footer-menu li:after {
  content: "";
  width: 1px;
  height: 1.6rem;
  background: #000;
  position: absolute;
  right: 0;
  top: calc(50% - 0.8rem);
}
@media screen and (max-width: 767px) {
  .l-footer-menu li:after {
    height: 3.2vw;
    top: calc(50% - 1.6vw);
  }
}
.l-footer-menu li:last-child:after {
  content: none;
}
@media screen and (max-width: 767px) {
  .l-footer-menu li:nth-child(2n) {
    padding: 0 0 0 5.3333333333vw;
    text-align: left;
  }
  .l-footer-menu li:nth-child(2n):after {
    content: none;
  }
}
.l-footer-copyright {
  font-family: "Poppins", sans-serif;
  margin: 9.5rem 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    margin: 10.6666666667vw 0 0;
    font-size: 2.1333333333vw;
  }
}</pre></body></html>