/* Layout */
label {
  word-break: break-all;
  white-space: normal !important;
}

.text-center {
  text-align: center;
}

.row {
  display: flex;
}

.waku{
  border:solid 1px black;
  padding:10px;
}
ul.list-padding2{
  padding-left: 20px;
}

.smallplaceholder::placeholder{
  font-size: 0.8rem;
}

.span-border {
  border: solid 1px black;
  padding: 3px;
  margin: 5px;
}

/* color */
.colorBlue {
  color: #0563C1;
}

/* Responsive */
.pc-hidden{
  display: none;
}
.pc-open{
  display: inline;
}

@media (max-width:767px){
  .sp-hidden{
    display: none;
  } 	
  .sp-open{
    display: inline;
  }
}

@media (max-width:712px){
  input[type="text"] ,input[type="email"] {
      width: 100% !important;
      max-width: none;
  }
}
@media (max-width: 500px) {
  select {
      width: 100% !important;
      max-width: none;
  }
}    


/* gaiji font image */
.fontimage{
  height:1rem;
  width:1rem;
  margin:0 2px;
  padding-top:2px;
}

/* SubPage */
.subpage{
  background-color: #888;
  min-height: 100vh;
}

.subpage-pdf-area{
  transform-origin: top center;
  transition: transform 0.2s;
  text-align: center;
}

.pdf-image {
  width: 80%;
  display: inline-block;
  margin: 0 auto;
}
@media (max-width:767px){
  .pdf-image {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

.zoom-controls {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  padding: 5px;
  border-radius: 8px;
}

.zoom-controls button {
  font-size: 18px;
  margin: 0 3px;
  padding: 5px 10px;
  cursor: pointer;
}


/* Modal */
/* .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  height: 80%;
  position: relative;
} */

/* .modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin-top: 50px;
} */

/* .modal-images {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: none;
  margin-top: 50px;
  padding: 10px 0;
  background-color: #888;
} */

/* .close-modal {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
  display: none;
}

.close-modal:hover {
  color: black;
} */

/* @media (prefers-color-scheme: dark) {
  .close-modal {
    color: white;
  }
}

.open-modal {
  color: #0563C1;
}

.open-modal:hover {
  text-decoration: underline;
  cursor: pointer;
} */

/* span.chkmark {
  display: none;
} */

/* margin */
.mt-0 {
  margin-top: 0;
}

.mt-0_5rem {
  margin-top: 0.5rem;
}

.mt-1rem {
  margin-top: 1rem;
}

.mt-1_5rem {
  margin-top: 1.5rem;
}

.mt-2rem {
  margin-top: 2rem;
}

.ml-1rem {
  margin-left: 1rem;
}

.ml-2rem {
  margin-left: 2rem;
}

.mb-0_5rem {
  margin-bottom: 0.5rem;
}

