@charset "utf-8";

/* 
#AEAAAA　薄いグレー
#1a1a1a　濃いグレー
#E5C45C　暗い黄色
#FAE019　明るい黄色
 */

*,
::before,
::after {
  margin: 0;
  padding: 0;
}

img {
  box-sizing: border-box;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: serif;
  color: #1a1a1a;
  background-color: #e5c45c22;
  width: 100%;
}

.wrap {
  background-color: #fff;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

@font-face {
  font-family: "en";
  src: url(../font/Thesignature.ttf);
}

.en {
  font-family: "en";
  font-weight: lighter;
  color: #e5c45c;
}

.title {
  font-size: 5vw;
  width: fit-content;
  padding: 5px 15px;
  text-shadow: 2px 2px 0px #1a1a1aaa;
}

.in {
  transform: translateY(50px);
  opacity: 0;
  transition: 0.7s;
}

.in.show {
  transform: translateY(0);
  opacity: 1;
  transition: 0.7s;
}

/* header */

#index .header {
  height: 100vh;
  overflow: hidden;
}

.gloval-nav {
  position: fixed;
  width: 80%;
  height: 70px;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  background-color: #e5c45caa;
  backdrop-filter: blur(10px);
}

#index .gloval-nav {
  width: 80%;
  max-width: 1200px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e5c45c;
  z-index: 100;
}

#index .gloval-nav.hidden {
  width: 80%;
  max-width: 1200px;
  background-color: #e5c45caa;
  backdrop-filter: blur(10px);
  transform: translateY(-100px);
  transition: all 1s;
}

#index .gloval-nav.fixed {
  width: 80%;
  max-width: 1200px;
  background-color: #e5c45caa;
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: all 1s;
}

.gloval-nav .header-nav {
  width: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gloval-nav .header-nav a {
  color: #1a1a1a;
  width: fit-contents;
  padding: 0 10%;
  text-align: center;
  display: block;
  font-size: 2vw;
  letter-spacing: 2px;
  transition: all 0.4s;
}

.gloval-nav .header-nav a:hover {
  color: #fff;
  text-align: center;
  text-shadow: 1px 1px 2px #1a1a1a;
  transition: all 0.4s;
}

#index .first-view {
  position: relative;
}

#index .first-view h1 {
  position: absolute;
  font-size: 10vw;
  top: 30%;
  left: 0;
  right: 0;
  text-align: center;
  mix-blend-mode: screen;
}

#index .first-view img {
  width: 100%;
  height: calc(100vh - 70px);
  object-fit: cover;
}

/* about */

#index .title {
  margin: 100px 0 0 5%;
}

#index .profile {
  display: flex;
  width: 90%;
  margin: 0 auto;
  align-items: flex-end;
  justify-content: center;
}

#index .profile .profile-text {
  width: 30%;
  height: fit-content;
  margin-right: 50px;
}

#index .profile .profile-text h3 {
  font-size: 2vw;
  width: fit-content;
}

#index .profile .profile-text h3::before {
  content: "あぜうら みゆき";
  display: block;
  font-size: 0.6vw;
  text-align: center;
  margin-bottom: -5px;
}

#index .profile .profile-text p {
  font-size: 0.6vw;
  margin-top: 10px;
}

#index .profile .profile-img {
  width: 30%;
  aspect-ratio: 1/1;
  position: relative;
}

#index .profile .profile-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#index .profile .profile-img::before {
  content: "";
  background-color: #e5c45caa;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -13%;
  left: -50%;
  z-index: -1;
}

.button {
  width: 80%;
  margin: 30px auto;
  display: flex;
  justify-content: center;
}

.button a {
  display: block;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 15px;
  font-size: 2vw;
  color: #fff;
  background-color: #e5c45caa;
  transition: all 0.4s;
}

.button a:hover {
  background-color: #e5c45c;
  box-shadow: 2px 2px 0 #1a1a1a;
  transition: all 0.4s;
}

/* work */

#index .work {
  margin-bottom: 100px;
}

#index .work p {
  width: 50%;
  margin: 0 auto;
  font-size: 0.8vw;
}

#index .work ul {
  width: 60%;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
}

#index .work ul li {
  width: 25%;
  border: 1px solid #e5c45c;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}

#index .work ul li:hover {
  transform: scale(1.1);
  transition: all 0.4s;
}

#index .work ul li a {
  display: block;
}

/* footer */

