@charset "UTF-8";
/*リセット
--------------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

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

/*メディアクエリー
---------------------------------------------*/
/* コンテンツ
---------------------------------------------*/
html {
  font-family: "birch-std", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.08em;
  height: 0;
}

body {
  line-height: 1.6;
  width: 100%;
  color: #000;
  background: #FFF;
}
@media screen and (min-width: 751px) {
  body {
    font-size: 1.40625vw;
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: 4vw;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  cursor: pointer;
  text-decoration: none;
}

ul {
  list-style: none;
}

@media screen and (min-width: 751px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 751px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .spNone {
    display: none;
  }
}

#wrap {
  overflow-x: hidden;
}

section.main {
  width: 100%;
  height: 100vh;
  position: relative;
}
section.main .mainImg {
  width: 100%;
  height: 100vh;
  background: url(../images/cover01_sp.jpg);
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 750px) {
  section.main .mainImg {
    background-position: top;
  }
}
section.main h1 {
  position: absolute;
  width: 21%;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 751px) {
  section.main h1 {
    width: 8%;
    bottom: 5%;
    left: 50%;
  }
}
section.main h2.logo_tit {
  width: 100%;
}
section.main h2.logo_tit img:nth-child(1) {
  width: 55%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 751px) {
  section.main h2.logo_tit img:nth-child(1) {
    width: 23%;
    top: 40%;
    left: 50%;
  }
}
section.main h2.logo_tit p {
  position: absolute;
  color: #FFF;
  font-size: 5.3333333333vw;
  font-family: "roboto", sans-serif;
  font-weight: 700;
  width: 100%;
  top: 51%;
  left: 59%;
  letter-spacing: 0.02em;
  transform: translateX(-50%);
}
@media screen and (min-width: 751px) {
  section.main h2.logo_tit p {
    font-size: 2.03125vw;
    top: 58%;
    left: 85%;
  }
}
section.main h3 img {
  width: 75%;
  margin: 16vw auto;
}
@media screen and (min-width: 751px) {
  section.main h3 img {
    width: 30%;
    margin: 9.375vw auto;
  }
}
section.main h3 p {
  font-size: 5.3333333333vw;
  text-align: center;
  margin-top: 55px;
}
@media screen and (min-width: 751px) {
  section.main h3 p {
    margin-top: 8.984375vw;
    font-size: 2.65625vw;
  }
}

section.content {
  margin-top: 34.6666666667vw;
  position: relative;
}
@media screen and (min-width: 751px) {
  section.content {
    margin-top: 18.75vw;
  }
}
section.content ul {
  display: flex;
  gap: 4px 2px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  section.content ul {
    max-width: 800px;
    gap: 7px 2px;
    margin: 0 auto;
  }
}
section.content ul li {
  position: relative;
  width: 49.5%;
  box-sizing: border-box;
}
@media screen and (min-width: 751px) {
  section.content ul li {
    width: 49.5%;
    height: auto;
  }
}
section.content ul li.bar::before {
  position: absolute;
  display: block;
  background: #000;
  content: "";
  width: 21px;
  height: 1px;
  bottom: 22px;
  right: 11px;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  section.content ul li.bar::before {
    width: 30px;
    height: 1px;
    bottom: 57px;
    right: 40px;
  }
}
section.content ul li.bar::after {
  position: absolute;
  display: block;
  background: #000;
  content: "";
  width: 1px;
  height: 21px;
  bottom: 12px;
  right: 21px;
  z-index: 2;
}
@media screen and (min-width: 751px) {
  section.content ul li.bar::after {
    width: 1px;
    height: 30px;
    bottom: 43px;
    right: 55px;
  }
}
section.content .close_btn {
  position: absolute;
  z-index: 10;
  width: 9%;
  bottom: 6%;
  right: 6%;
}
@media screen and (min-width: 751px) {
  section.content .close_btn {
    bottom: 4%;
    right: 6%;
  }
}

section.content .zoomIn img {
  transform: scale(1);
  transition: 0.5s ease-in-out;
}
section.content .zoomIn a:hover img {
  transform: scale(1.2);
}
section.content .mask {
  display: block;
  line-height: 0;
  overflow: hidden;
}

