@import url("https://fonts.googleapis.com/css2?family=Kodchasan:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@700&display=swap");
html {
  touch-action: manipulation;
}

body {
  font-family: "Noto Sans JP", "Meiryo UI", "Hiragino Sans", "Yu Gothic UI", "MS PGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 16px;
}

.button-middle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
}
.button-middle img {
  width: 20px;
  height: 20px;
}
.button-middle:hover {
  cursor: pointer;
}

.button-small {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  padding: 4px;
  border-radius: 4px;
  padding: 4px;
  border-radius: 4px;
}
.button-small img {
  width: 20px;
  height: 20px;
}
.button-small:hover {
  cursor: pointer;
}

.button-green {
  color: white;
  background-color: #57A25C;
}
.button-green:active {
  background-color: #417945;
}

.button-gray {
  color: white;
  background-color: #b3b3b3;
}
.button-gray:active {
  background-color: #818181;
}

.button-brown {
  color: white;
  background-color: #C2A170;
}
.button-brown:active {
  background-color: #977E58;
}

.button-navy {
  color: white;
  background-color: #0F6F8A;
}
.button-navy:active {
  background-color: #0A4D5F;
}

.toggle {
  position: relative;
  width: 66px;
  height: 36px;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}

.toggle input[type=checkbox] {
  display: none;
}

.toggle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: #e9e9eb;
  transition: 0.2s ease-out;
}

.toggle:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease-out;
}

.toggle.checked:before {
  background: #35c759;
}

.toggle.checked:after {
  left: 33px;
  box-shadow: 0 9px 28px -6px rgba(0, 0, 0, 0.5);
}/*# sourceMappingURL=common.css.map */