@charset "UTF-8";
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* ベースカラー
*--------------------------------------*/
/*--------------------------------------*
* フォント
*--------------------------------------*/
/*--------------------------------------*
* ブレイクポイント
*--------------------------------------*/
/*--------------------------------------*
* vw変換(SP用)
*--------------------------------------*/
/*--------------------------------------*
* vw変換(PC用)
*--------------------------------------*/
/*--------------------------------------*
* デフォルトスタイル
*--------------------------------------*/
html,
body {
  width: 100%;
  font-size: 16px;
  margin: 0 auto;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

img,
video,
object {
  width: 100%;
  border: none;
  display: block;
}

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

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

.thin {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
}

/*--------------------------------------*
* aタグ
*--------------------------------------*/
a {
  display: block;
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
}
@media screen and (min-width: 769px) {
  a:hover {
    opacity: 0.6;
    transition: all 0.4s;
  }
}
a[href=""] {
  pointer-events: none;
}

/*--------------------------------------*
* ローディング
*--------------------------------------*/
#loading-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 999;
  display: grid;
  place-content: center;
  text-align: center;
}
#loading-bg figure {
  margin-top: 16px;
  overflow: hidden;
}
#loading-bg figure img {
  transform: translateY(100%);
}
#loading-bg p {
  opacity: 0;
  font-size: 12px;
  color: #4e3b23;
  padding-top: 24px;
  letter-spacing: 0.12em;
}

/*-------------------
* コンテンツのスタイル
-------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
/*--------------------------------------*
* FV
*--------------------------------------*/
/*--------------------------------------*
* 基本設定
*--------------------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.opacity {
  opacity: 0;
}

@keyframes maskLeft {
  0% {
    mask-position: left;
    -webkit-mask-position: left;
  }
  100% {
    mask-position: right;
    -webkit-mask-position: right;
  }
}
@keyframes maskRight {
  0% {
    mask-position: right;
    -webkit-mask-position: right;
  }
  100% {
    mask-position: left;
    -webkit-mask-position: left;
  }
}
.mask_left {
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.mask_right {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

.mask_full {
  clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
figure.zoom {
  overflow: hidden;
}

/*--------------------------------------*
* セクション共通
*--------------------------------------*/
.fv {
  height: 100vh;
  background-color: #fff;
  position: relative;
}
.fv .full,
.fv figure {
  height: 100%;
}
.fv .full img,
.fv figure img {
  object-fit: cover;
  height: 100%;
}
.fv .transition_image {
  position: absolute;
  height: 100%;
  width: 100%;
  inset: 0;
}
.fv .fv_title {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
}
.fv .fv_title h1 {
  padding-top: 16px;
  font-size: 6.4vw;
  text-align: right;
  letter-spacing: 0.12em;
}

#app {
  padding: 0 8px;
  background-color: #4e3b23;
}
#app .code_wrapper {
  background-color: #fff;
}

#code4 .plus:before,
#code4 .plus:after {
  background-color: #fff;
}
#code4 .other .img1 img {
  filter: grayscale(100%);
}

.pc_frame {
  pointer-events: none;
  position: fixed;
  z-index: 997;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 95%;
}
.pc_frame .fixed_title {
  width: 140px;
}
.pc_frame .pick_frame {
  width: 80px;
  height: 80px;
  position: absolute;
}
.pc_frame .pick_frame:nth-child(2) {
  top: 0;
  right: 0;
}
.pc_frame .pick_frame:nth-child(3) {
  bottom: 0;
  right: 0;
  rotate: 90deg;
}
.pc_frame .pick_frame:nth-child(4) {
  bottom: 0;
  left: 0;
  rotate: 180deg;
}

