/* initialize */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  line-height: 1.4;
}
html, button, input[type="text"], select {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}
button, input, select {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
}
ul, li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  flex: none;
  vertical-align: bottom;
}
label {
  cursor: pointer;
}


.l-wrapper {
  background: #A4E3FE;
}
.l-header{
  background: #044E87;
  padding: 9px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.l-header--between {
  justify-content: space-between;
}
.l-main {
  max-width: 1100px;
  margin: 32px auto;
  padding: 0 30px 1rem;
  background: #fff;
}
.l-footer {
  background: #EBEBEB;
  padding: 53px;
}
.l-flex {
  display: flex;
}
.l-flex--center {
  align-items: center;
  justify-content: center;
}
.l-center {
  text-align: center;
}
.p-35 {
  padding: 35px;
}
.wd-200 {
  width: 200px;
}
.wd-210 {
  width: 210px;
}
.wd-380 {
  width: 380px;
}
.wd-390 {
  width: 390px;
}
.lh-2 {
  line-height: 2;
}



/* form */
.btn {
  padding: 8px 1em;
  line-height: 1;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 54px;
}
.btn:hover {
  cursor: pointer;
}
.btn--close {
  width: 140px;
  color: #7C7D7D;
  font-size: 14px;
  border-radius: 5px;
  height: 40px;
}
.btn--close:before {
  content:'';
  display: inline-block;
  background-image: url(../images/close-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  height: 24px;
  opacity: .8;
}
.main__ttl {
  padding: 2rem 0 1rem;
}
.main__ttl h1 {
  font-weight: 500;
  font-size: 33px;
  text-align: center;
}
.main__ttl p {
  font-size: 17px;
  text-align: center;
  color: #6D6D6D;
  padding-top: 10px;
}
.form-list li {
  margin-bottom: 1rem;
}
.form-ttl {
  display: flex;
  align-items: center;
}
.form-ttl h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1A69C6;
  padding: 0 30px;
}
.form-ttl p {
  font-size: 17px;
  color: #6D6D6D;
}
.form-item {
  padding: 0 20px 1rem;
}
.form-item input[type="text"] {
  border: 1px solid #999;
  border-radius: 5px;
  padding: 8px 8px 8px 16px;
  background: #DEF3FF;
  font-size: 17px;
  width: 461px;
  line-height: 1;
  max-width: 100%;
}
.form-item select {
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 17px;
  background: #DEF3FF;
}
.select-outer {
  position: relative;
}
.select-outer:after {
  content: '▼';
  display: block;
}
select {
  padding: 8px 8px 8px 16px;
}
.select-outer {
  position: relative;
}
.select-outer::before,
.select-outer::after {
  position: absolute;
  content: '';
  pointer-events: none;
}
.select-outer::before {
  right: 0;
  display: inline-block;
  width: 2.8em;
  height: 2.8em;
  border-radius: 0 5px 5px 0;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
  box-sizing: border-box;
  background-color: #60B3E2;
  content: '';
}
.select-outer::after {
  position: absolute;
  top: 14%;
  right: 7%;
  content: '▼';
  color: #fff;
  font-size: 12px;
}
.select-outer select {
  min-width: 206px;
  height: 2.8em;
  padding: .4em 3.6em .4em .8em;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}
.form-radio {
  position: relative;
  font-size: 14px;
  padding-left: 2em;
  display: inline-block;
}
.form-radio:before {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  top: calc(50% - 8px);
  left: 0;
  box-sizing: border-box;
}
input[type="radio"].form-radio-input {
  display: none;
}
input[type="radio"].form-radio-input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  background: #1677FF;
  border-radius: 8px;
  top: calc(50% - 4px);
  left: 4px;
}
.form-chkbox {
  position: relative;
  font-size: 14px;
  padding-left: 2em;
  white-space: nowrap;
  line-height: 2;
}
.form-chkbox:before {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  top: 1px;
  left: 0;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked+label:before {
  border-color: #1677FF;
  background: #1677FF;
}
input[type="checkbox"]:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 5px;
  left: 4px;
  transform: rotate(-45deg);
}
.btn--clear {
  border: 1px solid #B3B3B3;
  font-size: 16px;
  margin-right: 25px;
  color: #000;
}
.btn--search {
  background: #1A69C6;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: .2em;
  border: 1px solid #B3B3B3;
  width: 210px;
}
.btn--search:before {
  content:'';
  display: inline-block;
  background-image: url(../images/search-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.submit-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.msg {
  color: #D94949;
  font-size: 17px;
  padding: 20px;
}
.main__result {
  margin: 0 120px;
}
.search-info {
  margin: 0 auto;
}
.search-info dl {
  width: 500px;
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}
.search-info dt {
  font-weight: 500;
  font-size: 20px;
  width: 6em;
  flex: none;
}
.search-info dd {
  font-size: 17px;
  width: calc(100% - 120px);
  flex: none;
}
.pager {
  padding: 17px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.pager p {
  font-size: 14px;
  font-weight: 600;
  color: #7C7D7D;
  padding: 5px 0;
}
.pager ul {
  display: flex;
}
.pager li {
  margin: 0 5px;
}
.pager .num {
  font-size: 20px;
  font-weight: 600;
  width: 36px;
  padding: 2px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.pager .num.current {
  color: #a5a5a5;
}
.pager .num button {
  color: #044e87;
  text-decoration: none;
  display: block;
  font-size: 20px;
  background: none;
  border: 0;
  width: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
}
.pager .arrow {
  display: flex;
  align-items: center;
  width: 12px;
}
.pager .arrow button {
  width: auto;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  font-size: 0;
  line-height: 0;
  overflow: visible;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
}
.pager .arrow button::after {
  position: absolute;
  content: '';
  top: 12px;
  width: 8px;
  height: 8px;
  border-top: 3px solid #044e87;
  border-right: 3px solid #044e87;
}
.pager .arrow button.arrow-l::after {
  left: 2px;
  transform: rotate(-135deg);
}
.pager .arrow button.arrow-r::after {
  right: 2px;
  transform: rotate(45deg);
}
.res-box {
  width: 812px;
  background: #EEFAFF;
  padding: 0 1rem 1rem;
  margin-bottom: 1rem;
  max-width: 100%;
}
.res-box dl {
  display: flex;
  flex-wrap: wrap;
}
.res-box dt,
.res-box dd {
  font-size: 17px;
  padding: 1em;
  border-bottom: 1px solid #B3B3B3;
}
.res-box dt {
  width: 32%;
  flex: none;
  padding-right: 0;
  white-space: nowrap;
}
.res-box dd {
  width: 68%;
  flex: none;
}
.search-info__cond {
  padding-bottom: 0.5rem;
}
.dropdown-area {
  position: relative;
}
.dropdown-btn {
  height: 44px;
  padding: .4em 3.6em .4em .8em;
  border: 1px solid #999;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  position: relative;
  background: #DEF3FF;
  text-align: left;
  max-width: 100%;
  color: #000;
}
.dropdown-area.active .dropdown-btn {
  background: #F8F8F8;
}
.dropdown-btn:before {
    right: 0;
    display: inline-block;
    width: 2.8em;
    height: 100%;
    border-radius: 0 5px 5px 0;
    box-sizing: border-box;
    background-color: #60B3E2;
    content: '';
    position: absolute;
    top: 0;
}
.dropdown-btn:after {
  position: absolute;
  top: 40%;
  right: 16px;
  content: '';
  background-image: url(../images/drp-icon.png);
  color: #fff;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
}
.dropdown-btn.disabled {
  background: #F0F0F0;
}
.dropdown-btn.disabled:before {
  background-color: #A7A7A7;
}
.dropdown-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1;
}
.dropdown-area.active .dropdown-bg {
  display: block;
}
.dropdown-list {
  display: none;
  top: 44px;
  left: 4px;
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 0 0 5px 5px;
  background: #F6FCFF;
  max-width: 98%;
  overflow-y: auto;
  max-height: 392px;
}
.dropdown-area.active .dropdown-list {
  display: block;
}
.dropdown-list input {
  display: none;
}
.dropdown-list label {
  display: block;
  padding: 1em;
  line-height: 1;
  border-bottom: 1px solid #999999;
  color: rgba(18, 18, 18, 0.6);
}
.dropdown-list label:last-of-type {
  border: none;
  border-radius: 0 0 5px 5px;
}
/*.dropdown-list label:hover,
.dropdown-list input[type="radio"]:checked+label {*/
.dropdown-list label.active {
  background: #F8F8F8;
  color: #000;
}
.main__ttl h1.userguide {
  text-align: left;
}
.userguide-section {
  margin: 2rem 0 3rem;
}
.userguide-section p {
  line-height: 1.5;
}
.userguide-section h2 {
  margin: 1rem 0;
}
.userguide-image {
  margin: 1rem 0;
  display: inline-block;
  border: 1px solid #000;
}
.help-link {
  text-decoration: none;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  line-height: 1;
  display: block;
  color: #044E87;
}


/* tablet */
@media screen and (max-width:1099px) {
  .pc-only {
    display: none;
  }
  .l-header {
    background: #EBEBEB;
  }
  .l-header .btn--close {
    border: none;
    background: none;
    font-size: 20px;
    width: auto;
    padding: 0;
  }
  .btn--close:before {
    width: 27px;
    height: 27px;
  }
  .l-main {
    margin: 0 auto;
  }
}

@media screen and (min-width:861px) {
  .sp-only {
    display: none !important;
  }
}

/* sp */
@media screen and (max-width:860px) {
  .pc-only {
    display: none !important;
  }
  .form-ttl {
    display: block;
  }
  .form-item,
  .form-ttl h2, 
  .form-ttl p {
    padding-left: 0;
    padding-right: 0;
  }
  .submit-box {
    width: 300px;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 100%;
  }
  .btn--clear {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .main__result {
    margin: 0;
  }
  .search-info dl {
    justify-content: center;
    width: auto;
  }
  .search-info .search-info__cond {
    width: 100%;
    text-align: center;
  }
  .search-info .search-info__res {
    width: auto;
  }
  .pager {
    justify-content: center;
  }
  .pager .num {
    font-size: 18px;
    width: 30px;
  }
  .pager .num button {
    font-size: 18px;
    width: 30px;
  }
  .pager .arrow {
    width: 16px;
  }
  .pager .arrow button::after {
    top: 11px;
  }
  .pager .arrow button.arrow-l::after {
    left: 6px;
  }
  .pager .arrow button.arrow-r::after {
    right: 6px;
  }
}