:root {
  --brown: rgba(101, 63, 28, 1);
  --blue: #50D5DD;
  --water: #CBF3F5;

  &:has(.open.animating) {
    animation: clipAnim 5s;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  font-family: inherit;
  font-size: inherit;
  background-color: transparent;
  border: none;
}

.open {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;

  &.animating {
    background-color: white;
    animation: open1 1s 4s forwards;

    .open-wrapper {
      img {
        animation: open2 2.5s forwards;
      }
    }

    .open-text {
      p {
        animation: open3 2s 1.5s forwards;
      }
    }
  }

  .open-wrapper {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-50%);

    img {
      width: 5vw;
      transform: translateY(-20px);
      opacity: 0;

      &:nth-of-type(2) {
        animation-delay: 0.4s;
      }

      &:nth-of-type(3) {
        animation-delay: 0.8s;
      }

      &:nth-of-type(4) {
        animation-delay: 1.2s;
      }
    }
  }

  .open-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translateX(-45%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 5vw;
    font-family: "Caveat";
    gap: 16px;

    p {
      transform: translateY(20px);
      opacity: 0;

      &:nth-of-type(2) {
        animation-delay: 1.8s;
      }

      &:nth-of-type(3) {
        animation-delay: 2.1s;
      }

      &:nth-of-type(4) {
        animation-delay: 2.4s;
      }
    }
  }
}

a {
  text-decoration: none;
}

strong {
  font-weight: normal;
}