.frame {
  border: 10px solid #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.footer {
  min-height: 100vh;
  background-color: #fff;
  padding: 68px 0 55px;
  display: grid;
  place-content: center;
}
.footer .link_wrap {
  display: grid;
  gap: 16px;
  width: 280px;
  margin: 0 auto 265px;
}
.footer .link_wrap a {
  text-align: center;
  background-color: #4e3b23;
  color: #fff;
  padding: 8px 0;
  letter-spacing: 0.12em;
  font-size: 18px;
  line-height: 120%;
}
.footer .link_wrap a span {
  letter-spacing: 0.03em;
}
.footer .logo {
  width: 280px;
  margin: 0 auto 24px;
}
.footer .copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: center;
}

.close,
.open_card {
  cursor: pointer;
}

.open_card {
  position: relative;
}
.open_card .plus {
  position: absolute;
  width: 6.6666666667vw;
  height: 6.6666666667vw;
  bottom: 5.3333333333vw;
  right: 5.3333333333vw;
}
.open_card .plus:before, .open_card .plus:after {
  content: "";
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  background-color: #000;
  width: 6.6666666667vw;
  height: 1px;
}
.open_card .plus:after {
  rotate: 90deg;
}

.credit .nolink {
  margin-left: 4.2666666667vw;
}
.credit li a:has(.nolink) {
  color: #c4c4c4;
}

.curten_anim figure {
  overflow: hidden;
  position: relative;
}
.curten_anim figure .curten {
  position: absolute;
  inset: 0;
  background-color: #4e3b23;
}

