@charset "utf-8";
/* ===============================================

* Target user-agent
  - Desktop
    - IE 9, 11
    - Firefox (Latest)
    - Chrome (Latest)
  - Smart Device
    - Mobile Safari (iOS 8.4.1)
    - Android Chrome (Android 5.1.1)

----------------------------------------------- */
/* =====================================
reset
------------------------------------- */
* {
  margin: 0;
  border: 0;
  padding: 0;
}
/* =====================================
base
------------------------------------- */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:hover, *:focus {
  outline: none;
}
.pc-hidden {
  display: none !important;
}
html {
  font-size: 62.5%;
}
body {
  min-width: 1000px;
  margin: 0 auto;
  line-height: 1;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body.rwd {
  min-width: 0;
}
body, input, button, textarea, option {
  font-family: 'Yu Gothic', 'YuGothic', sans-serif;
  color: #010101;
}
a, a::before, a::after, button, button::before, button::after, input, input::before, input::after {
  -webkit-transition: .4s;
  transition: .4s;
}
a, a:link, a:visited, a strong, a:link strong, a:visited strong {
  color: inherit;
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}
button, label {
  cursor: pointer;
}
ul, ol {
  list-style: none;
}
img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
  border: 0;
}
button img {
  position: relative;
}
strong, em, b {
  font-weight: normal;
}
em {
  color: #e60202;
  font-style: normal;
  font-size: 1.4rem;
}
section, article, figcaption, figure, header, footer, aside, nav, main {
  display: block;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* =====================================
header
------------------------------------- */
.clearfix::after {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  clear: both;
}
#header > .inner {
  position: relative;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 20px 30px;
}
.head-01 .logo {
  float: left;
}
.head-01 .ico-sns {
  float: right;
}
.head-01 .ico-sns .pop {
  background: #f6ec63;
  font-size: 1.4rem;
  color: #888;
  padding: 10px;
  float: left;
  position: relative;
  margin-right: 20px;
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}
.head-01 .ico-sns .pop::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 13px;
  border-color: transparent transparent transparent #f6ec63;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: -13px;
}
.head-01 .ico-sns a:hover + .pop, .head-01 .ico-sns a:focus + .pop {
  opacity: 1;
  -webkit-transition: .4s;
  transition: .4s;
}
.head-01 .icon {
  float: right;
}
.head-01 .icon > * {
  float: left;
}
.head-01 .icon .ico-shop + .ico-sns {
  position: relative;
  margin-left: 22px;
}
.head-01 .icon .ico-shop + .ico-sns .pop {
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  float: none;
  white-space: nowrap;
  z-index: -1;
}
.head-01 .icon .ico-shop + .ico-sns a:hover + .pop, .head-01 .icon .ico-shop + .ico-sns a:focus + .pop {
  transition-property: opacity;
  z-index: 0;
}
#header h1 {
  text-align: center;
  margin: 40px 0 47px;
}
#menu-btn {
  display: none;
}
.nav-global {
  text-align: center;
  font-size: 1.4rem;
  color: #999;
}
.nav-global li {
  display: inline-block;
}
.nav-global li + li {
  margin-left: 30px;
}
.nav-global a:hover, .nav-global a:focus {
  color: #010101;
}
.nav-global a.now-page {
  position: relative;
  color: #000;
}
.nav-global a.now-page::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -5px;
}
#header a img {
  -webkit-transition: .4s;
  transition: .4s;
}
#header a:hover img, #header a:focus img {
  opacity: .5;
}
@media screen and (max-width: 999px) {
  .pc-hidden {
    display: block !important;
  }
  .rwd #header > .inner {
    padding: 15px 50px;
  }
  .rwd #header h1 {
    max-width: 70px;
    margin: 0 auto;
  }
  .rwd #menu-btn {
    display: block;
    position: absolute;
    top: 13px;
    right: 15px;
  }
  .rwd #menu-btn button {
    position: relative;
    width: 18px;
    height: 18px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
  }
  .rwd #menu-btn button::before, .rwd #menu-btn button::after, .rwd #menu-btn button span::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
  }
  .rwd #menu-btn button::before {
    top: 2px;
  }
  .rwd #menu-btn button::after {
    bottom: 2px;
  }
  .rwd #menu-btn button span {
    display: inline-block;
    white-space: nowrap;
    text-indent: 100%;
  }
  .rwd #menu-btn button span::before {
    top: 50%;
    margin-top: -1px;
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
  }
  .rwd #menu-btn button:hover, .rwd #menu-btn button:focus {
    opacity: .5;
  }
  .static .rwd #menu-btn {
    display: none;
  }
  .rwd .head-01 {
    display: none;
  }
  .rwd .nav-global {
    display: none;
    margin-top: 12px;
  }
  .rwd .nav-global li {
    display: block;
    margin: 0;
    border-bottom: solid #aaa 1px;
  }
  .rwd .nav-global li a {
    font-weight: bold;
    display: block;
    padding: 27px 0;
    color: #000;
  }
  .rwd .nav-global li a::after {
    content: none;
  }
  .rwd .nav-global li.img a {
    padding: 20px 0;
  }
  .rwd .nav-global li.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
  }
  .rwd .nav-global li.icon > a {
    padding-top: 0;
    padding-bottom: 0;
  }
  .rwd .nav-global li.icon > a + a {
    margin-left: 32px;
  }
  .static .rwd .nav-global {
    display: block;
  }
  .rwd #header.is-open .nav-global {
    display: block;
    margin-bottom: 10px;
    -webkit-animation: fadeIn .8s;
    animation: fadeIn .8s;
  }
  .rwd #header.is-open #menu-btn button::before {
    top: 7px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .rwd #header.is-open #menu-btn button::after {
    bottom: 9px;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .rwd #header.is-open #menu-btn button span::before {
    opacity: 0;
  }
}
/* =====================================
main
------------------------------------- */
#main > .inner {
  padding: 20px;
}
#main > .inner.fixed {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  z-index: 100;
}
#main > .inner.fixed .nav-local {
  margin: 0 auto;
}
.visual {
  width: 100%;
}
.visual img {
  width: 100%;
  max-width: none;
}
.nav-local {
  max-width: 960px;
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  text-align: center;
}
.nav-local li {
  width: 25%;
  position: relative;
  margin-top: 20px;
  border-left: solid #000 1px;
}
.nav-local li:last-of-type {
  border-right: solid #000 1px;
}
.nav-local[data-row-pc="4"] li {
  width: 25%;
}
.nav-local[data-row-pc="4"] li:nth-of-type(4n) {
  border-right: solid #000 1px;
}
.nav-local[data-row-pc="4"] li:nth-of-type(-n + 4) {
  margin-top: 0;
}
.nav-local a {
  display: block;
  padding: 7px 4px;
  text-align: center;
}
.nav-local a:hover, .nav-local a:focus {
  color: #999;
}
.nav-local .nav-local-label {
  position: relative;
}
.nav-local .nav-local-label .ico-new-red {
  right: -35px;
}
.hdg-01 {
  font-size: 2rem;
  text-align: center;
  margin: 60px 0 20px;
  padding-bottom: 20px;
  position: relative;
}
.hdg-01::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -10px;
  bottom: 0;
  background: #000;
}
.hdg-02 {
  font-size: 2rem;
  text-align: center;
  margin: 55px 0 50px;
}
.hdg-caption {
  display: block;
  font-size: 1.6rem;
  padding-top: 10px;
}
.coop {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 2em;
  
  padding: 0 10px;
}
.coop a {
  position: relative;
  display: inline-block;
}
.coop a::after {
  content: "";
  background: #999;
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -.5em;
  transition: .3s;
}
.coop a:hover::after, .coop a:focus::after {
  width: 500px;
  max-width: 100%;
  transition: .3s;
}
.trademark {
  margin-top: 4em;
  font-size: 1.4rem;
  text-align: center;
}
#about .hdg-02 {
  margin-bottom: 40px;
  padding-top: 78px;
}
#new-item .hdg-02 {
  margin: 78px 0 25px;
}
#top-gallery .hdg-02 {
  margin: 78px 0 40px;
}
#main .txt {
  text-align: center;
  color: #666;
  font-size: 1.4rem;
  line-height: 2.142;
  margin-bottom: 40px;
}
#slide-box {
  width: 100%;
  height: 500px;
  background: #f5f5f5 url(/hitotoki/sp/kitta/images/hero-image-09.png) repeat-x;
  font-size: 0;
  box-shadow: 0 3px 3px #e5e5e5 inset;
}
#slide-box img {
  display: none;
}
#kitta-basic > .inner, #kitta-slim > .inner, #kitta-seal > .inner, #kitta-limited > .inner, #kitta-wide > .inner, #kitta-collabo > .inner, #kitta-clear > .inner, #kitta-special > .inner , #kitta-flake > .inner , #kitta-collage > .inner , #kitta-jabara > .inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
#new-item > .inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
#top-gallery > .inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
#gallery > .inner, #gallery02 > .inner {
  width: 980px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#artist > .inner,