.footprints-r {
  position: absolute;
  width: 40vw;
  transform: scale(1, -1) rotate(180deg);
  z-index: 1;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.footprints-l {
  position: absolute;
  width: 40vw;
  z-index: 1;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.foot1 {
  right: 0;
  top: 10vh;
}

.foot2 {
  left: 0;
  top: 90vh;
}

.foot3 {
  right: 20px;
  top: 210vh;
}

.foot4 {
  top: 480vh;
  left: 0px;
}

.foot5 {
  right: 0;
  bottom: 2vh;
}

.foot6 {
  top: -15vh;
  left: 0;
  transform: rotate(-20deg);
}

.foot7 {
  z-index: -1;
  top: 28vh;
  right: 10vw;
  transform: rotate(-100deg);
  opacity: 0.5;
}

.foot8 {
  top: 290vh;
  left: 0;
  z-index: -1;
  opacity: 0.5;
}

.foot9 {
  bottom: -50vh;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}





header {
  width: 100vw;
  height: 10vh;
  background-color: #FFFCF5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  border-bottom: 2px solid var(--brown);
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;

  .logo {
    font-family: "Caveat";
    font-size: 35px;

    a {
      color: var(--brown);
      text-decoration: none;
    }
  }

  .ham-trigger {
    background-color: var(--water);
    border-radius: 50%;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    &.active {
      background-image: url(../img/footprint.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
    }

    &.active li {
      opacity: 0;
    }

    li {
      list-style: none;
      width: 20px;
      height: 2px;
      background-color: var(--brown);
      transition: all 0.5s;
    }
  }
}


.ham-content {
  height: 0;
  width: 100vw;
  background-color: var(--water);
  overflow: hidden;
  position: fixed;
  z-index: 5;
  top: 10vh;
  left: 0;
  border-bottom: 2px solid var(--brown);
  transition: all 0.5s;

  &::before {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 0;
    background-image: url(../img/footprints.png);
    background-size: cover;
    width: 70%;
    height: 70%;
    background-position: center;
    transition: all 2s;
    transition-delay: 0.7s;
    opacity: 0;
    z-index: -1;
  }

  &.active {
    height: 90vh;
  }

  &.active::before {
    opacity: 1;
  }

  &.active ul {
    opacity: 1;
    margin-left: 70px;
  }

  ul {
    width: 100%;
    height: 80%;
    color: var(--brown);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 50px;
    margin-left: 90px;
    opacity: 0;
    transition: all 0.7s;
    transition-delay: 0.5s;

    li {
      list-style: none;
      font-family: "Kiwi Maru";

      a,
      button {
        color: var(--brown);
        background-color: white;
        padding: 5px 10px;
        font-family: "Kiwi Maru";
      }
    }

    .to-item {
      margin-left: 50px;
    }

    .insta {
      width: 50px;
      height: 50px;
      margin-top: 50px;

      a {
        background-color: rgba(255, 255, 255, 0);
      }

      img {
        width: 100%;
        height: 100%;

      }
    }
  }
}

main {
  margin-top: 10vh;
  color: var(--brown);
}

section {
  margin-bottom: 150px;
}




.top-image {
  height: 90vh;
  background-image: url(../img/top-image.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;

  .pet-box {
    width: 70%;
    animation: top-img 15s infinite linear;
  }

  .title {
    position: absolute;
    bottom: 20vh;
    left: 5vw;

    p {
      letter-spacing: 3px;
      margin-bottom: 5px;
      font-size: 30px;
      font-family: "Caveat";
    }

    h1 {
      font-size: 12px;
      letter-spacing: 2px;
      font-weight: lighter;
      font-family: "Kiwi Maru";
    }
  }
}

.greet {
  text-align: center;

  h2 {
    display: inline-block;
    padding: 0 20px;
    font-size: 18px;
    margin-bottom: 80px;
    letter-spacing: 2px;
    font-family: "Caveat";
    opacity: 0;
    transition: all 0.8s;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 4px;
      background-color: var(--blue);
      transition: all 1s;
      transition-delay: 0.5s;
    }

    b {
      font-size: 35px;
      padding: 0 10px;
    }

    &.show {
      opacity: 1;

      &::before {
        width: 100%;

      }
    }
  }

  p {
    width: 80%;
    margin: 0 auto 30px;
    text-align: left;
    letter-spacing: 1px;
    font-family: "Kiwi Maru";

    span {
      border-bottom: 2px solid var(--water);
    }
  }

  img {
    width: 70%;
    height: 50vw;
    object-fit: cover;
    border-radius: 40px;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s;

    &.show {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

.for-you {
  width: 90%;
  margin: 0 auto;
  border-radius: 50px;
  background-color: var(--water);
  padding: 50px 0;
  text-align: center;
  margin-bottom: 100px;

  h2 {
    font-size: 20px;
    display: inline-block;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-family: "Caveat";
    opacity: 0;
    transition: all 0.8s;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 4px;
      background-color: var(--blue);
      transition: all 1s;
      transition-delay: 0.5s;
    }

    &.show {
      opacity: 1;

      &::before {
        width: 100%;

      }
    }
  }

  .you-1 {
    position: relative;
    height: 290px;
    width: 100%;
    margin-bottom: 20px;

    p {
      background-color: white;
      border-radius: 50px;
      padding: 20px 35px;
      position: absolute;
      letter-spacing: 2px;
      left: 20px;
      font-family: "Kiwi Maru";
      transform: translateX(-30px);
      opacity: 0;
      transition: all 0.8s;

      &::before {
        content: "";
        position: absolute;
        top: 90%;
        left: 50%;
        transform: rotate(-15deg);
        border-top: 30px solid white;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
      }

      &.show {
        opacity: 1;
        transform: translateX(0);
      }
    }

    img {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 200px;
    }
  }

  .you-2 {
    position: relative;
    height: 290px;
    width: 100%;

    p {
      background-color: white;
      border-radius: 50px;
      padding: 20px 35px;
      position: absolute;
      letter-spacing: 2px;
      right: 20px;
      font-family: "Kiwi Maru";
      transform: translateX(30px);
      opacity: 0;
      transition: all 0.8s;

      &::before {
        content: "";
        position: absolute;
        top: 90%;
        left: 50%;
        transform: rotate(15deg);
        border-top: 30px solid white;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
      }

      &.show {
        opacity: 1;
        transform: translateX(0);
      }
    }

    img {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 200px;
    }
  }
}

.voice {
  text-align: center;

  h2 {
    display: inline-block;
    letter-spacing: 2px;
    position: relative;
    font-size: 20px;
    padding: 0 20px;
    margin-bottom: 30px;
    font-family: "Caveat";
    opacity: 0;
    transition: all 1s;

    &::before {
      content: "";
      width: 2px;
      height: 20px;
      position: absolute;
      top: 5px;
      left: 0;
      transform: rotate(-15deg);
      background-color: var(--brown);
    }

    &::after {
      content: "";
      width: 2px;
      height: 20px;
      position: absolute;
      top: 5px;
      right: 0;
      transform: rotate(15deg);
      background-color: var(--brown);
    }

    &.show {
      opacity: 1;
    }
  }

  .voice-content {
    width: 80vw;
    margin: 0 auto 25px;
    border-radius: 50px;
    border: 1px solid var(--brown);
    padding: 20px 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s;

    &.show {
      opacity: 1;
      transform: translateY(0);
    }

    dl {
      display: flex;
      justify-content: center;
      font-family: "Kiwi Maru";
      font-size: 20px;
    }

    p {
      font-size: 14px;
      font-family: "Kiwi Maru";
    }
  }

  img {
    width: 80vw;
  }
}

.to-made {
  text-align: center;

  a {
    color: white;
    background-color: var(--brown);
    padding: 10px 30px;
    letter-spacing: 2px;
    font-family: "Kiwi Maru";
    position: relative;
    transition: all 0.5s;
    transition-delay: 0.7s;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background-color: white;
      transition: all 0.8s;
    }

    &.show {
      box-shadow: 5px 5px 10px gray;

      &::before {
        width: 0;
      }
    }
  }
}

footer {
  color: var(--brown);
  background-color: var(--water);
  padding: 50px 30px 20px;
  position: relative;
  background-image: linear-gradient(to right, var(--brown) 8px, transparent 8px);
  background-size: 20px 2px;
  background-repeat: repeat-x;
  background-position: left top;

  dl {
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: "Kiwi Maru";

    dt {
      font-size: 14px;
      line-height: 200%;
      background-color: white;
      display: inline-block;
      padding: 0 5px;
    }

    dd {
      margin-left: 15px;
      font-size: 14px;

      a {
        color: var(--brown);
        font-size: 16px;
      }
    }
  }

  small {
    text-align: center;
    display: block;
  }
}

.made-top {
  background-image: url(../img/網目.jpg);
  background-size: cover;
  background-position: bottom;
  height: 25vh;
  width: 100%;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    animation: items-top 1s forwards;
  }

  h1 {
    position: absolute;
    top: 40%;
    color: white;
    font-size: 28px;
    letter-spacing: 7px;
    width: 100%;
    transform: translateY(10px);
    opacity: 0;
    text-align: center;
    font-family: "Kiwi Maru";
    text-shadow: 0 0 6px rgb(0, 0, 0);
    animation: items-text 0.8s 0.5s forwards;
  }
}


.love,
.eco,
.only {
  overflow: hidden;
  position: relative;
  margin: 0;
  padding-bottom: 100px;

  .mb {
    margin-top: 50px;
  }

  &.show::before {
    opacity: 1;
  }

  &::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 0;
    z-index: -1;
    width: 80vw;
    height: 2px;
    background-image: linear-gradient(to right, var(--brown) 8px, transparent 8px);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    opacity: 0;
    transition: all 0.5s;
    transition-delay: 0.5s;
  }

  h1 {
    display: inline-block;
    background-color: var(--water);
    padding: 5px 10px;
    border-radius: 30px;
    letter-spacing: 2px;
    font-size: 22px;
    position: relative;
    font-family: "Kiwi Maru";
    opacity: 0;
    transition: all 1s;

    &.show {
      opacity: 1;
    }
  }

  h2 {
    width: 80%;
    margin: 15px auto;
    font-size: 20px;
    font-weight: normal;
    font-family: "Kiwi Maru";
    position: relative;

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      width: 110%;
      height: 200%;
      background-color: white;
      transition: all 1.2s;
      transition-delay: 0.7s;
    }

    &.show::before {
      width: 0;
    }

    &::after {
      position: absolute;
      top: -40px;
      left: -10px;
      z-index: -1;
      font-size: 45px;
      font-weight: bold;
      color: var(--brown);
      opacity: 0.2;
      letter-spacing: 5px;
    }
  }
}

.made-wrapper {
  text-align: center;

  .made-photo {
    width: 90%;
    height: 30vh;
    margin: 0 auto;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50px;
    }
  }

  .made-text {
    width: 80%;
    margin: 50px auto;
    font-family: "Kiwi Maru";
    text-align: left;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s;

    .big {
      font-weight: bold;
      font-size: 18px;
    }

    .border {
      border-bottom: 4px solid var(--water);
    }

    &.show {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

.love h1,
.only h1 {
  left: 10vw;
}

.love {
  h2::after {
    content: "Love";
  }
}

.only {
  h2::after {
    content: "Only";
  }
}

.eco {
  text-align: right;

  &::before {
    left: 0;
  }

  h1 {
    position: relative;
    right: 10vw;
  }

  h2::after {
    content: "Eco";
  }
}

.eco .made-wrapper {
  flex-direction: row-reverse;
}

.items-top {
  height: 25vh;
  width: 100%;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    animation: items-top 1s forwards;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h1 {
    position: absolute;
    top: 40%;
    color: white;
    font-size: 28px;
    letter-spacing: 7px;
    width: 100%;
    transform: translateY(10px);
    opacity: 0;
    text-align: center;
    font-family: "Kiwi Maru";
    text-shadow: 0 0 6px rgb(0, 0, 0);
    animation: items-text 0.8s 0.5s forwards;
  }
}


.item-title {
  text-align: center;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 10px;
    border-top: 4px solid black;
    border-bottom: 2px solid black;
  }

  a {
    text-decoration: none;
    color: var(--brown);
    font-family: "Kiwi Maru";

    &:hover p::before {
      width: 100%;
    }
  }

  h1 {
    font-size: 22px;
    font-weight: normal;
    padding: 0 15px;
    border-bottom: 3px solid var(--blue);
    display: inline-block;
    position: relative;
    font-family: "Kiwi Maru";

    &::before,
    &::after {
      content: "";
      position: absolute;
      height: 80%;
      width: 1px;
      background-color: var(--brown);
      top: 0;
    }

    &::before {
      left: -10px;
      transform: rotate(-15deg);
    }

    &::after {
      right: -10px;
      transform: rotate(15deg);
    }
  }

  h2 {
    font-size: 22px;
    position: relative;
    display: inline-block;
    transition: all 0.4s;
  }

  .item-image {
    width: 70%;
    height: 60vw;
    overflow: hidden;
    margin: 0 auto;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.3s;

      &:hover {
        transform: scale(1.05);
      }
    }
  }

  p {
    font-size: 20px;
    transform: translateX(50px);
    display: inline-block;
    position: relative;

    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      height: 1px;
      width: 0;
      background-color: var(--brown);
      transition: all 0.5s;
    }

    span {
      background-color: var(--brown);
      color: white;
      padding: 0 10px;
    }
  }

  .item-content {
    margin-top: 30px;
    transform: translateY(15px);
    transition: all 0.8s;
    opacity: 0;
    animation: item-content 1s 0.6s forwards;
  }
}

