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

html {
  width: 100%;
}
body {
  *font-size: small;
  *font: x-small;
  font-size: 14px;
  line-height: 1.5;
  font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #333;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, p, ul, ol, li, img, table, th, td, dl, dt, dd {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
li {
  list-style-type: none;
}
a {
  transition: opacity .2s;
  cursor: pointer;
  color: #333333;
  text-decoration: none;
}
a:hover {
  opacity: .8;
}
img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
input, textarea, select, button, label {
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}


/* wrap
-----------------------------------------------*/
#wrap {
  padding: 60px 40px 100px;
}
@media only screen and (max-width:767px) {
}


/* section
-----------------------------------------------*/
section {
  max-width: 1000px;
  margin: 0 auto;
}
section:not(:first-child) {
  margin-top: 80px;
}
section .ttl {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
@media only screen and (max-width:767px) {
}


/* searchBox
-----------------------------------------------*/
#searchBox {
}
#searchCheck {
  background: #F9F7F5;
  margin-top: 50px;
  padding: 60px 60px 40px 60px;
}
#searchCheck p {
  font-size: 14px;
}
#searchCheck p:not(:first-child) {
  margin-top: 40px;
}
#searchCheck ul {
  display: grid;
  gap: 20px 10px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	margin-top: 12px;
}
#searchCheck ul li label {
  position: relative;
	display: inline-block;
	padding: 5px 0 0 44px;
	font-size: 16px;
  font-weight: bold;
	cursor: pointer;
  min-height: 38px;
}
#searchCheck ul li label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
	border-radius: 12px;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
#searchCheck ul li label span::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
	border-radius: 12px;
	background: #fff;
  border: 4px solid #C7B299;
  transition: background .2s;
}
#searchCheck ul li label:hover span::before{
  background: #F9F7F5;
}
#searchCheck ul li input[type="checkbox"] + span::after{
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 18px;
  height: 18px;
  background: #C7B299;
  border-radius: 50%;
  opacity: 0;
  transition: all .1s;
}
#searchCheck ul li input[type="checkbox"]:checked + span::after{
  opacity: 1;
}
#searchCheck button {
  display: block;
  background: #C7B299;
  width: 200px;
  height: 64px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px;
  margin: 50px auto 0;
  cursor: pointer;
  transition: background .2s;
}
#searchCheck button:hover {
  background: #b7a18d;
}
#searchText {
  background: #F9F7F5;
  margin-top: 10px;
  padding: 40px 60px;
  display: flex;
  gap: 20px;
}
#searchText input[type="text"] {
  flex: 1;
  height: 64px;
  border-radius: 12px;
  border: 4px solid #C7B299;
  padding: 0 18px;
  font-size: 16px;
}
#searchText button {
  display: block;
  background: #C7B299;
  width: 150px;
  height: 64px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s;
}
#searchText button:hover {
  background: #b7a18d;
}


/* result
-----------------------------------------------*/
#result.list1 {
  margin-top: 40px;
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 1fr 1fr 1fr;
}
#result.list1 .col a {
  display: block;
}
#result.list1 .col p {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: bold;
}
#result.list2 {
  margin-top: 40px;
  display: grid;
  gap: 25px 40px;
  grid-template-columns: 1fr 1fr;
}
#result.list2 .col a {
  display: flex;
}
#result.list2 .col a img {
  width: 64px;
}
#result.list2 .col p {
  font-size: 14px;
  line-height: 2;
  flex: 1;
  padding-left: 20px;
  font-weight: bold;
}


/* produc
-----------------------------------------------*/
#main {
  display: flex;
  gap: 40px;
  margin-top: 50px;
}
#main .img {
  width: 46%;
}
#main .txt {
  flex: 1;
}
#main .txt h1 {
  font-size: 20px;
}
#main .txt p {
  font-size: 14px;
  line-height: 2;
  margin-top: 55px;
}
#main .txt ul {
  margin-top: 30px;
}
#main .txt ul li {
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
}
#info {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
#info table {
  border-bottom: 2px solid #ccc;
  margin-top: 110px;
}
#info table th,
#info table td {
  vertical-align: top;
  border-top: 2px solid #ccc;
  padding: 10px 0;
  font-size: 14px;
}
#info table th {
  white-space: nowrap;
  padding-right: 70px;
  padding-left: 20px;
}
#info table td {
  width: 100%;
}
#about {
  margin-top: 50px;
}
#about p {
  line-height: 2;
  margin-top: 10px;
  font-size: 14px;
}
#recommend {
  margin-top: 50px;
}
#recommend p {
  line-height: 2;
  margin-top: 10px;
  font-size: 14px;
}
#recommend p strong {
  display: block;
}


/* sortMenu
-----------------------------------------------*/
#sortMenu {
  display: flex;
  gap: 40px;
}
#listBtn {
  display: flex;
  gap: 20px;
  align-items: center;
}
#listBtn li {
  cursor: pointer;
}
#sortBtn {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: bold;
}
#sortBtn  #descBtn_year,
#sortBtn  #ascBtn_year {
  font-size: 0;
  background: transparent;
  line-height: 14px;
  cursor: pointer;
  padding: 6px;
}
#sortBtn  #ascBtn_year {
  margin-left: 10px;
}
#sortBtn  #descBtn_year::before,
#sortBtn  #ascBtn_year::before {
  font-size: 14px;
  font-weight: bold;
}
#sortBtn  #descBtn_year::before {
  content: "↓";
}
#sortBtn  #ascBtn_year::before {
  content: "↑";
}


/* fBtn
-----------------------------------------------*/
#fBtn {
  margin-top: 45px;
}
#fBtn ul {
  display: flex;
  gap: 10px;
}
#fBtn ul li a {
  width: 150px;
  background: #c7b299;
  color: #fff;
  height: 60px;
  line-height: 60px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  display: block;
  border-radius: 10px;
}


/* listAward
-----------------------------------------------*/
#listAward #wrap {
  padding: 60px　60px 120px;
}
#listAward h1 {
  text-align: center;
  font-size: 20px;
}
#listAward table {
  max-width: 1120px;
  margin: 8px auto 0;
  border: none;
  border-bottom: 2px solid #ccc;
  padding-bottom: 30px;
  border-collapse: separate;
}
#listAward table td {
  position: relative;
  border: none;
  padding: 50px 20px 30px;
  font-weight: bold;
  text-align: left;
  vertical-align: top;
}
#listAward table td::before {
  content: "";
  background: linear-gradient(to bottom, #fff 0px, #fff 18px, #ccc 18px, #ccc 20px);
  width: 100%;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
#listAward table td:nth-last-child(4) {
  white-space: nowrap;
  width: 120px;
}
#listAward table td:nth-last-child(2) {
  width: 200px;
}
#listAward table td:nth-last-child(3) {
  width: 300px;
}
#listAward table td:nth-last-child(1),
#listAward table td:nth-last-child(2) {
  border: none;
  padding: 10px 20px;
}
#listAward table td:nth-last-child(1)::before,
#listAward table td:nth-last-child(2)::before {
  display: none;
}
#listAward table td[rowspan] + td,
#listAward table td[rowspan] + td + td {
  padding-top: 50px;
}
#listAward table td[rowspan] + td::before,
#listAward table td[rowspan] + td + td::before{
  display: block;
}
#listAward table td a {
  text-decoration: underline;
}




