.online-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 17px 50px 15px 50px;
}
.online-text {
  color: #fcfcfc;
  font-family: "Cagliostro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .online-text {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.online-arrow {
  width: 23px;
}
.online-arrow img {
  width: 100%;
}

body {
  font-size: 16px;
  line-height: 1.7;
  color: #534b41;
  background: #f1f1e9;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.header {
  padding-top: 18px;
  opacity: 1;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 30px;
  padding-left: 24px;
  padding-right: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1440px;
    padding-inline: 90px;
    padding-bottom: 51px;
    margin-inline: auto;
  }
}

.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .header__main {
    gap: 3px;
  }
}

.header__text {
  font-size: 8.71px;
}
.header__logo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo img img {
    width: 100%;
  }
}

.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}

.header__nav-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}

.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: initial;
}
.header__link:hover {
  opacity: 0.5;
}

.header__link-icon img {
  width: 12px;
  height: 12px;
  display: block;
}

.header__gallery,
.header__usecase,
.header__about,
.header__onlineshop,
.header__contact {
  font-family: "Cagliostro", sans-serif;
  margin: 0;
  line-height: 1;
}

.header__instagram-icon {
  width: 22px;
  height: 22px;
}

.drawer-open-icon {
  width: 54px;
  height: 43px;
}
.drawer-open-icon.is-checked .drawer-content {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-open-icon img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .drawer-open-icon {
    display: none;
  }
}

.drawer-close-icon {
  width: 54px;
  height: 43px;
}
.drawer-close-icon.is-checked .drawer-content {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-close-icon img {
  width: 100%;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #f7f7f5;
  z-index: index 50;
  padding-top: 18px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .drawer-content {
    display: none;
  }
}

.drawer-content__inner {
  padding-left: 24px;
  padding-right: 24px;
}

.drawer-content__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drawer-content__title {
  font-size: 8.7px;
}

.drawer-content__img {
  width: 114px;
  height: 35px;
}
.drawer-content__img img {
  width: 100%;
}

.drawer-content__menu__wrapper {
  margin-top: 50px;
  background: #fcfcfc;
  border-radius: 20px;
  padding: 40px 24px 26px 24px;
  width: 327px;
  margin-inline: auto;
}

.drawer-content__menu {
  padding-top: 16px;
  display: block;
  text-align: left;
}
.drawer-content__menu:nth-child(1) {
  padding-top: 0;
}

.drawer-content__link {
  border-bottom: 1px solid #534b41;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-content__icon {
  width: 12px;
  height: 12px;
  margin-bottom: 16px;
}
.drawer-content__icon img {
  width: 100%;
}

.instagram-icon {
  width: 22px;
  height: 22px;
}
.instagram-icon img {
  width: 100%;
}

.drawer-content__copyright {
  text-align: center;
  margin-top: 45px;
  font-size: 12px;
}

.gallery-detail {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-after: 80px;
          margin-block-end: 80px;
}
@media screen and (min-width: 768px) {
  .gallery-detail {
    -webkit-margin-before: 110px;
            margin-block-start: 110px;
    -webkit-margin-after: 110px;
            margin-block-end: 110px;
  }
}

.gallery-detail__inner {
  max-width: 423px;
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__inner {
    max-width: 1780px;
    padding-left: 170px;
    padding-right: 170px;
  }
}

.gallery-detail__tilte {
  color: #534b41;
}

.gallery-detail__tilte-en {
  font-family: "Cagliostro", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__tilte-en {
    color: #534b41;
    font-family: Cagliostro;
    font-size: 20px;
    letter-spacing: 0.8px;
  }
}

.gallery-detail__tilte-ja {
  color: #534b41;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__tilte-ja {
    font-size: 32px;
    letter-spacing: 1.28px;
  }
}

.gallery-detail__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery-detail__tag p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.56px;
  border-radius: 81px;
  padding: 4px 20px;
  color: #534b41;
  border: 1px solid #534b41;
  background: #f7f7f5;
  display: inline-block;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__tag p {
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
    -webkit-margin-start: 150px;
            margin-inline-start: 150px;
  }
}

.gallery-detail__message {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.96px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #534b41;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__message {
    font-size: 32px;
    letter-spacing: 1.28px;
    -webkit-margin-start: 130px;
            margin-inline-start: 130px;
  }
}

.gallery-detail__image {
  margin: 0 auto;
  width: 327px;
  height: 219px;
  border-radius: 9.618px;
  background: #d9d9d9;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
.gallery-detail__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .gallery-detail__image {
    width: 800px;
    height: 536px;
  }
}

.gallery-detail__text {
  color: #534b41;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.56px;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__text {
    font-size: 16px;
    letter-spacing: 0.64px;
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
    -webkit-margin-start: 150px;
            margin-inline-start: 150px;
  }
}

.gallery-detail__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .gallery-detail__button {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 172px;
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
    -webkit-margin-start: 150px;
            margin-inline-start: 150px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

.back_to_all {
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s;
  transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
  margin-left: 0;
}
.back_to_all:hover .back__text {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.back_to_all:hover .back_to_all-icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
  background-image: transparent url(../img/view-more__after.png);
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .back_to_all {
    gap: 20px;
  }
}

.back-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.back_to_all-icon {
  width: 38px;
  height: 38px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.back_to_all-icon img {
  width: 100%;
}

.back__text {
  font-family: "Cagliostro", sans-serif;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 768px) {
  .back__text {
    font-size: 18px;
    letter-spacing: 0.72px;
  }
}

.online-shop {
  border-radius: 32px;
  background: -webkit-gradient(linear, left top, right top, from(#534b41), to(#b9a791));
  background: linear-gradient(90deg, #534b41, #b9a791);
  display: inline-block;
}
.online-shop:hover {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.online-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 17px 50px 15px 50px;
}
.online-text {
  color: #fcfcfc;
  font-family: "Cagliostro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.72px;
}
@media screen and (min-width: 768px) {
  .online-text {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.online-arrow {
  width: 23px;
}
.online-arrow img {
  width: 100%;
}

.footer {
  position: relative;
  padding-block: 60px;
}
.footer::after {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: url(../img/footer-bg.png) lightgray 50%/cover no-repeat;
  mix-blend-mode: multiply;
  content: "";
}
.footer::before {
  background-color: #534b41;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 63px;
    padding-bottom: 64px;
  }
}

.footer__inner {
  max-width: 375px;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1980px;
    padding-inline: 270px;
    overflow: hidden;
  }
}

.footer__wrap {
  display: block;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__main {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__main {
    display: block;
    gap: 12px;
  }
}

.footer__text {
  color: #fcfcfc;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 11.765px;
  font-weight: 400;
  letter-spacing: -0.824px;
}
@media screen and (min-width: 768px) {
  .footer__text {
    font-size: 16px;
    letter-spacing: -1.12px;
  }
}

.footer__nav-wrap {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__nav-wrap {
    row-gap: 34px;
  }
}

.footer__nav-up,
.footer__nav-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}

.footer__nav-down {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__nav-down {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
    margin-left: 0;
  }
}

.footer__nav-down1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
}

.footer__nav-down2 {
  display: block;
  margin: 0 auto;
}

.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__gallery,
.footer__usecase,
.footer__about,
.footer__onlineshop,
.footer__contact {
  color: #fcfcfc;
  font-family: "Cagliostro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.copy-right {
  color: #fcfcfc;
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.48px;
}