.item-pc-area {
  h1 {
    font-size: 24px;
    margin-top: 60px;
    font-weight: normal;
    font-family: "Kiwi Maru";
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }

  .pc {
    display: none;
  }
}

.item-photos {
  margin: 0 auto;
  width: 80%;

  .one-photo {
    img {
      width: 100%;
      object-fit: cover;
    }
  }

  .three-photo {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;

    img {
      width: 30%;
      cursor: pointer;
      opacity: 0.9s;
      border-radius: 30px;
      transition: all 0.2s;

      &.active {
        border: 4px solid var(--brown);
        box-shadow: 0 10px 5px gray;
        transform: translateY(-10px);
      }
    }
  }
}

.item-text {
  width: 80%;
  margin: 15px auto;
  font-family: "Kiwi Maru";

  p {
    font-size: 20px;
    margin-bottom: 50px;
    padding-right: 30px;
    text-align: right;

    span {
      background-color: var(--brown);
      color: white;
      padding: 0 15px;
    }
  }

  dl {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;

    &:last-of-type {
      display: block;
    }
  }
}

.to-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 70px 0;
  font-family: "Kiwi Maru";

  .to-contact {
    color: var(--brown);
    background-color: var(--water);
    border-radius: 10px;
    display: inline-block;
    width: 250px;
    text-align: center;
    padding: 15px;
    letter-spacing: 2px;
    box-shadow: 5px 5px 5px gray;
    transition: all 0.4s;

    &:hover {
      transform: translateX(10px);
      box-shadow: -5px 5px 5px gray;
    }
  }

  .to-ordermade {
    color: white;
    background-color: var(--brown);
    border-radius: 10px;
    display: inline-block;
    width: 250px;
    text-align: center;
    padding: 15px;
    letter-spacing: 2px;
    box-shadow: 5px 5px 5px gray;
    transition: all 0.4s;

    &:hover {
      transform: translateX(10px);
      box-shadow: -5px 5px 5px gray;
    }
  }
}

