@charset "UTF-8";
@import url("https://use.typekit.net/obj0jwm.css");
@keyframes bar-anime {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 50px;
  }
  100% {
    height: 40px;
    top: 50px;
  }
}
@keyframes bar-anime-sp {
  0% {
    height: 40px;
    top: -40px;
  }
  75% {
    height: 40px;
    top: 40px;
  }
  100% {
    height: 40px;
    top: 40px;
  }
}
/* ------------------------------------------------- Default and Common --------------------------------------------------- */
html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
}
body.loaded {
  position: static;
}
body.looking {
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
  cursor: pointer !important;
}

a:hover, a:active, a.active {
  color: #333333;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, a, span, input, textarea, nav, footer {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

br.brsp {
  display: none;
}

br.brpc {
  display: block;
}

/*----- Sticky -----*/
.js-scroll-overlap:not(.is-disabled) {
  --sticky-offset: -1px;
  position: sticky;
  top: var(--sticky-offset);
  background-color: #FFF;
}

.notoverlap {
  position: relative;
}

/* ---------------------------------------------------------page--------------------------------------------------------- */
#loader {
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 9999;
  transition: opacity 0.5s ease-in 0s;
}
#loader .logo {
  width: 180px;
  height: 68px;
  background-image: url(../images/logo_bcstock.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
#loader .bar {
  width: 100%;
  height: 10px;
  background-color: rgba(44, 144, 187, 0.25);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 5;
}
#loader .bar span {
  width: 0%;
  height: 100%;
  background-color: #2C90BB;
  display: block;
}
#loader.active h3 {
  opacity: 1;
}
#loader.complete {
  opacity: 0;
}

header {
  width: 100%;
  padding: 80px 90px 40px 90px;
  box-sizing: border-box;
}
header .inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
header .inner.on .visual h2 {
  opacity: 1;
}
header .inner .text {
  width: 33%;
}
header .inner .text h1 {
  width: 100%;
  margin: 10px auto 30px;
}
header .inner .text .lead {
  width: 93%;
  margin: 0 auto;
}
header .inner .text .lead p {
  color: #2C90BB;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0em;
  font-style: normal;
  text-align: left;
}
header .inner .photo {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px 0;
}
header .inner .photo > div {
  width: 16.6666666667%;
}

nav {
  padding: 0;
  position: fixed;
  right: 15px;
  top: 20px;
  z-index: 2;
}
nav.on .links {
  opacity: 1;
}
nav .links {
  width: auto;
  min-width: 300px;
  white-space: nowrap;
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all 0.2s ease-in 0.25s;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right top;
}
nav .links p {
  color: #000;
  font-family: "big-caslon-fb", serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  font-style: normal;
}
nav .links p:first-child {
  padding-right: 10px;
  margin-right: 10px;
  border-right: solid 1px #000;
}

