@charset "utf-8";
/*COMMON*/

/* BASEFONT[10px] */

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 1.75;
  font-family: "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "Hiragino Sans", sans-serif;
  color: #000;
  /* background-color: #fff; */
  -webkit-text-size-adjust: 100%;
}

/* IE */

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", Meiryo, "游ゴシック", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", 'Hiragino Kaku Gothic Pro', "Hiragino Sans", sans-serif;
  }
}

/* animation */

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

@keyframes fade_mv {
  0% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes mask {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes mask_sp {
  0% {
    width: 0;
  }
  100% {
    width: 200px;
  }
}

@keyframes zoomout {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(0.95) translate3d(0, 0, 0);
  }
}

@keyframes zoomin {
  0% {
    transform: scale(0.95) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }
}

@keyframes scr-move {
  0% {
    transform: translate(0, 100px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* /animation */

.txt-hidden {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #c70000;
  text-decoration: none;
}

#pageup {
  opacity: 0;
  width: 70px;
  height: 70px;
  background-image: url(/archive/images/btn_pagetop.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  right: 28px;
  bottom: 50px;
  z-index: 100;
  transition-duration: 0.3s;
}

#pageup.active {
  opacity: 1;
  bottom: 30px;
}

.cover {
  width: 100%;
  height: 100%;
  /* background-size: cover; */
  overflow: hidden;
}

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

#header {
  width: 100%;
  position: relative;
  display: flex;
  overflow: hidden;
}

#header .cover {
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  top: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  animation: fade 3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  animation-fill-mode: forwards;
}

#header .cover img {
  animation: fade_mv 2s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  animation-fill-mode: forwards;
}

#header .contents {
  flex: none;
  position: relative;
  z-index: 10;
  width: 500px;
  background-color: #fff;
}

h1, h2, .sign {
  position: absolute;
}

h1 {
  width: 114px;
  top: 80px;
  left: 80px;
  opacity: 0;
  animation: fade 3s cubic-bezier(0.25, 0.1, 0.25, 1) 0.7s;
  animation-fill-mode: forwards;
}

h1 img {
  width: 100%;
}

h2 {
  font-family: "Cinzel", serif;
  font-size: 7rem;
  top: 34.75%;
  left: 80px;
  line-height: 1.15;
  letter-spacing: 2px;
  opacity: 0;
  animation: fade 3s cubic-bezier(0.25, 0.1, 0.25, 1) 1.4s;
  animation-fill-mode: forwards;
}

h2 {
  font-family: "Cinzel", serif;
}

.since {
  font-size: 1.8rem;
  letter-spacing: -1px;
  margin-top: 5px;
}

.since span {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  margin-left: 8px;
}

.sign {
  width: 583px;
  bottom: 110px;
  right: -340px;
  overflow: hidden;
  padding-right: 91px;
}

.sign.stop {
  bottom: 5%;
}

.sign .mask {
  width: 0;
  overflow: hidden;
  animation: mask 1s cubic-bezier(0.77, 0, 0.175, 1) 3s;
  animation-fill-mode: forwards;
}

.sign img {
  width: 492px;
}

#scr {
  display: block;
  width: 41px;
  height: 201px;
  background-image: url(/archive/images/btn_scr.png);
  background-repeat: no-repeat;
  background-position: center top;
  position: absolute;
  bottom: 0;
  right: 40px;
  z-index: 100;
  transition: 0.3s;
  opacity: 0;
  animation: fade 3s cubic-bezier(0.25, 0.1, 0.25, 1) 3.2s;
  animation-fill-mode: forwards;
}

#scr:hover {
  bottom: -5px;
}

#main {
  /* margin-top: 120px; */
}

#product {
  max-width: 1499px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0.9% 0;
  display: flex;
  flex-wrap: wrap;
}

#product.all-fade {
  opacity: 0;
}

#product.all-fade.effect-scroll {
  animation: fade 3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  animation-fill-mode: forwards;
}

