@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #202020;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.wrapper {
  width: 92%;
  margin: 0 auto;
}

.head {
  background: linear-gradient(to bottom, #E2E2E2, #F5F5F5);
  position: relative;
  border-bottom: 4px solid #EE8E8E;
}
.head::after {
  content: "";
  display: block;
  width: 95%;
  height: 85%;
  position: absolute;
  top: 6%;
  left: 2.5%;
  border: 1px solid #fff;
}
.head__inner {
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.head__ttl {
  font-size: 2rem;
}
.head__ttl-sub {
  display: block;
  width: 160px;
  font-size: 1.6rem;
  color: #fff;
  background: #639540;
  padding: 5px 16px 3px;
  border-radius: 50px;
}
.head__logo {
  width: 58px;
}

.page-ttl {
  font-size: 2.2rem;
  text-align: center;
  padding-bottom: 5px;
  margin: 18px 0;
  position: relative;
}
.page-ttl:after {
  content: "";
  display: block;
  width: 88px;
  height: 2px;
  background: #639540;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.page-ttl-h2 {
  font-size: 1.6rem;
  background: #A9D18E;
  padding: 6px 10px 6px 8px;
  border-left: 10px solid #639540;
}

.page-ttl-h2-B {
  font-size: 1.4rem;
  color: #fff;
  background: #585858;
  padding: 5px 10px;
  margin: 26px 0 10px;
}

.input-w100 {
  padding: 10px;
  width: 100%;
}

.search-btn {
  outline: none;
  border: none;
  display: block;
  width: 160px;
  background: #585858;
  padding: 12px 0 10px 10px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  margin: 10px auto 40px;
  position: relative;
  cursor: pointer;
}
.search-btn:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/icon_search.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.top-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.top-btn {
  display: block;
  width: 48.5%;
  background: #585858;
  color: #fff;
  font-size: 1.6rem;
  padding: 22px 30px 22px 0;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  border-left: 10px solid #202020;
  margin-right: 3%;
  margin-bottom: 10px;
  position: relative;
}
.top-btn:nth-of-type(2n) {
  margin-right: 0;
}
.top-btn:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_link.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.list {
  list-style: url(../img/img_list.png);
  padding-left: 25px;
}
.list__item {
  margin-bottom: 10px;
}
.list__item a {
  text-decoration: underline;
  color: #0800FF;
}

.notice-btn {
  display: block;
  background: #FFFBD9;
  border: 3px solid #F27E19;
  border-left: 32px solid #F27E19;
  border-radius: 5px;
  padding: 12px 10px;
  color: #202020;
  font-weight: bold;
  position: relative;
  margin-top: 40px;
}
.notice-btn:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_notice.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
}

.foot {
  padding: 5px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  background: linear-gradient(to bottom, #E2E2E2, #F5F5F5);
  border-top: 4px solid #EE8E8E;
  margin-top: 80px;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
}

/* ---------------------------------------------
   list page
   --------------------------------------------- */
.back-btn-wrap {
  padding: 10px 0;
  background: #FFEBEB;
}
.back-btn-wrap.--bottom {
  margin-bottom: -80px;
  /* margin-top: 80px; */
  margin-top: 40px;
}

.back-btn {
  display: inline-block;
  font-size: 1.2rem;
  color: #fff;
  background: #585858;
  padding: 4px 10px 4px 26px;
  border-radius: 50px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  margin-right: 7px;
  position: relative;
}
.back-btn::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-right: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  position: absolute;
  top: 6px;
  left: 8px;
}

.list-page-select {
  padding-bottom: 15px;
  border-bottom: 1px dotted #585858;
  margin-bottom: 30px;
}
.list-page-select dt {
  background: #585858;
  color: #fff;
  padding: 4px 12px;
  font-weight: bold;
}
.list-page-select dd {
  margin: 0 0 10px 0;
  padding: 0;
}
.list-page-select select {
  width: 100%;
  padding: 8px;
  appearance: none;
  background: #fff;
  border: 1px solid #555;
  color: #202020;
}
.list-page-select .select-wrap {
  position: relative;
}
.list-page-select .select-wrap::before {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background: url(../img/icon_pulldown.png) 0/contain no-repeat;
  position: absolute;
  top: 14px;
  right: 10px;
}

.list-page-utility {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}
.list-page-utility__left-wrap {
  display: flex;
}
.list-page-utility__item {
  margin-right: 5px;
}
.list-page-utility__item-dt {
  display: inline-block;
  background: #585858;
  color: #fff;
  padding: 5px 5px;
}
.list-page-utility__item-dd {
  display: inline-block;
  border: 1px solid #585858;
  margin: 0 0 0 -4px;
  padding: 4px;
}
.list-page-utility__item-dd--select {
  display: inline-block;
  margin: 0 0 0 -4px;
  position: relative;
}
.list-page-utility__item-dd--select select {
  padding: 6px 16px 5px 5px;
  appearance: none;
  background: #fff;
  border: 1px solid #555;
  color: #202020;
}
.list-page-utility__item-dd--select::before {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background: url(../img/icon_pulldown.png) 0/contain no-repeat;
  position: absolute;
  top: 11px;
  right: 2px;
}

.list-page-selected {
  padding-bottom: 20px;
  border-bottom: 1px dotted #585858;
}
.list-page-selected dt {
  background: #585858;
  color: #fff;
  font-weight: bold;
  width: 100%;
  padding: 5px 10px;
}
.list-page-selected dd {
  border: 1px solid #585858;
  width: 100%;
  padding: 10px;
  margin: 0;
}

.list-page-scroll {
  display: inline-block;
  background: #639540;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 5px;
}

.list-page-table-wrap {
  overflow-x: auto;
  padding-bottom: 10px;
}

.list-page-table {
  width: 900px;
  font-size: 1.2rem;
  border-collapse: collapse;
  border: 1px solid #555;
}
.list-page-table a {
  text-decoration: underline;
  color: #0800FF;
}
.list-page-table .img {
  width: 68px;
}
.list-page-table .img img {
  display: block;
  max-height: 40px;
  margin: 0 auto;
}
.list-page-table th {
  background: #585858;
  color: #fff;
  padding: 2px;
  position: relative;
}
.list-page-table th .sortbtn {
  display: inline-block;
  text-align: center;
  padding: 1px 0;
  width: 20px;
  appearance: none;
  border-radius: none;
  border: none;
  color: #202020;
  margin-left: 3px;
}
.list-page-table td {
  border-bottom: 1px solid #555;
  border-right: 1px solid #555;
  padding: 5px;
}
.list-page-table td.row2 {
  border-bottom: 1px dotted #555;
}
.list-page-table td.fontbold {
  font-weight: bold;
}

.list-page-table th.genre {
  width: 120px;
}
.list-page-table th.comp {
  width: 85px;
}
.list-page-table td .btn_hp {
  border: solid 1px #203764;
  background-color: #203764;
  padding: 2px 10px;
  color: #fff;
  font-weight: bold;
}
.list-page-table td .btn_hp:hover {
  border: solid 1px #203764;
  background-color: #ffffff;
  padding: 2px 10px;
  color: #203764;
  font-weight: bold;
}
.table-manager tr:hover td {
  background-color: #ecf3fb;
}
.parts-list tbody:hover td {
  background-color: #ecf3fb;
}


.simplebar-track {
  background: #ECECEC;
}

.simplebar-scrollbar::before {
  background: #C1C1C1;
}

.comparison-btn {
  display: block;
  font-size: 1.2rem;
  background: #585858;
  color: #fff;
  text-align: center;
  width: 117px;
  padding: 5px 0 5px 10px;
  border-radius: 50px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  position: relative;
  margin: 10px 0 0 auto;
}
.comparison-btn::before {
  content: "";
  display: block;
  width: 19px;
  height: 14px;
  background: url(../img/icon_comparison.png) 0/contain no-repeat;
  position: absolute;
  top: 7px;
  left: 10px;
}

.pagenation {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px auto 0;
}
.pagenation li {
  margin: 0 2px;
}
.pagenation li a {
  border: 1px solid #333333;
  padding: 3px 7px;
  display: block;
  text-decoration: none;
  color: #333333;
  background: #fff;
}
.pagenation li.active a {
  font-weight: bold;
  border: solid 1px #333333;
  color: #FFFFFF;
  background: #333333;
}

/* ---------------------------------------------
   detail page
   --------------------------------------------- */
.detail-page-code {
  display: flex;
  width: 205px;
}
.detail-page-code dt {
  background: #585858;
  color: #fff;
  width: 85px;
  padding: 4px 5px 2px;
}
.detail-page-code dd {
  width: 120px;
  border: 1px solid #585858;
  padding: 3px 5px 3px;
  margin: 0;
}

.detail-page-table {
  border-collapse: collapse;
  width: 100%;
}
.detail-page-table a {
  text-decoration: underline;
  color: #0800FF;
}

.detail-page-table th {
  width: 125px;
  background: #EEEEEE;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
  padding: 5px;
  border: 1px solid #707070;
}
.detail-page-table th.fontbold {
  font-weight: bold;
}
.detail-page-table td {
  width: calc(100% - 100px);
  background: #fff;
  padding: 5px;
  border: 1px solid #707070;
  vertical-align: top;
}
.detail-page-table td.fontbold {
  font-weight: bold;
}
.detail-page-table td.borderbottomNone {
  border-bottom: none;
}
.detail-page-table tr.green th {
  background: #639540;
  color: #fff;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
  padding: 5px;
  border: none;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.detail-page-table tr.green td {
  background: #DBECCF;
  padding: 5px;
  font-weight: bold;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #fff;
}
.detail-page-table tr.green td.borderbottomNone {
  border-bottom: none;
}

.detail-page-table tr.bnone th,
.detail-page-table tr.bnone td {
	border: none;
}

.detail-page-table .slider {
  max-width: 200px;
  margin: 0 auto;
  padding: 0;
}
.detail-page-table .slider img {
  max-height: 200px;
  margin: 0 auto;
}
.detail-page-table .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.detail-page-table .slider-arrow.prev-arrow {
  left: 0;
  margin-left: -25px;
}
.detail-page-table .slider-arrow.next-arrow {
  right: 0;
  margin-right: -25px;
}
.detail-page-table .movie-wrap {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}
.detail-page-table .movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.detail-page-table .slider .slick-slide span {
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.detail-page-more-p {
  color: #F27E19;
  font-weight: bold;
  margin-bottom: 5px;
}

.detail-page-more-btn {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  border-radius: 50px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  position: relative;
  cursor: pointer;
}
.detail-page-more-btn.is-close {
  background: #639540;
}
.detail-page-more-btn.is-close:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_down.png) 0/contain no-repeat;
  position: absolute;
  top: 11px;
  right: 16px;
}
.detail-page-more-btn.is-open {
  background: #828282;
}
.detail-page-more-btn.is-open:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/icon_up.png) 0/contain no-repeat;
  position: absolute;
  top: 11px;
  right: 16px;
}

