@charset "utf-8";
/*===================================================
検索
===================================================*/
body .content table#searchTable,
body .content #searchResultTable {
  font-size: 100%;
}

body .content #searchItemBox table,
body .content table#searchResultTable {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}

body .content #searchItemBox {
  background-color: #fbfbfb;
  border: 3px solid #e9e9e9;
  padding: 15px;
  margin-bottom: 30px;
}

body .content #searchItemBox table {
  margin: 0 0 15px;
}

body .content form table label {
  display: inline-block;
}

.content table#searchTable td {
  padding: 10px 0 10px 10px;
}

.el_searchItemList {
  display: flex;
  flex-wrap: wrap;
  margin: -12px 0 0 !important;
}
.el_searchItemList * {
  transition: .2s;
}

.el_searchItemList li {
  position: relative;
  line-height: 1;
  list-style: none !important;
  margin: 12px 15px 0 0 !important;
}

.el_searchItemList li label {
  cursor: pointer;
}

.el_searchItemList li input[type="checkbox"],
.el_searchItemList li input[type="radio"] {
  margin: 0 3px 0 0;
}

.el_searchItemList li input + span {
  font-weight: 500;
}
.el_searchItemList li input + span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ea5532;
  opacity: 0;
  transition: .24s;
}

.el_searchItemList li label:hover span,
.el_searchItemList li input:checked + span {
  color: #ea5532;
}
.el_searchItemList li input:checked + span::after {
  opacity: 1;
}

#searchBox {
  display: flex;
}

#searchBox input.hidden-search-field {
  width: calc(100% - 135px);
  box-sizing: border-box;
  height: 45px;
  background-color: #efefef;
  border: 1px solid #efefef;
  border-radius: 4px 0 0 4px;
  box-shadow: inset 0 0 0 #efefef;
  padding: 5px 10px;
  margin: 0;
  transition: .24s;
}
#searchBox input.hidden-search-field:focus {
  background-color: #fffeee;
  border: 1px solid #f5b787;
  border-right: none;
  outline: 0;
}

#searchBox input[type="submit"],
#searchBox a#clearBtm {
  height: 45px;
  font-family: "M PLUS 1p",sans-serif;
  font-weight: 600;
  padding: 10px 5px;
  transition: .24s;
}

#searchBox input[type="submit"] {
  width: 60px;
  background-color: #ea5532;
  border-radius: 0 4px 4px 0;
  margin: 0;
}

#searchBox a#clearBtm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  color: #666;
  background-color: #ddd;
  border-radius: 4px;
  margin-left: 10px;
}

#searchBox input[type="submit"]:hover,
#searchBox a:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: .5;
}

@media screen and ( max-width:665px ) {
body .content table#searchTable,
body .content #searchResultTable {
  font-size: 90%;
}

.content table#searchTable tr,
.content table#searchTable th,
.content table#searchTable td {
  display: block;
}

.content table#searchTable tr + tr {
  margin-top: 15px;
}

.content table#searchTable th {
  padding: 5px;
  margin-bottom: 10px;
}
.content table#searchTable tr + tr th {
  border-top: 1px solid #e9e9e9;
}

.content table#searchTable td {
  border: none;
  padding: 0;
}

#searchBox {
  border-top: 1px solid #e9e9e9;
  padding-top: 15px;
}

#searchBox input.hidden-search-field,
#searchBox input[type="submit"],
#searchBox a#clearBtm {
  font-size: 12px;
  height: 36px;
}

#searchBox input.hidden-search-field {
  width: calc(100% - 110px);
}

#searchBox input[type="submit"],
#searchBox a#clearBtm {
  width: 50px;
}
}


/*===================================================
検索結果
===================================================*/
/*
body .content table#searchResultTable tr.js-modal-open:nth-of-type(2n+1) {
  background-color: #fef6f5;
}

body .content table#searchResultTable th:nth-of-type(n+2),
body .content table#searchResultTable td:nth-of-type(n+2) {
  border-left: 1px solid #e9e9e9;
}

body .content table#searchResultTable th {
  text-align: center;
}

body .content table#searchResultTable td {
  vertical-align: middle;
}
body .content table#searchResultTable td:first-of-type {
  white-space: nowrap;
}
*/

body .content #searchResultTable ul,
body .content #searchResultTable li {
  list-style: none;
  padding: 0;
  margin: 0;
}

body .content #searchResultTable > ul > li {
  position: relative;
  border: 3px solid #e9e9e9;
  padding: 15px;
  transition: .24s;
}
body .content #searchResultTable > ul > li:hover {
  border: 3px solid #ef8065;
  background-color: #fef6f5;
  cursor: pointer;
}

