@charset "UTF-8";
/******************************************************

PC／SP 共有

******************************************************/
html, body, #wrap {
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
  overflow-x: hidden;
}

body a {
  text-decoration: none;
}

.controls {
  margin-top: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  height: 40px;
  outline: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.controls#pac-input {
  width: 200px;
  margin-top: 10px;
  font-size: 16px;
  padding: 0 10px;
  box-sizing: border-box;
}

.controls#pac-input:focus {
  border-color: #4d90fe;
}

#map {
  height: 100%;
  position: relative;
}

#wrap #googleMap {
  width: 100%;
  height: 100%;
  background: #ccc;
}

#modalBackgrond {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 0;
}

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 600px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: translate(-100%, 0);
  z-index: 1000;
}

.menu.on {
  transform: translate(0, 0);
  box-shadow: 10px 0px 15px -10px rgba(0, 0, 0, 0.37);
}

.menu .menu_header {
  background: #eeeeee;
  height: 60px;
  width: 100%;
  padding: 0 10px 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu .menu_header h2 {
  font-weight: 500;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.menu .menu_header h2 .icon-list {
  margin-right: 15px;
  font-size: 20px;
  color: #808080;
}

.menu .menu_header h2 .icon-users {
  margin-right: 15px;
  font-size: 20px;
  color: #808080;
}

.menu .menu_header h2 .icon-profile {
  margin-right: 15px;
  font-size: 20px;
  color: #808080;
}

.menu .menu_header h2 .icon-flag {
  margin-right: 15px;
  font-size: 20px;
  color: #808080;
}

.menu .menu_header .close_btn {
  transition: all 0.2s ease;
  backface-visibility: hidden;
  color: #000;
  line-height: 1;
}

.menu .menu_header .close_btn .icon-cross {
  font-size: 36px;
}

.menu .menu_header .close_btn:hover {
  filter: brightness(120%);
  color: #0e3f81;
}

.menu .menu_body {
  width: 100%;
  height: calc(100% - 60px);
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

.menu .menu_body > p {
  padding: 20px;
  font-size: 15px;
}

.menu .menu_body .menu_btn {
  padding: 20px;
  border-bottom: #ccc solid 1px;
}

.menu .menu_body .menu_btn a {
  width: 100%;
  height: 60px;
  background: #0e3f81;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  position: relative;
  z-index: 10;
}

.menu .menu_body .menu_btn a i {
  color: #fff;
  margin-right: 10px;
}

.menu .menu_body .menu_btn a i.icon-flag {
  font-size: 22px;
}

.menu .menu_body .menu_btn a span {
  color: #fff;
  font-weight: 700;
}

.menu .menu_body .menu_btn a .icon-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 15px;
}

.menu .menu_body .menu_btn a:hover {
  filter: brightness(120%);
}

.menu .menu_body .list_item {
  border-bottom: #ccc solid 1px;
  padding: 20px;
  position: relative;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  overflow: hidden;
}

.menu .menu_body .list_item:hover {
  background: #f4f4f4;
}

.menu .menu_body .list_item.nohover:hover {
  background: none;
}

.menu .menu_body .list_item > a {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.menu .menu_body .list_item > a .icon-circle-right {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
  color: #0e3f81;
  pointer-events: none;
}

.menu .menu_body .list_item ul.list {
  padding-right: 30px;
}

.menu .menu_body .list_item ul.list li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu .menu_body .list_item ul.list li span {
  font-size: 12px;
  font-weight: normal;
  width: 80px;
  height: 20px;
  background: #f8f8f8;
  text-align: center;
  margin-right: 20px;
  box-sizing: border-box;
  color: #303030;
  flex-shrink: 0;
  position: relative;
  top: 4px;
}

.menu .menu_body .list_item ul.list li em {
  font-weight: normal;
  line-height: 1.5;
}

.menu .menu_body .list_item ul.list li .tel {
  color: #0e3f81;
  font-size: 20px;
}

.menu .menu_body .list_item ul.list li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 740px) {
  .menu .menu_body .list_item > a {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 10;
    border-left: #ccc dashed 1px;
  }
  .menu .menu_body .list_item > a .icon-circle-right {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translate(0, -50%);
    color: #0e3f81;
    pointer-events: none;
    font-size: 24px;
  }
  .menu .menu_body .list_item ul.list {
    padding-right: 60px;
  }
}

.ui-datepicker-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

form .input {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border-top: #ccc solid 1px;
}

form .input.nbd {
  border-top: 0;
  padding-top: 0;
}

form .input em {
  display: block;
  line-height: 1;
  padding-bottom: 20px;
}

form .input .input_inner {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

form .input .input_inner input {
  width: 100%;
  height: 46px;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 18px;
  border: #ccc solid 1px;
  color: #000;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-text-fill-color: black;
  opacity: 1;
}

form .input .input_inner input:disabled {
  background: #f5f5f5;
  border: 0;
}

form .input .input_inner span {
  width: 2em;
  text-align: center;
  flex-shrink: 0;
}

form .input .input_inner textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 18px;
  border: #ccc solid 1px;
  box-sizing: border-box;
  -webkit-appearance: none;
}

form .input .input_inner .selectBox {
  display: block;
  overflow: hidden;
  position: relative;
  vertical-align: top;
  width: 100%;
  /* IE11 */
}

form .input .input_inner .selectBox select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: medium none;
  font-size: 18px;
  width: 100%;
  height: 46px;
  margin: 0;
  padding: 0 46px 0 10px;
  box-sizing: border-box;
  background: #fff;
  border: #ccc solid 1px;
  color: #000;
  max-width: none;
  box-shadow: none;
  border-radius: 0;
  outline: none;
}

form .input .input_inner .selectBox select option, form .input .input_inner .selectBox select optgroup {
  color: #000;
  font-style: normal;
}

form .input .input_inner .selectBox _:lang(x)::-ms-backdrop, form .input .input_inner .selectBox select {
  width: 110%;
}

form .input .input_inner .selectBox:after {
  color: #000;
  content: "\e900";
  font-family: "icomoon";
  font-size: 15px;
  height: 100%;
  line-height: 46px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 46px;
  box-sizing: border-box;
  border: #ccc solid 1px;
  border-left: 0;
  border-radius: 0 0 0 0;
  display: inline-block;
}

form .input .input_inner .selectBox:before {
  content: "";
  height: 100%;
  width: 46px;
  line-height: 46px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
}

form .submit {
  text-align: center;
  padding: 20px 20px 40px;
  border-top: #ccc solid 1px;
}

form .submit input[type="submit"] {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  width: 100%;
  height: 60px;
  color: #fff;
  background: #da380c;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  position: relative;
  font-size: 18px;
  font-weight: 700;
}

@media screen and (max-width: 740px) {
  #pac-input.controls {
    position: fixed !important;
    height: 32px !important;
    left: 10px !important;
    border-radius: 2px !important;
    line-height: 32px;
    z-index: 999 !important;
  }
}