#product li {
  max-width: 340px;
  width: 23.2%;
  text-align: center;
  margin: 0 0.9% 80px;
}

#product li.effect-fade {
  transform: translate(0, 100px);
}

#product li.effect-fade.effect-scroll {
  animation: scr-move 1s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  animation-fill-mode: forwards;
}

#lightbox {
  /* min-width: 880px; */
  max-width: 880px;
  width: 100%;
  overflow: hidden;
  padding: 90px 60px 30px 60px;
  /* margin: 0 75px; */
  /* margin-right: 20px; */
  background-color: #fff;
}

#lightbox .photo {
  /* padding-bottom: 110px; */
}

#lightbox .photowrap {
  float: left;
  /* max-width: 360px; */
  width: 370px;
  max-height: 430px;
  margin: 10px 0 0 0;
  padding: 0px 20px;
  overflow: hidden;
}

#lightbox .photo .slide {
  width: 360px;
  height: 324px;
  overflow: hidden;
}

#lightbox .name {
  max-width: 320px;
  width: 100%;
  margin: 0px 0 0 400px;
}

#lightbox .name h3 {
  font-size: 1.8rem;
  margin-top: 33px;
  line-height: 1.4;
}

#lightbox .name span {
  font-size: 1.2rem;
}

#lightbox .name span {
  display: block;
}

#lightbox .name span.year {
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: #977250;
  line-height: 1;
}

#lightbox .name span.text {
  margin-top: 20px;
  line-height: 2;
}

#lightbox .name span.price {
  margin-top: 28px;
}

#lightbox .name .eng {
  font-size: 13px;
  font-family: "Lato";
  color: #999999;
  line-height: 1.6;
  margin-top: 30px;
  word-wrap: break-word;
}

#lightbox #close {
  position: absolute;
  display: inline-block;
  top: 15px;
  right: 15px;
  width: 67px;
  height: 67px;
  /* background-image: url(/archive/images/close.png); */
  border: 0;
  background-color: #fff;
  border: solid 2px #a5a5a5;
  border-radius: 40px;
  margin: 0;
  padding: 0;
  transform: scale(0.5);
  cursor: pointer;
  background: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

#lightbox #close:before {
  content: "";
  position: absolute;
  display: inline-block;
  top: 18px;
  left: 31px;
  width: 2px;
  height: 25px;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #a5a5a5;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#lightbox #close:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 18px;
  left: 31px;
  width: 2px;
  height: 25px;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #a5a5a5;
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#lightbox .photo .slide {
  /* display: none; */
}

#lightbox .photo.slick-initialized .slide {
  /* display: block; */
}

#lightbox .photo.slick-initialized+.spacer {
  /* display: none; */
}

.slick-dots>li:first-child:last-child {
  display: none;
}

@media screen and (max-width: 1000px) {
  /*--------------------------------------------------------------
----------------------------------------------------------------
商品並び4列→3列
----------------------------------------------------------------
----------------------------------------------------------------*/
  #product li {
    width: 31.5%;
  }
  #product li:nth-child(3n) {
    /* margin-right: 0; */
  }
  #product li:nth-child(4n) {
    /* margin-right: 28px; */
  }
  #lightbox {
    width: auto;
    margin: 0 75px;
    padding: 90px 30px 30px 30px;
  }
  #lightbox .photo {
    /* width: 40%; */
  }
  #lightbox .name {
    width: 31%;
    max-width: 100%;
    /* margin: 0px 0 0 44%; */
  }
  #cboxPrevious {
    left: -50px;
  }
  #cboxNext {
    right: -50px;
  }
  #lightbox #close {
    right: 50px;
  }
}

#product li .photo {
  display: block;
  padding: 30px 0 80px;
  position: relative;
}

#product li .photo:before {
  content: "";
  position: absolute;
  background-color: #f7f7f7;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

#product li .photo.zoomout:before {
  width: 100%;
  height: 100%;
}

#product li .photo .year {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  color: #977250;
  position: relative;
  z-index: 10;
}