main {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
main .sec {
  width: 100%;
  padding: 100px 0;
  margin: 0 auto;
  border-top: solid 2px #2C90BB;
}
main .sec:last-child {
  padding-bottom: 150px;
}
main .sec .insec {
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
main .sec .insec .photo {
  width: calc((100% - 30px) / 4);
  position: relative;
}
main .sec .insec .thumb1 {
  position: relative;
}
main .sec .insec .thumb1::after {
  content: "";
  width: 27px;
  height: 36px;
  background-image: url(../images/button_detail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 5;
}
main .sec .insec .thumb2 {
  position: relative;
}
main .sec .insec .thumb2::after {
  content: "";
  width: 29px;
  height: 29px;
  background-image: url(../images/icon_plus2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 5;
}
main .sec .insec .item {
  width: 100%;
}
main .sec .insec .item .inner {
  width: 800px;
  margin: 0 auto;
  padding: 0 20px 100px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
main .sec .insec .item .inner .photo {
  width: 300px;
  padding: 0;
}
main .sec .insec .item .inner .text {
  width: 440px;
  padding: 0 0 0 40px;
}
main .sec .insec .item .inner .text h2 {
  margin-bottom: 24px;
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
}
main .sec .insec .item .inner .text .caption {
  padding-bottom: 30px;
  color: #2C90BB;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0em;
  font-style: normal;
}
main .sec .insec .item .inner .text .price {
  padding-bottom: 20px;
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
}
main .sec .insec .item .inner .text .price span {
  font-size: 1.6rem;
}
main .sec .insec .item .inner .text .price span:nth-child(1) {
  padding-right: 3px;
}
main .sec .insec .item .inner .text .price span:nth-child(2) {
  padding-left: 5px;
}
main .sec .insec .item .inner .text .item_link {
  width: 104px;
  text-align: center;
}
main .sec .insec .item .inner .text .item_link a {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  display: block;
  padding: 2px 0;
  border: solid 1px #2C90BB;
}
main .sec .insec .item .inner .text .item_link a:hover {
  opacity: 0.6;
  transition: all 0.25s ease-in 0s;
}
main .instagram {
  width: 100%;
  text-align: center;
}
main .instagram .title {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  padding-bottom: 20px;
}
main .instagram .icon {
  width: 50px;
  margin: 0 auto;
}
main .instagram .name {
  padding-top: 5px;
  color: #2C90BB;
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
main .instagram a {
  display: inline-block;
}

footer {
  position: relative;
  text-align: left;
  width: 100%;
  padding: 150px 0 0;
  margin: 0 auto;
  background-color: #FFF;
}
footer .infoot {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  border-top: solid 1px #2C90BB;
  position: relative;
}
footer .infoot div h3 {
  width: 116px;
  margin: 0 auto 40px 0;
}
footer .infoot div ul {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
footer .infoot div ul li:not(:last-child) {
  margin-bottom: 12px;
}
footer .infoot div ul li a, footer .infoot div ul li span {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot div ul li a:hover, footer .infoot div ul li span:hover {
  color: #2C90BB;
  opacity: 0.6;
}
footer .infoot div p {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  text-align: left;
}
footer .infoot .pgtop {
  position: absolute;
  right: 26px;
  bottom: 120px;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}
footer .infoot .pgtop a {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  transition: all 0.25s ease-in 0s;
}
footer .infoot .pgtop a:hover {
  color: #2C90BB;
  opacity: 0.5;
}

/* ---- looks(detail page) ---- */
#looks {
  width: 100%;
  height: 100vh;
  padding: 85px 0 0 0;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0px;
  z-index: -999;
  overflow: scroll;
  opacity: 0;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  pointer-events: none;
}
#looks.active {
  pointer-events: auto;
  z-index: 999;
}
#looks.active .close div {
  pointer-events: auto;
}
#looks .close {
  width: 40px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 99999;
}
#looks .close div {
  width: 40px;
  height: 40px;
  position: relative;
  pointer-events: none;
  cursor: pointer;
}
#looks .close div span {
  width: 10px;
  height: 10px;
  background-color: #2C90BB;
  position: absolute;
  transition: all 0.25s ease-in 0s;
}
#looks .close div span:nth-child(1) {
  width: 40px;
  height: 1px;
  left: 0px;
  top: 17px;
  transform: rotate(45deg);
}
#looks .close div span:nth-child(2) {
  width: 40px;
  height: 1px;
  left: 0px;
  top: 17px;
  transform: rotate(-45deg);
}
#looks .close div:hover span {
  transition: all 0.25s ease-in 0s;
  opacity: 0.5;
}
#looks .look-combo {
  width: 550px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look {
  width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}