.footer {
  width: 100%;
  height: 15vh;
  background-color: #1a1a1a;
  padding-top: 100px;
}

.footer-inner {
  width: 50%;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav li a {
  font-size: 2.5vw;
  transition: 0.4s;
}

.footer-nav li a:hover {
  color: #fff;
  transition: 0.4s;
}

.footer-inner .instagram {
  width: 30px;
  margin: 15px auto;
  display: block;
  aspect-ratio: 1/1;
}

.footer-inner .instagram img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* about */

.title {
  position: relative;
  top: 80px;
  margin: 0 0 80px 5%;
}

.content {
  width: 70%;
  margin: 20px auto 50px;
}

h3 {
  font-size: clamp(1rem, 1.3vw, 2rem);
  margin-bottom: 10px;
  width: fit-content;
  padding: 0 10px;
  background: linear-gradient(transparent 70%, #e5c45caa 70%);
}

#about .about .content dl dt:first-child {
  margin-top: 0;
}

#about .about .skill ul li {
  font-size: clamp(0.5rem, 0.7vw, 1rem);
  list-style-type: disc;
  margin-left: 20px;
}

#about .about .content dl dt {
  margin-top: 30px;
  color: #e5c45c;
  font-size: clamp(0.8rem, 1vw, 1.7rem);
}

#about .about .content dl dd {
  font-size: clamp(0.5rem, 0.7vw, 1rem);
  margin-top: 10px;
}

#about .about .content dl .small {
  width: 60%;
}

#about .about .content dl dd ul li {
  list-style-type: disc;
  margin-left: 20px;
}

#about .biotable {
  margin: 100px 0 0;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about .biotable li {
  display: flex;
  font-size: clamp(0.8rem, 2vw, 2rem);
}

#about .sentence {
  width: 26vw;
  margin: 0 0 50px 15px;
  padding-left: 15px;
  border-left: 3px double #e5c45c;
}

#about .sentence dt {
  font-size: clamp(0.8rem, 2vw, 2rem);
  font-weight: bold;
  margin-bottom: 10px;
}

#about .sentence dd {
  word-wrap: break-word;
  font-size: clamp(0.8rem, 1vw, 1.7rem);
  line-height: 2;
}

#about .hobby p {
  margin-bottom: 30px;
}

#about details {
  width: 90%;
  margin: 10px 0;
}

#about details summary {
  width: 100%;
  background-color: #1a1a1a;
  font-size: clamp(0.8rem, 1vw, 1.7rem);
  color: #fff;
  padding: 10px;
  margin-bottom: 5px;
  cursor: pointer;
}

#about details div {
  display: flex;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: 1px solid #e5c45c;
}

#about details p {
  width: 60%;
  /* background-color: #fff; */
  font-size: clamp(0.6rem, 0.8vw, 1.1rem);
  color: #1a1a1a;
  padding: 10px;
  margin: 10px 0;
}

#about details img {
  width: 40%;
  aspect-ratio: 1/1;
  /* background-color: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  padding: 10px;
  margin: 10px 0;
}

#about .hobby {
  margin-bottom: 100px;
}

/* work */

#work p {
  width: 50%;
  margin: 0 auto;
  font-size: 1vw;
}

#work .grid {
  width: 85%;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3%;
}

#work .grid dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: #1a1a1aaa;
  padding: 5px;
  transition: all 0.4s;
}

#work .grid dl:hover {
  background-color: #e5c45c;
  transition: all 0.4s;
}

#work .grid .thumbnail {
  aspect-ratio: 1/1;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}

#work .grid .creations-name {
  font-size: clamp(0.6rem, 0.7vw, 1rem);
  padding-top: 5px;
  color: #fff;
}

#work .grid .modal {
  display: none;
  cursor: default;
}

#work .grid .modal.active {
  display: block;
  position: fixed;
  top: 15vh;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 50%;
  aspect-ratio: 1/0.7;
  max-height: 100vh;
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #e5c45c;
}

#work .grid .modal .close {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2vw;
  color: #fff;
  background-color: #1a1a1a;
  aspect-ratio: 1/1;
  width: 5%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#work .modal .creations-img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

#work .modal .creations-img img {
  width: 70%;
  object-fit: contain;
}

#work .modal .creations-img video {
  width: 50%;
  object-fit: contain;
}

#work .modal .creations-img .dog {
  width: 80%;
  object-fit: contain;
}

#work .modal .creations-img iframe {
  width: 100%;
  aspect-ratio: 2/1.5;
}