.detail-table__dl {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.detail-table__dl dt {
  width: 100%;
}
.detail-table__dl dd {
  width: 100%;
  margin-left: 2rem;
}

.txtlink {
  text-decoration: underline;
  color: #0000ff;
  transition: all 0.2s ease;
}
.txtlink:hover {
  text-decoration: none;
}

.txtlink.--pdf {
  position: relative;
}
.txtlink.--pdf:after {
  content: "";
  background: url(../img/icon_pdf_red.svg) no-repeat;
  width: 18px;
  height: 22px;
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}


/* ---------------------------------------------
   information page
   --------------------------------------------- */
#pageNav2 {
	margin: 30px 0 40px 0;
	line-height: 0.5;
}
#pageNav2 .readtechno {
	text-align: right;
}
.readtable {
	margin: 5px 0 5px;
	background: #EAF1DD;
	align: center;
	margin: 10px 0;
	width: 100%;
	border-right: 5px solid #17365D;
	border-left: 5px solid #17365D;
	border-top: 5px solid #17365D;
	border-bottom: 5px solid #17365D;
	padding: 10px;
	spacing: 10px;
	line-height: 1.5;
}

/* ---------------------------------------------
   thumbnail
   --------------------------------------------- */
.thumbnail {
	text-align: center;
}