#gpspos {
  cursor: pointer;
  position: absolute;
  left: 400px !important;
  top: 10px !important;
  height: 40px;
  width: 40px;
  z-index: 9999 !important;
  filter: drop-shadow(0px 3px 2px rgba(0, 0, 0, 0.25));
}

#zoom {
  margin-left: 8px;
  top: 10px !important;
  height: 40px;
  border: none;
}

@media screen and (max-width: 740px) {
  #pac-input.controls {
    top: 48px !important;
  }
  #zoom {
    left: 256px !important;
    top: 58px !important;
    height: 40px;
    border: none;
  }
  #gpspos {
    left: 194px !important;
    filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.25));
  }
}

#slidemenuBtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #0e3f81;
  z-index: 100;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  backface-visibility: hidden;
}

#slidemenuBtn:hover {
  filter: brightness(120%);
}

#slidemenuBtn .icon-cross1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(2);
  font-size: 25px;
  color: #fff;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  opacity: 0;
}

#slidemenuBtn .icon-menu {
  transition: all 0.2s ease;
  backface-visibility: hidden;
  opacity: 1;
  font-size: 20px;
}

#slidemenuBtn.slide-open .icon-cross1 {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

#slidemenuBtn.slide-open .icon-menu {
  opacity: 0;
}

#slide_menu {
  position: fixed;
  right: 60px;
  top: 0px;
  width: 200px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  transform: translate(100%, 0);
}

#slide_menu a {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0e3f81;
  color: #fff;
  font-size: 15px;
  transition: all 0.2s ease;
  backface-visibility: hidden;
  font-size: 16px;
}

#slide_menu a:hover {
  filter: brightness(120%);
}

#slide_menu.slide-open {
  transform: translate(0, 0);
}