body .content #searchResultTable > ul > li::before,
body .content #searchResultTable > ul > li::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  transition: .24s;
}
body .content #searchResultTable > ul > li::before {
  border-bottom: 20px solid #fff;
  border-left: 20px solid transparent;
  z-index: 2;
}
body .content #searchResultTable > ul > li::after {
  border-bottom: 26px solid #e9e9e9;
  border-left: 26px solid transparent;
}
body .content #searchResultTable > ul > li:hover::after {
  border-bottom: 26px solid #ef8065;
}

body .content #searchResultTable > ul > li + li {
  margin-top: 15px;
}

body .content #searchResultTable > ul > li > ul {
  display: flex;
  flex-wrap: wrap;
}
body .content #searchResultTable > ul > li > ul > li + li {
  margin-left: 10px;
}

body .content #searchResultTable > ul > li > ul > li span {
  font-weight: 500;
  color: #ef8065
}

body .content #searchResultTable > ul > li p {
  text-align: justify;
  border-top: 1px solid #e9e9e9;
  padding-top: 10px;
  margin: 10px 0 0 0;
}

@media screen and ( max-width:665px ) {
body .content #searchResultTable > ul > li > ul {
  flex-direction: column;
}
body .content #searchResultTable > ul > li > ul > li + li {
  margin: 5px 0 0;
}
}


/*===================================================
モダール
===================================================*/
.el_modalOpen {
  position: fixed;
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10001;
}

.modal__bg {
  background: rgba(0,0,0,0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  background: #fff;
  padding: 30px;
  transform: translate(-50%,-50%);
}

.modal__content div:empty,
.modal__content p:empty {
  display: none;
}

.el_modalTableWrap {
  max-height: 75vh;
}

tr.js-modal-open {
  cursor: pointer;
}

.content .modal__content table {
  font-size: 100%;
  border-spacing: 0;
  margin: 0;
}

.content .modal__content table th {
  padding: 10px 5px;
}
.content .modal__content table td {
  text-align: justify;
  padding: 10px 0 20px;
}

.content .modal__content table td div:empty,
.content .modal__content table td p:empty,
.content .modal__content table td li:empty {
  display: none;
}

.content .modal__content table td p {
  margin: 0 !important;
}
.content .modal__content table td p + p {
  margin-top: .5em !important;
}

.content .modal__content table td div:last-child {
  margin-bottom: 0 !important;
}

.content .modal__content table td .cbox.intitle {
  padding: 0 15px 15px;
}

.content .modal__content table td .cbox.intitle .span__box_title {
  top: 0;
  margin-top: -1px;
  transform: translate(0,-50%);
}

.content .modal__content table td .cbox.intitle .box_title + .cboxcomment li {
  margin: 0;
}
.content .modal__content table td .cbox.intitle .box_title + .cboxcomment li + li {
  margin-top: 5px;
}

.el_modalTableWrap + .subPostListSection  {
  margin-top: 30px;
}

.el_closeBt {
  width: 100px;
  margin: 30px auto 0;
}
.el_closeBt a  {
  display: block;
  line-height: 36px;
  color: #333;
  text-align: center;
  text-decoration: none;
  background: #efefef;
  border: 1px solid #e9e9e9;
  border-radius: 7px;
}
.el_closeBt a:hover {
  opacity: .5;
}

.el_scroll {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ef8065 #e9e9e9;
  padding-right: 10px;
}
.el_scroll::-webkit-scrollbar {
  width: 5px;
}
.el_scroll::-webkit-scrollbar-track {
  background: #e9e9e9;
}
.el_scroll::-webkit-scrollbar-thumb {
  background: #ef8065;
}

@media screen and ( max-width:665px ) {
.modal__content {
  width: 90%;
  padding: 15px;
}

.content .modal__content table {
  font-size: 90%;
}

tr.js-modal-open td:nth-of-type(4) {
  display: none;
}

.content .modal__content table td .cbox.intitle {
  padding: 0 10px 10px;
}
}


/*===================================================
関連QA
===================================================*/
.q_a_dataLink {
  padding: 15px;
  border: 1px solid #ccc;
  margin: -10px auto 50px;
}

.content .q_a_dataLink h5 {
  font-size: 100%;
  margin-bottom: 10px;
}

.q_a_dataLink p {
  margin: 0;
}
.q_a_dataLink p:empty {
  display: none;
}

.q_a_dataLink p.q_a_dataLink_category {
  line-height: 1.3;
  border-top: 1px dashed #ccc;
  padding-top: 5px;
  margin: 15px 0 0;
}

.q_a_dataLink .q_a_dataLink_postData {
  display: flex;
  flex-wrap: wrap;
}
.q_a_dataLink .q_a_dataLink_postData p {
  line-height: 1.3;
  margin-top: 5px;
}
.q_a_dataLink .q_a_dataLink_postData p:not(:last-of-type) {
  margin-right: 1em;
}