/* -----------------------------------------
  helper style
  ------------------------------------------ */
.txtC {
  text-align: center !important;
}
.txtR {
  text-align: right !important;
}
.mT10 {
  margin-top: 10px !important;
}
.mB0 {
  margin-bottom: 0 !important;
}
.mB20 {
  margin-bottom: 20px !important;
}
.fontBold {
  font-weight: bold !important;
}
.LargeFont {
  font-size: 120% !important;
}


/* ---------------------------------------------
  manager-list 2023.12.8
  ---------------------------------------------- */
.com-search-keyword {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 10px auto 20px auto;
}
.com-search-keyword dl {
  width: 84%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
.com-search-keyword dt {
  width: 27%;
  height: 40px;
  background: #FEF0C7;
  padding: 10px;
  border-radius: 5px 0 0 5px;
  border: 1px solid #707070;
  font-size: 1.2rem;
}
.com-search-keyword dd {
  width: 72%;
  height: 40px;
  margin: 0;
}
.com-search-keyword dd input {
  padding: 12px;
  width: 100%;
  height: 40px;
  font-size: 1.4rem;
}
.com-search-keyword__btn {
  width: 14%;
  height: 40px;
  background: #E5791B;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 10px;
  font-size: 1.4rem;
}
.com-search-keyword__btn:hover {
  opacity: 0.75;
  box-shadow: none;
}



/* ---------------------------------------------
  setmust table 2025.02.04
  ---------------------------------------------- */
table.adm_setmust_tbl {
  border-collapse: collapse;
  width: 100%;
}
table.adm_setmust_tbl td {
  border: none;
  width: 46%;
}
table.adm_setmust_tbl td input[type="text"] {
  width: 360px;
}
table.adm_setmust_tbl td.pbmar5 {
  padding-bottom: 5px !important;
}
table.adm_setmust_tbl td.ptmar0 {
  padding-top: 5px !important;
}
table.adm_setmust_tbl td.numring {
  width: 6%;
  vertical-align: top;
}



/*# sourceMappingURL=style.css.map */
