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

.header {
  padding-top: 18px;
  background-color: #f1f1e9;
}
.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: 114px;
  height: 35px;
}
@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;
}
.header__link:hover {
  opacity: 0.5;
}

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

.header__gallery,
.header__usecase,
.header__about,
.header__onlineshop,
.header__contact {
  font-family: "Cagliostro", sans-serif;
}

.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;
  vertical-align: 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__all {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .gallery__all {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

.gallery__all__inner {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (min-width: 768px) {
  .gallery__all__inner {
    padding-left: 170px;
    padding-right: 170px;
  }
}

@media screen and (min-width: 768px) {
  .gallery__title {
    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;
  }
}

@media screen and (min-width: 768px) {
  .gallery__title-en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6px;
  }
}

.gallery__title-en-text {
  font-size: 16px;
  letter-spacing: 0.64px;
}
@media screen and (min-width: 768px) {
  .gallery__title-en-text {
    font-size: 20px;
  }
}

.gallery__title-ja {
  font-size: 20px;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .gallery__title-ja {
    font-size: 32px;
  }
}

.tag__contents {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .tag__contents {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
    text-align: center;
  }
}

.tag__link {
  border-radius: 81px;
  color: #fcfcfc;
  background: #534b41;
  padding: 6px 28px 6px 28px;
  font-size: 12px;
}
.tag__link:nth-of-type(1), .tag__link:nth-of-type(2), .tag__link:nth-of-type(4), .tag__link:nth-of-type(5), .tag__link:nth-of-type(6) {
  color: #534b41;
  background: #fcfcfc;
  border: 1px solid #534b41;
}
@media screen and (min-width: 768px) {
  .tag__link {
    color: #fcfcfc;
    background: #534b41;
    padding: 8px 34px 8px 34px;
    font-size: 16px;
  }
}

.gallery__contents {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}
.gallery__contents .tag__contents {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .gallery__contents {
    margin-top: 80px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.gallery__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .gallery__content {
    gap: 16px;
    font-size: 16px;
  }
}

.gallery__photo img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.gallery__photo img:hover {
  -webkit-transition: scale(1.05);
  transition: scale(1.05);
}

.gallery__text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.56px;
}
@media screen and (min-width: 768px) {
  .gallery__text {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

.online {
  text-align: center;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .online {
    margin-top: 80px;
  }
}

.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;
}