html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: #ffffff;
  color: #706c61;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
body img {
  max-width: 100%;
  height: auto;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0 !important;
}
@media screen and (min-width: 600px) and (max-width: 900px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  body {
    font-size: 16px;
  }
}

@media not screen and (min-width: 900px) {
  .hidden-sm {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 900px) {
  .hidden-tb {
    display: none;
  }
}
@media screen and (min-width: 900px) {
  .hidden-md {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .hidden-lg {
    display: none;
  }
}
.inline-block {
  font-weight: inherit;
  display: inline-block;
}

.inner {
  margin-inline: auto;
  width: min(100%, 290px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 600px) and (max-width: 900px) {
  .inner {
    width: min(100%, 560px);
  }
}
@media screen and (min-width: 900px) {
  .inner {
    gap: 70px;
    padding-top: 80px;
    padding-bottom: 80px;
    width: min(100%, 800px);
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    width: min(100%, 1100px);
  }
}

.section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 900px) {
  .section__container {
    gap: 35px;
  }
}

.heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heading__text-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .heading__text-ja {
    font-size: 32px;
  }
}

.heading__text-en {
  color: #e4c3c4;
  font-family: "Bonheur Royale", cursive;
  font-size: 30px;
  font-weight: 400;
  -webkit-transform: rotate(-9deg);
          transform: rotate(-9deg);
  position: absolute;
  left: -14px;
  top: -20px;
  z-index: 1;
}
.heading__text-en.reverse {
  color: #daa520;
}
@media screen and (min-width: 900px) {
  .heading__text-en {
    left: -40px;
    top: -20px;
    font-size: 42px;
  }
}

.button {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 10px 36px;
  text-align: center;
  color: #ffffff;
  border-radius: 50px;
  background: #b57273;
  font-size: 16px;
  font-weight: 700;
  line-height: 58px; /* 362.5% */
  letter-spacing: -1.12px;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.button:hover {
  color: #706c61 !important;
  background: #daa520;
}
@media screen and (min-width: 900px) {
  .button {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 58px;
    letter-spacing: -1.4px;
  }
}

.header {
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid #ffffff;
  background: transparent;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header.is-scrolled {
  background: rgba(112, 108, 97, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.header__inner {
  padding-inline: 20px;
  height: inherit;
  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;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .header__inner {
    max-width: 1200px;
    padding-inline: 24px;
  }
}

.header__logo {
  z-index: 52;
}
.header__logo a img {
  display: block;
}
@media screen and (min-width: 900px) {
  .header__logo a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:hover {
    opacity: 0.6;
  }
}

.header__nav-wrap.is-checked .header__logo {
  display: none;
}

.header__icon {
  z-index: 52;
}
@media screen and (min-width: 900px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 24px !important;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  width: 36px;
  top: 9px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 9px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.drawer-icon__bar {
  position: absolute;
  width: 36px;
  height: 4px;
  border-radius: 6px;
  background: #ffffff;
  -webkit-transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: top 0.4s linear, -webkit-transform 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear;
  transition: transform 0.4s linear, top 0.4s linear, -webkit-transform 0.4s linear;
  left: 0;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 12px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 24px;
}

.header__nav-wrap {
  display: none;
  z-index: 1;
  margin-inline: auto;
}
.header__nav-wrap.is-checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 900px) {
  .header__nav-wrap {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header__nav-logo {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 70;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.header__nav-wrap.is-checked .header__nav-logo {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .header__nav-logo {
    display: none;
  }
}

.header__nav {
  background: #b57273;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  padding-top: 115px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out, -webkit-transform 0.4s ease-out;
}
.header__nav.is-checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 900px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.header__nav-lists {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .header__nav-lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}

.header__nav-item {
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.header__nav-item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.header__nav-item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.header__nav-item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (min-width: 900px) {
  .header__nav-item {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: none;
    transition: none;
  }
}

.header__nav.is-checked .header__nav-item {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__nav-link {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
}
.header__nav-link.hidden-sp {
  display: none;
}
.header__nav-link.hidden-pc {
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .header__nav-link {
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header__nav-link.hidden-sp {
    display: inline-block;
  }
  .header__nav-link.hidden-pc {
    display: none;
  }
  .header__nav-link:hover {
    color: #c7c3b9;
  }
  .header__nav .header__nav-link.button:hover,
  .header__nav-link .header__nav-link.button:hover {
    color: #706c61;
    background: #daa520;
  }
}
.header__nav-link.button {
  color: #b57273;
  background: #ffffff;
  padding: 4px 36px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 900px) {
  .header__nav-link.button {
    color: #ffffff;
    background: #b57273;
    padding: 0 30px;
  }
}

.fv {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

.fv__bg {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.fv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 79px;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  padding: 0;
}
@media screen and (min-width: 900px) {
  .fv__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    left: 30px;
    right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__inner {
    left: 170px;
    right: 170px;
    max-width: 1100px;
  }
}

.fv__contents {
  opacity: 0.8;
  background: rgba(112, 108, 97, 0.8);
  color: #fffdf9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding: 30px 20px;
}
@media screen and (min-width: 900px) {
  .fv__contents {
    max-width: 756px;
  }
}

.fv__heading {
  font-family: "Shippori Mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 58px;
  font-size: 34px;
}
@media screen and (min-width: 900px) {
  .fv__heading {
    font-size: 48px;
  }
}

@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 16px;
  }
}

.fv__button {
  margin: 0;
}

.fv__button-text.pc {
  display: none;
}
@media screen and (min-width: 900px) {
  .fv__button-text.pc {
    display: block;
  }
  .fv__button-text.sp {
    display: none;
  }
}

.work__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.work__cards {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .work__cards {
    height: 768px;
    row-gap: 48px;
    -webkit-column-gap: 48px;
       -moz-column-gap: 48px;
            column-gap: 48px;
    align-self: stretch;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.work__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 13px;
}

.work__card-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.work__card-img img {
  max-height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__card-title {
  font-weight: 500;
}

.work__card-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.work__card-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid #b57273;
  background: #ffffff;
  color: #b57273;
  font-size: 12px;
}
.work__card-tab.reverse1 {
  background: #edeae0;
  border: 1px solid #edeae0;
  color: #b57273;
}
.work__card-tab.reverse2 {
  background: #edeae0;
  border: 1px solid #edeae0;
  color: #938e82;
}
.work__card-tab.reverse3 {
  background: #b57273;
  border: 1px solid #b57273;
  color: #ffffff;
}

.about {
  background: #fffcfc;
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .about__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
  }
}

.about__img {
  text-align: center;
}
.about__img img {
  width: 100%;
  min-width: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) and (max-width: 900px) {
  .about__img img {
    width: 300px;
  }
}

.voice__content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.voice__content-item-text {
  color: #b57273;
  background: #fffcfc;
  padding: 20px;
  border-radius: 4px;
}

.contact {
  background: #edeae0;
}

.contact__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 1px;
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (min-width: 600px) and (max-width: 900px) {
  .contact__item {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) {
  .contact__item {
    -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;
    max-width: 1100px;
  }
}

.contact-control__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
@media screen and (min-width: 900px) {
  .contact-control__head {
    font-size: 20px;
  }
}

.form-label__required {
  color: #fffdf9;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24px;
  padding: 4px;
  margin-left: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 4px;
  background: #c7c3b9;
}
@media screen and (min-width: 900px) {
  .form-label__required {
    font-size: 12px;
    width: 40px;
    height: 30px;
  }
}

.contact-control__input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 800px;
}

.form-text {
  width: 100%;
  padding: 12px 19px 12px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #706c61;
  border-radius: 8px;
  background: #fffdf9;
  border: 1px solid #fffdf9;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 900px) {
  .form-text {
    font-size: 16px;
  }
}
.form-text:hover, .form-text:focus {
  border-color: #b57273;
  background: #fff5f5;
  outline: none;
}
.form-text:user-invalid {
  border-color: #daa520;
  background: #fbf4e1;
}

.form-textarea {
  width: 100%;
  padding: 12px 19px 12px 24px;
  height: 100px;
  color: #706c61;
  border-radius: 8px;
  background: #fffdf9;
  border: 1px solid #fffdf9;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-textarea:hover, .form-textarea:focus {
  border-color: #b57273;
  background: #fff5f5;
  outline: none;
}
.form-textarea:user-invalid {
  border-color: #daa520;
  background: #fbf4e1;
}

.contact__footer {
  margin-top: 30px;
}
@media screen and (min-width: 900px) {
  .contact__footer {
    margin-top: 48px;
  }
}

.contact__privacy {
  border: 1px solid #c7c3b9;
  padding: 16px;
}
@media screen and (min-width: 900px) {
  .contact__privacy {
    padding: 20px;
  }
}

.contact__privacy-text {
  margin-bottom: 20px;
}

.contact-checkbox {
  margin-left: 20px;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}
.form-checkbox__input:focus + .form-checkbox__text::before {
  border-color: #b57273;
  background: #fff5f5;
}
.form-checkbox__input:user-invalid + .form-checkbox__text::before {
  border-color: #daa520;
  background: #fbf4e1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 36px;
  line-height: 160%;
  font-size: 14px;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text {
    font-size: 16px;
  }
}
.form-checkbox__text::before, .form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: #fffdf9;
  border: 1px solid #fffdf9;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::before {
    margin-top: 2px;
  }
}
.form-checkbox__text::after {
  width: 14px;
  height: 9px;
  top: 10px;
  left: 5px;
  background: url(../img/check.png) no-repeat center center/contain;
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .form-checkbox__text::after {
    top: 14px;
    left: 5px;
    margin-top: 0.8px;
  }
}

.contact__submit {
  text-align: center;
  padding-top: 48px;
}

.contact-button {
  padding: 16px 41px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.32px;
}

.footer {
  background: #706c61;
}

.footer__inner {
  position: relative;
  margin-inline: auto;
  padding-top: 40px;
  padding-bottom: 70px;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .footer__inner {
    gap: 0;
  }
}

.footer-head__text {
  color: #fffdf9;
  text-align: center;
}

.footer-head__sns-items {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer__sns-link img {
  width: 40px;
}

.footer-head__logo {
  width: 100px;
}

.footer__pagetop {
  position: absolute;
  right: -50px;
  bottom: 162px;
  z-index: 50;
}

.pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 50;
}
.pagetop img {
  width: 60px;
}
@media screen and (min-width: 900px) {
  .pagetop img {
    width: 78px;
  }
}
@media screen and (min-width: 900px) {
  .pagetop {
    right: 30px;
    bottom: 30px;
  }
}

.footer__copyright {
  color: #c7c3b9;
  text-align: center;
  padding-bottom: 22px;
}