/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}

/* change colours to suit your needs */
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

input,
select {
  vertical-align: middle;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 100%;
  font-weight: 500;
  letter-spacing: .1em;
  color: #000;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.8;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #000;
}

ol,
ul {
  list-style: none;
}

img {
  font-size: 1px;
  font-size: .0625rem;
  line-height: 1;
  width: 100%;
  height: auto;
  vertical-align: top;
  border: 0;
}

input,
button,
textarea,
select {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

input[type='number'] {
  -moz-appearance: textfield;
}

textarea {
  vertical-align: top;
}

button {
  cursor: pointer;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

main {
  display: block;
}

address {
  font-weight: normal;
  font-style: normal;
  line-height: inherit;
}

svg {
  fill: currentColor;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(30%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(60%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(90%);
    opacity: .85;
  }
  100% {
    -webkit-transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateY(60%);
    transform: translateY(60%);
    opacity: 1;
  }
  90% {
    -webkit-transform: translateY(90%);
    transform: translateY(90%);
    opacity: .85;
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
  }
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes scroll-up {
  0% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 47px);
    transform: translate(-50%, 47px);
  }
}

@keyframes scroll-up {
  0% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  100% {
    -webkit-transform: translate(-50%, 47px);
    transform: translate(-50%, 47px);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}

body.is-bg-hidden {
  background-color: #fff;
}

.page-header {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.page-header.is-show {
  opacity: 1;
}

.category-header__scroll-hint {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.category-header__scroll-hint.is-hidden {
  opacity: 0;
}

.category-header__kv > div:nth-of-type(3),
.category-header__kv > div:nth-of-type(4),
.category-header__kv > div:nth-of-type(5),
.category-header__kv > div:nth-of-type(6),
.category-header__kv > div:nth-of-type(7),
.category-header__kv > div:nth-of-type(8) {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.category-header__kv.is-break > div:nth-of-type(3) {
  -webkit-transform: translate(0%, 0%) rotate(-5deg);
  -ms-transform: translate(0%, 0%) rotate(-5deg);
  transform: translate(0%, 0%) rotate(-5deg);
}

.category-header__kv.is-break > div:nth-of-type(4) {
  -webkit-transform: translate(0%, 0%) rotate(5deg);
  -ms-transform: translate(0%, 0%) rotate(5deg);
  transform: translate(0%, 0%) rotate(5deg);
}

.category-header__kv.is-break > div:nth-of-type(5) {
  -webkit-transform: translate(0%, 0%) rotate(-5deg);
  -ms-transform: translate(0%, 0%) rotate(-5deg);
  transform: translate(0%, 0%) rotate(-5deg);
}

.category-header__kv.is-break > div:nth-of-type(6) {
  -webkit-transform: translate(0%, 0%) rotate(5deg);
  -ms-transform: translate(0%, 0%) rotate(5deg);
  transform: translate(0%, 0%) rotate(5deg);
}

.category-header__kv.is-break > div:nth-of-type(7) {
  -webkit-transform: translate(0%, 0%) rotate(-5deg);
  -ms-transform: translate(0%, 0%) rotate(-5deg);
  transform: translate(0%, 0%) rotate(-5deg);
}

.category-header__kv.is-break > div:nth-of-type(8) {
  -webkit-transform: translate(0%, 0%) rotate(5deg);
  -ms-transform: translate(0%, 0%) rotate(5deg);
  transform: translate(0%, 0%) rotate(5deg);
}

.page-footer::before {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  opacity: 0;
}

.page-footer.is-bg-show::before {
  opacity: 1;
}

.page-footer {
  position: relative;
  margin-top: 60px;
}

.page-footer__copyright {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-size: .625rem;
  margin-bottom: 55px;
  text-align: center;
}

.page-footer::before {
  position: absolute;
  z-index: -10;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 80vh;
  content: '';
  background-image: -webkit-gradient(linear, left bottom, left top, from(#e5dac6), to(#fff));
  background-image: linear-gradient(0deg, #e5dac6 0%, #fff 100%);
}

.page-top-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  line-height: 60px;
  display: block;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-align: center;
  letter-spacing: .05em;
  color: #000;
  background-color: #d9d9d9;
}

.page-top-btn > span {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  color: #000;
}

.page-top-btn > span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border-width: 0 5px 6px 5px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}

.sns-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sns-list > li:not(:last-child) {
  margin-right: 30px;
}

.sns-list > li > a {
  display: block;
  width: 20px;
  height: 20px;
}

.sns-list > li > a > svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-header {
  position: absolute;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
}

.page-header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 97px;
  height: 22px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #000;
}

.page-header__logo > svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-header__archive-list {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #d84b00;
}

.page-header__archive-list > span {
  font-size: 13px;
  font-size: .8125rem;
  line-height: 40px;
  position: relative;
  display: block;
  height: 40px;
  padding-right: 15px;
  cursor: pointer;
}

.page-header__archive-list > span::before {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  content: '';
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: #d84b00 transparent transparent transparent;
}

.page-header__archive-list > ul {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
  width: 145px;
  padding: 20px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  opacity: 0;
  background-color: #eee;
}

.page-header__archive-list > ul > li {
  font-size: 11px;
  font-size: .6875rem;
}

.page-header__archive-list > ul > li:not(:last-child) {
  margin-bottom: 5px;
}

.page-header__archive-list.active > span:before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.page-header__archive-list.active > ul {
  visibility: visible;
  opacity: 1;
}

.page-main .main-visual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #cbd8dd;
}

.page-main .main-visual .left {
  position: relative;
  width: 50%;
}

.page-main .main-visual .left ul {
  position: absolute;
  top: 50%;
  right: 5%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 73.5%;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-main .main-visual .left ul li {
  overflow: hidden;
  width: 49%;
}

.page-main .main-visual .left ul li:nth-child(n+3) {
  margin-top: 10px;
}

.page-main .main-visual .right {
  position: relative;
  width: 50%;
}

.page-main .main-visual .right .container {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 65%;
  min-width: 420px;
  margin: auto;
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
  text-align: center;
}

.page-main .main-visual .right .container h2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: .15em;
}

.page-main .main-visual .right .container h1 {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 25px 0 30px;
  letter-spacing: .15em;
}

.page-main .main-visual .right .container p {
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .1em;
}

.page-main .main-visual .right .container a {
  display: block;
  margin-top: 110px;
}

.page-main .main-visual .right .container a p {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-size: .9375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
}

.page-main .main-visual .right .container a span {
  display: block;
  width: 17px;
  height: 8px;
  margin: 20px auto 0;
  -webkit-animation: scroll 2s ease-in-out infinite .5s;
  animation: scroll 2s ease-in-out infinite .5s;
  background-image: url("../img/index/icon_scroll_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.page-main .collection {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page-main .collection .left {
  position: relative;
  width: 50%;
}

.page-main .collection .left .container {
  width: 62.5%;
  margin-top: 80px;
  margin-left: 20.9%;
}

.page-main .collection .left .container .no-area .no {
  font-family: 'Quicksand', sans-serif;
  font-size: 70px;
  font-size: 4.375rem;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
  margin-right: 15px;
  letter-spacing: .02em;
}

.page-main .collection .left .container .no-area .txt {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-size: .6875rem;
  font-weight: 400;
  line-height: 1.54;
  display: inline-block;
  margin-top: 5px;
  vertical-align: top;
  letter-spacing: .06em;
}

.page-main .collection .left .container h2 {
  margin: 30px 0 20px;
}

.page-main .collection .left .container h2 span {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: table;
  overflow: hidden;
  padding: 8px;
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  white-space: nowrap;
  letter-spacing: .14em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.page-main .collection .left .container h2 span:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 0.61, 0.36, 1);
  -webkit-transition-delay: .5s;
  transition-delay: .5s;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: top right;
  -ms-transform-origin: top right;
  transform-origin: top right;
}

.page-main .collection .left .container h2 span:nth-of-type(2) {
  margin-top: 5px;
}

.page-main .collection .left .container h2.active span {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.page-main .collection .left .container h2.active span:after {
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.page-main .collection .left .container .lead {
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .08em;
}

.page-main .collection .left .container dl {
  position: absolute;
  bottom: 70px;
  left: 20.9%;
  width: 62.5%;
}

.page-main .collection .left .container dl dt {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: .08em;
}

.page-main .collection .left .container dl dd ul li {
  font-size: 0;
}

.page-main .collection .left .container dl dd ul li figure {
  display: inline-block;
  width: 72px;
  vertical-align: middle;
}

.page-main .collection .left .container dl dd ul li .item-txt {
  display: inline-block;
  width: calc(85.2% - 145px);
  padding-right: 10%;
  padding-left: 4.8%;
  vertical-align: middle;
}

.page-main .collection .left .container dl dd ul li .item-txt p {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .08em;
}

.page-main .collection .left .container dl dd ul li .item-txt p span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.page-main .collection .left .container dl dd ul li .buy-btn {
  display: inline-block;
}

.page-main .collection .left .container dl dd ul li .buy-btn a {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 25px;
  display: block;
  width: 65px;
  height: 25px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-align: center;
  vertical-align: middle;
  letter-spacing: .1em;
  border: 1px #000 solid;
}

.page-main .collection .left .container dl dd ul li .buy-btn a:hover {
  color: #fff;
  background-color: #000;
}

.page-main .collection .right {
  position: relative;
  width: 50%;
}

.page-main .collection .right figure {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 70.9%;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-main .collection.beige .left .container h2 span {
  background-color: #ebdac9;
}

.page-main .collection.beige .left .container h2 span:after {
  background-color: #ebdac9;
}

.page-main .collection.beige .right {
  background-color: #ebdac9;
}

.page-main .collection.blue .left .container h2 span {
  background-color: #cbd8dd;
}

.page-main .collection.blue .left .container h2 span:after {
  background-color: #cbd8dd;
}

.page-main .collection.blue .right {
  background-color: #cbd8dd;
}

.page-main .other-item {
  padding-top: 160px;
}

.page-main .other-item .container {
  width: 68.9%;
  min-width: 992px;
  margin: 0 auto;
  text-align: center;
}

.page-main .other-item .container h2 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 55px;
  letter-spacing: .25;
}

.page-main .other-item .container ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-main .other-item .container ul li {
  width: 20.2%;
}

.page-main .other-item .container ul li .item-txt {
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-main .other-item .container ul li .item-txt p {
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .08em;
}

.page-main .other-item .container ul li .item-txt p span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}

.page-main .other-item .container ul li a {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 25px;
  display: block;
  width: 65px;
  height: 25px;
  margin: 0 auto;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  text-align: center;
  vertical-align: middle;
  letter-spacing: .1em;
  border: 1px #000 solid;
}

.page-main .other-item .container ul li a:hover {
  color: #fff;
  background-color: #000;
}

.page-main .other-item .container .more-btn {
  font-size: 14px;
  font-size: .875rem;
  line-height: 80px;
  position: relative;
  display: block;
  width: 382px;
  height: 80px;
  margin: 90px auto 95px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
  letter-spacing: .15em;
  border-radius: 40px;
  background-color: #cbd8dd;
}

.page-main .other-item .container .more-btn:after {
  position: absolute;
  top: 33px;
  right: 32px;
  width: 7px;
  height: 13px;
  content: '';
  background-image: url("../img/index/btn_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

.page-main .other-item .container .more-btn:hover {
  opacity: .7 !important;
}

.page-main .credit {
  text-align: center;
}

.page-main .credit dl dt {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-size: .8125rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: .09em;
}

.page-main .credit dl dd {
  font-size: 12px;
  font-size: .75rem;
  line-height: 1.6;
  letter-spacing: .1em;
}

.side-ttl {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-size: .875rem;
  font-weight: 400;
  position: fixed;
  top: 84px;
  left: 40px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  letter-spacing: .06em;
  -ms-writing-mode: tb-rl;
  opacity: 0;
  color: #5a5a5a;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
}

.side-ttl.active {
  opacity: 1;
}

.pagenation {
  position: fixed;
  bottom: 20px;
  left: 40px;
  height: 252px;
  opacity: 0;
}

.pagenation li {
  position: relative;
  margin: 18px 0;
}

.pagenation li a {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-size: .75rem;
  font-weight: 400;
  display: block;
  cursor: pointer;
  color: #5a5a5a;
}

.pagenation li a.active:after {
  position: absolute;
  top: 4px;
  right: -6px;
  display: block;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 50%;
  background-color: #5a5a5a;
}

.pagenation li:first-child,
.pagenation li:last-child {
  display: none;
}

.pagenation.is-active {
  opacity: 1;
}

.online-link-btn {
  position: fixed;
  z-index: 300;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 62px;
  height: 63px;
  color: #000;
}

.online-link-btn:hover {
  color: #000;
}

.online-link-btn__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.online-link-btn__text {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-animation-name: rotation;
  animation-name: rotation;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@media only screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
  .fade-in-pc,
  .fade-in-pc--2 {
    opacity: 0;
  }
  .fade-in-pc.is-animated,
  .fade-in-pc--2.is-animated {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .rellax {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
  }
  .rellax--1 {
    top: 250px !important;
  }
  .rellax--2 {
    top: -150px !important;
  }
  .rellax--3 {
    top: 600px !important;
  }
  .rellax--4 {
    top: 150px !important;
  }
  .rellax--5 {
    top: 200px !important;
  }
  .rellax--6 {
    top: 700px !important;
  }
  .page-top-btn:hover {
    opacity: .8;
  }
  .sns-list > li > a:hover {
    opacity: .8;
  }
  .page-header {
    height: 80px;
  }
  .page-header__logo {
    width: 160px;
    height: 36px;
  }
  .page-header__archive-list {
    left: 20px;
  }
  .online-link-btn:hover {
    opacity: .8;
  }
}

@media only screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
  .fade-in-sp {
    opacity: 0;
  }
  .fade-in-sp.is-animated {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  .page-footer__copyright {
    font-size: 9px;
    font-size: .5625rem;
    margin-bottom: 30px;
  }
  .page-top-btn {
    line-height: 52px;
    height: 52px;
  }
  .page-header {
    height: 30px;
  }
  .page-header__logo {
    top: 80%;
    width: 110px;
  }
  .page-main .main-visual {
    display: block;
    padding-top: 75px;
  }
  .page-main .main-visual .left {
    position: static;
    width: 100%;
  }
  .page-main .main-visual .left ul {
    position: static;
    width: 87.4%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .page-main .main-visual .left ul li {
    width: 48.9%;
  }
  .page-main .main-visual .left ul li:nth-child(n+3) {
    margin-top: 6.5px;
  }
  .page-main .main-visual .right {
    position: static;
    width: 100%;
  }
  .page-main .main-visual .right .container {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 40px;
    padding-bottom: 65px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .page-main .main-visual .right .container h2 {
    font-size: 14px;
    font-size: .875rem;
  }
  .page-main .main-visual .right .container h1 {
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.25;
    margin: 20px 0 40px;
  }
  .page-main .main-visual .right .container p {
    font-size: 12px;
    font-size: .75rem;
    letter-spacing: .025em;
  }
  .page-main .main-visual .right .container a {
    margin: 35px 0 45px;
  }
  .page-main .main-visual .right .container a p {
    font-size: 12px;
    font-size: .75rem;
  }
  .page-main .main-visual .right .container a span {
    width: 30px;
    height: 11px;
    margin-top: 2px;
  }
  .page-main .collection {
    flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
  }
  .page-main .collection .left {
    width: 100%;
    margin-top: 25px;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .page-main .collection .left .container {
    width: 84%;
    margin: 0 auto 50px;
  }
  .page-main .collection .left .container .no-area .no {
    font-size: 55px;
    font-size: 3.4375rem;
  }
  .page-main .collection .left .container h2 {
    margin: 25px 0 15px;
  }
  .page-main .collection .left .container h2 span {
    font-size: 15px;
    font-size: .9375rem;
  }
  .page-main .collection .left .container .lead {
    font-size: 12px;
    font-size: .75rem;
  }
  .page-main .collection .left .container dl {
    position: static;
    width: 100%;
    margin-top: 25px;
  }
  .page-main .collection .left .container dl dt {
    font-size: 13px;
    font-size: .8125rem;
  }
  .page-main .collection .left .container dl dd ul li figure {
    width: 65px;
  }
  .page-main .collection .left .container dl dd ul li .item-txt {
    width: calc(91.2% - 130px);
    padding-right: 4.7%;
    padding-left: 4%;
  }
  .page-main .collection .left .container dl dd ul li .buy-btn a {
    font-size: 12px;
    font-size: .75rem;
    width: 60px;
  }
  .page-main .collection .left .container dl dd ul li:nth-child(n+2) {
    margin-top: 7px;
  }
  .page-main .collection .right {
    width: 100%;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .page-main .collection .right:before {
    display: block;
    padding-top: 100%;
    content: '';
  }
  .page-main .collection .right figure {
    width: 80%;
  }
  .page-main .other-item {
    padding-top: 10px;
  }
  .page-main .other-item .container {
    width: 83%;
    min-width: 83%;
  }
  .page-main .other-item .container h2 {
    font-size: 13px;
    font-size: .8125rem;
    margin-bottom: 25px;
  }
  .page-main .other-item .container ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .page-main .other-item .container ul li {
    width: 48%;
  }
  .page-main .other-item .container ul li:nth-child(n+3) {
    margin-top: 25px;
  }
  .page-main .other-item .container ul li .item-txt {
    margin-top: 10px;
    margin-bottom: 12px;
  }
  .page-main .other-item .container ul li .item-txt p {
    font-size: 11px;
    font-size: .6875rem;
    letter-spacing: 0;
  }
  .page-main .other-item .container ul li .item-txt p span {
    letter-spacing: .08em;
  }
  .page-main .other-item .container ul li a {
    font-size: 12px;
    font-size: .75rem;
    width: 60px;
  }
  .page-main .other-item .container .more-btn {
    font-size: 12px;
    font-size: .75rem;
    line-height: 60px;
    width: 92.2%;
    height: 60px;
    margin: 40px auto 60px;
    border-radius: 30px;
  }
  .page-main .other-item .container .more-btn:after {
    top: 25px;
    right: 21px;
    width: 6px;
    height: 10px;
  }
  .page-main .credit dl dt {
    font-size: 12px;
    font-size: .75rem;
  }
  .page-main .credit dl dd {
    font-size: 11px;
    font-size: .6875rem;
  }
  .side-ttl {
    display: none;
  }
  .pagenation {
    display: none;
  }
}
