@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&family=Noto+Serif+JP:wght@300;400;500;600&display=swap");
/* ----------------------------------------------------------------------- 

	common style 共通スタイル

----------------------------------------------------------------------- */
@media screen and (max-width: 800px) {
  .pcOnly {
    display: none;
  }
}

.spOnly {
  display: none;
}
@media screen and (max-width: 800px) {
  .spOnly {
    display: block;
  }
}

/* ----------------------------------------------------------------------- 
	background
----------------------------------------------------------------------- */
body {
  background-color: #F8F5F0;
  color: #044819;
}

/* ----------------------------------------------------------------------- 
	title
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	btn
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	layout
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	line
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	box
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	table
----------------------------------------------------------------------- */
.tblStyle01 {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .tblStyle01 {
    width: 100%;
  }
}
.tblStyle01 thead th, .tblStyle01 thead td {
  font-weight: 600;
}
.tblStyle01 th, .tblStyle01 td {
  min-height: 40px;
  padding: 10px 20px;
  vertical-align: top;
}
@media screen and (max-width: 800px) {
  .tblStyle01 th, .tblStyle01 td {
    font-size: 13px;
    padding: 10px 10px;
  }
}
.tblStyle01 th {
  font-weight: 600;
}
@media screen and (max-width: 800px) {
  .tblStyle01 th {
    width: 30%;
  }
}
@media screen and (max-width: 800px) {
  .tblStyle01 td {
    width: 70%;
  }
}
.tblStyle01 td a {
  color: #358fc9;
  font-weight: 500;
}

/* ----------------------------------------------------------------------- 
	side bar
----------------------------------------------------------------------- */
/* ----------------------------------------------------------------------- 
	form
----------------------------------------------------------------------- */
/* テキストボックス */
input[type=text] {
  width: 100%;
  height: 36px;
  background-color: #FFFFFF;
  padding: 2px 10px;
  font-size: 14px;
}

/* セレクトボックス */
.selectBoxStyle {
  overflow: hidden;
  text-align: center;
}

.selectBoxStyle select {
  width: 100%;
  height: 36px;
  padding: 2px 10px;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 14px;
}

.selectBoxStyle select::-ms-expand {
  display: none;
}

.selectBoxStyle {
  position: relative;
  background: #FFFFFF;
}

.selectBoxStyle::before {
  position: absolute;
  top: 0.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  pointer-events: none;
}

.selectBoxStyle select {
  padding: 8px 38px 8px 8px;
  color: black;
}

/* チェックボックス01 */
input[type=checkbox] {
  display: none;
}

.checkbox01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 10px 5px 30px;
  position: relative;
  width: auto;
}

.checkbox01::before {
  background: #fff;
  border: 1px solid #231815;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox01::after {
  content: "";
  display: block;
  height: 12px;
  left: 10px;
  margin-top: -7px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 6px;
}

input[type=checkbox]:checked + .checkbox01::after {
  opacity: 1;
}

/* ラジオボタン01 */
input[type=radio] {
  display: none;
}

.radio01 {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0 5px 30px;
  position: relative;
  width: auto;
}

.radio01::before {
  background: #fff;
  border: 1px solid #231815;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.radio01::after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}

input[type=radio]:checked + .radio01::after {
  opacity: 1;
}

.searchButton {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  padding: 5px 0;
  color: #FFFFFF;
  transition: 0.3s;
}
.searchButton:hover {
  background: #000000;
}

.resetButton {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  padding: 5px 0;
  color: #FFFFFF;
  transition: 0.3s;
  border: none;
}
.resetButton:hover {
  background: #000000;
}

.pnavi ul {
  display: flex;
  -ms-align-items: center;
  align-items: center;
  -ms-justify-content: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-flow: row wrap;
}
.pnavi ul li {
  margin: 0 2px;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: relative;
  border-radius: 10px;
}
.pnavi ul li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  text-decoration: none;
  transition: all 0.1s ease;
}
.pnavi ul li a:hover, .pnavi ul li a:active {
  color: #FFFFFF;
}
.pnavi ul li .current {
  display: block;
  color: #FFFFFF;
  background: #000000;
}/*# sourceMappingURL=cmn_style.css.map */