<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
/* Document (https://html.spec.whatwg.org/multipage/semantics.html#semantics)
   ========================================================================== */
/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add box sizing inheritence in all browsers (opinionated).
 */
*,
::before,
::after {
  background-repeat: no-repeat;
  /* 1 */
  box-sizing: inherit;
  /* 2 */
}

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

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Add the default cursor in all browsers (opinionated).
 * 3. Prevent font size adjustments after orientation changes in IE and iOS.
 */
html {
  box-sizing: border-box;
  /* 1 */
  cursor: default;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

/* Sections (https://html.spec.whatwg.org/multipage/semantics.html#sections)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * 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, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: .67em 0;
}

/* Grouping content (https://html.spec.whatwg.org/multipage/semantics.html#grouping-content)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

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

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

/**
 * 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 (https://html.spec.whatwg.org/multipage/semantics.html#text-level-semantics)
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ffff00;
  color: #000000;
}

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

/*
 * Remove the text shadow on text selections (opinionated).
 * 1. Restore the coloring undone by defining the text shadow (opinionated).
 */
::-moz-selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  /* 1 */
  color: #000000;
  /* 1 */
  text-shadow: none;
}

/* Embedded content (https://html.spec.whatwg.org/multipage/embedded-content.html#embedded-content)
   ========================================================================== */
/*
 * Change the alignment on media elements in all browers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * 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 images inside links in IE 10-.
 */
img {
  border-style: none;
}

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

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

/* Tabular data (https://html.spec.whatwg.org/multipage/tables.html#tables)
   ========================================================================== */
/**
 * Collapse border spacing
 */
table {
  border-collapse: collapse;
}

/* Forms (https://html.spec.whatwg.org/multipage/forms.html#forms)
   ========================================================================== */
/**
 * Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}

/**
 * Inherit styling in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Change the resize direction on textareas in all browsers (opinionated).
 */