#product li .photo .popup {
  margin: 60px 0 0;
  display: block;
  position: relative;
  z-index: 10;
}

#product li .photo .popup img {
  width: 100%;
  padding: 0 45px;
}

#product li .photo.zoomout img, #product li .photo.zoomout:before {
  animation: zoomout 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  animation-fill-mode: forwards;
}

#product li .photo.zoomin img, #product li .photo.zoomin:before {
  animation: zoomin 0.3s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
  animation-fill-mode: forwards;
}

#product li .name {
  margin-top: 20px;
}

#product li .name * {
  display: flex;
  align-items: center;
  justify-content: center;
}

#product li .name h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  /* white-space: nowrap; */
}

#product li .name span {
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Lato", sans-serif;
  color: #999999;
  margin-top: 5px;
}

#footer {
  margin: 64px 0 143px;
  text-align: center;
}

#footer .logo {
  width: 116px;
  margin: 0 auto;
}

#footer .logo img {
  width: 100%;
}

#footer .copyright {
  margin: 44px 0 0;
  color: #999999;
  font-family: "Lato", sans-serif;
}

@media screen and (min-width: 768px) {
  /*--------------------------------------------------------------
  ----------------------------------------------------------------
  PC
  ----------------------------------------------------------------
  ----------------------------------------------------------------*/
  .sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  /*--------------------------------------------------------------
----------------------------------------------------------------
SP
----------------------------------------------------------------
----------------------------------------------------------------*/
  .pc {
    display: none;
  }
  *:focus {
    outline: none;
  }
  img {
    width: 100%;
  }
  h1 {
    top: 25px;
    left: 25px;
    width: 69px;
  }
  h2 {
    font-size: 3.5rem;
    top: 77px;
    left: 26px;
  }
  #header {
    display: inherit;
  }
  #header .contents {
    flex: inherit;
    width: inherit;
  }
  .since {
    font-size: 1.1rem;
    letter-spacing: -1px;
    margin-top: -2px;
  }
  .since span {
    font-size: 2.7rem;
    margin-left: 4px;
  }
  .sign {
    width: 200px;
    bottom: inherit;
    top: 188px;
    left: inherit;
    right: 15px;
  }
  .sign.stop {
    bottom: inherit;
  }
  .sign img {
    width: 200px;
  }
  .sign .mask {
    animation: mask_sp 1s cubic-bezier(0.77, 0, 0.175, 1) 3s;
    animation-fill-mode: forwards;
  }
  #scr {
    width: 92px;
    height: 40px;
    background-image: url(/archive/images/btn_scr_sp.png);
    background-size: 100% auto;
    left: 50%;
    margin-left: -46px;
    bottom: 15px;
  }
  #scr:hover {
    bottom: 0;
  }
  #product {
    padding: 50px 1.5% 0;
  }
  #product li {
    width: 47%;
    margin: 0 1.5% 40px;
  }
  #product li .photo {
    padding: 12px 0 30px;
  }
  #product li .photo .year {
    font-size: 2.3rem;
  }
  #product li .photo .popup {
    margin: 20px 0 0;
    padding: 0 20px;
  }
  #product li .photo .popup img {
    padding: 0 0px;
  }
  #product li .photo.zoomout img, #product li .photo.zoomout:before {
    animation: none;
  }
  #product li .photo.zoomin img, #product li .photo.zoomin:before {
    animation: none;
  }
  #footer {
    margin: 40px 0 30px;
  }
  #footer .logo {
    width: 105px;
  }
  #footer .copyright {
    margin: 27px 0 0;
    line-height: 1.45;
    font-size: 1.2rem;
  }
  #pageup {
    width: 50px;
    height: 50px;
    right: 15px;
  }
  #lightbox #close {
    width: 50px;
    height: 50px;
    z-index: 10;
    top: 10px;
    right: 10px;
    border: solid 1px #a5a5a5;
  }
  #cboxContent {
    width: inherit !important;
    height: 100vh !important;
    position: relative;
    overflow-y: scroll;
  }
  #cboxLoadedContent {
    width: inherit !important;
    padding: 0;
    margin: 0;
    /* overflow-y: scroll !important; */
    /* background-color: #fff; */
    overflow: auto !important;
    height: auto !important;
  }
  #colorbox, #cboxWrapper {
    /* min-width: 345px; */
    /* width: 100% !important; */
  }
  #lightbox .photo, #lightbox .photo .slide {
    width: 100%;
  }
  #colorbox {
    left: 0 !important;
    top: 0 !important;
    position: inherit !important;
    width: inherit !important;
    height: 100vh !important;
    /* overflow-y: scroll; */
    /* margin: 15px; */
    /* padding: 0 15px; */
    /* height: auto!important; */
  }
  #cboxWrapper {
    /* padding: 0 15px; */
    height: auto !important;
    width: inherit !important;
  }
  .slick-dots {
    position: inherit !important;
    top: 0;
  }
  #lightbox {
    /* max-height: 640px; */
    padding: 50px 40px 30px;
    margin: 15px 15px 115px 15px;
    padding-bottom: 30px;
    min-width: inherit;
    width: inherit;
    position: relative;
    overflow: hidden;
    z-index: 10;
  }
  #lightbox .photo {
    padding-bottom: 0px;
    margin-bottom: 0;
  }
  #lightbox .photowrap {
    width: 100%;
    max-height: inherit;
    max-width: inherit;
    float: inherit;
    margin: 10px 0 0;
    /* overflow: hidden; */
    padding: 0 6px;
    position: relative;
    /* min-height: 245px; */
  }
  #lightbox .photo .slide {
    height: inherit !important;
    /* width: 100%!important; */
  }
  #lightbox .name {
    width: inherit !important;
    max-width: inherit !important;
    margin: 13px 0 0;
    position: relative;
    z-index: 10;
  }
  .closewrap {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cboxLoadingOverlay {
    /* position: fixed; */
    /* top: 0px; */
    /* margin-top: 50%; */
  }
  #cboxPrevious, #cboxNext {
    display: none !important;
  }
  #lightbox #close:before {
    top: 11px;
    left: 23px;
    width: 1px;
  }
  #lightbox #close:after {
    top: 11px;
    left: 23px;
    width: 1px;
  }
  #lightbox #page:before {
    content: "";
    width: 1px;
    height: 30px;
    background-color: #a5a5a5;
    position: absolute;
    top: 0;
    left: 50%;
  }
  #lightbox #page {
    position: relative;
    width: 100%;
    height: 30px;
    margin: 30px 0 0 0;
  }
  #lightbox #page #prev, #lightbox #page #next {
    position: absolute;
    top: 0;
    width: 50%;
    height: 30px;
  }
  #lightbox #page #prev {
    left: 0;
  }
  #lightbox #page #next {
    right: 0;
  }
  #lightbox #page #prev::before, #lightbox #page #next::before {
    content: "";
    top: 5px;
    display: block;
    position: absolute;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border-top: 1px solid #977250;
    border-right: 1px solid #977250;
  }
  #lightbox #page #prev::before {
    left: 40px;
    transform: rotate(-135deg);
  }
  #lightbox #page #next::before {
    right: 40px;
    transform: rotate(45deg);
  }
  #lightbox .photo .slide img {
    width: 100% !important;
    height: auto !important;
    /* min-width: 270px; */
    /* min-height: 245px; */
  }
  /* #lightbox .photo .first {
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
    opacity: 0;
  } */
  #lightbox .name span.year {
    font-size: 4rem;
  }
  #lightbox .name span.price {
    margin-top: 10px;
  }
  #lightbox .name .eng {
    margin-top: 10px;
  }
  #lightbox .name h3 {
    font-size: 1.6rem;
    margin-top: 20px;
    line-height: 1.4;
  }
  #lightbox .name span.text {
    margin-top: 10px;
  }
}