#work .modal dd:nth-child(n + 2) {
  width: 50%;
  margin-top: 10px;
  text-align: start;
  font-size: clamp(0.6rem, 0.7vw, 1rem);
}

#work .modal .creations-tool::before {
  content: "使用ツール";
  width: fit-content;
  padding: 0 10px;
  margin: 5px 0;
  display: block;
  background: linear-gradient(transparent 70%, #ffffffaa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#work .modal .creations-part::before {
  content: "担当範囲";
  width: fit-content;
  padding: 0 10px;
  margin: 5px 0;
  display: block;
  background: linear-gradient(transparent 70%, #ffffffaa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#work .modal .creations-time::before {
  content: "制作時間";
  width: fit-content;
  padding: 0 10px;
  margin: 5px 0;
  display: block;
  background: linear-gradient(transparent 70%, #ffffffaa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#work .creations .modal .creations-details {
  margin-top: 30px;
  padding: 5px;
  background-color: #ffffffaa;
}

#work .creations.achievements {
  position: relative;
}

#work .creations.achievements::after {
  content: "実績";
  color: #1a1a1a;
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
  display: block;
  background-color: #e5c45c;
  width: 25%;
  padding: 3px;
  text-align: center;
  /* aspect-ratio: 1/1; */
  position: absolute;
  top: -5px;
  right: -5px;
}

#work .modal .button,
#work .button {
  width: fit-content;
  height: fit-content;
  display: block;
  color: #fff;
  background-color: #1a1a1a;
  padding: 5px 15px;
  font-size: clamp(0.9rem, 1vw, 1.5rem);
  cursor: pointer;
}

#work .modal .kisekae {
  margin-top: 30px;
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#work .modal .kisekae img {
  width: 20%;
}

#work .modal .stickerimg-list {
  width: 50%;
  height: 30%;
  margin-top: 30px;
  display: flex;
  overflow-x: scroll;
  border: 1px solid #1a1a1a;
  background-color: #ffffffaa;
}

#work .modal .stickerimg-list img {
  margin-right: 30px;
}

#work .modal .stickerimg-list img:first-child {
  margin-left: 30px;
}

#work .award h4 {
  font-size: clamp(0.8rem, 1vw, 1.7rem);
  margin: 50px 0 10px;
  width: fit-content;
  padding: 0 10px;
}

#work .award img {
  width: 60%;
  display: block;
  margin: 0 auto;
}

#work .award {
  width: 100%;
  margin-bottom: 100px;
}

#work .photo {
  display: flex;
  margin-top: 30px;
}

#work .gallery.grid {
  margin: 0 15px;
  padding-right: 5px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  justify-content: center;
  align-items: center;
  height: 50vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

#work .gallery img {
  transition: all 0.4s;
}

#work .gallery img:hover {
  transform: scale(0.9);
  box-shadow: 2px 2px 5px #e5c45c;
  transition: all 0.4s;
}

#work .details {
  padding-right: 15px;
  height: 50vh;
  overflow-y: scroll;
  width: 70%;
}

#work .details h3 {
  margin-top: 10px;
  font-size: clamp(0.9rem, 1vw, 1.5rem);
  text-align: center;
}

#work .details .explanation {
  margin: 10px;
  width: 80%;
  display: block;
  line-height: 2;
  font-size: clamp(0.4rem, 0.5vw, 1rem);
}

#contents .contents {
  width: 80%;
  margin: 0 auto;
  padding-top: 100px;
}

#contents .contents-title {
  font-size: clamp(1rem, 1.3vw, 2rem);
  margin-bottom: 10px;
  width: fit-content;
  padding: 0 10px;
  background: linear-gradient(transparent 70%, #e5c45caa 70%);
}

#contents .contents-img {
  width: 50%;
  margin: 0 auto;
}

#contents .contents-img iframe {
  width: 100%;
  aspect-ratio: 2/1.3;
}

#contents .contents-img video {
  width: 100%;
  aspect-ratio: 1/1;
}

#contents .contents-img .dog {
  width: 100%;
  aspect-ratio: 2/1.3;
}

#contents dd {
  margin: 20px auto;
  width: 50%;
  text-align: start;
  font-size: clamp(0.6rem, 0.7vw, 1rem);
}

#contents dd:last-child {
  margin: 40px auto 80px;
}