#looks .look-combo .look:not(:last-child) {
  margin-bottom: 160px;
}
#looks .look-combo .look.items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look.items .item {
  width: 100%;
}
#looks .look-combo .look.items .item:not(:nth-child(n+31)) {
  margin-bottom: 100px;
}
#looks .look-combo .look.items .item .ph {
  width: 100%;
}
#looks .look-combo .look.items .item .ph:not(:last-child) {
  margin-bottom: 20px;
}
#looks .look-combo .look.items .item .text {
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: solid 1px #2C90BB;
}
#looks .look-combo .look.items .item .text .name {
  color: #2C90BB;
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  padding-bottom: 5px;
}
#looks .look-combo .look.items .item .text .staff {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  padding-bottom: 15px;
}
#looks .look-combo .look.items .item .text .sns {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look.items .item .text .sns li {
  padding: 2px 20px 1px;
  margin-right: 10px;
  border: solid 1px #2C90BB;
}
#looks .look-combo .look.items .item .text .sns li a {
  color: #2C90BB;
  font-family: "alternate-gothic-condensed-a", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0em;
  font-style: normal;
  display: inline-block;
}
#looks .look-combo .look .set {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
#looks .look-combo .look .set .photo {
  width: 600px;
  overflow: hidden;
  order: 1;
  position: relative;
}
#looks .look-combo .look .set .photo .arrow {
  width: 14px;
  height: 24px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 12px);
  z-index: 5;
}
#looks .look-combo .look .set .photo .arrow.left {
  left: 10px;
}
#looks .look-combo .look .set .photo .arrow.right {
  right: 10px;
  transform: rotate(180deg);
}
#looks .look-combo .look .set .text {
  width: calc(100% - 600px - 40px);
  padding: 0px;
  order: 2;
}
#looks .look-combo .look .credits {
  width: 100%;
}
#looks .look-combo .look .credits > div {
  width: 100%;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd {
  width: auto;
  border: none;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a {
  display: none;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  text-decoration: underline;
  display: inline-block;
}
#looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line:hover {
  color: #000;
}
#looks .look-combo .look .credits > div:not(:last-child) {
  margin-bottom: 10px;
}
#looks .look-combo .look .credits > div dl.items__credit {
  width: 100%;
  margin: 0 auto 0 0;
  padding-bottom: 10px;
  border-bottom: dashed 1px #2C90BB;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#looks .look-combo .look .credits > div dl.items__credit dt {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong:not(:first-child) {
  margin: 0 0 0 5px;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong span {
  font-weight: 400;
  padding: 0 0 0 10px;
}
#looks .look-combo .look .credits > div dl.items__credit dt strong span.items__price::after {
  content: none;
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
  margin-left: 5px;
  display: inline-block;
}
#looks .look-combo .look .credits > div dl.items__credit dt > span {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-style: normal;
}
#looks .look-combo .look .credits > div dl.items__credit dt > span:last-child {
  width: 100%;
  padding: 5px 0 0 0;
}
#looks .look-combo .look .credits > div dl.items__credit dd {
  margin: 0 0 0 15px;
  padding: 2px 24px 1px;
  border: solid 1px #2C90BB;
}
#looks .look-combo .look .credits > div dl.items__credit dd a {
  color: #2C90BB;
  font-family: "alternate-gothic-atf", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  font-style: normal;
  text-decoration: none;
  transition: all 0.25s ease-in 0s;
}
#looks .look-combo .look .credits > div dl.items__credit dd a:hover {
  color: #2C90BB;
}
#looks .look-combo .look .credits > div dl.items__credit dd a.line {
  display: none;
}
#looks .space {
  width: 560px;
  height: 100vh;
  margin: 0 auto;
}

