@charset "UTF-8";
/*------------------------------------------
reset.scss
-----------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/*------------------------------------------
base.scss
-----------------------------------------*/
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 1.4rem; /* 16px */
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (min-width: 1280px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

.bgblack a,
.bgblack02 a {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}
.bgblack a:hover,
.bgblack02 a:hover {
  opacity: 0.6;
}

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

/*----responsive---------*/
.pc {
  display: none !important;
}
@media screen and (min-width: 1280px) {
  .pc {
    display: block !important;
  }
}

.sp {
  display: block !important;
}
@media screen and (min-width: 1280px) {
  .sp {
    display: none !important;
  }
}

/*----------box---------*/
.container__full {
  width: 100%;
}
.container__l {
  max-width: 980px;
  margin: 0 auto;
  width: 92%;
}
.container__m {
  margin: 0 auto;
  max-width: 780px;
  width: 80%;
}
.container__s {
  margin: 0 auto;
  max-width: 580px;
  width: 65%;
}

/*----page top scrool--------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #72c7ca;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 28px 5px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

header {
  height: auto;
}

.mv {
  width: 100%;
  height: 100vh; /* 画面全体の高さ */
  background-image: url("../img/look01_sp.jpg");
  background-size: cover; /* 画像をエリアに合わせて拡大縮小 */
  background-position: center; /* 中央に配置 */
  background-repeat: no-repeat; /* 繰り返さない */
  display: flex; /* 中のタイトルを中央にしたい場合 */
  align-items: center; /* 縦中央 */
  justify-content: center; /* 横中央 */
}
@media screen and (min-width: 1280px) {
  .mv {
    background-image: url("../img/look01_pc.jpg");
  }
}

.js-look-swiper img {
  display: block;
  width: 100%;
  height: auto;
}

.look {
  position: relative;
}
.look__btn {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 10;
  transition: all 0.3s ease;
  width: 40px;
}
@media screen and (min-width: 1280px) {
  .look__btn {
    width: 80px;
    right: 5rem;
    bottom: 5rem;
  }
}
.look__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: saturate(0.9) brightness(0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 100;
}
.look__panel {
  color: #fff;
  width: 90%;
  line-height: 1.8;
  letter-spacing: 0.05em;
  position: absolute;
  bottom: 15%;
  right: 5%;
  text-align: right;
  font-family: "Molengo", sans-serif;
}
@media screen and (min-width: 1280px) {
  .look__panel {
    width: 40%;
    bottom: 16rem;
    right: 5rem;
    font-size: 2.2rem;
  }
}
.look__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.look__list li {
  margin-top: 8px;
}
.look__list li a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  font-family: "Courier New", monospace;
}
.look__list li a .item-name {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.look__list li a .item-price {
  white-space: nowrap;
}
.look__list li a .item-price small {
  font-size: 0.75em;
  margin-left: 0.25em;
}
.look__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  font-size: 18px;
}
.look.is-open .look__overlay {
  opacity: 1;
  visibility: visible;
}
.look.is-open .look__btn {
  transform: rotate(45deg);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 32px;
  height: 32px;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 200;
  color: #fff;
}

/*------footer-----*/
footer {
  margin: 120px auto 8px;
}
footer .copyright {
  font-size: 1rem;
  text-align: center;
}
footer .logo {
  max-width: 180px;
  width: 20%;
  margin: 120px auto 16px;
}

.sns {
  max-width: 210px;
  width: 60%;
  margin: 60px auto 24px;
  display: flex;
  justify-content: space-between;
}
.sns li {
  width: 15%;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 540px;
  width: 80%;
  margin: 0 auto;
  border: none;
  background-color: #000000;
  color: #fff;
  letter-spacing: 2px;
  font-size: 1em;
  line-height: 3.2;
}

.btn:hover {
  background-color: #000000;
}

/*------------------------------------------
animation.scss
-----------------------------------------*/
.fadein {
  transition: 1s;
  opacity: 0;
}

.fadein.animated {
  opacity: 1;
}

.fadein--up {
  transform: translate3d(0, 24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--up.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--down {
  transform: translate3d(0, -24px, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--down.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--left {
  transform: translate3d(-24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--left.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadein--right {
  transform: translate3d(24px, 0, 0);
  transition: 1s;
  opacity: 0;
}

.fadein--right.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/*----------page top icon---------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

#page-top a {
  width: 18px;
  padding: 0;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */