@import url('https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP&display=swap');
* {
  transition: all 0.3s ease-in-out;
}
.copyaid {
  font-size: 8px;
  position: absolute;
  bottom: 2px;
  left: 50px;
  font-weight: 100;
  color: #fff;
}
.prei {
    border: 1px solid #333;
    width: 300px;
    aspect-ratio: 3 / 4 ;
    background-image: url(../tool/img/card.jpg);
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
label * {
    margin: 0;
    padding: 0;
}
label , .label {
    p {
        margin-top: 14px;
        margin-bottom: 6px;
        font-weight: 700;
        border: 2px solid #333;
        padding: 5px 10px;
        border-radius: 100px;
        width: 300px;
        background: #fff;
    }
    .la {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }
    .lati {
      font-weight: 700px;
      background: #333;
      color: #fff;
      padding: 0 10px;
      border-radius: 100px 100px 0 100px;
      width: 200px;
    }
}
.mm {
  display: flex;
  justify-content: baseline;
  gap: 10px;
}
.help {
  background: #fff;
  border: 1px solid gray;
  padding: 5px;
  display: flex;
  align-items: center;
  font-size: 10px;
  gap: 10px;
  width: fit-content;
  img {
    width: 13px;
  }
}
.dbmode {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  button {
    width: 150px;
    background: linear-gradient(to right, #65defc, #938aff);
    height: 50px;
    box-shadow: 0 0 2px 0px gray;
    border: none;
    border-radius: 5px;
    color: #fff;
    display: block;
    transition: all 0.3s;
    &:hover {
      opacity: 0.5;
    }
  }
  margin-bottom: 20px;
}
.h1s {margin: 0;}
.data {
  width: 1200px;
  aspect-ratio: 3 / 4;
  background-image: url(../tool/img/card.jpg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: -1300px;
}
.toolmenu {
  background: #fff;
  margin-bottom: 10px;
  box-shadow: 0 0 1px 0 gray;
  padding: 10px;
  border-radius: 5px;
  position: fixed;
  top: 70px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: end;
  z-index: 999;
  button {
    width: 30px;
    height: 30px;
    background: #333;
    border: none;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    img {
      width: 100%;
    }
  }
}
.fb {
  border: 1px solid #333;
  margin-right: 10px;
  border-radius: 5px;
  color: #333;
  text-decoration: none;
  font-weight: normal;
  height: 30px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
input[type=text] ,
input[type=email] ,
input[type=color] ,
textarea ,
select
{
    background: #fff;
    width: 100%;
    padding: 10px;
    border: 1px solid rgb(188, 188, 188);
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    height: 40px;
    &:hover {
        opacity: 0.5;
        transition: all 0.3s ease-in-out;
    }
    &:focus {
        transition: all 0.3s ease-in-out;
        border-bottom: 1px solid rgb(33, 57, 210);
        border-radius: 5px;
        opacity: 1;
    }
}
textarea { height: 80px; resize: vertical;}
textarea:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}
input[type="file"]::file-selector-button {
  background: #fff;
  border: 1px solid rgb(188, 188, 188);
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  font-family: 'Noto sans JP' , sans-serif;
}

input[type="file"]::file-selector-button:hover {
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}

input[type="file"]::file-selector-button:active {
  opacity: 1;
  border-bottom: 1px solid rgb(33, 57, 210);
  transition: all 0.3s ease-in-out;
}

input[type="checkbox"] {
  width: 26px;
  height: 26px;
  border: 1px solid rgb(188, 188, 188);
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:hover {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:checked {
  background: #fff;
  opacity: 1;
  border-bottom: solid rgb(33, 57, 210) 1px;
    transition: all 0.3s ease-in-out;
}

input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 9px;
  height: 18px;
  border: solid rgb(33, 57, 210);
  border-width: 0 4px 4px 0;
}

input[type="checkbox"]:focus {
  outline: none;
}

/*  */
input[type="radio"] {
  width: 20px;
  height: 20px;
  border: 1px solid rgb(188, 188, 188);
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
    transition: all 0.3s ease-in-out;
  margin-top: 8px;
}

input[type="radio"]:hover {
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
}

input[type="radio"]:checked {
  background: #fff;
  opacity: 1;
  border: solid rgb(33, 57, 210) 1px;
  transition: all 0.3s ease-in-out;

}

input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: rgb(33, 57, 210);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

input[type="radio"]:focus {
  outline: none;
}