textarea {
  overflow: auto;
  /* 1 */
  resize: vertical;
  /* 2 */
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive elements (https://html.spec.whatwg.org/multipage/forms.html#interactive-elements)
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting (https://html.spec.whatwg.org/multipage/scripting.html#scripting-3)
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

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

/* User interaction (https://html.spec.whatwg.org/multipage/interaction.html#editing)
   ========================================================================== */
/*
 * Remove the tapping delay on clickable elements (opinionated).
 * 1. Remove the tapping delay in IE 10.
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
}

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

/* ARIA (https://w3c.github.io/html-aria/)
   ========================================================================== */
/**
 * Change the cursor on busy elements (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}

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

/*
 * Change the display on visually hidden accessible elements (opinionated).
 */
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements (opinionated).
 */
[aria-disabled] {
  cursor: default;
}

@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

html {
  font-size: 62.5%;
  width: 100%;
}

body {
  position: relative;
  width: 100%;
}

html, body {
  min-width: 100%;
}

a {
  text-decoration: none;
  word-break: break-all;
}

a:hover {
  opacity: .7;
}

h1, h2, h3, h4, h5, h6, div, p, ul, ol, li, dd, small {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

p.attention {
  border: solid 1px #0099FF;
  color: #0099FF;
  margin-top: 1em;
  padding: 0.6em 1em;
  width: auto;
  max-width: 100%;
  font-size: 1.5rem !important;
  line-height: 1.8;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  display: inline-block;
}
.spOnly{
  display: none;
}

.header {
  width: 100%;
  height: 90px;
  background-color: #fff;
}

.header__contents {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: relative;
}

.header .logo {
  line-height: 90px;
}

.header__menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  height: 90px;
  margin: 0 70px 0 auto;
}

.header__menu-sp {
  display: none;
}

.header__menu li {
  margin-right: 2em;
  text-align: right;
  display: block;
}

.header__menu li:last-child {
  margin-right: 0;
}

.header__menu li a {
  font-size: 1.3rem;
  color: #000;
}

.header__nav {
  width: 100%;
  background-color: #fff;
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 1000;
  display: none;
}

.header__nav.active {
  display: block;
}

.header__nav__container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
}

.header__nav__page {
  width: 63%;
  border-right: 1px solid #000;
  padding: 30px 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header__nav__page li {
  width: 33%;
  margin-bottom: 15px;
}

.header__nav__page li a {
  font-size: 1.2rem;
  font-family: "Koburina Gothic W1 JIS2004";
  line-height: 1.5;
  padding: 5px;
  color: #3E3A39;
  display: block;
  text-align: center;
}

.header__nav__page li a img {
  margin-bottom: 10px;
}

.header__nav__txt {
  width: 37%;
  padding: 30px 0px 30px 30px;
}

.header__nav__txt li {
  line-height: 1.5;
  margin-bottom: 15px;
}

.header__nav__txt li a {
  font-size: 1.3rem;
  padding: 10px 0;
  color: #3E3A39;
}

#spmenu {
  display: block;
  position: absolute;
  z-index: 2000;
  cursor: pointer;
}

.spmenu,
.spmenu span {
  display: inline-block;
  transition: all .3s;
  box-sizing: border-box;
}

.spmenu {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 10px;
  top: 26px;
}

.spmenu span {
  position: absolute;
  left: 10px;
  width: 20px;
  height: 3px;
  background-color: #000;
}

.spmenu span:nth-of-type(1) {
  top: 12px;
}

.spmenu span:nth-of-type(2) {
  top: 18px;
}

.spmenu span:nth-of-type(3) {
  top: 24px;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.spmenu span:nth-of-type(2) {
  transition: all .15s .15s;
  opacity: 1;
}

@keyframes menu-bar02 {
  0% {
    transform: translateY(-6px) rotate(-45deg);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

.spmenu.active span {
  left: 10px;
}

.spmenu.active span:nth-of-type(1) {
  animation: active-menu-bar01 .3s forwards;
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(6px) rotate(0);
  }
  100% {
    transform: translateY(6px) rotate(45deg);
  }
}

.spmenu.active span:nth-of-type(2) {
  opacity: 0;
}

.spmenu.active span:nth-of-type(3) {
  animation: active-menu-bar03 .3s forwards;
}

@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-6px) rotate(0);
  }
  100% {
    transform: translateY(-6px) rotate(-45deg);
  }
}

.share {
  padding: 15px 0;
  margin-bottom: 30px;
  background-color: #fff;
}

.share__ttl {
  font-size: 1.9rem;
  text-align: center;
  padding: 30px 0;
  letter-spacing: 0.1em;
}

.share__list {
  width: 95%;
  max-width: 500px;
  margin: 0 auto 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  list-style-type: none;
}

.share__list li {
  margin: 0 20px;
}

.share__list-foot {
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto 50px;
}

.share__list-foot li a {
  border: 1px solid #ff0000;
  border-radius: 18px;
  padding: 0px 20px;
  font-size: 1.4rem;
  width: 180px;
  text-align: center;
  display: inline-block;
  color: #ff0000;
}

.footer {
  padding: 45px 0 0;
  background-color: #fff;
}

.footer-top {
  background-color: transparent;
}

.footer__nav {
  padding: 80px 0 20px;
}

.copyright {
  display: block;
  text-align: center;
  text-indent: -9999px;
  background-image: url(../img/copyright.png);
  width: 255px;
  height: 11px;
  margin: 20px auto;
  background-size: contain;
}

.swiper-pagination {
  position: relative !important;
  width: 100%;
  padding: 18px 0;
  background-color: #fff;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 11px;
  background-color: #fff !important;
  border: 1px solid #808080 !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background-color: #808080 !important;
  border: 1px solid #000 !important;
}

.btn {
  border-radius: 18px;
  border: 1px solid #0082ff;
  background-color: #fff;
  font-size: 1.4rem;
  color: #0082ff;
  display: block;
  text-align: center;
}

.btn-cart {
  width: 140px;
}

.btn-cart:before {
  content: '';
  background-image: url(../img/icon_cart.png);
  width: 26px;
  height: 17px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 5px;
}

.btn-cart.sold {
  color: #fff;
  background-color: #808080;
  border-color: #808080;
  pointer-events: none;
}

.btn-cart.sold:before {
  background-image: url(../img/icon_cart_w.png);
}

.btn-link {
  border-color: #f00;
  color: #f00;
  width: 70%;
}

.btn-red {
  border-color: #f00;
  color: #f00;
  width: auto;
  display: inline-block;
  padding: 2px 25px;
}

.to_detail .sold_txt {
  margin-left: 1em;
  color: #f00;
  display: none;
}

.new:after {
  content: '';
  width: 54px;
  height: 54px;
  background-image: url(../img/top/icon_new.png);
  background-size: contain;
  display: inline-block;
  position: relative;
  top: -4px;
  vertical-align: middle;
  margin-left: 10px;
}

.jisage {
  padding-left: 1em;
  text-indent: -1em;
}

.lity {
  background: rgba(0, 0, 0, 0.7) !important;
}

.lity-close {
  position: absolute !important;
  background-image: url(../img/close.png) !important;
  width: 27px !important;
  height: 27px !important;
  display: block !important;
  background-size: contain !important;
  text-indent: -9999px !important;
  top: 20px !important;
  right: 20px !important;
}

.lity-content:after {
  box-shadow: none !important;
}

@media screen and (max-width: 768px) {
  .to_detail .sold_txt {
    font-size: 1.4rem;
  }
  p.attention {
    border: solid 1px #0099FF;
    color: #0099FF;
    margin: 1em auto 0;
    padding: 0.6em 1em;
    width: 100%;
    max-width: 100%;
    font-size: 1.6rem !important;
    line-height: 1.8;
  }
  .new:after {
    content: '';
    width: 44px;
    height: 44px;
    background-image: url(../img/top/icon_new.png);
    background-size: contain;
    display: inline-block;
    position: relative;
    top: -4px;
    vertical-align: middle;
    margin-left: 3px;
  }
  .brspace {
    display: none;
  }
  .swiper-pagination {
    padding: 0;
  }
  .share {
    padding: 15px 0;
    margin-bottom: 55px;
    background-color: #fff;
  }
  .share__ttl {
    font-size: 1.9rem;
    text-align: center;
    padding: 30px 0;
    letter-spacing: 0.1em;
  }
  .share__list {
    width: 95%;
    max-width: 500px;
    margin: 0 auto 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    list-style-type: none;
  }
  .share__list li {
    margin: 0 20px;
  }
  .share__list-foot {
    -ms-flex-pack: center;
        justify-content: center;
    margin: 0 auto 50px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .share__list-foot li {
    margin: 10px 0;
    text-align: center;
  }
  .share__list-foot li a {
    border: 1px solid #ff0000;
    border-radius: 18px;
    padding: 0px;
    font-size: 1.4rem;
    width: 100%;
    max-width: 210px;
    text-align: center;
    display: inline-block;
    color: #ff0000;
  }
  .header {
    position: fixed;
    height: 45px;
    background-color: #fff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    z-index: 5000;
  }
  .header .logo {
    line-height: 45px;
    padding-left: 15px;
  }
  .header .logo img {
    height: 35px;
    width: auto;
  }
  .header__menu {
    display: none;
  }
  .header__menu-sp {
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    margin-top: 15px;
  }
  .header__menu-sp li {
    width: 50%;
    display: block;
  }
  .header__menu-sp li:first-child {
    border-right: 1px solid #000;
  }
  .header__menu-sp li a {
    display: block;
    text-align: center;
    padding: 5px;
    font-size: 1.3rem;
    color: #3e3a39;
  }
  .header__nav {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 45px;
    left: 0;
    z-index: 1000;
    display: none;
    height: 100vh;
    overflow: scroll;
    padding-bottom: 50px;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav.active {
    display: block;
  }
  .header__nav__container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .header__nav__page {
    width: 100%;
    border-right: none;
    padding: 10px 0px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header__nav__page li {
    width: 33%;
    margin-bottom: 15px;
  }
  .header__nav__page li a {
    font-size: 1.2rem;
    font-family: "Koburina Gothic W1 JIS2004";
    line-height: 1.5;
    padding: 5px;
    color: #3E3A39;
    display: block;
    text-align: center;
  }
  .header__nav__page li a img {
    margin-bottom: 10px;
  }
  .header__nav__txt {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #000;
    margin-bottom: 45px;
  }
  .header__nav__txt li {
    line-height: 1.5;
    margin-bottom: 0;
    border-top: 1px solid #000;
  }
  .header__nav__txt li a {
    font-size: 1.3rem;
    padding: 10px;
    color: #3E3A39;
    display: block;
  }
  .footer {
    padding: 45px 0 0;
    background-color: #fff;
  }
  .footer__nav {
    padding: 80px 0 20px;
  }
  .copyright {
    display: block;
    text-align: center;
    text-indent: -9999px;
    background-image: url(../img/copyright.png);
    width: 255px;
    height: 11px;
    margin: 20px auto;
    background-size: contain;
  }
  .btn {
    border-radius: 18px;
    border: 1px solid #0082ff;
    background-color: #fff;
    font-size: 1.4rem;
    color: #0082ff;
    display: block;
    text-align: center;
  }
  .btn-cart {
    width: 90%;
  }
  .btn-cart:before {
    content: '';
    background-image: url(../img/icon_cart.png);
    width: 26px;
    height: 17px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    top: -2px;
    margin-right: 5px;
  }
  .btn-cart.sold {
    color: #fff;
    background-color: #808080;
    border-color: #808080;
    pointer-events: none;
  }
  .btn-cart.sold:before {
    background-image: url(../img/icon_cart_w.png);
  }
  .btn-link {
    border-color: #f00;
    color: #f00;
    width: 80%;
  }
  .btn-red {
    border-color: #f00;
    color: #f00;
    width: auto;
    display: inline-block;
    padding: 2px 25px;
  }
  .spmenu {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 2px;
    top: 3px;
  }
}

html, body {
  height: 100%;
}

.item {
  width: 100%;
  height: 0;
  padding-top: 66.65%;
  position: relative;
}

.item-1 {
  background-color: #756e52;
  height: 100%;
  padding-top: 0;
}

.item-2 {
  background-color: #fff;
  height: 100%;
  padding-top: 0;
}

.item-2 p {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 420px;
  height: auto;
  font-size: 1.8rem;
  line-height: 2.2777777778;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.item-3 {
  background-image: url(../img/img_vpullovers.jpg);
  background-size: contain;
}

.item-3 .logo-brand {
  width: 26.65%;
  max-width: 533px;
}

.item-4 {
  background-image: url(../img/img_wafflemen.jpg);
  background-size: contain;
}

.item-4 .logo-brand {
  width: 26.2%;
  max-width: 524px;
}

.item-5 {
  background-image: url(../img/img_longtees.jpg);
  background-size: contain;
}

.item-5 .logo-brand {
  width: 24.05%;
  max-width: 481px;
}

.item-6 {
  background-image: url(../img/img_bottom.jpg);
  background-size: contain;
}

.item-bottom {
  padding-top: 100%;
}

.item-top {
  background-image: none;
  background-size: contain;
  height: 100vh;
}

.item-top-pre1 {
  background-image: none;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}

.item-select {
  background-color: rgba(255, 255, 255, 0.95);
  margin-top: 120px;
  padding: 50px 0;
  height: auto;
}

.container {
  width: 100%;
  background-color: #fff;
}

.container-2 {
  margin-top: 120px;
}

.navline {
  width: 27px;
  position: fixed;
  bottom: 50px;
  left: calc(50% + 450px);
}

.navline__container {
  width: 100%;
  max-width: 600px;
}

.navline a, .navline p {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  margin: 0 !important;
}

.mainimg {
  width: 100%;
  max-width: 1000px;
  height: 750px;
  margin: 0 auto;
  background-image: url(../img/pre_mainimg.jpg);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.mainimg-1 {
  background-image: url(../img/mainimg_pre1_pc.jpg);
}

.mainimg-2 {
  background-image: url(../img/mainimg_pre2_pc.jpg);
  height: 470px;
}

.mainimg-4 {
  background-image: url(../img/mainimg_pre4_pc.jpg);
}

.mainimg-5 {
  background-image: url(../img/mainimg_pre5_pc.jpg);
}
.mainimg-6 {
  background-image: url(../img/mainimg_pre6_pc.jpg);
}
.mainimg-7 {
  background-image: url(../img/mainimg_pre7_pc.jpg);
}
.mainimg-8 {
  background-image: url(../img/mainimg_pre8_pc.jpg);
}
.mainimg-9 {
  background-image: url(../img/mainimg_pre9_pc.jpg);
}
.mainimg-10 {
  background-image: url(../img/mainimg_pre10_pc.jpg);
}
.mainimg-11 {
  background-image: url(../img/mainimg_pre11_pc.jpg);
}
.mainimg .logo {
  position: absolute;
  right: 15px;
  top: 25px;
  text-align: center;
  z-index: 3000;
}

.mainimg .logo.fixed {
  position: fixed;
  right: auto;
  top: 25px;
  text-align: center;
  z-index: 3000;
  left: calc(50% + 425px);
}

.mainimg .logo .logo-o2-s {
  display: block;
  margin-bottom: 20px;
}

.mainimg .ttl {
  background-image: url(../img/pre_ttl.png);
  width: 123px;
  height: 542px;
  background-size: contain;
  position: absolute;
  top: 25px;
  right: 18px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.mainimg .ttl-1 {
  background-image: url(../img/ttl_pre1@2x.png);
  width: 202px;
  height: 388px;
  top: 28px;
  left: 40px;
}

.mainimg .ttl-name1 {
  background-image: url(../img/name_pre1@2x.png);
  width: 20px;
  height: 570px;
  top: 30px;
  right: 100px;
}

.mainimg .ttl-4 {
  background-image: url(../img/ttl_pre4@2x.png);
  width: 114px;
  height: 556px;
  top: 39px;
  left: 106px;
}

.mainimg .ttl-name4 {
  background-image: url(../img/name_pre4@2x.png);
  width: 20px;
  height: 299px;
  top: 39px;
  right: 100px;
}

.mainimg .ttl-5 {
  background-image: url(../img/ttl_pre5@2x.png);
  width: 133px;
  height: 356px;
  top: 45px;
  left: 138px;
}

.mainimg .ttl-name5 {
  background-image: url(../img/name_pre5@2x.png);
  width: 77px;
  height: 247px;
  top: 40px;
  right: 105px;
}
.mainimg .ttl-6 {
  background-image: url(../img/ttl_pre6@2x.png);
  width: 96px;
  height: 402px;
  top: 58px;
  left: 140px;
}

.mainimg .ttl-name6 {
  background-image: url(../img/name_pre6@2x.png);
  width: 17px;
  height: 211px;
  top: 58px;
  left: 690px;
}
.mainimg .ttl-7 {
  background-image: url(../img/ttl_pre7@2x.png);
  width: 179px;
  height: 557px;
  top: 45px;
  left: 80px;
}
.mainimg .ttl-name7 {
  background-image: url(../img/name_pre7@2x.png);
  width: 17px;
  height: 379px;
  top: 45px;
  left: 750px;
}
.mainimg .ttl-8 {
  background-image: url(../img/ttl_pre8@2x.png);
  width: 133px;
  height: 672px;
  top: 36px;
  left: 110px;
}
.mainimg .ttl-name8 {
  background-image: url(../img/name_pre8@2x.png);
  width: 46px;
  height: 276px;
  top: 40px;
  left: 720px;
}
.mainimg .ttl-9 {
  background-image: url(../img/ttl_pre9@2x.png);
  width: 158px;
  height: 673px;
  top: 40px;
  left: 102px;
}
.mainimg .ttl-name9 {
  background-image: url(../img/name_pre9@2x.png);
  width: 16px;
  height: 348px;
  top: 41px;
  left: 750px;
}
.mainimg .ttl-10 {
  background-image: url(../img/ttl_pre10@2x.png);
  width: 107px;
  height: 652px;
  top: 48px;
  left: 65px;
}.mainimg .ttl-11 {
  background-image: url(../img/ttl_pre11@2x.png);
  width: 105px;
  height: 658px;
  top: 40px;
  left: 75px;
}
.mainimg .ttl-name11 {
  background-image: url(../img/name_pre11@2x.png);
  width: 82px;
  height: 247px;
  top: 40px;
  left: 800px;
}

.mainimg .ttl-sub {
  background-image: url(../img/subttl_01@2x.png);
  width: 50px;
  height: 51px;
  top: 135px;
  right: 20px;
}

.mainimg .ttl-sub02 {
  background-image: url(../img/subttl_02@2x.png);
}
.mainimg .ttl-sub03 {
  background-image: url(../img/subttl_03@2x.png);
}
.mainimg .ttl-sub04 {
  background-image: url(../img/subttl_04@2x.png);
}
.mainimg .ttl-sub05 {
  background-image: url(../img/subttl_05@2x.png);
}
.mainimg .ttl-sub06 {
  background-image: url(../img/subttl_06@2x.png);
}
.mainimg .ttl-sub07 {
  background-image: url(../img/subttl_07@2x.png);
}
.mainimg .ttl-sub08 {
  background-image: url(../img/subttl_08@2x.png);
}
.mainimg .ttl-sub09 {
  background-image: url(../img/subttl_09@2x.png);
}
.mainimg .ttl-sub10 {
  background-image: url(../img/subttl_10@2x.png);
}
.mainimg .ttl-sub11 {
  background-image: url(../img/subttl_11@2x.png);
}

.preitem {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
}

.op1 {
  background-color: rgba(255, 255, 255, 1) !important;
}

.preitem-profile {
  margin-bottom: 60px;
}

.preitem-prenav {
  /* margin: 30px 0; */
  margin: 55px 0;
}

.preitem-info {
  margin: 120px 0;
  background-color: #fff;
}

.prenav {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.prenav li {
  min-width: 50px;
}

.prenav li a {
  color: #000;
  font-size: 1.8rem;
}

.lineup {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  margin: 50px auto;
}

.lineup__ttl {
  text-align: center;
  font-size: 1.8rem;
  padding: 0 0 2em;
}

.lineup__name {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1em;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.lineup .logo_ss::before {
  content: "";
  display: inline-block;
  background-image: url(../img/logo_ss.png);
  background-size: cover;
  width: 15.855px;
  height: 44.249px;
  margin-right: 1rem;
}

.lineup__name span{
  font-size: 80%;
  display: block;
  margin-top: -1rem;
}

.lineup p.text {
  max-width: 520px;
  margin: 0 auto 40px;
}

.lineup__name .value {
  font-size: 1.5rem;
}
.logo_tsuki {
  width: 120px;
  margin-bottom: -3rem;
}
.lineup__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 50px;
}

.lineup__list li {
  margin-right: 20px;
  text-align: center;
}

.lineup__list li p {
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  font-size: 1.4rem;
  position: relative;
}

.lineup__list li p.icon_april:before {
  content: '';
  background-image: url(../img/icon_april.png);
  background-size: contain;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: -5px;
  top: -14px;
}

.lineup__list li:last-child {
  margin-right: 0;
}

.index {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  margin: 50px auto;
}

.index__ttl {
  border: none;
  display: block;
  padding: 5px 20px;
  font-size: 2rem;
  color: #000;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  max-width: 600px;
  margin: 15px auto;
  text-align: center;
}

.index__list {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

.index__list li {
  display: block;
  margin-bottom: 18px;
}

.index__list li a {
  border: 1px solid #005aff;
  display: block;
  color: #000;
  padding: 10px 25px;
  font-size: 1.8rem;
  position: relative;
  border-radius: 30px;
}

.info {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 50px 0;
  margin: 50px auto;
}
.info h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 2em;
}
.info h2.left {
  text-align: left;
  font-size: 2.8rem;
  margin-bottom: .5em;
}
.info h3{
  font-size: 1.8rem;
  margin-bottom: .2em;
}
.info h3 span {
  font-size: 1.6rem;
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
}
.info dl {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.info dl dt {
  width: 25%;
  font-size: 1.5rem;
}
.info dl dd {
  width: 75%;
  font-size: 1.5rem;
}
.info div {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
}
.info div p{
  margin-bottom: 1em;
}
.info .btn2{
  border-radius: 18px;
  border: 1px solid #005aff;
  font-size: 1.4rem;
  color: #005aff;
  display: inline-block;
  text-align: center;
  padding: 0 1.5em;
}
.info a{
  color: #005aff;
}
.info a.map{
  margin-left: 1em;
}
.info .shop {
  border: 1px solid;
  padding: 1em;
  width: 100%;
}
.info_img {
  text-align: center;
}
.intro {
  margin: 60px 0;
}

.intro p {
  width: 95%;
  max-width: 540px;
  margin: 0 auto;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  font-size: 1.7rem;
}

.profile {
  width: 95%;
  max-width: 810px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
}

.space-between{
  justify-content: space-between;
}

.space-between h2 {
  font-size: 1.7rem;
  margin-bottom: 1em;
}

.space-between h2 .kana {
  font-size: 1.3rem;
}

.profile_2{
  padding-top: 50px;
}

.profile__img {
  width: 50%;
  max-width: 350px;
}

.profile__img img {
  width: 100%;
}

.profile__txt {
  padding-left: 48px;
}

.profile__txt h2 {
  font-size: 1.7rem;
  margin-bottom: 1em;
}

.profile__txt h2 .kana {
  font-size: 1.5rem;
}

.profile__txt p {
  font-size: 1.3rem;
}

.intro p.normal {
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  width: 82.8125%;
  max-width: 590px;
}
.conv {
  width: 95%;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.conv h2 {
  font-size: 2.3rem;
  width: 100%;
  max-width:  30em;
  margin: 3em auto 1.5em;
  padding-left: 2em;
}

.conv h3 {
  font-size: 1.8rem;
  width: 100%;
  max-width: 590px;
  margin: 2em auto 0;
}

.conv-3 h2 {
  margin: 4em auto 1em;
}

.conv dl {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 1em;
  display: -ms-flexbox;
  display: flex;
}

.conv dl dt {
  width: 10%;
  margin-bottom: 1em;
  font-size: 1.5rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.conv dl dt.hobo {
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
  letter-spacing: -.1em;
}

.conv dl dd {
  width: 90%;
  padding-left: 2em;
  margin-bottom: 1em;
  font-size: 1.5rem;
}

.conv dl dd a {
  color: #005aff;
}

.conv div.text {
  width: 100%;
  max-width: 590px;
  margin: 1em auto 2em;
}

.conv p {
  width: 100%;
  max-width: 590px;
  margin: 0 auto 1em;
  font-size: 1.5rem;
}

.conv p a {
  color: #005aff;
}

.conv p.continue {
  text-align: center;
  margin: 3em auto 1em;
}

.conv__img {
  margin: 3em auto;
  text-align: center;
}

.conv__img .caption {
  margin-top: .5em;
  font-size: 1.4rem;
  line-height: 1.75;
}

.conv sup {
  font-size: 1.3rem;
  top: -.15em;
}

.conv span.notes{
  font-size: 1.3rem;
  line-height: 1.8;
  display: block;
}

.product__img{
  text-align: center;
}
.product__img p{
  text-align: left;
  padding-top: .5em;
  font-size: 1.4rem;
}

.product{
  margin: 3em auto;
}

.product .caption {
  font-size: 2.3rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  line-height: 1.5;
  margin: 0 auto 1em;
}

.product .caption p{
  font-size: 1.8rem;
  line-height: 1.4;
  margin: 0 auto;
}

.product .caption span{
  font-size: 1.4rem;
  font-family: "Koburina Gothic W3 JIS2004", sans-serif;
}

.product .caption img {
  width: 16px;
  vertical-align: baseline;
  margin-right: .3em;
  box-sizing: border-box;
}

.select {
  width: 100%;
  border: 1px solid #000;
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.select h2 {
  font-size: 2.6rem;
  margin: 2em auto 1em;
}

.select dl {
  width: 100%;
  max-width: 550px;
  margin: 2em auto 5em;
  display: -ms-flexbox;
  display: flex;
}

.select dl dt {
  width: 12%;
  text-align: left;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.select dl dd {
  width: 88%;
  text-align: left;
}

.select .caption {
  font-size: 1.6rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  margin-top: .5em;
}

.no_list{
  margin: 55px auto;
}

.link {
  background-color: rgba(255,255,255,0.95);
  position: relative;
  width: 100%;
  padding: 45px 0;
  margin-bottom: 55px;
  text-align: center;
}

.link h2 {
  font-size: 1.8rem;
  margin: 0 auto 1em;
  width: 90%;
  display: block;
  text-align: center;
}

.link a {
  display: block;
  padding: 12px 20px;
  font-size: 1.6rem;
  color: #005aff;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  border: 1px solid #666;
  width: 90%;
  max-width: 500px;
  margin: 0 auto 18px;
  text-align: center;
}

.link a h3 {
  font-size: 1.3rem;
  text-align: center;
  color: #005aff;
}

.debut {
  width: 40.1vw;
  max-width: 802px;
  height: 3vw;
  max-height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.debut img {
  width: 100%;
  height: auto;
}

.arrow {
  display: block;
  width: 6.0765191297824vh;
  max-width: 81px;
  height: 6.0765191297824vh;
  max-height: 81px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}

.arrow img {
  width: 100%;
}

.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.bg-pre {
  background-image: url(../img/pre_bg.jpg);
}

.bg-pre1 {
  background-image: url(../img/bg_pre1.jpg);
}

.bg-pre2 {
  background-image: url(../img/bg_pre2.jpg);
}

.bg-pre3 {
  background-image: url(../img/bg_pre3.jpg);
}

.bg-pre4 {
  background-image: url(../img/bg_pre4.jpg);
}
.bg-pre5 {
  background-image: url(../img/bg_pre5.jpg);
}
.bg-pre6, .bg-pre7 {
  background-image: url(../img/bg_pre6.jpg);
}
.bg-pre8 {
  background-image: url(../img/bg_pre8.jpg);
}
.bg-pre9 {
  background-image: url(../img/bg_pre9.jpg);
}
.bg-pre10 {
  background-image: url(../img/bg_pre10.jpg);
}
.bg-pre11 {
  background-image: url(../img/bg_pre11.jpg);
}

.bg-logo {
  position: relative;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}

.logo-o2 {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  background-image: url(../../img/logo_o2.png);
  background-size: contain;
  background-position: center center;
  width: 39.2vw;
  height: 62vh;
}

.logo-brand {
  position: absolute;
  bottom: 3.5vw;
  right: 3.25vw;
}

.logo-brand img {
  width: 100%;
}

.genre__contents {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  padding: 45px 0;
  background-color: #fff;
}

.genre__contents-2 {
  width: 100%;
  max-width: 100%;
  padding-bottom: 65px;
  border-top: 1px solid #000;
}

.genre__contents-2 .genre__text {
  padding-right: 2em;
}

.genre__container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.genre__name {
  width: 50%;
  text-align: center;
  font-size: 1.9rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
}

.genre__name .kana {
  font-size: 1.6rem;
}

.genre__text {
  width: 50%;
  font-size: 1.6rem;
}

.genre__mark {
  height: 95px;
}

.genre__ttl {
  width: 100%;
  font-size: 2.6rem;
  font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  padding-bottom: 65px;
}

.genre__item {
  width: 50%;
}

.genre__item:nth-of-type(2) {
  padding-left: 4em;
}

.genre__item .genre__text {
  width: 100%;
}

.genre__ttl2 {
  text-align: center;
  font-size: 2.8rem;
  font-family: Koburina Gothic W6 JIS2004, sans-serif;
  padding-bottom: 10px;
}

.genre__ttl2::before {
  content: "";
    display: inline-block;
    background-image: url(../img/logo_s.png);
    background-size: cover;
    width: 15.855px;
    height: 44.249px;
    margin-right: 1rem;
}

.genre__item2 {
  width: 1000px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 0 auto 60px;
}

.genre__item2 li img {
  width: 225px;
}
.genre__item2 li p {
  text-align: center;
}

.share {
  padding: 15px 0;
  margin-bottom: 55px;
  background-color: rgba(255, 255, 255, 0.95);
}

.share__ttl {
  font-size: 1.9rem;
  text-align: center;
  padding: 30px 0;
  letter-spacing: 0.1em;
}

.share__list {
  width: 95%;
  max-width: 500px;
  margin: 0 auto 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  list-style-type: none;
}

.share__list li {
  margin: 0 20px;
}

.share__list-foot {
  -ms-flex-pack: center;
      justify-content: center;
  margin: 0 auto 50px;
}

.share__list-foot li a {
  border: 1px solid #005aff;
  border-radius: 18px;
  padding: 0px 20px;
  font-size: 1.4rem;
  width: 210px;
  text-align: center;
  display: inline-block;
  color: #005aff;
}

.footer {
  padding: 45px 0;
  background-color: #fff;
}

.copyright {
  display: block;
  text-align: center;
  text-indent: -9999px;
  background-image: url(../../img/copyright.png);
  width: 255px;
  height: 11px;
  margin: 20px auto;
  background-size: contain;
}

.product__img {
  text-align: center;
}

.product__img.img-mb1 {
  margin-bottom: 1em;
}

@media screen and (max-width: 768px) {
  .genre__item2 {
    width: 67%;
  }
  .lineup__list {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: start;
        justify-content: flex-start;
    width: 90%;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .lineup__list li {
    display: block;
    width: calc((100% - 4.68vw) / 2);
    margin-right: 4.68vw;
    margin-bottom: 4.68vw;
  }
  .lineup__list li img {
    width: 100%;
  }
  .lineup__list li:nth-of-type(even) {
    margin-right: 0;
  }
}

@media screen and (max-width: 640px) {
  .pcOnly {
    display: none;
  }
  .spOnly{
    display: block;
  }
  img {
    width: 100%;
  }
  html, body {
    height: 100%;
  }
  h1, h2, h3, h4, h5, h6, div, p, ul, li, dd {
    font-size: 1.6rem;
  }
  html, body {
    height: 100%;
  }
  .logo-o2 {
    position: absolute;
    left: 50%;
    top: 50vh;
    -ms-transform: translate(-50%, -55%);
        transform: translate(-50%, -55%);
    background-image: url(../../img/logo_o2.png);
    background-size: contain;
    width: 61.09375vw;
    max-width: 392px;
    height: 66.13756614vh;
    max-height: 750px;
    background-position: center center;
  }
  .logo-brand {
    position: absolute;
    bottom: 3.5vw;
    right: 3.25vw;
  }
  .logo-brand img {
    width: 100%;
  }
  .item {
    width: 100vw;
    position: relative;
    height: 0;
    padding-top: 100%;
  }
  .item-1 {
    background-color: #756e52;
    height: 100vh;
    padding-top: 0;
  }
  .item-2 {
    background-color: #fff;
    height: 100vh;
    padding-top: 0;
  }
  .item-2 p {
    position: absolute;
    left: 50%;
    top: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    width: 95%;
    height: auto;
    font-size: 1.8rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  }
  .item-3 {
    background-image: url(../img/img_vpullovers_sp.jpg);
    background-size: contain;
  }
  .item-3 .logo-brand {
    width: 52.03125%;
    max-width: 100%;
    left: 50%;
    right: auto;
    top: 8.59375vw;
    bottom: auto;
    -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
  }
  .item-4 {
    background-image: url(../img/img_wafflemen_sp.jpg);
    background-size: contain;
  }
  .item-4 .logo-brand {
    width: 51.09375vw;
    max-width: 100%;
  }
  .item-5 {
    background-image: url(../img/img_longtees_sp.jpg);
    background-size: contain;
  }
  .item-5 .logo-brand {
    width: 45vw;
    max-width: 100%;
    bottom: 7.5vw;
    left: 50%;
    -ms-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
  }
  .item-6 {
    background-image: url(../img/img_bottom_sp.jpg);
    background-size: contain;
  }
  .item-bottom {
    padding-top: 100vh;
  }
  .item-top {
    background-image: none;
    background-size: cover;
    height: 0;
    padding-top: 100vh;
  }
  .item-top-pre1 {
    background-image: none;
  }
  .item-top .logo-o2 {
    width: 61.25vw;
    height: 117.1875vw;
  }
  .item-select {
    margin-top: 60px;
    padding: 25px 0;
    height: auto;
  }
  .navline {
    width: 25px;
    position: fixed;
    bottom: 2vw;
    left: auto;
    right: 2vw;
  }
  .navline a {
    width: 15px;
    margin: 10px auto;
  }
  .navline p {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    right: 1vw;
    position: relative;
  }
  .mainimg {
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-top: 100%;
    margin: 0 auto;
    background-image: url(../img/pre_mainimg_sp.jpg);
    background-size: cover;
    background-position: center top;
    position: relative;
  }
  .mainimg-1 {
    background-image: url(../img/mainimg_pre1_sp.jpg);
  }
  .mainimg-2 {
    background-image: url(../img/mainimg_pre2_sp.jpg);
    padding-top: 54.6875%;
  }
  .mainimg-4 {
    background-image: url(../img/mainimg_pre4_sp.jpg);
  }
  .mainimg-5 {
    background-image: url(../img/mainimg_pre5_sp.jpg);
  }
  .mainimg-6 {
    background-image: url(../img/mainimg_pre6_sp.jpg);
  }
  .mainimg-7 {
    background-image: url(../img/mainimg_pre7_sp.jpg);
  }
  .mainimg-8 {
    background-image: url(../img/mainimg_pre8_sp.jpg);
  }
  .mainimg-9 {
    background-image: url(../img/mainimg_pre9_sp.jpg);
  }
  .mainimg-10 {
    background-image: url(../img/mainimg_pre10_sp.jpg);
  }
  .mainimg-11 {
    background-image: url(../img/mainimg_pre11_sp.jpg);
  }
  .mainimg .logo {
    position: absolute;
    right: 2.34375vw;
    top: 2.34375vw;
    text-align: center;
    z-index: 3000;
    width: 6.375vw;
  }
  .mainimg .logo .logo-o2-s {
    right: 2.8125vw;
    top: 1.5625vw;
    display: block;
    width: 30px;
    height: 45px;
  }
  .mainimg .logo.fixed {
    position: fixed;
    right: 2.34375vw;
    top: 2.34375vw;
    left: auto;
  }
  .mainimg .ttl {
    background-image: url(../img/pre_ttl.png);
    width: 20vw;
    height: 88.90625vw;
    background-size: contain;
    position: absolute;
    top: 3.4375vw;
    right: 15.3125vw;
    text-indent: -9999px;
  }
  .mainimg .ttl-1 {
    background-image: url(../img/ttl_pre1_sp.png);
    width: 26.5625vw;
    height: 76.09375vw;
    top: 4.6875vw;
    left: 4.6875vw;
  }
  .mainimg .ttl-name1 {
    background-image: url(../img/name_pre1_sp.png);
    width: 7.8125vw;
    height: 53.4375vw;
    right: 14.0625vw;
    top: 4.6875vw;
  }
  .mainimg .ttl-4 {
    background-image: url(../img/ttl_pre4_sp.png);
    width: 17.8125vw;
    height: 86.875vw;
    right: auto;
    left: 9.375vw;
  }
  .mainimg .ttl-name4 {
    background-image: url(../img/name_pre4_sp.png);
    width: 7.65625vw;
    height: 25.46875vw;
    right: 14.0625vw;
    top: 4.6875vw;
  }
  .mainimg .ttl-5 {
    background-image: url(../img/ttl_pre5_sp.png);
    width: 19.84375vw;
    height: 55.625vw;
    top: 5.6vw;
    left: 3.90625vw;
  }
  .mainimg .ttl-name5 {
    background-image: url(../img/name_pre5_sp.png);
    width: 12.96875vw;
    height: 37.8125vw;
    right: 13.0625vw;
    top: 4.6875vw;
  }
  .mainimg .ttl-6 {
    background-image: url(../img/ttl_pre6_sp.png);
    width: 15vw;
    height: 62.812vw;
    top: 7.812vw;
    left: 7.031vw;
  }
  .mainimg .ttl-name6 {
    background-image: url(../img/name_pre6_sp.png);
    width: 2.656vw;
    height: 32.8125vw;
    left: 76.562vw;
    top: 7.031vw;
  }
  .mainimg .ttl-7 {
    background-image: url(../img/ttl_pre7_sp.png);
    width: 29.531vw;
    height: 86.875vw;
    top: 5.156vw;
    left: 5.156vw;
  }
  .mainimg .ttl-name7 {
    background-image: url(../img/name_pre7_sp.png);
    width: 2.656vw;
    height: 59.375vw;
    left: 80.156vw;
    top: 5.156vw;
  }
  .mainimg .ttl-8 {
    background-image: url(../img/ttl_pre8_sp.png);
    width: 17.656vw;
    height: 89.375vw;
    top: 5vw;
    left: 8.125vw;
  }
  .mainimg .ttl-name8 {
    background-image: url(../img/name_pre8_sp.png);
    width: 7.187vw;
    height: 42.343vw;
    left: 74.375vw;
    top: 5.46875vw;
  }
  .mainimg .ttl-9 {
    background-image: url(../img/ttl_pre9_sp.png);
    width: 22.5vw;
    height: 89.375vw;
    top: 4.531vw;
    left: 6.406vw;
  }
  .mainimg .ttl-name9 {
    background-image: url(../img/name_pre9_sp.png);
    width: 2.5vw;
    height: 54.375vw;
    left: 80.625vw;
    top: 4.843vw;
  }
  .mainimg .ttl-10 {
    background-image: url(../img/ttl_pre10_sp.png);
    width: 18.59375vw;
    height: 92.1875vw;
    top: 3.74vw;
    left: 6.406vw;
  }
  .mainimg .ttl-11 {
    background-image: url(../img/ttl_pre11_sp.png);
    width: 14.53125vw;
    height: 90.3125vw;
    top: 5.46875vw;
    left: 4.84375vw;
  }
  .mainimg .ttl-name11 {
    background-image: url(../img/name_pre11_sp.png);
    width: 12.96875vw;
    height: 37.8125vw;
    left: 71.25vw;
    top: 6.40625vw;
  }
  .mainimg .ttl-sub {
    background-image: url(../img/subttl_01@2x.png);
    width: 7.8125vw;
    height: 7.8125vw;
    top: 17.25vw;
    right: 1vw;
  }
  .mainimg .ttl-sub02 {
    background-image: url(../img/subttl_02@2x.png);
  }
  .mainimg .ttl-sub03 {
    background-image: url(../img/subttl_03@2x.png);
  }
  .mainimg .ttl-sub04 {
    background-image: url(../img/subttl_04@2x.png);
  }
  .mainimg .ttl-sub05 {
    background-image: url(../img/subttl_05@2x.png);
  }
  .mainimg .ttl-sub06 {
    background-image: url(../img/subttl_06@2x.png);
  }
  .mainimg .ttl-sub07 {
    background-image: url(../img/subttl_07@2x.png);
  }
  .mainimg .ttl-sub08 {
    background-image: url(../img/subttl_08@2x.png);
  }
  .mainimg .ttl-sub09 {
    background-image: url(../img/subttl_09@2x.png);
  }
  .mainimg .ttl-sub10 {
    background-image: url(../img/subttl_10@2x.png);
  }
  .mainimg .ttl-sub11 {
    background-image: url(../img/subttl_11@2x.png);
  }
  .preitem {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px 0;
  }
  .preitem-profile {
    margin-bottom: 30px;
  }
  .preitem-prenav {
    margin: 15px 0;
  }
  .preitem-info {
    margin: 60px 0;
    background-color: #fff;
  }
  .prenav {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
  .prenav li {
    min-width: 50px;
  }
  .lineup__name {
    font-size: 2rem;
    line-height: 1.5;
  }
  .lineup__name span {
    margin-top: -.5rem;
  }
  .logo_tsuki {
    width: 80px;
    margin-top: .5rem;
    margin-bottom: 0;
  }
  .lineup p.text {
    width: 90%;
  }
  .lineup__list li p {
    font-size: 1.2rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  }
  .lineup__list li p.icon_april:before {
    content: '';
    background-image: url(../img/icon_april.png);
    background-size: contain;
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    right: -2px;
    top: -7px;
  }
  .lineup__list li:nth-child(2n) {
    margin-right: 0;
  }
  .index {
    width: 100%;
    max-width: 100%;
    margin: 30px auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .index__ttl {
    font-size: 1.4rem;
    width: 90%;
    margin: 0 auto 1em;
    display: block;
  }
  .index li {
    width: 90%;
    display: block;
    margin: 0 auto 18px;
  }
  .index li a {
    border: 1px solid #005aff;
    display: block;
    color: #000;
    padding: 12px 20px;
    font-size: 1.1rem;
    border-radius: 20px;
  }
  .link h2 {
    font-size: 1.8rem;
    width: 90%;
    margin: 0 auto 1em;
    display: block;
    text-align: center;
  }
  .link a {
    display: block;
    color: #005aff;
    padding: 12px 20px;
    font-size: 1.4rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  }
  .info h2 {
    text-align: center;
    font-size: 1.7rem;
    margin-bottom: 1em;
  }
  .info h2.left{
    font-size: 2rem;
  }
  .info h3{
    font-size: 1.7rem; 
  }
  .info dl {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .info dl dt {
    width: 100%;
    font-size: 1.4rem;
  }
  .info dl dd {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  .info_img{
    width: 100%;
    padding: 50px 5%;
  }
  .info div p {
    letter-spacing: .1rem;
  }
  .intro {
    margin: 30px 0;
  }
  .intro p {
    width: 82.8125%;
    max-width: 100%;
    margin: 0 auto;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
    font-size: 1.6rem;
  }
  .profile {
    width: 82.8125%;
    max-width: 100%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .profile__img {
    width: 54.6875vw;
    max-width: 100%;
    margin: 0 auto 15px;
  }
  .profile__img img {
    width: 100%;
  }
  .profile__txt {
    padding-left: 0;
  }
  .profile__txt h2 {
    font-size: 1.6rem;
    margin-bottom: .5em;
  }
  .profile__txt h2 .kana {
    font-size: 1.4rem;
  }
  .profile__txt p {
    font-size: 1.3rem;
  }
  .space-between{
    margin-bottom: -4rem;
  }
  .conv {
    width: 82.8125%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .conv h2 {
    font-size: 1.8rem;
    width: 100%;
    max-width: 100%;
    margin: .5em auto 1em;
    padding-left: 0;
  }
  .conv h3 {
    font-size: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin: .5em auto 1em;
    padding-left: 0;
  }
  .conv dl {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .conv dl dt {
    width: 100%;
    margin-bottom: 0;
    font-size: 1.5rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
  }
  .conv dl dt.hobo {
    font-family: "Koburina Gothic W3 JIS2004", sans-serif;
    letter-spacing: -.1em;
  }
  .conv dl dd {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1em;
    font-size: 1.5rem;
  }
  .conv dl dd a {
    color: #005aff;
  }
  .conv p.continue {
    text-align: center;
  }
  .conv__img {
    margin: 1em auto;
  } 
  .product{
    margin: 1em auto;
  }
  .product .caption {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 auto .5em;
  }
  .product .caption p{
    font-size: 1.5rem;
    line-height: 1.2;
  }
  .product .caption span{
    font-size: 1.3rem;
  }
  .product .caption img {
    width: 15px;
  }
  .select {
    width: 90%;
    border: 1px solid #000;
    background-color: #fff;
    max-width: 95%;
    margin: 0 auto;
    text-align: center;
  }
  .select h2 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin: 1em auto 1em;
  }
  .select dl {
    width: 90%;
    max-width: 100%;
    margin: 2em auto 5em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .select dl dt {
    width: 100%;
    text-align: left;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
    font-size: 1.5rem;
  }
  .select dl dd {
    width: 100%;
    text-align: left;
    font-size: 1.5rem;
  }
  .select .caption {
    font-size: 1.6rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
    margin-top: .5em;
  }
  .debut {
    width: 93.75vw;
    max-width: 100%;
    height: 7.03125vw;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
  }
  .debut img {
    width: 100%;
    height: auto;
  }
  .arrow {
    display: block;
    width: 12.5vw;
    max-width: 81px;
    height: 12.5vw;
    max-height: 81px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
  }
  .arrow img {
    width: 100%;
  }
  .bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    z-index: -1;
  }
  .bg-pre1 {
    background-image: url(../img/bg_pre1_sp.jpg);
  }
  .bg-pre2 {
    background-image: url(../img/bg_pre2_sp.jpg);
  }
  .bg-pre3 {
    background-image: url(../img/bg_pre3_sp.jpg);
  }
  .bg-pre4 {
    background-image: url(../img/bg_pre4_sp.jpg);
  }
  .bg-pre5 {
    background-image: url(../img/bg_pre5_sp.jpg);
  }
  .bg-pre6, .bg-pre7 {
    background-image: url(../img/bg_pre6_sp.jpg);
  }
  .bg-pre8 {
    background-image: url(../img/bg_pre8_sp.jpg);
  }
  .bg-pre9 {
    background-image: url(../img/bg_pre9_sp.jpg);
  }
  .bg-pre10 {
    background-image: url(../img/bg_pre10_sp.jpg);
  }
  .bg-pre11 {
    background-image: url(../img/bg_pre11_sp.jpg);
  }

  .bg-logo {
    position: relative;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .genre__contents {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    padding: 45px 0;
    background-color: #fff;
  }
  .genre__contents-2 {
    width: 100%;
    max-width: 100%;
    padding-bottom: 65px;
    border-top: 1px solid #000;
  }
  .genre__contents-2 .genre__text {
    padding-right: 0;
  }
  .genre__container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .genre__name {
    width: 100%;
    text-align: left;
    font-size: 1.9rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
    margin-bottom: 1em;
  }
  .genre__name .kana {
    font-size: 1.6rem;
  }
  .genre__text {
    width: 100%;
    font-size: 1.6rem;
    padding-right: 0;
  }
  .genre__mark {
    margin-top: 2em;
    margin-bottom: 2em;
    height: 10.9375vw;
  }
  .genre__mark.mxps {
    height: 14.0625vw;
  }
  .genre__mark img {
    height: 100%;
    width: auto;
  }
  .genre__ttl {
    width: 100%;
    font-size: 1.6rem;
    font-family: "Koburina Gothic W6 JIS2004", sans-serif;
    padding-bottom: 0px;
  }
  .genre__item {
    width: 100%;
  }
  .genre__item:nth-of-type(2) {
    padding-left: 0;
  }
  .genre__item .genre__text {
    width: 100%;
  }
  .genre__ttl2 {
    text-align: center;
    font-size: 2.2rem;
    font-family: Koburina Gothic W6 JIS2004, sans-serif;
    padding-bottom: 10px;
  }
  .genre__item2 {
    width: 95%;
    margin: 0 auto 50px;
  }
  .genre__item2 li img {
   width: 43.75vw;;
  }
  .genre__item2 li p {
    text-align: center;
  }
  .share {
    padding: 15px 0;
    margin-bottom: 55px;
    margin-top: 55px;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .share__ttl {
    font-size: 1.9rem;
    text-align: center;
    padding: 30px 0;
    letter-spacing: 0.1em;
  }
  .share__list {
    width: 95%;
    max-width: 500px;
    margin: 0 auto 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    list-style-type: none;
  }
  .share__list li {
    margin: 0 20px;
  }
  .share__list-foot {
    -ms-flex-pack: center;
        justify-content: center;
    margin: 0 auto 50px;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .share__list-foot li a {
    width: 77%;
    border: 1px solid #005aff;
    border-radius: 18px;
    padding: 5px 20px;
    font-size: 1.4rem;
    text-align: center;
    display: block;
    color: #005aff;
    margin: 15px auto;
  }
  .footer {
    padding: 45px 0;
    background-color: #fff;
  }
  .copyright {
    display: block;
    text-align: center;
    text-indent: -9999px;
    background-image: url(../../img/copyright.png);
    width: 255px;
    height: 11px;
    margin: 20px auto;
    background-size: contain;
  }
}
</pre></body></html>