@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
}

img {
  vertical-align: top;
  border: none;
}

body {
  background-color: #921a1a;
  background-repeat: no-repeat;
}
body#fukidashi, body#images {
  background-image: url(bg.webp);
  background-position: 100% 0;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  body#fukidashi, body#images {
    background-size: 100% auto;
  }
}
#canvas {
  margin: 5vw 5vw 0;
}

.btns {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  width: 90%;
  margin: 5vw auto 0;
}
.btns .button {
  border-radius: 10px;
  outline: none;
  border: 4px solid #000;
  font-size: 24px;
  height: 80px;
  flex: 1;
  color: #000;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.btns .button svg {
  width: 50px;
  fill: #000;
}
.btns .button#keshi svg {
  transform: rotate(45deg);
}
.btns .button.isActive {
  background-color: #ffd966;
}

#lineSetting {
  width: 90%;
  margin: 15px auto 0;
  display: flex;
  gap: 15px;
}
#lineSetting #lineWidth {
  border: 4px solid #000;
  border-radius: 10px;
  background-color: #fff;
  flex: 2;
  display: flex;
  align-items: center;
  height: 80px;
}
#lineSetting #lineWidth #lineSetIcon {
  width: 50px;
  height: 50px;
  fill: #000;
  flex: 1;
}
#lineSetting #lineWidth label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  flex: 1;
  font-weight: 700;
}
#lineSetting #lineWidth label input {
  display: none;
}
#lineSetting #lineWidth label span.maru {
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #000;
  margin-left: 10px;
}
#lineSetting #lineWidth label span.maru.s {
  width: 10px;
}
#lineSetting #lineWidth label span.maru.m {
  width: 20px;
}
#lineSetting #lineWidth label span.maru.l {
  width: 30px;
}
#lineSetting #strokeColor {
  border: 4px solid #000;
  border-radius: 10px;
  background-color: #fff;
  flex: 1;
  overflow: hidden;
  height: 80px;
}
#lineSetting #strokeColor input {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

#send {
  width: 80%;
  height: 80px;
  border-radius: 10px;
  border: 4px solid #fff;
  background-color: #370808;
  color: #fff;
  margin: 30px auto 0;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#send svg {
  width: 50px;
  fill: #fff;
}

#sending {
  width: 100vw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(146, 26, 26, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transform: scale(0);
  font-weight: 700;
  font-size: 100px;
  text-align: center;
  line-height: 1;
}
#sending.sending {
  transform: scale(1);
}

/* ----- 一覧 ------ */
@media screen and (max-width: 768px) {
  body#images {
    padding-top: 130px;
  }
}
@media screen and (min-width: 769px) {
  body#images {
    padding-top: 200px;
  }
}
body#images header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
body#images header h1 {
  text-align: center;
  padding: 40px 5vw 20px;
}
body#images header h1 img {
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.4));
  max-width: 80%;
  width: auto;
  height: auto;
}

#imgList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  line-height: 1;
}
@media screen and (min-width: 1500px) {
  #imgList {
    gap: 30px;
  }
  #imgList li {
    width: calc((100% - 90px) / 4);
  }
  #imgList li img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1499px) {
  #imgList {
    gap: 20px;
  }
  #imgList li {
    width: calc((100% - 40px) / 3);
  }
  #imgList li img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #imgList {
    gap: 10px;
  }
  #imgList li {
    width: calc((100% - 10px) / 2);
  }
  #imgList li img {
    width: 100%;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */