@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  font-size: 100%;
}

body {
  background: #FAF8F5;
  color: #524741;
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.6;
  font-family: "Noto Sans JP";
}

header {
  background: #FFF1DE;
  padding: 1rem 0;
  border-bottom: 3px solid #F3951B;
}
header h1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
header h1 > img {
  width: 100%;
  max-width: 230px;
}

main {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 5vh;
}
@media only screen and (max-width:700px) {
  main {
    margin: 2rem auto 0;
  }
}

h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.2rem;
}

.inpt_orange {
  background: #FFF1DE;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  width: 100%;
  margin: 0 auto;
}
.inpt_orange::-moz-placeholder {
  color: #FFD49C;
}
.inpt_orange::placeholder {
  color: #FFD49C;
}

.box_check {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width:700px) {
  .box_check {
    font-size: 0.85rem;
  }
}
.box_check label {
  width: calc(33.3333333333% - 20px);
  margin: 3px 10px 10px;
}
@media only screen and (max-width:700px) {
  .box_check label {
    width: -moz-fit-content;
    width: fit-content;
    background: #F0EDE8;
    padding: 3px 10px;
    margin: 3px 5px;
    border-radius: 6px;
    border: 1px solid #DADADA;
  }
}

.inpt_check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.inpt_check input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  transition: 0.2s;
  background: #F9EDDD;
}
@media only screen and (max-width:700px) {
  .inpt_check input {
    display: none;
  }
}
.inpt_check input:checked {
  background: #F3951A;
}
.inpt_check input:checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 12px;
  border: solid #FAF8F5;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.box_check .inpt_check {
  transition: 0.3s;
}
@media only screen and (max-width:700px) {
  .box_check .inpt_check:has(input:checked) {
    background: #F3951B;
    border: 1px solid #F3951B;
    color: white;
  }
}

.btn_orange {
  background: #F3951B;
  color: white;
  padding: 1rem;
  text-align: center;
  width: 100%;
  max-width: 350px;
  border-radius: 6px;
  display: block;
  margin: 2rem auto 3rem;
  font-weight: bold;
}
@media only screen and (max-width:700px) {
  .btn_orange {
    margin: 2rem auto 2rem;
  }
}

.btn_gray {
  background: #c6baa9;
  color: white;
  padding: 1rem;
  text-align: center;
  width: 100%;
  max-width: 350px;
  border-radius: 6px;
  display: block;
  margin: 5rem auto;
}

.box_map .w100 {
  width: 100%;
  margin-bottom: 30px;
}

footer {
  background: #524741;
  color: #baa89f;
  padding: 2rem 0;
  text-align: center;
}

.box_serch {
  width: 100%;
  max-width: 800px;
  margin: 5vh auto 0;
}
@media only screen and (max-width:700px) {
  .box_serch {
    width: 90%;
    margin: 0 auto;
  }
}