section.loding #container {
  width: 100%;
  height: 100vh;
  background: #fff !important;
  position: absolute;
  position: fixed;
  top: 0;
  z-index: 100;
}
section.loding #container .luis {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54%;
  margin: 0 auto;
}
@media screen and (min-width: 751px) {
  section.loding #container .luis {
    width: 20%;
  }
}

#footer p {
  color: #818181;
  text-align: center;
  font-size: 10px;
  margin: 8vw 0px;
}
@media screen and (min-width: 751px) {
  #footer p {
    margin: 3.90625vw 0px;
  }
}
#footer .button a {
  margin: 0 auto;
  text-align: center;
  margin-top: 16vw;
  width: 78.6666666667%;
  padding: 3.4666666667vw 0px;
  background-color: #5a5a5a;
  letter-spacing: 0.2em;
  font-size: 4.8vw;
  color: #FFF;
  display: block;
}
@media screen and (min-width: 751px) {
  #footer .button a {
    margin-top: 7.8125vw;
    width: 35.9375%;
    padding: 1.25vw 0px;
    font-size: 1.5625vw;
  }
}
#footer .insta {
  margin: 0 auto;
  margin-top: 21.3333333333vw;
  width: 8%;
}
@media screen and (min-width: 751px) {
  #footer .insta {
    margin-top: 9.375vw;
    width: 2%;
  }
}
#footer .brandlogo {
  margin: 0 auto;
  margin-top: 5.3333333333vw;
  width: 27%;
}
@media screen and (min-width: 751px) {
  #footer .brandlogo {
    width: 9% !important;
    margin-top: 1.953125vw;
  }
}
#footer ul.credit_name {
  margin-top: 21.3333333333vw;
}
@media screen and (min-width: 751px) {
  #footer ul.credit_name {
    margin-top: 9.375vw;
  }
}
#footer ul.credit_name p {
  font-size: 4vw;
  margin: 0 !important;
  margin-bottom: 12px !important;
}
@media screen and (min-width: 751px) {
  #footer ul.credit_name p {
    margin-bottom: 1.171875vw !important;
    font-size: 1.25vw;
  }
}
#footer ul.credit_name p span {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif !important;
  font-size: clamp(13px, 3.4666666667%, 16px);
}
#footer ul.credit_name li.director {
  display: flex;
  width: max(40%, 176px);
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  #footer ul.credit_name li.director {
    width: 13%;
  }
}
#footer ul.credit_name li.director a {
  display: block;
  width: 9%;
  padding-top: 3%;
}
@media screen and (min-width: 751px) {
  #footer ul.credit_name li.director a {
    width: 9%;
  }
}

#page_top,
#page_top02 {
  width: 4%;
  position: fixed;
  bottom: 2%;
  right: 5%;
  z-index: 9;
}
@media screen and (min-width: 751px) {
  #page_top,
  #page_top02 {
    width: 1.2%;
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/* detail
--------------------------------------*/
.fadeIn_up {
  opacity: 0;
  transition: 1.2s;
}

/* フェードイン(スクロールした後) */
.fadeIn_up.is-show {
  opacity: 1;
}

.title_logo_p {
  position: fixed;
  width: 100%;
  top: 2%;
  text-align: center;
  z-index: 1;
  font-size: 4.8vw;
}
@media screen and (min-width: 751px) {
  .title_logo_p {
    font-size: 1.875vw;
    top: 3%;
  }
}

.item_content {
  width: 100%;
}
.item_content span.close {
  position: fixed;
  top: 5.5%;
  z-index: 2;
  margin-left: 85.3333333333vw;
  width: 9.3333333333%;
}
@media screen and (min-width: 751px) {
  .item_content span.close {
    width: 5.859375%;
    top: 5%;
    left: 3%;
  }
}

#item_box {
  overflow-x: hidden;
}
@media screen and (min-width: 751px) {
  #item_box {
    margin: 0 auto;
  }
}
#item_box section.item_in {
  margin-top: 24vw;
  padding-top: 24vw;
}
@media screen and (min-width: 751px) {
  #item_box section.item_in {
    display: flex;
    padding-top: 8.203125vw;
    margin-top: 7.03125vw;
    padding-top: 7.03125vw;
  }
}