#contents .contents-tool::before {
  content: "使用ツール";
  width: fit-content;
  padding: 0 10px;
  margin: 5px 0;
  display: block;
  background: linear-gradient(transparent 70%, #e5c45caa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#contents .contents-part::before {
  content: "担当範囲";
  width: fit-content;
  padding: 0 10px;
  margin: 5px 0;
  display: block;
  background: linear-gradient(transparent 70%, #e5c45caa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#contents .contents-time::before {
  content: "制作時間";
  width: fit-content;
  padding: 0 10px;
  margin: 5px 0;
  display: block;
  background: linear-gradient(transparent 70%, #e5c45caa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#contents .number {
  margin: 20px 0;
}

#contents .number li {
  background-color: #e5c45c55;
  margin: 10px 0;
  padding: 5px;
}

#contents .after {
  margin-bottom: 50px;
}

#contents h5 {
  margin: 50px auto 30px;
  background: linear-gradient(transparent 70%, #e5c45caa 70%);
  font-size: clamp(0.8rem, 0.8vw, 1.3rem);
}

#contents .img {
  width: 90%;
  margin: 15px auto;
}

#contents .img img {
  aspect-ratio: 2/1.3;
  object-position: top;
  object-fit: cover;
}

.dots-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dots-wrap li {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #1a1a1a33;
  border: 1px solid #e5c45c;
  border-radius: 50%;
  cursor: pointer;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: #e5c45c;
  border: 1px solid #e5c45c;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}



#contents .button {
  width: fit-content;
  height: fit-content;
  display: block;
  color: #fff;
  background-color: #1a1a1a;
  padding: 5px 15px;
  font-size: clamp(0.9rem, 1vw, 1.5rem);
  cursor: pointer;
  transition: all 0.4s;
}

#contents .button:hover {
  background-color: #e5c45c;
  color: #1a1a1a;
  transition: all 0.4s;
}