.box_result {
  background: #FFF1DE;
  padding: 2rem 1rem 3rem;
  margin-bottom: 2rem;
}
.box_result h2 {
  width: 100%;
}
.box_result h2 span {
  margin-left: 0.5rem;
}
.box_result > div {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box_result .box_result_detail {
  background: #FAF8F5;
  width: 49%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 5px 0;
}
@media only screen and (max-width:700px) {
  .box_result .box_result_detail {
    width: 100%;
    font-size: 14px;
  }
}
.box_result .box_result_detail .box_result_detail_R,
.box_result .box_result_detail .box_result_detail_L {
  padding: 7px 10px;
}
.box_result .box_result_detail .box_result_detail_L {
  border: 1px solid #524741;
  border-radius: 6px 0 0 6px;
  flex: 1;
  display: flex;
}
.box_result .box_result_detail .box_result_detail_L .ph_name {
  font-weight: bold;
  margin-right: 1rem;
  flex: 1;
  display: flex;
}
.box_result .box_result_detail .box_result_detail_L .ph_name::before {
  content: "";
  background: url(../img/icon.png) no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  display: block;
  margin-top: 3px;
  margin-right: 3px;
}
@media only screen and (max-width:700px) {
  .box_result .box_result_detail .box_result_detail_L .ph_name::before {
    display: none;
  }
}
@media only screen and (max-width:700px) {
  .box_result .box_result_detail .box_result_detail_L .ph_name {
    overflow-wrap: break-word; /* 古いブラウザ向け */
    word-wrap: break-word; /* 古いIE用 */
    word-break: break-all; /* 文字単位で強制改行 */
  }
}
.box_result .box_result_detail .box_result_detail_L .ph_count {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: left;
  width: 130px;
}
@media only screen and (max-width:700px) {
  .box_result .box_result_detail .box_result_detail_L .ph_count {
    width: auto !important;
  }
}
.box_result .box_result_detail .box_result_detail_L .ph_count::before {
  content: "";
  background: url(../img/kensu.png) no-repeat;
  background-size: 100% auto;
  width: 80px;
  height: 24px;
  display: block;
  margin-bottom: -3px;
  margin-right: 0.3rem;
}
.box_result .box_result_detail .box_result_detail_R {
  background: #524741;
  color: #FAF8F5;
  border: 1px solid #524741;
  border-radius: 0 6px 6px 0;
  width: 80px;
  padding: 7px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: #fff;
  padding: 10px 10px 30px;
  width: 96%;
  max-width: 800px;
  height: auto;
  max-height: 95vh;
  border-radius: 6px;
  overflow: visible; /* はみ出した部分も表示される */
}
@media only screen and (max-width:700px) {
  .modal {
    font-size: 14px;
  }
}
.modal h4 {
  color: #524741;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  border-bottom: 1px solid #524741;
}

.modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.wrap_pharm{
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding:0 5px;
}

.wrap_close{
  display: flex;
  justify-content: right;
  margin-bottom: 10px;
}

.modal_close {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 1.8rem;
  font-weight: bold;
  background: #F3951B;
  color: white;
  line-height: 1.4;
  display: flex;
  justify-content: center;
}

.li_detail {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  font-size: 14px;
  border-top: 1px solid #e5dad4;
}
.li_detail dd {
  background: #FAF8F5;
}
.li_detail .w100 + dd {
  width: 78%;
}
.li_detail dt, .li_detail dd {
  padding: 5px;
  border-bottom: 1px solid #e5dad4;
}
.li_detail dt {
  background: #FFF1DE;
  width: 22%;
  text-align: right;
  font-size: 13px;
  color: #524741;
  
}
.li_detail dd {
  width: 28%;
  padding-left: 0.5rem;
}

.btn_hp {
  color: #F3951B;
  text-decoration: underline;
}

.table_time {
  border: 1px solid #eedfca;
  width: 100%;
  margin-right: 2rem;
  font-size: 13px !important;
}
.table_time th, .table_time td {
  padding: 5px 10px;
  border-bottom: 1px solid #eedfca;
  border-right: 1px solid #eedfca;
  vertical-align: middle;
}
.table_time th {
  background: #fbfdfb;
  text-align: center;
  font-size: 14px;
}
.table_time thead th {
  background: #FFF1DE;
  border-bottom: 1px solid #eedfca;
  color: #524741;
  text-align: center;
  font-size: 14px;
}
.table_time td.open span {
  display: block;
  background: #F3951B;
  width: 14px;
  height: 14px;
  border-radius: 1000px;
  margin: 0 auto 0;
}
.table_time td.close span {
  display: block;
  background: #d1c8bc;
  width: 10px;
  height: 2px;
  border-radius: 1000px;
  margin: 0 auto 0;
}

.disaster h2 span {
  font-size: 14px;
  font-weight: normal;
}
.disaster header {
  background: #e4dbd7;
  border-color: #82736a;
}
.disaster h1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.disaster h1::after {
  content: "災害緊急版";
  background: #82736a;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 6px;
  margin-left: 5px;
  margin-bottom: -5px;
}
.disaster .btn_orange {
  background: #524741;
}
.disaster .inpt_orange {
  background: #e4dbd7;
}
.disaster .inpt_orange::-moz-placeholder {
  color: #a79c95;
}
.disaster .inpt_orange::placeholder {
  color: #a79c95;
}
.disaster .btn_gray {
  background: #F3951B;
}/*# sourceMappingURL=region_style.css.map */

.teikyu{
  margin-top: 5px;
  >strong{margin-right: 10px;}
}

.box_check.sp{

  margin-bottom: 15px;

  .inpt_check {
  display: none;
}
.inpt_check:has(input[type="checkbox"]:checked) {
  display: inline-block;
}
}

.map_explanation{
  display: flex;
  flex-wrap: wrap;
  justify-content: end;

  img{
    max-height: 25px;
    margin-right: 5px;
  }

  dd{
    margin: 0 10px 5px;
  }

}

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

.map_explanation{

  img{
    max-height: 17px;
  }
  dd{
    font-size: 14px;
  }
}

}