#collaboration > .inner {
  width: 1000px;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}
#online-edition {
  margin-top: 70px;
}
#online-edition > .inner {
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
}
.online-edition-figure__frame:hover {
  opacity: .5;
}
#new-item .list-product {
  margin-bottom: 0;
}
#kitta-collabo .list-product {
  margin-bottom: 0;
}
#top-gallery .list-gallery {
  margin-bottom: 30px;
}
#about > .inner {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}
#about .lead-01 {
  display: table;
  width: 100%;
  margin-bottom: 78px;
  padding: 0 20px;
  text-align: center;
}
#about .lead-01 {
  display: table;
  width: 100%;
  margin-bottom: 78px;
  padding: 0 20px;
  text-align: center;
}
#about .lead-01 p {
  display: table-cell;
  opacity: 1;
}
#about .lead-02_head {
  max-width: 1200px;
  margin: 0 auto;
}
#about .lead-02_body {
  max-width: 1200px;
  margin: 50px auto 0;
}
#about .lead-02_body p {
  text-align: center;
}
.list-product {
  margin-bottom: 100px;
  font-size: 0;
}
.list-product.mb0 {
  margin-bottom: -35px;
}
.list-product.is-center {
  text-align: center;
}
.list-product li {
  display: inline-block;
  vertical-align: top;
  width: 16.666%;
  text-align: center;
  margin-bottom: 35px;
}
.list-product li.ml-1col {
  margin-left: 16.666%;
}
.list-product li.mr-1col {
  margin-right: 16.666%;
}
.list-product li.ml-2col {
  margin-left: 33.333%;
}
.list-product li.mr-2col {
  margin-right: 33.333%;
}
.list-product a {
  display: block;
  max-width: 114px;
  margin: 0 auto;
}
.list-product p {
  font-size: 1.2rem;
  color: #000;
  margin-top: 12px;
}
.list-product > .little-stock p {
  position: relative;
}
.list-product > .little-stock p::after {
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 2px;
  left: 0;
  border-radius: 50%;
  background-color: #f79581;
  content: '';
}
#artist .list-product > .little-stock p::after {
  display: none;
}
.list-product b {
  line-height: 1.2857;
}
.list-product p span {
  color: #999;
  line-height: 1.6666;
}
.list-product > .little-stock b, .list-product > .little-stock p span {
  font-size: 1.2rem;
}
.list-product .list-product_image {
  display: flex;
  align-items: center;
  height: 164px;
}
.list-product a img, .list-gallery a img {
  -webkit-transition: .4s;
  transition: .4s;
}
.list-product a:hover img, .list-product a:focus img, .list-gallery a:hover img, .list-gallery a:focus img {
  opacity: .5;
  -webkit-transition: .4s;
  transition: .4s;
}
.little-stock_caption {
  position: relative;
  margin-top: 30px;
  padding-left: 20px;
  font-size: 1.3rem;
}
.list-product + .little-stock_caption {
  margin: -110px 0 140px 25px;
}
.little-stock_caption::after {
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 2px;
  left: 0;
  border-radius: 50%;
  background-color: #f79581;
  content: '';
}
.list-gallery {
  margin: 0 -6px;
}
.list-gallery li {
  float: left;
  width: 25%;
  padding: 0 6px;
  margin-bottom: 12px;
}
.list-gallery a {
  display: block;
}
.list-accessory {
  margin: 0 -16px;
}
.list-accessory li {
  float: left;
  width: 33.3%;
  padding: 0 6px;
}
.list-accessory + .list-product {
  margin-top: 76px;
}
.link-01 {
  display: block;
  font-size: 1.4rem;
  padding: 22px;
  text-align: center;
  border: solid 1px #ccc;
  max-width: 320px;
  margin: 0 auto;
  -webkit-transition: .2s;
  transition: .2s;
}
.link-01:hover, .link-01:focus {
  color: #ccc;
  border: solid 1px #aaa;
  -webkit-transition: .2s;
  transition: .2s;
}
.ico-new {
  display: inline-block;
  font-size: .75em;
  color: #fff;
  background: #e60202;
  padding: .16em 8px 2px;
  padding: .32em 8px 0;
  margin-right: 10px;
  margin-bottom: 2px;
  vertical-align: bottom;
}
.ico-new-red {
  position: absolute;
  display: block;
  top: calc(50% - 6px);
  right: 9px;
  color: #ff6666;
  font-size: 1.2rem;
}
#modal-content .modal-img {
  max-height: 100%;
}
.icon-accordion-layout {
  margin-top: 20px;
  border-bottom: 1px solid #ccc;
}
.icon-accordion-layout + .icon-accordion-layout {
  margin-top: 0;
}
.icon-accordion-layout .accordion_trigger .accordion_label {
  position: relative;
  display: block;
  min-height: 90px;
  padding: 28px 55px 10px 198px;
}
.icon-accordion-layout .accordion_trigger .accordion_label::after {
  position: absolute;
  top: 36px;
  right: 75px;
  width: 16px;
  height: 16px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
  -webkit-transform: rotateX(0) rotate(45deg);
  transform: rotateX(0) rotateZ(45deg);
  content: '';
}
.icon-accordion-layout .accordion_trigger.is-active .accordion_label::after {
  -webkit-transform: rotateX(180deg) rotateZ(45deg);
  transform: rotateX(180deg) rotateZ(45deg);
}
.icon-accordion-layout .accordion_trigger .accordion_label .accordion_icon {
  display: inline-block;
  position: absolute;
  width: 70px;
  top: 50%;
  left: 68px;
  margin-top: -33px;
}
.icon-accordion-layout .accordion_trigger .accordion_label .accordion_title {
  font-size: 1.8rem;
}
.icon-accordion-layout .accordion_trigger .accordion_label .accordion_subtitle {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}
.icon-accordion-layout .accordion_detail {
  padding: 10px 0 45px;
}
.icon-accordion-layout .accordion_detail .artist-detaillist {
  margin-left: 200px;
}
.icon-accordion-layout .accordion_detail .artist-detaillist:last-of-type {
  margin-bottom: 48px;
}
.artist-list {
  margin-top: 20px;
}
.artist-list li {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
}
.artist-list li + li {
  margin-top: 0;
}
.artist-list li .artist-list_label {
  display: block;
  position: relative;
  min-height: 90px;
  padding: 28px 55px 10px 198px;
}
.artist-list li .artist-list_label .artist-list_icon {
  display: inline-block;
  position: absolute;
  width: 70px;
  top: 50%;
  left: 68px;
  margin-top: -33px;
}
.artist-list li .artist-list_label .artist-list_title {
  font-size: 1.8rem;
}
.artist-list li .artist-list_label .artist-list_title .artist-list_subtitle {
  display: block;
  margin-top: 8px;
  font-size: 1.4rem;
}
.artist-list li .artist-list_detail {
  padding: 10px 0 0px;
}
.artist-list li .artist-list_detail .artist-list_detaillist {
  margin-left: 200px;
}
.artist-list_detaillist {
  position: relative;
}
.artist-list_detaillist + .artist-list_detaillist {
  margin-top: 9px;
}
.artist-list_detaillist > dt {
  position: absolute;
  top: 0;
  left: 0;
  border-left: 2px solid #aaaaaa;
  padding-left: 5px;
  font-size: 1.4rem;
}
.artist-list_detaillist > dd {
  padding-left: 90px;
  font-size: 1.4rem;
}
.artist-list_detaillist.w-large01 > dd {
  padding-left: 140px;
}
.artist-list_detaillist.w-large02 > dd {
  padding-left: 240px;
}
a.artist-link {
  color: #999999;
  transition: opacity 0.3s;
  word-wrap: break-word;
}
a.artist-link:hover {
  opacity: 0.7;
}
#modal-content.oneModal .modal-pager {
  display: none;
}
.gp-al-left {
  text-align: left !important;
}
.gp-al-center {
  text-align: center !important;
}
.gp-al-right {
  text-align: right !important;
}
.banner {
  width: 100%;
  margin-bottom: 135px;
}
.banner a {
  display: inline-block;
  width: 100%;
}
.banner a:hover {
  opacity: .5;
  transition: .4s;
}
.banner .banner-txt {
  position: relative;
  margin-top: 35px;
  margin-left: 15px;
  padding-left: 15px;
  font-size: 1.2rem;
}
.banner .banner-txt::before {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  margin-top: -4px;
  background-color: #96c1e6;
  border-radius: 8px;
  content: "";
}
#new-item .banner {
  margin: 35px 0 20px;
}
#new-item .banner + .banner {
  margin-top: 20px;
}
#new-item .banner:last-child {
  margin-bottom: 35px;
}

