@charset "UTF-8";
/*------------------------------------------------------------
	Reset
------------------------------------------------------------*/
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, dialog, figure, footer, header,
nav, section,
time, mark, audio, video {
  font-size: 1em;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
}

body, table,
input, textarea, select, option,
h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

table,
input, textarea, select, option {
  line-height: 1.1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a,
a img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:hover img {
  opacity: 0.80;
  filter: alpha(opacity=80);
  -ms-filter: "alpha(opacity=80)";
}

img {
  max-width: 100%;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1400;
  pointer-events: none;
}

.c-header__inner {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    max-width: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0 45px 45px;
  border-style: solid;
  border-color: rgba(185, 185, 185, 0.8);
  border-right-width: 1px;
  pointer-events: all;
}

@media only screen and (max-width: 1024px) {
  .c-header__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
    border-right: none;
    padding: 35px 165px 35px 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media only screen and (max-width: 812px) {
  .c-header__inner {
    padding: 30px 110px 30px 35px;
  }
}

@media only screen and (max-width: 450px) {
  .c-header__inner {
    padding: 20px 80px 20px 22px;
  }
}

.c-header__logo {
  width: 130px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
  position: relative;
}
@media only screen and (max-width: 1024px) {
	.c-header__logo {
	  width: 100px;
  }
}
.c-header__logo a:hover {
  opacity: 1;
}

.c-header__logo a:hover .c-header__logo__white {
  opacity: 0;
}

.c-header__logo a:hover .c-header__logo__black {
  opacity: 1;
}

.c-header__logo__white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  z-index: 2;
}

@media only screen and (max-width: 812px) {
  .c-header__logo {
    width: 80px;
  }
}
@media only screen and (max-width: 450px) {
  .c-header__logo {
    width: 65px;
  }
}

.c-header__navi {
  margin-top: 6px;
  margin-left: -5px;
}

.c-header__navi li {
  font-size: 1.8rem;
  letter-spacing: .7px;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.c-header__navi li:not(:last-child) {
  margin-bottom: 10px;
}

.c-header__navi li a {
  padding: 1px 5px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0ms;
  transition: 0ms;
}

.c-header__navi__link a:hover{
  background-color: #888888;
  color: white;
}

.c-header__auth li {
  font-size: 1.5rem;
  letter-spacing: .6px;
}

.c-header__auth li:not(:last-child) {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1024px) {
  .c-header__auth li:not(:last-child) {
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 812px) {
  .c-header__auth li {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 1024px) {
  .c-header__auth ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-header__auth__seq {
  margin: 0 15px;
}

@media only screen and (max-width: 812px) {
  .c-header__auth__seq {
    margin: 0 8px;
  }
}

.c-header__mega {
  -ms-flex-preferred-size: calc(100% - 235px);
      flex-basis: calc(100% - 235px);
  max-width: calc(100% - 235px);
  padding: 57px 80px 0 80px;
  overflow: auto;
  display: none;
  pointer-events: all;
}

.c-header__mega .c-btn1 {
  margin-top: 83px;
  margin-bottom: 57px;
}

.c-header__name {
  font-size: 4.8rem;
  color: white;
  font-weight: normal;
  letter-spacing: .7px;
  margin-bottom: 27px;
}

.c-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}

.c-header.open-mega::before {
  opacity: 0.9;
}

.c-header.is-white .c-header__logo a:hover {
  opacity: 1;
}

.c-header.is-white .c-header__logo a:hover .c-header__logo__white {
  opacity: 1;
}

.c-header.is-white .c-header__logo a:hover .c-header__logo__black {
  opacity: 0;
}

.c-header.is-white .c-header__logo__white {
  opacity: 1;
}

.c-header.is-white .c-header__logo__black {
  opacity: 0;
}

.c-header.is-white .c-header__navi {
  color: white;
}

.c-header.is-white .c-header__auth {
  color: white;
}

.c-header.is-white .c-header__inner {
  border-color: rgba(243, 243, 243, 0.8);
}

@media only screen and (max-width: 1024px) {
  .c-header.is-white .c-header__inner {
    border-bottom-width: 1px;
  }
}

.c-header.no-effect .c-header__logo {
  -webkit-transition: 0ms;
  transition: 0ms;
}

.c-header.no-effect .c-header__logo img {
  -webkit-transition: 0ms;
  transition: 0ms;
}

.c-header.no-effect .c-header__navi li {
  -webkit-transition: 0ms;
  transition: 0ms;
}

.c-header.no-effect .c-header__auth a {
  -webkit-transition: 0ms;
  transition: 0ms;
}

@media only screen and (max-width: 1024px) {
  .c-header {
    display: block;
    height: auto;
  }
}

/* Main menu
------------------------------------------------------------*/
.c-gnavi {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1450;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}

.c-gnavi__btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 55px;
  right: 65px;
  z-index: 999;
  cursor: pointer;
  pointer-events: all;
}

.c-gnavi__btn span {
  display: block;
  width: 45px;
  height: 2px;
  background-color: black;
  margin: 6px 0;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__btn span {
    width: 30px;
    margin: 4px 0;
  }
}

.c-gnavi__btn.is-white span {
  background-color: white;
}

@media only screen and (max-width: 1024px) {
  .c-gnavi__btn {
	top: 35px;
    right: 60px;
  }
}

@media only screen and (max-width: 812px) {
  .c-gnavi__btn {
    width: 30px;
    height: 30px;
    top: 32px;
    right: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-gnavi__btn {
    top: 20px;
    right: 25px;
  }
}

.c-gnavi__wrapper {
  position: absolute;
  top: 0;
  right: -525px;
  background-color: black;
  color: white;
  width: 525px;
  height: 100vh;
  -webkit-transition: right 500ms ease-in-out;
  transition: right 500ms ease-in-out;
  pointer-events: all;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__wrapper {
    right: -46.09%;
    width: 46.09%;
  }
}

@media only screen and (max-width: 450px) {
  .c-gnavi__wrapper {
    right: -85.5%;
    width: 85.5%;
  }
}

.c-gnavi__inner {
  padding: 122px 60px 57px 60px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__inner {
    padding: 85px 30px 40px 30px;
  }
}

.c-gnavi__inner__btn {
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 55px;
  right: 65px;
  z-index: 1;
  cursor: pointer;
  pointer-events: all;
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  .c-gnavi__inner__btn {
    top: 35px;
    right: 60px;
  }
}


.c-gnavi__inner__btn span {
  display: block;
  width: 45px;
  height: 2px;
  background-color: white;
  margin: 6px 0;
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__inner__btn span {
    width: 30px;
    margin: 4px 0;
  }
}

@media only screen and (max-width: 812px) {
  .c-gnavi__inner__btn {
    width: 30px;
    height: 30px;
    top: 20px;
    right: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-gnavi__inner__btn {
    top: 20px;
    right: 25px;
  }
}

.c-gnavi__logo {
  width: 77.27px;
  margin-bottom: 38px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__logo {
    width: 65px;
    margin-bottom: 37px;
  }
}

.c-gnavi__search {
  width: 100%;
  position: relative;
}

.c-gnavi__search input {
  width: 100%;
  height: 32px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid white;
  padding: 0 0 0 30px;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  font-size: 1.4rem;
  color: white;
  line-height: 1.1;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-gnavi__search input::-webkit-input-placeholder {
  line-height: normal !important;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__search input {
    font-size: 1.3rem;
    padding-bottom: 5px;
    letter-spacing: 0px;
  }
}

.c-gnavi__search img {
  position: absolute;
  top: 8px;
  left: 0;
  width: 15px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__search img {
    top: 6px;
    width: 14px;
  }
}

.c-gnavi__link {
  padding: 45px 0 30px 0;
  border-bottom: 1px solid #444444;
}

.c-gnavi__link > li {
  font-size: 1.8rem;
  padding-bottom: 13px;
  width: 100%;
  letter-spacing: .4px;
}

.c-gnavi__link > li a {
  display: block;
  width: 100%;
}

.c-gnavi__link > li > ul {
  margin-top: 23px;
  margin-left: 20px;
  display: none;
}

.c-gnavi__link > li > ul > li {
  font-size: 1.6rem;
  margin-bottom: 7px;
  color: #A7A7A7;
  letter-spacing: .1px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__link > li {
    padding-bottom: 14px;
    font-size: 1.6rem;
  }
  .c-gnavi__link > li > ul > li {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 812px) {
  .c-gnavi__link {
    padding: 40px 0 25px 0;
  }
}

.c-gnavi__parent span {
  display: block;
  position: relative;
  cursor: pointer;
}

.c-gnavi__parent span::before {
  content: '';
  background-image: url(../img/common/icon_arrow3@2x.png);
  background-size: 15.76px 5.89px;
  width: 15.76px;
  height: 5.89px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) scaleY(-1);
          transform: translateY(-50%) scaleY(-1);
}

@media only screen and (max-width: 812px) {
  .c-gnavi__parent span::before {
    right: 10px;
  }
}

.c-gnavi__parent.is-open span::before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-gnavi__auth {
  padding: 23px 0 29px 0;
  border-bottom: 1px solid #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-gnavi__auth li {
  margin-right: 25px;
  font-size: 1.8rem;
  letter-spacing: .3px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__auth li {
    font-size: 1.6rem;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 812px) {
  .c-gnavi__auth {
    padding: 12px 0 15px 0;
  }
}

.c-gnavi__other {
  padding: 43px 0 32px 0;
  border-bottom: 1px solid #444444;
}

.c-gnavi__other li {
  font-size: 1.8rem;
  padding-bottom: 12px;
  letter-spacing: .3px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__other li {
    font-size: 1.6rem;
    padding-bottom: 14px;
  }
}

@media only screen and (max-width: 812px) {
  .c-gnavi__other {
    padding: 38px 0 26px 0;
  }
}

.c-gnavi__bottom {
  padding-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__bottom {
    padding-top: 17px;
  }
}

.c-gnavi__socials {
  font-size: 2.4rem;
}

.c-gnavi__socials a {
  margin-right: 22px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__socials a {
    margin-right: 12px;
  }
}

@media only screen and (max-width: 812px) {
  .c-gnavi__socials {
    font-size: 2rem;
    padding-left: 5px;
  }
}

.c-gnavi__copy {
  font-size: 1.2rem;
  letter-spacing: .45px;
}

@media only screen and (max-width: 812px) {
  .c-gnavi__copy {
    font-size: 1.1rem;
    letter-spacing: .2px;
  }
}

.c-gnavi__bg{
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}

.c-gnavi.is-open .c-gnavi__btn {
  opacity: 0;
  -webkit-transition: opacity 0ms 600ms;
  transition: opacity 0ms 600ms;
}

.c-gnavi.is-open .c-gnavi__btn span {
  margin: 0;
  background-color: white;
}

.c-gnavi.is-open .c-gnavi__btn span:nth-child(1) {
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}

.c-gnavi.is-open .c-gnavi__btn span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.c-gnavi.is-open .c-gnavi__btn.is-black span {
  background-color: white;
}

.c-gnavi.is-open .c-gnavi__inner__btn {
  opacity: 1;
  -webkit-transition: opacity 0ms 600ms;
  transition: opacity 0ms 600ms;
}

.c-gnavi.is-open .c-gnavi__inner__btn span {
  margin: 0;
}

.c-gnavi.is-open .c-gnavi__inner__btn span:nth-child(1) {
  -webkit-transform: translateY(50%) rotate(45deg);
          transform: translateY(50%) rotate(45deg);
}

.c-gnavi.is-open .c-gnavi__inner__btn span:nth-child(2) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.c-gnavi.is-open .c-gnavi__bg {
  opacity: 0.65;
  pointer-events: all;
}

.c-gnavi.is-open .c-gnavi__wrapper {
  right: 0;
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  background-color: #444444;
  color: white;
}

.c-footer .l-container {
  padding-top: 63px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 812px) {
  .c-footer .l-container {
    padding-top: 44px;
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer .l-container {
    padding-top: 42px;
    padding-bottom: 40px;
  }
}

.c-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 78px;
}

@media only screen and (max-width: 812px) {
  .c-footer__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer__top {
    margin-bottom: 41px;
  }
}

.c-footer__logo {
  width: 200px;
}

@media only screen and (max-width: 812px) {
  .c-footer__logo {
    width: 145.72px;
  }
}

.c-footer__socials {
  font-size: 2.3rem;
}

.c-footer__socials a {
  margin-left: 24px;
}

@media only screen and (max-width: 812px) {
  .c-footer__socials a {
    margin-left: 17px;
  }
}

@media only screen and (max-width: 812px) {
  .c-footer__socials {
    font-size: 1.9rem;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer__socials {
    font-size: 1.8rem;
    margin-right: 5px;
  }
}

.c-footer nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-footer nav > ul {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  width: 20%;
}

.c-footer nav > ul > li {
  margin-bottom: 14px;
  font-size: 1.5rem;
  letter-spacing: .7px;
}

.c-footer nav > ul > li > ul {
  margin-top: 13px;
}

.c-footer nav > ul > li > ul > li {
  color: #B9B9B9;
  font-size: 1.4rem;
}

.c-footer nav > ul > li > ul > li:not(:last-child) {
  margin-bottom: 14.5px;
}

@media only screen and (max-width: 812px) {
  .c-footer nav > ul > li > ul > li:not(:last-child) {
    margin-bottom: 9.7px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer nav > ul > li > ul > li:not(:last-child) {
    margin-bottom: 8.7px;
  }
}

@media only screen and (max-width: 812px) {
  .c-footer nav > ul > li > ul > li {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer nav > ul > li > ul > li {
    font-size: 1.4rem;
    letter-spacing: 0.3px;
  }
}

@media only screen and (max-width: 812px) {
  .c-footer nav > ul > li > ul {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer nav > ul > li > ul {
    margin-top: 22px;
    margin-left: 15px;
    margin-bottom: 22px;
    display: none;
  }
}

@media only screen and (max-width: 812px) {
  .c-footer nav > ul > li {
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: .6px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer nav > ul > li {
    font-size: 1.6rem;
    margin-bottom: 13px;
    letter-spacing: .3px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer nav > ul {
    width: 100%;
    padding: 23px 0 11px 0;
    border-top: 1px solid #B9B9B9;
  }
  .c-footer nav > ul:nth-child(1) {
    padding-top: 25px;
    padding-bottom: 0;
  }
  .c-footer nav > ul:nth-child(2) {
    padding-top: 0;
    padding-bottom: 0;
    border-top: none;
  }
  .c-footer nav > ul:nth-child(3) {
    padding-top: 0;
    border-top: none;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer nav {
    display: block;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer__nav__parent span {
    display: block;
    position: relative;
    cursor: pointer;
  }
  .c-footer__nav__parent span::before {
    content: '';
    background-image: url(../img/common/icon_arrow3@2x.png);
    background-size: 15.76px 5.89px;
    width: 15.76px;
    height: 5.89px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) scaleY(-1);
            transform: translateY(-50%) scaleY(-1);
  }
}

@media only screen and (max-width: 450px) and (max-width: 812px) {
  .c-footer__nav__parent span::before {
    right: 10px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer__nav__parent.is-open span::before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.c-footer__copy {
  font-size: 1.2rem;
  margin-top: 65px;
  letter-spacing: .45px;
}

@media only screen and (max-width: 812px) {
  .c-footer__copy {
    margin-top: 34px;
  }
}

@media only screen and (max-width: 450px) {
  .c-footer__copy {
    margin-top: 40px;
    font-size: 1.1rem;
    letter-spacing: .75px;
  }
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
body {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 1.4rem;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}

/*body.fadeout::after {
    opacity: 1;
}*/

@media only screen and (max-width: 450px) {
  body {
    min-width: 320px;
  }
}

.l-container {
  width: 100%;
  padding: 50px 80px 100px 300px;
}

@media only screen and (max-width: 1024px) {
  .l-container {
    padding: 60px;
  }
}

@media only screen and (max-width: 812px) {
  .l-container {
    padding: 50px 40px 40px;
  }
}

@media only screen and (max-width: 450px) {
  .l-container {
    padding: 25px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-btn1 {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 60px;
  height: 60px;
  border: 2px solid white;
  font-size: 1.8rem;
  color: white;
  letter-spacing: .8px;
  position: relative;
  -webkit-transition: 0ms;
  transition: 0ms;
}

.c-btn1::before {
  content: '';
  background-image: url(../img/common/icon_arrow1@2x.png);
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn1:hover {
  background-color: white;
  color: black;
  opacity: 1;
}

.c-btn1:hover::before {
  background-image: url(../img/common/icon_arrow1_black@2x.png);
}

.c-btn2 {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 60px;
  height: 60px;
  border: 2px solid black;
  font-size: 1.8rem;
  letter-spacing: .8px;
  position: relative;
  -webkit-transition: 0ms;
  transition: 0ms;
}

.c-btn2--jp {
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
}

.c-btn2::before {
  content: '';
  background-image: url(../img/common/icon_arrow1_black@2x.png);
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (max-width: 812px) {
  .c-btn2::before {
    right: 14px;
  }
}

.c-btn2:hover {
  background-color: black;
  color: white;
  opacity: 1;
}

.c-btn2:hover::before {
  background-image: url(../img/common/icon_arrow1@2x.png);
}

@media only screen and (max-width: 812px) {
  .c-btn2 {
    line-height: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

.c-btn3 {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  line-height: 60px;
  height: 60px;
  border: 2px solid black;
  font-size: 1.8rem;
  position: relative;
  -webkit-transition: 300ms;
  transition: 300ms;
  line-height: 54px;
  letter-spacing: 0.7px;
}

.c-btn3--jp {
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
}

.c-btn3::after {
  content: '';
  display: inline-block;
  background-image: url(../img/common/icon_loadmore_black@2x.png);
  background-size: 16px 6px;
  width: 16px;
  height: 6px;
  margin-left: 20px;
  -webkit-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  position: absolute;
  top: 50%;
    right: 25px;
}

@media only screen and (max-width: 812px) {
  .c-btn3::after {
    margin-left: 15px;
    right: 15px;
  }
}

.c-btn3:hover {
  background-color: black;
  color: white;
  opacity: 1;
}

.c-btn3:hover::after {
  background-image: url(../img/common/icon_loadmore_white@2x.png);
}

@media only screen and (max-width: 1024px) {
  .c-btn3 {
    font-size: 2rem;
    line-height: 45px;
  }
}

@media only screen and (max-width: 812px) {
  .c-btn3 {
    height: 50px;
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1 {
  font-size: 4rem;
  font-weight: normal;
  margin-bottom: 42px;
  letter-spacing: 1px;
  margin-top: -2px;
}

@media only screen and (max-width: 812px) {
  .c-title1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    letter-spacing: .8px;
  }
}

@media only screen and (max-width: 450px) {
  .c-title1 {
    letter-spacing: .6px;
  }
}

.c-title2 {
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #B9B9B9;
  margin-bottom: 50px;
  letter-spacing: 1.1px;
}

@media only screen and (max-width: 812px) {
  .c-title2 {
    font-size: 2rem;
    margin-bottom: 30px;
    letter-spacing: .8px;
  }
}

.c-title3 {
  font-size: 4.8rem;
  font-weight: normal;
  margin-bottom: 56px;
  letter-spacing: 1px;
  margin-top: -5px;
}

.c-title3 .c-title3__category {
  display: block;
  font-size: 2rem;
  margin-top: 13px;
  line-height: 1.1;
  font-weight: bold;
}

@media only screen and (max-width: 812px) {
  .c-title3 .c-title3__category {
    margin-top: 5px;
  }
}

.c-title3 .c-title3__tag {
  display: block;
  font-size: 2rem;
  margin-top: 13px;
  line-height: 1.1;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  letter-spacing: 0.3px;
}

@media only screen and (max-width: 812px) {
  .c-title3 .c-title3__tag {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 1024px) {
  .c-title3 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 812px) {
  .c-title3 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    letter-spacing: .8px;
  }
}

@media only screen and (max-width: 450px) {
  .c-title3 {
    letter-spacing: .6px;
  }
}

.c-title4 {
  font-size: 3.6rem;
  font-weight: normal;
  margin-bottom: 44px;
  letter-spacing: .8px;
  margin-top: -2px;
}

.c-title4 span {
  display: block;
  font-size: 2rem;
  margin-top: 13px;
  line-height: 1.1;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
}

@media only screen and (max-width: 1024px) {
  .c-title4 {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 812px) {
  .c-title4 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    letter-spacing: .5px;
  }
}

@media only screen and (max-width: 450px) {
  .c-title4 {
    letter-spacing: .6px;
  }
}

/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-paragraph1 {
  font-size: 1.8rem;
  line-height: 2.22;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  letter-spacing: .35px;
}

@media only screen and (max-width: 812px) {
  .c-paragraph1 {
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0px;
  }
  .c-paragraph1 br {
    display: none;
  }
}

.c-paragraph2 {
  font-size: 2.8rem;
  line-height: 1.57;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  letter-spacing: .5px;
}

@media only screen and (max-width: 812px) {
  .c-paragraph2 {
    font-size: 2.1rem;
    line-height: 1.62;
  }
}

.c-paragraph3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-paragraph3__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.06%;
          flex: 0 0 58.06%;
  width: 58.06%;
  margin-right: 60px;
}

@media only screen and (max-width: 1024px) {
  .c-paragraph3__img {
    -ms-flex-preferred-size: 49.67%;
        flex-basis: 49.67%;
    width: 49.67%;
  }
}

@media only screen and (max-width: 812px) {
  .c-paragraph3__img {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
    width: calc(50% - 15px);
    margin-right: 30px;
  }
}

@media only screen and (max-width: 450px) {
  .c-paragraph3__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 29px;
  }
}

.c-paragraph3__text {
  margin-top: -7px;
}

@media only screen and (max-width: 812px) {
  .c-paragraph3__text {
    margin-top: -3px;
  }
}

.c-paragraph3 p {
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  font-size: 1.6rem;
  line-height: 2.1875;
}

@media only screen and (max-width: 812px) {
  .c-paragraph3 p {
    font-size: 1.4rem;
    line-height: 1.86;
  }
}

.c-paragraph3 .c-btn3 {
  margin-top: 36px;
}

@media only screen and (max-width: 812px) {
  .c-paragraph3 .c-btn3 {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 450px) {
  .c-paragraph3 {
    display: block;
  }
}

/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-navi1 {
  border-top: 1px solid #B9B9B9;
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.c-navi1__main li {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: .7px;
}

.c-navi1__main li a{
  text-decoration: underline;
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li a {
    padding: 13.5px 0;
    display: block;
  }
}

.c-navi1__main li.current-menu-item {
  font-weight: bold;
}

.c-navi1__main li.current-menu-item a{
  text-decoration: none;
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li.current-menu-item {
    font-weight: normal;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li:first-child {
    border-top: 1px solid #B9B9B9;
  }
}

.c-navi1__main li:not(:last-child)::after {
  content: '|';
  margin: 0 17.7px;
  color: #B9B9B9;
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li:not(:last-child)::after {
    display: none;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li::before {
    content: '';
    background-image: url(../img/common/icon_arrow1_black@2x.png);
    background-size: 6px 9px;
    width: 6px;
    height: 9px;
    position: absolute;
    top: 50%;
    right: 16px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media only screen and (max-width: 450px) {
  .c-navi1__main li::before {
    right: 10px;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li {
    display: block;
    border-bottom: 1px solid #B9B9B9;
    font-size: 1.5rem;
    position: relative;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1__main li a{
    text-decoration: none;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1__main {
    position: absolute;
    top: 0;
    left: -25px;
    background-color: #E8E8E8;
    z-index: 1;
    display: none;
    padding: 80px 25px 50px 25px;
    width: calc(100% + 50px);
  }
}

.c-navi1__option {
  display: none;
  position: absolute;
  top: 0;
  padding-top: 108px;
  background-color: #E8E8E8;
  z-index: 1;
  padding-right: 100px;
  padding-bottom: 52px;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .c-navi1__option {
    padding-right: 0;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1__option {
    left: -25px;
    padding: 80px 15px 50px 20px;
    width: calc(100% + 50px);
  }
}

.c-navi1__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-navi1__btn button {
  background-color: transparent;
  border: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: neue-haas-grotesk-display, sans-serif;
  letter-spacing: .5px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border-bottom: 2px solid transparent;
  color:#000;
}

.c-navi1__btn button::after {
  content: '';
  display: inline-block;
  background-image: url(../img/common/icon_plus@2x.png);
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}

@media only screen and (max-width: 812px) {
  .c-navi1__btn button::after {
    background-size: 10px 10px;
    width: 10px;
    height: 10px;
    margin-left: 2px;
  }
}

.c-navi1__btn button.is-active {
  border-bottom: 2px solid black;
}

.c-navi1__btn button.is-active::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-navi1__btn button:not(:last-child) {
  margin-right: 18px;
}

@media only screen and (max-width: 812px) {
  .c-navi1__btn button {
    font-size: 1.4rem;
  }
}

.c-navi1__btn__main {
  display: none;
}

@media only screen and (max-width: 812px) {
  .c-navi1__btn__main {
    display: block;
  }
}

@media only screen and (max-width: 812px) {
  .c-navi1 {
    padding-top: 12px;
    margin-bottom: 30px;
  }
}

/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-journal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -45px;
  margin-bottom: -60px;
}

.c-journal__item {
  -ms-flex-preferred-size: calc(50% - 45px);
      flex-basis: calc(50% - 45px);
  width: calc(50% - 45px);
  margin-left: 45px;
  margin-bottom: 57px;
}

@media only screen and (max-width: 812px) {
  .c-journal__item {
    -ms-flex-preferred-size: calc(50% - 30px);
        flex-basis: calc(50% - 30px);
    width: calc(50% - 30px);
    margin-left: 30px;
    margin-bottom: 43px;
  }
}

@media only screen and (max-width: 450px) {
  .c-journal__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    margin-left: 0;
    margin-bottom: 43px;
  }
}

@media only screen and (max-width: 812px) {
  .c-journal {
    margin-left: -30px;
    margin-bottom: -45px;
  }
}

@media only screen and (max-width: 450px) {
  .c-journal {
    margin-left: 0;
    margin-bottom: -45px;
  }
}

.c-list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -18px;
  margin-bottom: -47px;
}

.c-list1__item {
  -ms-flex-preferred-size: calc(25% - 18px);
      flex-basis: calc(25% - 18px);
  width: calc(25% - 18px);
  margin-left: 18px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1024px) {
  .c-list1__item {
    margin-bottom: 43px;
  }
}

@media only screen and (max-width: 812px) {
  .c-list1__item {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 450px) {
  .c-list1__item {
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
    width: calc(50% - 15px);
    margin-left: 15px;
    margin-bottom: 29px;
  }
}

@media only screen and (max-width: 812px) {
  .c-list1 {
    margin-bottom: -30px;
  }
}

@media only screen and (max-width: 450px) {
  .c-list1 {
    margin-left: -15px;
  }
}

.c-shoplist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -25px;
}

.c-shoplist li {
  -ms-flex-preferred-size: calc(33.33% - 25px);
      flex-basis: calc(33.33% - 25px);
  width: calc(33.33% - 25px);
  margin-left: 25px;
  margin-bottom: 8px;
}

.c-shoplist li a {
  display: block;
  width: 100%;
  position: relative;
  font-size: 2.2rem;
  color: #888888;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  border-bottom: 2px solid transparent;
  -webkit-transition: 0ms;
  transition: 0ms;
  letter-spacing: .3px;
}

.c-shoplist li a::before {
  content: '';
  background-image: url(../img/common/icon_arrow1_black@2x.png);
  background-size: 5.5px 9.82px;
  width: 5.5px;
  height: 9.82px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

@media only screen and (max-width: 812px) {
  .c-shoplist li a::before {
    right: 5px;
  }
}

@media only screen and (max-width: 450px) {
  .c-shoplist li a::before {
    right: 11px;
  }
}

.c-shoplist li a:hover {
  opacity: 1;
  color: black;
  border-bottom-color: black;
}

.c-shoplist li a:hover::before {
  display: block;
}

@media only screen and (max-width: 1024px) {
  .c-shoplist li a {
    color: black;
  }
  .c-shoplist li a::before {
    display: block;
  }
  .c-shoplist li a:hover {
    border-bottom-color: transparent;
  }
}

@media only screen and (max-width: 812px) {
  .c-shoplist li a {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 812px) {
  .c-shoplist li {
    -ms-flex-preferred-size: calc(50% - 40px);
        flex-basis: calc(50% - 40px);
    width: calc(50% - 40px);
    margin-left: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-shoplist li {
    width: 100%;
    margin-left: 0;
    margin-bottom: 1px;
  }
}

@media only screen and (max-width: 812px) {
  .c-shoplist {
    margin-left: -40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-shoplist {
    margin-left: 0;
    display: block;
  }
}

/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-recommend{
  position: relative;
}

.shopify-buy-frame--productSet{
  display: none !important;
}

.p-post .shopify-buy-frame--productSet{
  display: block !important;
}

.c-productslist .slick-list {
  overflow: visible;
}

.c-productslist .slick-track {
  margin: 0;
}

.c-productslist .slick-slide{
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.c-productslist .slick-slide:not(.slick-active){
  opacity: .3;
}

@media only screen and (max-width: 1024px) {
  .c-productslist {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: calc(100% + 120px);
    overflow-x: scroll;
    margin: 0 -60px;
    padding: 0 60px;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: -webkit-grab;
    cursor: grab;
  }
  .c-productslist::-webkit-scrollbar {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .c-productslist .c-product2 {
    width: 186px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 186px;
            flex: 0 0 186px;
    padding-right: 0;
    margin-right: 29px;
  }
  .c-productslist .c-product2:last-child {
    width: 246px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 246px;
            flex: 0 0 246px;
    padding-right: 60px;
  }
}

@media only screen and (max-width: 1024px) and (max-width: 812px) {
  .c-productslist .c-product2:last-child {
    width: 210px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 210px;
            flex: 0 0 210px;
  }
}

@media only screen and (max-width: 812px) {
  .c-productslist .c-product2 {
    width: 150px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    margin-right: 15px;
  }
}

.c-controllerlist {
  position: absolute;
  top: -80px;
  right: 18px;
}

.c-controllerlist .slick-arrow {
  background-color: transparent;
  padding: 0;
  border: 0;
  background-image: url(../img/common/icon_arrow6@2x.png);
  background-size: 10.5px 17px;
  background-repeat: no-repeat;
  background-position: center center;
  width: 30.5px;
  height: 37px;
  font-size: 0;
  cursor: pointer;
}

.c-controllerlist .slick-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 10px;
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-bottom: -28px;
}

@media only screen and (max-width: 450px) {
  .c-products {
    margin-left: 0;
    margin-bottom: -19px;
  }
}

.c-products__item {
  -ms-flex-preferred-size: calc(20% - 10px);
    flex-basis: calc(20% - 10px);
    max-width: calc(20% - 10px);
    margin-left: 10px;
    margin-bottom: 39px;
}


.c-products__item .c-product:hover{
  opacity: .5;
}

@media only screen and (max-width: 450px) {
  .c-products__item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    max-width: 50%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.c-product {
  -webkit-transition: 300ms ease-in-out;
  transition: 300ms ease-in-out;
}

.c-product__img {
  padding-top: 59.7%;
  position: relative;
}

.c-product__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 450px) {
  .c-product__img {
    padding-top: 70%;
    margin-bottom: 5px;
  }
}

.c-product__name {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .8px;
}

@media only screen and (max-width: 812px) {
  .c-product__name {
    font-size: 1.8rem;
    letter-spacing: .3px;
  }
}

@media only screen and (max-width: 450px) {
  .c-product__name {
    line-height: 1;
  }
}

.c-product--white{
  color: white;
}
.c-product--white .c-product__img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.c-card1 {
  width: 100%;
}

.c-card1__thumbnail {
  width: 100%;
  padding-top: 58.65%;
  position: relative;
  margin-bottom: 20px;
  background-color: #D9D9D9;
}

@media only screen and (max-width: 1024px) {
  .c-card1__thumbnail.c-card1__thumbnail--color  img{
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}

.c-card1__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

@media only screen and (max-width: 812px) {
  .c-card1__thumbnail {
    padding-top: 58.61%;
  }
}

@media only screen and (max-width: 450px) {
  .c-card1__text {
    padding-right: 25px;
  }
}

.c-card1__name {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .7px;
}

@media only screen and (max-width: 812px) {
  .c-card1__name {
    font-size: 1.5rem;
    letter-spacing: .3px;
    margin-bottom: -3px;
  }
}

.c-card1 p {
  font-size: 2rem;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  letter-spacing: .4px;
  line-height: 1.4;
  margin-top: 5px;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}

@media only screen and (max-width: 812px) {
  .c-card1 p {
    font-size: 1.8rem;
    letter-spacing: .1px;
    margin-top: 10px;
  }
}

.c-card1 p br{
  display: none;
}

.c-card1 hr {
  border: 0;
  border-bottom: 1px solid #B9B9B9;
  margin-top: 20px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 812px) {
  .c-card1 hr {
    margin-top: 20px;
    margin-bottom: 12px;
  }
}

.c-card1__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-card1__readmore {
  border-bottom: 1px solid #000;
  letter-spacing: .5px;
  line-height: 1.2;
}

@media only screen and (max-width: 812px) {
  .c-card1__readmore {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 450px) {
  .c-card1__readmore {
    letter-spacing: .4px;
  }
}
.c-card1__readmore a{
  display: inline-block;
}
.c-card1__info {
  font-size: 1.2rem;
  color: #555555;
  letter-spacing: .4px;
}

@media only screen and (max-width: 812px) {
  .c-card1__info {
    font-size: 1.1rem;
  }
}

.c-card1__seq {
  margin: 0 15px;
  display: inline-block;
}

@media only screen and (max-width: 450px) {
  .c-card1__seq {
    margin: 0 12px;
  }
}

.c-card1:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}

@media only screen and (max-width: 450px) {
  .c-card1 {
    width: calc(100% + 25px);
  }
}

.c-card2__thumbnail {
  position: relative;
  width: 100%;
  padding-top: 133.33%;
  background-color: #EBEBEB;
  margin-bottom: 15px;
}

.c-card2__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media only screen and (max-width: 450px) {
  .c-card2__thumbnail {
    margin-bottom: 13px;
  }
}

.c-card2__name {
  font-weight: bold;
  letter-spacing: .8px;
  margin-bottom: 4px;
}

.c-card2__price {
  font-size: 1.3rem;
  letter-spacing: .3px;
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100000;
  opacity: 0;
  -webkit-transition: 1000ms ease-in-out;
  transition: 1000ms ease-in-out;
  pointer-events: none;
}

.c-loading img {
  width: 250px;
  opacity: 0;
  -webkit-transition: 1000ms ease-in-out 1000ms;
  transition: 1000ms ease-in-out 1000ms;
}

@media only screen and (max-width: 812px) {
  .c-loading img {
    width: 170px;
  }
}

.c-loading.is-show {
  opacity: 1;
}

.c-loading.is-show img {
  opacity: 1;
}

.c-loading.is-hide {
  opacity: 0;
  -webkit-transition: 1000ms ease-in-out;
  transition: 1000ms ease-in-out;
}

.c-loading.is-hide img {
  opacity: 0;
  -webkit-transition: 1000ms ease-in-out;
  transition: 1000ms ease-in-out;
}

.c-tags {
  margin: -9px -8px;
}

.c-tags li {
  display: inline-block;
}

.c-tags a {
  display: block;
  padding: 4px 20px;
  background-color: #D9D9D9;
  border-radius: 4px;
  margin: 9px 7px;
  font-size: 1.5rem;
  line-height: 1.7;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  font-weight: bold;
  -webkit-transition: 300ms;
  transition: 300ms;
  letter-spacing: 0.1px;
}

.c-tags a:hover {
  background-color: black;
  color: white;
  opacity: 1;
}

@media only screen and (max-width: 812px) {
  .c-tags a {
    font-size: 1.4rem;
    margin: 5.5px 4px;
    padding: 1px 15px;
    letter-spacing: 0.15px;
  }
}

@media only screen and (max-width: 812px) {
  .c-tags {
    margin: -5.5px -4px;
  }
}

.c-tags--light a {
  background-color: #E8E8E8;
}

.c-post .u-hr1{
  width: 87%;
}

@media only screen and (max-width: 1024px) {
  .c-post .u-hr1{
    width: 100%;
  }
}
@media only screen and (max-width: 450px) {
  .c-post .u-hr1{
    margin-top: -10px;
  }
}

.c-post__subtitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: .8px;
  width: 87%;
  margin-left: 0px;
}

@media only screen and (max-width: 1024px) {
  .c-post__subtitle {
    width: 100%;
  }
}

@media only screen and (max-width: 812px) {
  .c-post__subtitle {
    font-size: 1.6rem;
    margin-bottom: 10px;
    letter-spacing: .7px;
  }
}

.c-post__title {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: normal;
  margin-bottom: 20px;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  width: 87%;
  text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}

@media only screen and (max-width: 1024px) {
  .c-post__title {
    width: 100%;
  }
}

@media only screen and (max-width: 812px) {
  .c-post__title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}

/*@media only screen and (max-width: 450px) {
  .c-post__title br{
    display: none;
  }
}*/

.c-post__head {
  font-size: 1.5rem;
  color: #555555;
  margin-bottom: 53px;
  letter-spacing: .6px;
  margin-left: 2px;
}

.c-post__head__seq {
  margin: 0 15px;
}

@media only screen and (max-width: 812px) {
  .c-post__head {
    font-size: 1.3rem;
    letter-spacing: .5px;
    margin-bottom: 45px;
  }
}

.c-post__mainvisual {
  margin-bottom: 74px;
  margin-right: -80px;
}

.c-post__mainvisual img{
  width: 100%;
}

@media only screen and (max-width: 812px) {
  .c-post__mainvisual {
    margin-right: -40px;
    margin-bottom: 41px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__mainvisual {
    margin: 0 -25px 40px -25px;
  }
}

.c-post__body {
  position: relative;
}

.c-post__main {
  width: 87%;
}

@media only screen and (max-width: 1024px) {
  .c-post__main {
    width: 100%;
  }
}

.c-post__side {
  position: absolute;
  top: 0;
  right: -20px;
  height: calc(100% + 216px);
  max-height: 100vh;
  width: 227px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 156px;
  padding-bottom: 60px;
  margin-top: -150px;
  align-items: flex-end;
}

.c-post__side.is-fixed {
  position: fixed;
  right: 60px;
  margin-top: 0;
}

.c-post__side.is-stoped {
  position: absolute;
  top: auto;
  bottom: 0;
  right: -20px;
}

.c-post__side__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 400px;
  width: 100%;
  justify-content: flex-end;
}

.c-post__side__subtitle {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  margin-left: 7px;
  letter-spacing: .6px;
}

.c-post__side__title {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.8rem;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  line-height: 1.47;
  letter-spacing: 1px;
}

.c-post__side__bottom {
  padding-right: 7px;
  margin-top: auto;
}

@media only screen and (max-width: 1024px) {
  .c-post__side {
    display: none;
  }
}

.c-post__btnnav {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid black;
  margin-left: auto;
  margin-top: 15px;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-post__btnnav img {
  height: 12px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-post__btnnav__white {
  z-index: 1;
  opacity: 0;
}

.c-post__btnnav:hover {
  opacity: 1;
  background-color: black;
}

.c-post__btnnav:hover img {
  opacity: 1;
}

.c-post__btnnav--prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.c-post__excerpt {
  font-size: 1.8rem;
  line-height: 2;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  /*padding-bottom: 74px;*/
/*  border-bottom: 1px solid #B9B9B9;*/
  /*margin-bottom: 99px;*/
  text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}
.c-row_top{
  margin-bottom: 100px;
      padding: 40px 0 80px 0;
  border-bottom: 1px solid #B9B9B9;
}
.c-row_top .c-socials a i{
  margin-right: 7px;
}
.c-row_top .c-socials a img{
  margin-right: 16px;
}
@media only screen and (max-width: 1024px) {
.c-row.c-row_top{
  padding: 43px 0 81px 0;
      margin-bottom: 80px;
}
}

@media only screen and (max-width: 812px) {
  .c-post__excerpt {
    font-size: 1.5rem;
    line-height: 1.86;
  }
  .c-row.c-row_top{
    margin-bottom: 45px;
    padding: 25px 0 45px 0;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__excerpt {
    line-height: 1.9;
  }
  .c-row.c-row_top{
    margin-bottom: 45px;
    padding: 25px 0 45px 0;
  }
}

.c-post__credit {
  font-size: 1.5rem;
  color: #777777;
  margin-top: 30px;
}

@media only screen and (max-width: 812px) {
  .c-post__credit {
    font-size: 1.3rem;
    margin-top: 18px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__credit {
    margin-top: 16px;
  }
}

.c-post__profile {
  margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #b9b9b9;
}

@media only screen and (max-width: 812px) {
  .c-post__profile {
    margin-bottom: 60px;
    padding-bottom: 15px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__profile {
    margin-bottom: 45px;
    padding-bottom: 15px;
  }
}

.c-post__content {
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  padding-bottom: 80px;
}

.c-post__content .heading {
  margin-top: 80px;
  font-size: 2.4rem;
  margin-bottom: 50px;
  letter-spacing: .3px;
  line-height: 1.4;
  display: block;
  text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}

@media only screen and (max-width: 812px) {
  .c-post__content .heading {
    font-size: 2rem;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content .heading {
    line-height: 1.5;
    margin-top: 45px;
    margin-bottom: 30px;
  }
}

.c-post__content .interview_name {
  margin-right: 45px;
  font-weight: bold;
  letter-spacing: .2px;
  color: black;
  min-width: 30px;
    display: inline-block;
}

@media only screen and (max-width: 812px) {
  .c-post__content .interview_name {
    margin-right: 29px;
  }
}

.c-post__content .note {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 58px;
  color: #777777;
}

@media only screen and (max-width: 812px) {
  .c-post__content .note {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content .note {
    margin-bottom: 37px;
    line-height: 1.9;
  }
}

.c-post__content p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 45px;
  color: #333333;
  text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}
.c-post__content p:last-child {
    margin-bottom: 0;
}
@media only screen and (max-width: 812px) {
  .c-post__content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content p {
    margin-bottom: 30px;
    line-height: 1.9;
  }
}

.c-post__content ul {
  font-size: 1.6rem;
  line-height: 2;
  color: black;
}

@media only screen and (max-width: 812px) {
  .c-post__content ul {
    font-size: 1.5rem;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content ul {
    line-height: 1.9;
  }
}

.c-post__content ul li::before {
  content: '・';
}

.c-post__content img {
  margin-bottom: 64px;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 812px) {
  .c-post__content img {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content img {
    margin-bottom: 30px;
  }
}

.c-post__content .wp-caption-text {
  display: block;
  margin-top: -50px;
  margin-bottom: 50px;
  color: #777777;
  line-height: 1.6;
}

.c-post__content .wp-caption-text::before {
  content: '▲ ';
}

@media only screen and (max-width: 812px) {
  .c-post__content .wp-caption-text {
    margin-top: -25px;
    margin-bottom: 35px;
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content .wp-caption-text {
    margin-top: -20px;
  }
}

.c-post__content a {
  border-bottom: 1px solid #000;
  background-color: #CCCCCC;
  line-break: anywhere;
}

@media only screen and (max-width: 812px) {
  .c-post__content {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__content {
    padding-bottom: 60px;
  }
}

.c-post__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #B9B9B9;
  border-bottom: 1px solid #B9B9B9;
  padding: 45px 45px 45px 0;
  margin-bottom: 100px;
}

.c-post__info__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 360px;
          flex: 0 0 360px;
  width: 360px;
  margin-right: 50px;
}

@media only screen and (max-width: 812px) {
  .c-post__info__photo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 300px;
            flex: 0 0 300px;
    width: 300px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__info__photo {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.c-post__info__content {
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  margin-top: 0px;
  text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}

.c-post__info__content a {
  text-decoration: underline;
  font-weight: bold;
}

.c-post__info__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
}

@media only screen and (max-width: 812px) {
  .c-post__info__title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
}

.c-post__info__text {
  line-height: 1.86;
  margin-bottom: 20px;
}

@media only screen and (max-width: 812px) {
  .c-post__info__text {
    font-size: 1.3rem;
    line-height: 1.85;
    margin-bottom: 14px;
  }
}

.c-post__info__detail {
  font-size: 1.3rem;
  line-height: 1.85;
}

@media only screen and (max-width: 812px) {
  .c-post__info__detail {
    font-size: 1.2rem;
    line-height: 1.83;
  }
}

@media only screen and (max-width: 812px) {
  .c-post__info {
    padding: 40px 0;
    margin-bottom: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .c-post__info {
    display: block;
    padding: 30px 0;
    margin-bottom: 60px;
  }
}

.c-card3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}

.c-card3__photo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 150px;
          flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
}

@media only screen and (max-width: 812px) {
  .c-card3__photo {
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
    width: 130px;
    height: 130px;
  }
}

@media only screen and (max-width: 450px) {
  .c-card3__photo {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.c-card3__info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt" 1;
    letter-spacing: .5px;
}

.c-card3__name {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 15px;
  letter-spacing: .1px;
}

@media only screen and (max-width: 812px) {
  .c-card3__name {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 450px) {
  .c-card3__name {
    margin-bottom: 17px;
    text-align: center;
  }
}

.c-card3__text {
  line-height: 1.86;
}

@media only screen and (max-width: 812px) {
  .c-card3__text {
    font-size: 1.3rem;
    line-height: 1.77;
  }
}

@media only screen and (max-width: 450px) {
  .c-card3__text {
    text-align: left;
  }
}

@media only screen and (max-width: 812px) {
  .c-card3 {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 450px) {
  .c-card3 {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
}

.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.c-row__name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  width: 100px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: 5px;
}

@media only screen and (max-width: 812px) {
  .c-row__name {
    font-size: 1.8rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75px;
            flex: 0 0 75px;
    width: 75px;
  }
}

@media only screen and (max-width: 812px) {
  .c-row {
    margin-bottom: 30px;
  }
}

.c-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;
}

.c-socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  height: 30px;
  color: #000;
  z-index: 2;
  position: relative;
}
.c-socials a:before{
  content: '';
  background-color: #9F9F9F;
  width: 30px;
  height: 30px;
  position: absolute;
  left:0;
  top:0;
  border-radius: 50%;
  z-index: -1;
}

.c-socials a i{
  color:#fff;
  width: 30px;
  text-align:center;
  margin-right: 15px;
}
.c-socials a img {
  width: 13px;
    margin-left: 8px;
    margin-right: 24px;
    margin-top: 3px;
}

.c-postnavi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-postnavi__prev {
  font-size: 2rem;
  letter-spacing: .5px;
}

@media only screen and (max-width: 812px) {
  .c-postnavi__prev {
    font-size: 1.6rem;
  }
}

.c-postnavi__next {
  text-align: right;
  font-size: 2rem;
  letter-spacing: .5px;
  margin-left: auto;
}

@media only screen and (max-width: 812px) {
  .c-postnavi__next {
    font-size: 1.6rem;
  }
}

.c-postnavi__back {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-bottom: 2px solid black;
  font-size: 1.8rem;
  letter-spacing: .5px;
}

@media only screen and (max-width: 812px) {
  .c-postnavi__back {
    font-size: 1.4rem;
  }
}

.c-product2 {
  padding-right: 29px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-product2__thumbnail {
  width: 100%;
  position: relative;
  margin-bottom: 15px;
  background-color: white;
  padding-top: 133.33%;
  pointer-events: none;
}

.c-product2__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media only screen and (max-width: 812px) {
  .c-product2__thumbnail {
    margin-bottom: 13px;
  }
}

.c-product2__new{
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: black;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 4px 14px 5px 14px;
}

@media only screen and (max-width: 812px) {
  .c-product2__new{
    top: 7px;
    left: 7px;
    font-size: 1.1rem;
    padding: 2px 9px 3px 10px;
  }
}

.c-product2__title {
  margin-bottom: 5px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-family: 'neue-haas-grotesk-display', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

.c-product2__price {
  font-size: 1.3rem;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

@media only screen and (max-width: 812px) {
  .c-product2__price {
    margin-bottom: 14px;
  }
}

.c-product2__btnwrapper {
  margin-top: auto;
}

.c-product2__btn {
  display: block;
  width: 100%;
  height: 37px;
  line-height: 35px;
  text-align: center;
  background-color: black;
  color: white;
  border: 0;
  font-size: 1.3rem;
  letter-spacing: .6px;
  border-radius: 4px;
  font-family: neue-haas-grotesk-display, sans-serif;
  cursor: pointer;
}

.c-cart-modal{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 19999;
  display: none;
}

.c-cart-modal__bg{
  background-color: rgba(0,0,0,0.65);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.c-cart-modal__wrapper{
  position: relative;
  width: 800px;
  height: 100%;
  margin: 0 auto;
  background-color: #E8E8E8;
}

.c-cart-modal__wrapper form{
  height: 100%;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__wrapper {
    width: 100%;
  }
}

.c-cart-modal__inner{
  position: relative;
  overflow: auto;
  padding: 42px 60px 150px 60px;
  height: 100%;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__inner {
    padding: 28px 40px 100px 40px;
  }
}

@media only screen and (max-width: 450px) {
  .c-cart-modal__inner {
    padding: 28px 25px 100px 25px;
  }
}

.c-cart-modal__title{
  font-size: 3.2rem;
  margin-bottom: 43px;
  letter-spacing: .7px;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__title {
    font-size: 2.6rem;
    margin-bottom: 28px;
    letter-spacing: .5px;
  }
}

.c-cart-modal__close{
  position: absolute;
  top: 52px;
  right: 60px;
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__close {
    top: 35px;
    right: 40px;
    width: 18px;
    height: 18px;
  }
}

@media only screen and (max-width: 450px) {
  .c-cart-modal__close {
    top: 30px;
    right: 30px;
  }
}

.c-cart-item{
  border-bottom: 1px solid #B9B9B9;
  padding: 40px 0 39px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-cart-item:first-child{
  border-top: 1px solid #B9B9B9;
}

@media only screen and (max-width: 812px) {
  .c-cart-item {
    padding: 25px 0 24px 0;
  }
}

.c-cart-item__thumbnail{
  -webkit-box-flex: 0;
      -ms-flex: 0 0 165px;
          flex: 0 0 165px;
  max-width: 165px;
  height: 220px;
  margin-right: 40px;
}

.c-cart-item__thumbnail img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__thumbnail {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 135px;
            flex: 0 0 135px;
    max-width: 135px;
    height: 180px;
    margin-right: 25px;
  }
}

.c-cart-item__name{
  font-size: 1.8rem;
  letter-spacing: .7px;
  font-weight: bold;
  margin-bottom: 7px;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__name {
    letter-spacing: .65px;
    font-size: 1.6rem;
  }
}

.c-cart-item__price{
  letter-spacing: .3px;
  margin-bottom: 24px;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__price {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}

.c-cart-item__option{
  color: #555555;
  margin-bottom: 8px;
  letter-spacing: .7px;
}

.c-cart-item__option span{
  margin-right: 7px;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__option {
    font-size: 1.3rem;
    margin-bottom: 3px;
  }
}

.c-cart-item__qty{
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__qty {
    margin-top: 22px;
  }
}

.c-cart-item__qty__button{
  background-color: transparent;
  border: 0;
  padding: 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__qty__button {
    width: 15px;
    height: 15px;
  }
}

.c-cart-item__qty__number{
  background-color: transparent;
  border: 0;
  padding: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  width: 42px;
  text-align: center;
  -moz-appearance:textfield;
}

.c-cart-item__qty__number::-webkit-outer-spin-button,
.c-cart-item__qty__number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media only screen and (max-width: 812px) {
  .c-cart-item__qty__number {
    font-size: 1.6rem;
    width: 40px;
  }
}
.c-cart-item__alert{
  color: #CC0000;
  font-size:1rem;
  font-weight: 600;
  margin-top: 15px;
}
.c-cart-modal__footer{
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__footer {
    margin-top: 23px;
  }
}

.c-cart-modal__text{
  letter-spacing: .7px;
}

.c-cart-modal__jp{
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
}

.c-cart-modal__subtotal{
  letter-spacing: .7px;
  margin-left: auto;
}

.c-cart-modal__subtotal span{
  font-size: 1.8rem;
  font-weight: bold;
  filter: blur(0);
  -webkit-font-smoothing: subpixel-antialiased;
  margin-right: 10px;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__subtotal span{
    letter-spacing: 0px;
    margin-right: 5px;
  }
}

.c-cart-modal__note{
  margin-top: 57px;
}

.c-cart-modal__note label{
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  letter-spacing: .56px;
}

.c-cart-modal__note textarea{
  display: block;
  background-color: transparent;
  border: 1px solid #B9B9B9;
  margin-top: 18px;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  width: 100%;
  max-width: 100%;
  height: 100px;
  font-size: 1.4rem;
  padding: 10px;
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__note{
    margin-top: 37px;
  }
  .c-cart-modal__note label{
    font-size: 1.3rem;
  }
  .c-cart-modal__note textarea{
    height: 80px;
  }
}

.c-cart-modal__checkout{
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: 70px;
  background-color: black;
  color: white;
  border: 0;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-size: 2rem;
  letter-spacing: .7px;
  cursor: pointer;
}

.c-cart-modal__checkout::before {
  content: '';
  background-image: url(../img/common/icon_arrow1@2x.png);
  background-size: 6px 10px;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
  
.c-cart-modal__checkout .c-cart-modal__jp{
  font-size: 1.6rem;
  letter-spacing: .7px;
}

@media only screen and (max-width: 812px) {
  .c-cart-modal__checkout {
    bottom: 0;
    left: 0;
    width: 100%;
    font-size: 1.8rem;
    height: 60px;
  }
  .c-cart-modal__checkout::before {
    right: 25px;
  }
  .c-cart-modal__checkout .c-cart-modal__jp{
    font-size: 1.4rem;
  }
}

.c-cart-modal__checkout_seq{
  margin: 0 15px;
}

.c-empty{
  font-size: 1.6rem;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  margin-bottom: 60px;
}

.c-newsletter{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
}

.c-newsletter__input{
  -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  height: 35px;
  padding: 0px 14px;
  background-color: transparent;
  border: 1px solid #B9B9B9;
  border-right: none;
  line-height: 1.1;
  border-radius: 0;
  box-sizing: border-box;
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  font-size: 1.2rem;
  letter-spacing: .5px;
  color: white;
  width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.c-newsletter__input::-webkit-input-placeholder {
  line-height: normal !important;
}

.c-newsletter__submit{
  background-color: transparent;
  border: 1px solid #B9B9B9;
  height: 35px;
  width: 35px;
  -webkit-box-flex: 35px;
        -ms-flex: 35px;
            flex: 35px;
  -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  text-align: center;
  cursor: pointer;
}

.c-newsletter__submit::before{
  content: '';
  display: inline-block;
  background-image: url(../img/common/icon_arrow1@2x.png);
  background-size: 6px 9px;
  width: 6px;
  height: 9px;
}

.c-newsletter__success{
  font-family: neue-haas-grotesk-display,fot-cezanne-pron,sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #B9B9B9;
  margin-top: 20px;
  display: none;
  font-weight: 300;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-journal {
  background-color: #E8E8E8;
}

.p-journal .c-btn3 {
  margin-top: 80px;
}

.p-journal .l-container {
  padding-bottom: 100px;
}

@media only screen and (max-width: 812px) {
  .p-journal .c-btn3 {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 812px) {
  .p-journal .l-container {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1024px) {
  .p-journal {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 812px) {
  .p-journal {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .p-journal {
    padding-top: 55px;
  }
}

/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-post .l-container {
  padding-left: 300px;
  padding-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
  .p-post .l-container {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 812px) {
  .p-post .l-container {
    padding-left: 40px;
  }
}

@media only screen and (max-width: 450px) {
  .p-post .l-container {
    padding-left: 25px;
  }
}

.p-post1 {
  background-color: #E8E8E8;
}

@media only screen and (max-width: 1024px) {
  .p-post1 .l-container {
    padding-bottom: 103px;
  }
}

@media only screen and (max-width: 812px) {
  .p-post1 .l-container {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 1024px) {
  .p-post1 {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 812px) {
  .p-post1 {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .p-post1 {
    padding-top: 69px;
  }
}

.p-post2 {
  background-color: #D9D9D9;
}

.p-post2 .l-container {
  padding-top: 97px;
  padding-right: 80px;
  overflow: hidden;
  padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
  .p-post2 .l-container {
    padding-right: 60px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 812px) {
  .p-post2 .l-container {
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 450px) {
  .p-post2 .l-container {
    padding-right: 25px;
  }
}

.p-post2 .c-postnavi {
  margin-top: -25px;
}

@media only screen and (max-width: 1024px) {
  .p-post2 .c-postnavi {
    margin-top: -35px;
  }
}

@media only screen and (max-width: 812px) {
  .p-post2 .c-postnavi {
    margin-top: -5px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.u-fade {
  opacity: 0;
  -webkit-transition: 700ms ease-in-out;
  transition: 700ms ease-in-out;
}

.u-fade--in {
  opacity: 1;
}

.u-hr1 {
  border: 0;
  border-bottom: 1px solid #B9B9B9;
  margin: 60px 0;
}

@media only screen and (max-width: 1024px) {
  .u-hr1 {
    margin: 79px 0;
  }
}

@media only screen and (max-width: 812px) {
  .u-hr1 {
    margin: 45px 0;
  }
}
@media only screen and (max-width: 450px) {
  .u-hr1 {
    margin: 35px 0;
  }
}

.pro-only {
  display: none !important;
}

.tab-only {
  display: none !important;
}

.sp-only {
  display: none !important;
}

.hide-on-pc {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
  .pro-only {
    display: block !important;
  }
  .hide-on-pc {
    display: block !important;
  }
  .hide-on-pro {
    display: none !important;
  }
}

@media only screen and (max-width: 812px) {
  .pro-only {
    display: none !important;
  }
  .tab-only {
    display: block !important;
  }
  .hide-on-pro {
    display: block !important;
  }
  .hide-on-tab {
    display: none !important;
  }
}

@media only screen and (max-width: 450px) {
  .tab-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .hide-on-tab {
    display: block !important;
  }
  .hide-on-sp {
    display: none !important;
  }
}
.c-card2__restock {
  color: #fff;
  background-color: #666666; }

.c-card2__preorder {
  color: #000;
  background-color: transparent;
  border: 2px solid #000; }

.c-card2__limited {
  background-color: #BBBBBB;
  color: #000; }

.c-card2__newitem {
  color: #fff;
  background-color: #000;
  font-size: 1.2rem; }

.c-card2__restock1 {
  color: #fff;
  background-color: #555555;
  font-size: 1.2rem; }

.c_card2__reserved {
  color: #000;
  background-color: transparent;
  border: 2px solid #000;
  font-size: 1.2rem; }

.c-card2__fewleft {
  background-color: #CCCCCC;
  color: #000;
  font-size: 1.2rem; }
.social_share{
  margin-top:0;
  width: 87%;
  padding-bottom: 60px;
}
.social_share_ttl{
  font-size:2rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.0px;
}
.social_share_content{
  padding:35px 8%;
  box-sizing: border-box;
  background-color:#E0E0E0;
}
.social_share_content .btn-copy{
  position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
  cursor: pointer;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.social_share_content span{
  letter-spacing: 0.2px;
  font-size:1.8rem;
}
.social_share_content .btn-copy:hover{
      opacity: 0.80;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=80)";
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.social_share_content .text-copy{
  position: absolute;
  bottom:-15px;
  font-size:1.3rem;
  color:#A7A7A7;
  left:46px;
}
.social_share_content .icon-copy{
  width: 30px;
  height: 30px;
  margin-right: 16px;
  border-radius: 50%;
  display: inline-block;
  background-image: url('../img/common/url-icon.svg');
  background-size:100% 100%;
}
@media only screen and (max-width: 1024px) {
  .social_share{
    width: 100%;
    padding-bottom: 0px;
    margin-top: 0px;
  }
  .social_share_content{
    padding: 35px 9.5% 25px 9.5%;
  }
  .social_share .c-socials li{
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 812px) {
  .social_share .c-socials{
    flex-wrap:wrap;
        -webkit-box-pack: start;    -ms-flex-pack: start;    justify-content: flex-start;
  }
  .social_share .c-socials a{
    margin-right: 20px;
  }
  .social_share .c-socials li{
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .social_share_content span{
    font-size:1.5rem;
  }
  .social_share{
    margin-top: 0px;
  }
  .social_share_ttl{
    font-size:1.8rem;
    margin-bottom: 15px;
  }
  .social_share_content{
    padding:30px 8% 20px 8%;
  }
}
@media only screen and (max-width: 450px) {
  .social_share .c-socials li{
    font-size:1.2rem;
    margin-bottom: 0;
  }
  .social_share .c-socials a{
    flex-wrap:wrap;
    height: auto;
    margin-right: 0;
  }
  .social_share .c-socials a:before{
    left:calc(50% - 15px);
    top:0;
  }
  .social_share .c-socials a span{
    width: auto;
    text-align: center;
    margin-top: 10px;
  }
  .social_share .c-socials a i{
    margin-right: 0;
    line-height: 30px;
    width: 100%;
  }
  .social_share .c-socials a img{
    margin: 0;
    margin-top:8px;margin-bottom: 8px;
  }
  .social_share_content{
    padding:20px 7%;
  }
  .social_share_content ul li{
    width: 20%;
  }
  .social_share_content span{
    font-size:1.2rem;
  }
  .social_share_content .btn-copy{
    -ms-flex-wrap:wrap;flex-wrap:wrap;
    margin-right: 0;
    -webkit-box-pack: center;-ms-flex-pack: center;justify-content: center;
  }
  .social_share_content .btn-copy span{
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 10px;
  }
  .social_share_content .icon-copy{
    width: 30px !important;
    margin-top: 0 !important;
  }
  .social_share .c-socials{
    -webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;
  }
  .social_share_content .text-copy{
    left:inherit;
    font-size:1.2rem;
    bottom:-14px;
  }
}

::selection {
    background: #CCCCCC;
}
::-moz-selection {
    background: #CCCCCC;
}