#contents .design .img li img {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {

  .wrap {
    width: 100%;
    max-width: 100%;
  }

  #index .header {
    height: 50vh;
  }

  .gloval-nav {
    top: 0;
    width: 100%;
    height: 50px;
  }

  #index .gloval-nav {
    width: 100%;
    height: 50px;
  }

  #index .gloval-nav.hidden {
    width: 100%;
    max-width: 100%;
  }

  #index .gloval-nav.fixed {
    width: 100%;
    max-width: 100%;
  }

  .gloval-nav .header-nav {
    width: 60%;
  }

  .gloval-nav .header-nav a {
    width: 25%;
    font-size: 5vw;
  }

  .gloval-nav .header-nav a:hover {
    font-size: 3vw;
  }

  #index .first-view h1 {
    font-size: 15vw;
  }

  #index .first-view img {
    height: calc(50vh - 50px);
  }

  /* index-about */

  .title {
    top: 0;
    margin: 0 0 20px 5%;
    font-size: 10vw;
    text-shadow: 1px 1px 0px #1a1a1aaa;
  }

  .title:first-child {
    top: 50px;
    margin-bottom: 50px;
  }

  #index .title {
    margin: -50px 0 0 50px;
  }

  #index .profile {
    width: 90%;
    margin: 100px auto 0;
  }

  #index .profile .profile-text {
    width: 30%;
    height: fit-content;
    margin-right: 50px;
  }

  #index .profile .profile-text h3 {
    font-size: 5vw;
    width: fit-content;
  }

  #index .profile .profile-text h3::before {
    font-size: 1.5vw;
  }

  #index .profile .profile-text p {
    font-size: 1vw;
  }

  #index .profile .profile-img::before {
    top: -13%;
    left: -30%;
  }


  .button a {
    font-size: 4vw;
    color: #fff;
  }

  /* index-work */

  #index .work p {
    margin: 100px auto 0px;
    font-size: 1vw;
  }

  /* footer */

  .footer {
    height: 15vh;
    padding-top: 20px;
  }

  .footer-nav li a {
    font-size: 4vw;
  }

  .footer-inner .instagram {
    width: 15px;
    margin: 15px 0 20px auto;
  }

  /* about */

  .content {
    width: 80%;
  }

  #about .biotable {
    margin: 0 auto;
  }

  #about .sentence {
    width: 90%;
  }

  #about .sentence dt {
    font-size: clamp(0.8rem, 2vw, 2rem);
  }

  #about .sentence dd {
    font-size: clamp(0.7rem, 0.7vw, 1.5rem);
  }

  #about .hobby p {
    font-size: clamp(0.8rem, 2vw, 2rem);
  }

  #about details {
    width: 90%;
    margin: 10px 0;
  }

  #about details div {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #e5c45c;
  }

  #about .hobby details p {
    width: 90%;
    /* background-color: #fff; */
    font-size: clamp(0.6rem, 2vw, 2rem);
    color: #1a1a1a;
    padding: 0px;
    margin: 10px auto 0;
  }

  #about details img {
    width: 90%;
    aspect-ratio: 1/1;
    padding: 0;
    margin: 10px auto;
  }

  #about .hobby {
    margin-bottom: 100px;
  }

  /* work */

  #work p {
    width: 60%;
    font-size: 2vw;
  }

  #work .grid {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  #work .grid .creations-name {
    font-size: clamp(0.5rem, 1vw, 1rem);
  }

  #work .grid .modal.active {
    width: 80%;
    aspect-ratio: 1/1.3;
    max-height: 80vh;
  }

  #work .grid .modal .close {
    font-size: 4vw;
    width: 10%;
  }

  #work .modal .creations-img img {
    width: 80%;
  }

  #work .modal .creations-img video {
    width: 60%;
  }

  #work .modal dd:nth-child(n + 2) {
    width: 80%;
  }

  #work .modal .kisekae {
    width: 90%;
  }

  #work .modal .kisekae img {
    width: 22%;
  }

  #work .modal .stickerimg-list {
    width: 90%;
  }

  #work .modal .stickerimg-list img {
    margin-right: 15px;
  }

  #work .modal .stickerimg-list img:first-child {
    margin-left: 15px;
  }

  #work .photo {
    display: flex;
    margin-top: 30px;
  }

  #work .gallery.grid {
    height: 30vh;
  }

  #work .details {
    height: 30vh;
  }

  #work .details h3 {
    margin-top: 10px;
    font-size: clamp(0.5rem, 1vw, 1.5rem);
    text-align: center;
  }

  #work .details .explanation {
    margin: 10px;
    width: 80%;
    display: block;
    line-height: 1;
    font-size: clamp(0.4rem, 0.5vw, 1rem);
  }

  #contents .contents {
    width: 80%;
    margin: 0 auto;
    padding-top: 100px;
  }

  #contents .contents-title {
    font-size: clamp(1rem, 1.3vw, 2rem);
    margin-bottom: 10px;
    width: fit-content;
    padding: 0 10px;
    background: linear-gradient(transparent 70%, #e5c45caa 70%);
  }

  #contents .contents-img {
    width: 100%;
    margin: 0 auto;
  }

  #contents .contents-img iframe {
    width: 100%;
    aspect-ratio: 2/1.3;
  }

  #contents .contents-img video {
    width: 100%;
    aspect-ratio: 1/1;
  }

  #contents .contents-img .dog {
    width: 100%;
    aspect-ratio: 2/1.3;
  }

  #contents dd {
    margin: 20px auto;
    width: 100%;
    text-align: start;
    font-size: clamp(0.6rem, 0.7vw, 1rem);
  }

  #contents dd:last-child {
    margin: 40px auto 80px;
  }


  #contents .contents-tool::before {
    content: "使用ツール";
    width: fit-content;
    padding: 0 10px;
    margin: 5px 0;
    display: block;
    background: linear-gradient(transparent 70%, #e5c45caa 70%);
    font-size: clamp(0.8rem, 0.8vw, 1.3rem);
  }

  #contents .contents-part::before {
    content: "担当範囲";
    width: fit-content;
    padding: 0 10px;
    margin: 5px 0;
    display: block;
    background: linear-gradient(transparent 70%, #e5c45caa 70%);
    font-size: clamp(0.8rem, 0.8vw, 1.3rem);
  }

  #contents .contents-time::before {
    content: "制作時間";
    width: fit-content;
    padding: 0 10px;
    margin: 5px 0;
    display: block;
    background: linear-gradient(transparent 70%, #e5c45caa 70%);
    font-size: clamp(0.8rem, 0.8vw, 1.3rem);
  }

  #contents .button {
    width: fit-content;
    height: fit-content;
    display: block;
    color: #fff;
    background-color: #1a1a1a;
    padding: 5px 15px;
    font-size: clamp(0.9rem, 1vw, 1.5rem);
    cursor: pointer;
    transition: all 0.4s;
  }

  #contents .button:hover {
    background-color: #e5c45c;
    color: #1a1a1a;
    transition: all 0.4s;
  }


}