/* ---- common credits ---- */
/*--------- SLICK -----------*/
.slick-prev::before {
  content: "　";
  background: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.slick-next::before {
  content: "　";
  background: url(../images/arrow2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 768px) {
  /* --------------------------- Default and Common --------------------------- */
  br.brsp {
    display: block;
  }
  br.brpc {
    display: none;
  }
  /* --------------------------- page --------------------------- */
  #loader .logo {
    width: 180px;
    height: 39px;
  }
  #loader .bar {
    height: 8px;
  }
  header {
    width: 100%;
    padding: 20px 20px 40px;
    box-sizing: border-box;
  }
  header .inner {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  header .inner .text {
    width: 100%;
    padding-bottom: 20px;
  }
  header .inner .text h1 {
    width: 100%;
    margin: 10px auto 20px;
  }
  header .inner .text .lead {
    width: 93%;
    margin: 0 auto;
  }
  header .inner .text .lead p {
    color: #2C90BB;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0em;
    font-style: normal;
    text-align: left;
  }
  header .inner .photo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px 0;
  }
  header .inner .photo > div {
    width: 16.6666666667%;
  }
  main {
    width: 100%;
    position: relative;
    box-sizing: border-box;
  }
  main #quiet_luxury01 {
    padding: 50px 0 100px;
  }
  main #quiet_luxury01 h3 {
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 20px;
  }
  main #quiet_luxury02 {
    padding: 50px 0 100px;
  }
  main #the_vintage {
    padding: 50px 0 0;
  }
  main #the_vintage h3 {
    color: #000;
    font-family: "big-caslon-fb", serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 20px;
  }
  main .lead {
    width: 100%;
    margin: 50px auto 80px;
    padding: 0 30px;
    color: #000;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0em;
    font-style: normal;
    text-align: left;
  }
  main .sec {
    width: 100%;
    padding: 40px 0 60px;
  }
  main .sec:last-child {
    padding-bottom: 80px;
  }
  main .sec .insec {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  main .sec .insec .photo {
    width: calc((100% - 10px) / 2);
    position: relative;
  }
  main .sec .insec .photo.blank {
    display: none;
  }
  main .sec .insec .thumb1 {
    position: relative;
  }
  main .sec .insec .thumb1::after {
    content: "";
    width: 22px;
    height: 29px;
    right: 6px;
    bottom: 6px;
  }
  main .sec .insec .thumb2 {
    position: relative;
  }
  main .sec .insec .thumb2::after {
    content: "";
    width: 13px;
    height: 13px;
  }
  main .sec .insec .item {
    width: 100%;
  }
  main .sec .insec .item .inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0 0 40px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  main .sec .insec .item .inner .photo {
    width: 100%;
    padding: 40px;
  }
  main .sec .insec .item .inner .text {
    width: 90%;
    padding: 0;
    margin: 0 auto;
  }
  main .sec .insec .item .inner .text h2 {
    margin-bottom: 20px;
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .sec .insec .item .inner .text .caption {
    padding-bottom: 26px;
    color: #2C90BB;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .sec .insec .item .inner .text .price {
    padding-bottom: 16px;
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  main .sec .insec .item .inner .text .price span {
    font-size: 1.6rem;
  }
  main .sec .insec .item .inner .text .price span:nth-child(1) {
    padding-right: 3px;
  }
  main .sec .insec .item .inner .text .price span:nth-child(2) {
    padding-left: 5px;
  }
  main .sec .insec .item .inner .text .item_link {
    width: 104px;
    text-align: center;
  }
  main .sec .insec .item .inner .text .item_link a {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    display: block;
    padding: 2px 0;
    border: solid 1px #2C90BB;
  }
  main .sec .insec .item .inner .text .item_link a:hover {
    opacity: 0.6;
    transition: all 0.25s ease-in 0s;
  }
  main .instagram {
    width: 100%;
    text-align: center;
  }
  main .instagram .title {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 12px;
  }
  main .instagram .icon {
    width: 40px;
    margin: 0 auto;
  }
  main .instagram .name {
    padding-top: 5px;
    color: #2C90BB;
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    font-style: normal;
  }
  footer {
    padding: 80px 0 0;
  }
  footer .infoot {
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
  }
  footer .infoot div h3 {
    width: 100px;
    margin: 0 auto 30px 0;
  }
  footer .infoot div ul {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
  }
  footer .infoot div ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  footer .infoot div ul li a, footer .infoot div ul li span {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    font-style: normal;
  }
  footer .infoot div p {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    font-style: normal;
    text-align: left;
  }
  footer .infoot .pgtop {
    right: 20px;
    bottom: 90px;
  }
  footer .infoot .pgtop a {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.03em;
    font-style: normal;
  }
  /* ---- looks(detail page) ---- */
  #looks {
    width: 100%;
    height: 100vh;
    padding: 50px 0 0 0;
    background-color: rgb(255, 255, 255);
    position: fixed;
    top: 0px;
    z-index: -999;
    overflow: scroll;
    opacity: 0;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    pointer-events: none;
  }
  #looks.active {
    pointer-events: auto;
    z-index: 999;
  }
  #looks.active .close div {
    pointer-events: auto;
  }
  #looks .close {
    width: 30px;
    top: 10px;
    right: 10px;
  }
  #looks .close div {
    width: 30px;
    height: 30px;
  }
  #looks .close div span {
    width: 30px;
    height: 30px;
  }
  #looks .close div span:nth-child(1) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 17px;
    transform: rotate(45deg);
  }
  #looks .close div span:nth-child(2) {
    width: 30px;
    height: 1px;
    left: 0px;
    top: 17px;
    transform: rotate(-45deg);
  }
  #looks .close div:hover span {
    background-color: #2C90BB;
  }
  #looks .look-combo {
    width: 100%;
  }
  #looks .look-combo .look:not(:last-child) {
    margin-bottom: 80px;
  }
  #looks .look-combo .look.items {
    width: calc(100% - 20px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look.items:not(:last-child) {
    margin-bottom: 80px;
  }
  #looks .look-combo .look.items .item {
    width: 100%;
  }
  #looks .look-combo .look.items .item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
  #looks .look-combo .look.items .item:not(:nth-child(n+45)) {
    margin-bottom: 50px;
  }
  #looks .look-combo .look.items .item .ph {
    width: 100%;
  }
  #looks .look-combo .look.items .item .ph:not(:last-child) {
    margin-bottom: 20px;
  }
  #looks .look-combo .look.items .item .text {
    padding-bottom: 12px;
    margin-bottom: 24px;
    border-bottom: solid 1px #2C90BB;
  }
  #looks .look-combo .look.items .item .text .name {
    color: #2C90BB;
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 5px;
  }
  #looks .look-combo .look.items .item .text .staff {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    padding-bottom: 15px;
  }
  #looks .look-combo .look.items .item .text .sns {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look.items .item .text .sns li {
    padding: 2px 16px 1px;
    margin-right: 10px;
    border: solid 1px #2C90BB;
  }
  #looks .look-combo .look.items .item .text .sns li a {
    color: #2C90BB;
    font-family: "alternate-gothic-condensed-a", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    display: inline-block;
  }
  #looks .look-combo .look .set {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  #looks .look-combo .look .set .photo {
    width: 100%;
    margin-bottom: 20px;
  }
  #looks .look-combo .look .set .photo .arrow {
    width: 14px;
    height: 24px;
    background-image: url(../images/arrow.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: absolute;
    top: calc(50% - 12px);
    z-index: 5;
  }
  #looks .look-combo .look .set .photo .arrow.left {
    left: 10px;
  }
  #looks .look-combo .look .set .photo .arrow.right {
    right: 10px;
    transform: rotate(180deg);
  }
  #looks .look-combo .look .set .text {
    width: calc(100% - 40px);
  }
  #looks .look-combo .look .credits {
    width: 100%;
  }
  #looks .look-combo .look .credits > div {
    width: 100%;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd {
    width: auto;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a {
    display: none;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line {
    color: #000;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    text-decoration: underline;
    display: inline-block;
  }
  #looks .look-combo .look .credits > div.item-d-none dl.items__credit dd a.line:hover {
    color: #000;
  }
  #looks .look-combo .look .credits > div:not(:last-child) {
    margin-bottom: 20px;
  }
  #looks .look-combo .look .credits > div dl.items__credit {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong:not(:first-child) {
    margin: 0 0 0 5px;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong span {
    font-weight: 400;
    padding: 0 0 0 10px;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt strong span.items__price::after {
    content: none;
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    margin-left: 5px;
    display: inline-block;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt > span {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
  }
  #looks .look-combo .look .credits > div dl.items__credit dt > span:last-child {
    width: 100%;
    padding: 5px 0 0 0;
  }
  #looks .look-combo .look .credits > div dl.items__credit dd {
    margin: 0 0 0 15px;
  }
  #looks .look-combo .look .credits > div dl.items__credit dd a {
    color: #2C90BB;
    font-family: "alternate-gothic-atf", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-style: normal;
    text-decoration: none;
    transition: all 0.25s ease-in 0s;
  }
  #looks .look-combo .look .credits > div dl.items__credit dd a:hover {
    opacity: 0.5;
  }
  #looks .space {
    width: 100%;
  }
  /* common credits------ */
}/*# sourceMappingURL=style.css.map */