.release-txt {
  color: #666;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}
#new-item .hdg-02 + .release-txt {
  margin: 25px 0 35px;
}

@media screen and (max-width: 999px) {
  .rwd #main > .inner {
    padding: 0 20px;
  }
  .rwd .nav-local {
    background: #f3f4f3;
    padding: 8px 40px;
    margin: 0 -20px !important;
    border: none;
    font-size: 1.2rem;
  }
  .rwd .nav-local li {
    width: auto;
    margin: 0 7px;
  }
  .rwd .nav-local li,
  .rwd .nav-local li:last-of-type,
  .rwd .nav-local[data-row-pc="4"] li:nth-of-type(4n) {
    border: none;
  }
  .rwd .nav-local a {
    padding: 7px 4px;
    text-align: center;
  }
  .rwd .nav-local a:hover, .rwd .nav-local a:focus {
    color: #999;
  }
  .rwd .hdg-01 {
    margin-top: 40px;
  }
  .rwd .coop {
    font-size: 1rem;
    margin-top: 2.5em;
  }
  .rwd .trademark {
    margin-top: 2em;
    font-size: .9rem;
    text-align: center;
  }
  .rwd .hdg-02, .rwd #about .hdg-02, .rwd #new-item .hdg-02, .rwd #top-gallery .hdg-02 {
    margin: 40px 0 25px;
  }
  .rwd #main .txt {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .rwd #slide-box {
    height: 375px;
    background-size: auto 100%;
  }
  .rwd #new-item > .inner, .rwd #top-gallery > .inner {
    padding: 0 12px;
  }
  .rwd #new-item .list-product {
    margin-bottom: 20px;
  }
  .rwd #new-item .list-product {
    width: 100%;
  }
  .rwd #kitta-limited .list-product,
  .rwd #kitta-collabo .list-product,
  .rwd #kitta-flake .list-product {
    width: 67%;
    margin: 0 auto;
  }
  .rwd #new-item .list-product > li {
    width: calc((100% - 20px) / 3);
    margin-left: 10px;
    padding: 0;
  }
  .rwd #kitta-limited .list-product > li,
  .rwd #kitta-collabo .list-product > li,
  .rwd #kitta-flake .list-product > li {
    width: calc((100% - 10px) / 2);
    margin-left: 10px;
    padding: 0;
  }
  .rwd #new-item .list-product > li:nth-child(3n+1),
  .rwd #kitta-limited .list-product > li:nth-child(2n+1),
  .rwd #kitta-collabo .list-product > li:nth-child(2n+1),
  .rwd #kitta-special .list-product > li:nth-child(2n+1),
  .rwd #kitta-flake .list-product > li:nth-child(2n+1),
  .rwd #kitta-wide .list-product > li:nth-child(2n+1) {
    margin-left: 0;
  }
  .rwd #about .lead-01 {
    display: block;
    margin-bottom: 40px;
    padding: 0 80px;
  }
  .rwd #about .lead-01 p {
    display: block;
  }
  .rwd #about .lead-01 p + p {
    margin-top: 40px;
    padding-left: 0;
  }
  .rwd #about .lead-02_head {
  }
  .rwd #about .lead-02_body {
    margin-top: 20px;
  }
  .rwd #about .lead-02_body p {
    max-width: 500px;
    width: 82.4%;
    margin: 0 auto;
  }
  .rwd .list-product {
    margin-bottom: 20px;
  }
  .rwd .list-product li {
    width: 33.333%;
    padding: 0 2px;
    margin-bottom: 20px;
  }
  .rwd .list-product li.ml-1col {
    margin-left: 0;
  }
  .rwd .list-product li.mr-1col {
    margin-right: 0;
  }
  .list-product li.ml-2col {
    margin-left: 0;
  }
  .list-product li.mr-2col {
    margin-right: 0;
  }
  .rwd .list-product p, .rwd .list-product > .little-stock p > span {
    font-size: 1rem;
  }
  .list-product b, .list-product > .little-stock b {
    font-size: 1.166rem;
  }
  .rwd .list-product > .little-stock p {
    margin-top: 12px;
  }
  .rwd .list-product > .little-stock p::after {
    width: 6px;
    height: 6px;
    top: 3px;
  }
  .rwd .list-product .list-product_image {
    height: 157px;
  }
  .rwd .list-product + .little-stock_caption {
    margin: -25px 0 30px 10px;
  }
  .rwd .list-product + .little-stock_caption--sp {
    margin-top: 0;
  }
  .rwd .little-stock_caption::after {
    width: 6px;
    height: 6px;
    top: 3px;
  }
  .rwd .list-gallery {
    margin: 0 -5px;
  }
  .rwd .list-gallery li {
    float: left;
    margin-bottom: 10px;
    padding: 0 5px;
    width: 50%;
  }
  .rwd .list-gallery a img {
    width: 100%;
    max-width: none;
  }
  .rwd .list-accessory {
    margin: 0 -2px;
  }
  .rwd .list-accessory li {
    float: left;
    margin-bottom: 10px;
    padding: 0 2px;
    width: 33.3%;
  }
  .rwd .list-accessory + .list-product {
    margin-top: 50px;
  }
  .rwd .link-01 {
    padding: 12px 22px;
    max-width: 100%;
    margin: 0 70px;
  }
  .rwd #modal-close, .rwd #modal-prev, .rwd #modal-next {
    width: 15px;
  }
  .rwd #modal-close {
    top: 10px !important;
    right: 10px !important;
  }
  .rwd #modal-prev {
    right: 100%;
    left: auto !important;
    margin-right: 10px;
  }
  .rwd #modal-next {
    right: auto !important;
    left: 100%;
    margin-left: 10px;
  }
  .rwd #modal-content {
    height: 100% !important;
  }
  .rwd .ico-new-red {
    position: static;
    display: inline-block;
    margin-left: 10px;
    font-size: 1rem;
  }
  .icon-accordion-layout .accordion_trigger .accordion_label::after {
    position: absolute;
    top: 36px;
    right: 20px;
    width: 12px;
    height: 12px;
  }
  .rwd .icon-accordion-layout .accordion_trigger .accordion_label {
    min-height: 80px;
    padding: 24px 40px 10px 100px;
  }
  .rwd .icon-accordion-layout .accordion_trigger .accordion_label .accordion_icon {
    width: 60px;
    left: 20px;
    margin-top: -30px;
  }
  .rwd .icon-accordion-layout .accordion_trigger .accordion_label .accordion_title {
    font-size: 1.6rem;
  }
  .rwd .icon-accordion-layout .accordion_trigger .accordion_label .accordion_subtitle {
    margin-top: 5px;
    font-size: 1.3rem;
  }
  .rwd .icon-accordion-layout .accordion_detail {
    margin-top: 5px;
    padding: 0 20px;
  }
  .rwd .icon-accordion-layout .accordion_detail .artist-detaillist {
    margin-left: 0;
  }
  .rwd .icon-accordion-layout .accordion_detail .artist-detaillist:last-of-type {
    margin-bottom: 30px;
  }
  .rwd .artist-list li .artist-list_label {
    min-height: 80px;
    padding: 24px 40px 10px 100px;
  }
  .rwd .artist-list li .artist-list_label .artist-list_icon {
    width: 60px;
    left: 20px;
    margin-top: -30px;
  }
  .rwd .artist-list li .artist-list_label .artist-list_title {
    font-size: 1.6rem;
  }
  .rwd .artist-list li .artist-list_label .artist-list_subtitle {
    margin-top: 5px;
    font-size: 1.3rem;
  }
  .rwd .artist-list .artist-list_detail {
    margin-top: 5px;
    padding: 0 20px;
  }
  .rwd .artist-list .artist-list_detail .artist-list_detaillist {
    margin-left: 0;
  }
  .rwd .artist-list .artist-list_detail .artist-list_detaillist:last-of-type {
    margin-bottom: 30px;
  }
  .rwd .artist-list_detaillist + .artist-list_detaillist {
    margin-top: 7px;
  }
  .rwd .artist-list_detaillist > dt {
    position: absolute;
    top: 0;
    left: 0;
    border-left: 2px solid #555555;
    padding-left: 5px;
    font-size: 1.3rem;
  }
  .rwd .artist-list_detaillist > dd {
    padding-left: 80px;
    font-size: 1.3rem;
  }
  .artist-list_detaillist.w-large01 > dt, .artist-list_detaillist.w-large02 > dt {
    position: relative;
  }
  .artist-list_detaillist.w-large01 > dd, .artist-list_detaillist.w-large02 > dd {
    margin-top: 5px;
    padding-left: 0;
  }
  .rwd a.artist-link {
    color: #999999;
  }
  .rwd .banner {
    margin-bottom: 30px;
  }
  .rwd .banner .banner-txt {
    margin-top: 18px;
    margin-left: 11px;
    padding-left: 20px;
    font-size: 1.3rem;
  }
  .rwd .banner .banner-txt::before {
    width: 6px;
    height: 6px;
    margin-top: -3px;
  }
  .rwd .release-txt {
    font-size: 1.2rem;
  }
  .rwd #new-item .hdg-02 + .release-txt {
    margin: -17px 0 27px;
  }
  #online-edition {
    margin-top: 40px;
  }
  #online-edition > .inner {
    padding: 0 12px;
  }
}
@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  .rwd .pswp--svg .pswp__button, .rwd .pswp--svg .pswp__button--arrow--left:before, .rwd .pswp--svg .pswp__button--arrow--right:before {
    -webkit-transform: scale(2, 2) !important;
    transform: scale(2, 2) !important;
  }
  .rwd .pswp__button--close {
    background-position: -6px -39px !important;
  }
  .rwd .pswp__counter {
    top: 15px !important;
    left: 10px !important;
    font-size: 25px !important;
  }
}
/* =====================================
PageTop
------------------------------------- */
#page-top {
  display: none;
  text-align: right;
  position: fixed;
  right: 25px;
  bottom: 25px;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}