.contact-top {
  height: 25vh;
  width: 100%;
  background-image: url(../img/greet.PNG);
  background-position: center;
  background-size: cover;
  position: relative;
  margin-bottom: 50px;

  &::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    animation: items-top 1s forwards;
  }

  h1 {
    position: absolute;
    top: 40%;
    color: white;
    font-size: 28px;
    letter-spacing: 7px;
    width: 100%;
    transform: translateY(10px);
    opacity: 0;
    text-align: center;
    font-family: "Kiwi Maru";
    text-shadow: 0 0 6px rgb(0, 0, 0);
    animation: items-text 0.8s 0.5s forwards;
  }
}

.contact-form {
  color: var(--brown);
  width: 85%;
  margin: 15px auto;
  font-family: "Kiwi Maru";
  background-color: rgba(204, 204, 204, 0.416);
  padding: 20px 40px;
  transform: translateY(-20px);
  opacity: 0;
  animation: contact 1s 0.6s forwards;

  dl {
    margin: 30px 0 10px;
    position: relative;
    font-size: 16px;

    dt {
      position: relative;
      display: inline-block;
      margin-bottom: 10px;
    }

    .required::before {
      content: "必須";
      position: absolute;
      top: 10%;
      left: 110%;
      font-size: 14px;
      background-color: var(--water);
      width: 50px;
      text-align: center;
      border-radius: 30px;
    }

    dd {
      input {
        border: 1px solid var(--brown);
        width: 80%;
        height: 5vh;
        max-height: 50px;
        font-size: 18px;
        margin-left: 15px;
      }

      select {
        width: 150px;
        height: 5vh;
        cursor: pointer;
        margin-left: 15px;
      }

      textarea {
        width: 80%;
        font-size: 18px;
        border: 1px solid var(--brown);
        margin-left: 15px;
      }
    }
  }

  .btn {
    margin: 50px auto 15px;
    width: 150px;
    display: block;
    background-color: var(--brown);
    color: white;
    font-family: "Kiwi Maru";
    letter-spacing: 3px;
    box-shadow: 5px 5px 5px gray;
    cursor: pointer;
    transition: all 0.4s;

    &:hover {
      border-radius: 20px;
    }
  }
}

@keyframes open1 {
  0% {
    pointer-events: auto;
    opacity: 1;
  }

  95% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh);
    pointer-events: auto;
  }
}

@keyframes open2 {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  40% {
    opacity: 1;
    transform: translateY(0);
  }

  70% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes open3 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  60% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes top-img {
  0% {
    transform: translateX(-20%) rotate(-12deg);
  }

  25% {
    transform: translateX(-10%) rotate(0deg);

  }

  50% {
    transform: translateX(0) rotate(12deg);
  }

  75% {
    transform: translateX(-10%) rotate(0deg);
  }

  100% {
    transform: translateX(-20%) rotate(-12deg);
  }
}

@keyframes items-top {
  0% {
    width: 100%;
  }

  20% {
    width: 100%;
  }

  100% {
    width: 0;
  }
}

@keyframes items-text {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contact {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes clipAnim {
  from {
    overflow: clip;
  }

  to {
    overflow: clip;
  }
}

@keyframes item-content {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:767px) {
  .header-nav {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .footer-map {
    display: none;
  }

  .pc {
    display: none;
  }
}