@media screen and (max-width: 768px) {
  .fv {
    overflow: hidden;
  }
  .fv .fv_title {
    width: 100vh;
    rotate: 90deg;
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    right: -2%;
    z-index: 10;
    left: inherit;
    bottom: 0;
    height: 100%;
  }
  .fv .fv_title .logo {
    width: 100vh;
  }
  .fv .transition_image {
    z-index: 11;
  }
  .code_wrapper {
    display: grid;
    gap: 25.6vw;
    overflow: hidden;
  }
  #code1 {
    margin-top: 17.0666666667vw;
    position: relative;
  }
  #code1 .image_wrap figure {
    width: 60vw;
    margin: 0 auto;
  }
  #code1 .image_wrap figure:nth-child(2) {
    rotate: -1.5deg;
  }
  #code1 .code_title {
    font-size: 10.6666666667vw;
    writing-mode: vertical-rl;
    position: absolute;
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    right: -0.8vw;
    letter-spacing: 0.12em;
  }
  #code2 .image_wrap,
  #code8 .image_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #code2 .image_wrap img,
  #code8 .image_wrap img {
    object-fit: cover;
    height: 100%;
  }
  #code4 .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  #code4 .grid img {
    object-fit: cover;
    height: 100%;
  }
  #code4 .other {
    width: 80vw;
    margin: 25.6vw auto 0;
    position: relative;
  }
  #code4 .other .img2 {
    width: 53.3333333333vw;
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
  }
  #code3 .image_wrap {
    width: 80vw;
    margin: 0 auto;
  }
  #code6 {
    position: relative;
  }
  #code6 .image_wrap figure {
    width: 60vw;
    margin: 0 2.6666666667vw 0 auto;
  }
  #code6 .image_wrap figure:nth-child(1) {
    position: relative;
    z-index: 3;
  }
  #code6 .image_wrap figure:nth-child(2) {
    margin: -10.6666666667vw 8vw -8vw auto;
    rotate: -1.5deg;
    position: relative;
    z-index: 2;
  }
  #code6 .code_title {
    font-size: 10.6666666667vw;
    writing-mode: vertical-rl;
    position: absolute;
    position: absolute;
    translate: 0 -50%;
    top: 50%;
    left: -0.8vw;
    letter-spacing: 0.12em;
    z-index: 10;
  }
  #code7 .img1 {
    width: 48vw;
  }
  #code7 .img2 {
    width: 74.6666666667vw;
    margin: -11.2vw 0 0 auto;
  }
  #code9 .image_wrap {
    width: 80vw;
    margin: 0 auto;
  }
  #code10 .other {
    background-color: #4e3b23;
  }
  #code10 .other .grid {
    padding: 25.6vw 0;
    width: 53.3333333333vw;
    display: grid;
    gap: 4.2666666667vw;
    margin: 0 auto;
  }
  .modal_card {
    display: none;
    position: fixed;
    overflow: hidden;
    z-index: 99;
    inset: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
  }
  .modal_card .inner {
    overflow-y: scroll;
    height: 100%;
  }
  .modal_card .close {
    position: absolute;
    font-size: 5.3333333333vw;
    top: 4.2666666667vw;
    left: 4.2666666667vw;
    text-decoration: underline;
  }
  .modal_card figure {
    width: 80vw;
  }
  .modal_card .code_title {
    writing-mode: vertical-rl;
    font-size: 6.4vw;
    padding-right: 8.5333333333vw;
    line-height: 130%;
    letter-spacing: 0.12em;
  }
  .modal_card .modal_title {
    position: absolute;
    top: 13.8666666667vw;
    right: -2.1333333333vw;
    display: grid;
  }
  .modal_card .modal_title .number {
    font-size: 32vw;
  }
  .credit {
    display: grid;
    gap: 8px;
    font-size: 14px;
    margin: 16px 0 0 24px;
    padding-bottom: 21.3333333333vw;
  }
  .credit li a {
    display: flex;
    align-items: center;
  }
  .credit .buy {
    display: block;
    width: 54px;
    text-align: center;
    background-color: #000;
    padding: 4px 0;
    color: #fff;
    margin-left: 16px;
  }
  #code10 .grid .plus:before,
  #code10 .grid .plus:after {
    width: 5.3333333333vw;
  }
  #code10 .grid .plus {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    bottom: 4vw;
    right: 4vw;
  }
}
@media screen and (min-width: 769px) {
  #app {
    padding: 0 16px;
  }
  .fv .fv_title h1 {
    font-size: 1.6666666667vw;
  }
  .code .code_title {
    font-size: 2.7777777778vw;
    letter-spacing: 0.12em;
    padding-top: 20.3472222222vw;
  }
  .open_card .plus {
    width: 1.7361111111vw;
    height: 1.7361111111vw;
    bottom: 1.3888888889vw;
    right: 1.3888888889vw;
  }
  .open_card .plus:before, .open_card .plus:after {
    width: 1.7361111111vw;
    height: 1px;
  }
  #code2 .image_wrap img,
  #code4 .image_wrap img,
  #code9 .image_wrap img {
    object-fit: cover;
    height: 100%;
  }
  #code1 {
    padding-top: 8.6111111111vw;
  }
  #code1 .image_wrap {
    display: flex;
    gap: 10.2777777778vw;
    justify-content: center;
  }
  #code1 .image_wrap figure {
    width: 25.6944444444vw;
    margin: 0 auto;
  }
  #code1 .image_wrap figure:nth-child(2) {
    rotate: -1.5deg;
  }
  #code1 .code_title {
    position: sticky;
    top: 0;
    height: fit-content;
  }
  #code2 .image_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 41.6666666667vw;
    margin: -6.9444444444vw 8.3333333333vw 0 auto;
  }
  #code3 .image_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 59.7222222222vw;
    margin: 10.4166666667vw auto 0 8.3333333333vw;
  }
  #code4 .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 41.6666666667vw;
    margin: 10.4166666667vw 8.3333333333vw 0 auto;
  }
  #code4 .other {
    margin-top: 10.4166666667vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
  }
  #code4 .other .img1 {
    height: 100vh;
  }
  #code4 .other .img1 img {
    object-position: right;
  }
  #code4 .other .img2 {
    position: absolute;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    width: 29.1666666667vw;
  }
  #code5 .image_wrap {
    width: 41.6666666667vw;
    margin: 10.4166666667vw auto 0;
  }
  #code6 .image_wrap {
    margin: 10.4166666667vw auto 0;
    display: flex;
    gap: 10.2777777778vw;
    justify-content: center;
    flex-direction: row-reverse;
  }
  #code6 .image_wrap figure {
    width: 25.6944444444vw;
    margin: 0 auto;
  }
  #code6 .image_wrap figure:nth-child(2) {
    rotate: -1.5deg;
  }
  #code6 .max-width {
    width: 25.6944444444vw;
  }
  #code6 .code_title {
    overflow: hidden; /*必須*/
    white-space: nowrap; /*必須*/
    width: 0;
    padding: 0;
    margin: 20.3472222222vw 0 0 0;
    height: fit-content;
    border-right: 2px solid #000; /*点滅バー*/
  }
  #code6 .code_title.active {
    animation: typing 2s steps(14) forwards, blink 0.4s step-end infinite alternate; /*アニメーション関連*/
  }
  @keyframes typing {
    from {
      width: 0vw;
    }
    to {
      width: 25.6944444444vw;
    }
  }
  @keyframes blink {
    50% {
      border-color: transparent; /*点滅風に見せる*/
    }
  }
  #code7 {
    margin: -37.5vw auto 0 8.3333333333vw;
  }
  #code7 .img1 {
    width: 16.6666666667vw;
  }
  #code7 .img2 {
    width: 26.3888888889vw;
    margin: -3.4722222222vw 0 0 8.6805555556vw;
  }
  #code8 .image_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 41.6666666667vw;
    margin: 10.4166666667vw auto 0 12.5vw;
  }
  #code9 .image_wrap {
    width: 41.6666666667vw;
    margin: 10.4166666667vw 14.2361111111vw 0 auto;
  }
  #code10 .image_wrap > .img1 {
    width: 41.6666666667vw;
    margin: 10.4166666667vw auto 0;
  }
  #code10 .other {
    margin-top: 10.4166666667vw;
    background-color: #4e3b23;
    padding: 9.4444444444vw 0;
  }
  #code10 .other .grid {
    width: 64.5833333333vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.1111111111vw;
  }
  .modal_card {
    position: fixed;
    display: none;
    translate: -50% -50%;
    top: 50%;
    left: 50%;
    z-index: 998;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: grid;
    place-content: center;
  }
  .modal_card .inner {
    width: 76.3888888889vw;
    background-color: #fff;
    position: relative;
    margin: 10vh;
    max-height: 80vh;
    display: grid;
    place-content: center;
    overflow: hidden;
  }
  .modal_card .grid {
    align-items: center;
    overflow-y: scroll;
    padding: 5vh;
    display: grid;
    gap: 5.5555555556vw;
    grid-template-columns: 20.8333333333vw auto;
    scrollbar-width: none; /* Firefox用 */
    -ms-overflow-style: none; /* IE 10+ 用 */
  }
  .modal_card .grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari 用 */
  }
  .modal_card .grid figure {
    margin-left: -2.7777777778vw;
  }
  .modal_card .credit {
    display: grid;
    gap: 16px;
    height: fit-content;
    font-size: 16px;
  }
  .modal_card .credit li a {
    display: flex;
    align-items: center;
  }
  .modal_card .credit .buy {
    font-size: 18px;
    display: block;
    width: 60px;
    text-align: center;
    background-color: #000;
    padding: 4px 0;
    color: #fff;
    margin-left: 16px;
  }
  .modal_card .credit .nolink {
    margin-left: 16px;
  }
  .modal_card .close {
    font-size: 32px;
    position: absolute;
    top: 32px;
    left: 36px;
    text-decoration: underline;
  }
  .modal_card .modal_title {
    position: absolute;
    bottom: 20px;
    right: 24px;
  }
  .modal_card .modal_title .code_title {
    writing-mode: vertical-rl;
    font-size: 24px;
    margin: 0 8px 0 auto;
    letter-spacing: 0.12em;
  }
  .modal_card .modal_title .number {
    font-size: 120px;
  }
  .footer .link_wrap {
    width: 320px;
  }
  .footer .link_wrap a {
    padding: 16px 0;
  }
}/*# sourceMappingURL=style.css.map */