#box01 {
  margin-top: 0;
}

.creditarea {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 751px) {
  .creditarea {
    margin-top: 3.125vw;
  }
}
.creditarea .flex {
  display: flex;
}
@media screen and (min-width: 751px) {
  .creditarea .flex {
    justify-content: flex-end;
    padding-right: 23.4375vw;
  }
}
.creditarea .flex .line01 {
  border-bottom: solid 1px #000;
  width: 15.2vw;
  text-align: left;
  display: block;
}
@media screen and (min-width: 751px) {
  .creditarea .flex .line01 {
    width: 4.765625vw;
  }
}
.creditarea .flex .num {
  font-size: 9.6vw;
  font-weight: bold;
  letter-spacing: 0.08em;
  padding-left: 2.6666666667vw;
  line-height: 1.1;
}
@media screen and (min-width: 751px) {
  .creditarea .flex .num {
    font-size: 2.8125vw;
    padding-left: 0.78125vw;
  }
}
.creditarea .credit {
  margin-left: 16vw;
  margin-top: 8.5333333333vw;
  margin-bottom: 13.3333333333vw;
}
@media screen and (min-width: 751px) {
  .creditarea .credit {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 2.5vw;
    margin-bottom: 3.90625vw;
    margin-left: 0;
  }
}
.creditarea .credit li {
  display: flex;
  justify-content: space-between;
  width: 68.8vw;
  padding-bottom: 4vw;
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 751px) {
  .creditarea .credit li {
    font-size: 1.40625vw;
    width: 29.53125vw;
    padding-left: 5%;
    padding-bottom: 1.171875vw;
  }
}
.creditarea .credit span.price {
  margin-left: 4vw;
}
@media screen and (min-width: 751px) {
  .creditarea .credit span.price {
    margin-left: 1.40625vw;
  }
}
.creditarea .credit a {
  color: #000;
}
.creditarea .credit a .buy {
  padding-left: 13.3333333333vw;
  border: solid 1px #000;
  padding: 1.0666666667vw 2.6666666667vw 0.5333333333vw 2.6666666667vw;
  font-size: 4vw;
}
@media screen and (min-width: 751px) {
  .creditarea .credit a .buy {
    font-size: 1.09375vw;
    padding: 0.3125vw 0.78125vw 0.1550387597vw 0.78125vw;
  }
}
.creditarea .credit a .buy:hover {
  color: #fff !important;
  background: #000;
}
.creditarea li:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 751px) {
  ul.pc_flex {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 751px) {
  ul.pc_flex li.md {
    width: 17.96875vw;
    padding-left: 1.171875vw;
  }
}
ul.pc_flex .md:first-child {
  padding-left: 0;
}

@media screen and (min-width: 751px) {
  .slide_box {
    max-width: 860px;
    margin: 0 auto;
  }
}

.slide_box {
  display: none;
}

@media screen and (max-width: 750px) {
  .slide-items .md {
    margin-right: 3.2vw;
    margin-left: 3.2vw;
  }
}

.line02 {
  border-top: solid 1px #000;
  width: 84.2666666667vw;
  float: right;
}
@media screen and (min-width: 751px) {
  .line02 {
    width: 29.53125vw;
  }
}

.back {
  background-color: #f3f3f3;
  width: 100%;
  height: auto;
  margin-top: 32vw;
}
@media screen and (min-width: 751px) {
  .back {
    margin-top: 11.71875vw;
  }
}
.back .brandlogo_item {
  margin: 0 auto;
  padding: 6.6666666667vw 0vw;
  width: 18%;
}
@media screen and (min-width: 751px) {
  .back .brandlogo_item {
    width: 7%;
    padding: 2.34375vw 0vw;
  }
}/*# sourceMappingURL=style.css.map */