#page-top a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
}
#page-top a::before, #page-top a::after {
  content: "";
  display: block;
  position: absolute;
}
#page-top a::before {
  width: 28px;
  height: 28px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: solid #000 1px;
  border-left: solid #000 1px;
  top: 7px;
  left: 6px;
}
#page-top a::after {
  width: 1px;
  height: 40px;
  background: #000;
  top: 2px;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#page-top a:hover, #page-top a:focus {
  opacity: .5;
}
#page-top.is-show {
  display: block;
  -webkit-animation: fadeIn .8s;
  animation: fadeIn .8s;
}
.static #page-top {
  display: block;
}
@media screen and (max-width: 999px) {
  .rwd #page-top {
    display: block;
    text-align: center;
    position: static;
    margin-top: 40px;
    -webkit-animation: none;
    animation: none;
  }
}
/* =====================================
footer
------------------------------------- */
#footer > .inner {
  max-width: 960px;
  padding: 78px 20px 20px;
  margin: 0 auto;
  text-align: center;
}
#footer .ico-sns li {
  display: inline-block;
  margin-bottom: 40px;
}
#footer .ico-sns li + li {
  margin-left: 20px;
}
.copy {
  font-size: 1.4rem;
}
#footer .copy a {
  -webkit-transition: .2s;
  transition: .2s;
}
.copy a:hover, .copy a:focus {
  color: #e5e5e5;
  -webkit-transition: .2s;
  transition: .2s;
}
#footer a img {
  -webkit-transition: .4s;
  transition: .4s;
  opacity: 1;
}
#footer a:hover img, #footer a:focus img {
  -webkit-transition: .4s;
  transition: .4s;
  opacity: .5;
}
@media screen and (max-width: 999px) {
  .rwd #footer > .inner {
    padding-top: 20px;
  }
  .rwd .copy {
    font-size: 1rem;
  }
}
/* =====================================
Adjust
------------------------------------- */
.rwd .only-narrow {
  display: none;
}
@media screen and (max-width: 999px) {
  .rwd .only-narrow {
    display: block;
  }
}