@charset "utf-8";

/* ======================= 基本構造 ====== */
.products-wrap {
  display: flex;
  flex-direction: column;
}

.left-area {
  background: #dedede;
  position: relative;
  width: 100%;
  padding: 1rem 1rem 0;
  box-sizing: border-box;
  order: 2;
}

.main-area {
  padding: 2rem 0;
  width: 100%;
  order: 1;
}

.left-area .subhead01 {
  margin-bottom: 1.87rem;
}

@media screen and (min-width: 768px) {
  .products-wrap {
    flex-direction: row;
  }

  .left-area {
    padding: 3.75rem 1rem 5rem 1rem;
    max-width: 270px;
    z-index: 1;
    order: 1;
    box-sizing: border-box;
  }

  .left-area::before {
    background: #dedede;
    bottom: 0;
    content: "";
    left: -2030px;
    position: absolute;
    top: 0;
    width: 2300px;
    z-index: -1;
  }

  .main-area {
    padding: 3.75rem 0 5rem 1rem;
    order: 2;
  }
}

@media screen and (min-width: 1024px) {
  .products-wrap {
    margin: 0 auto;
    width: 960px;
  }

  .left-area {
    padding: 60px 20px 300px 20px;
    width: 270px;
  }

  .main-area {
    padding: 60px 0 300px 20px;
    max-width: 670px;
  }
}

/* ======================= .left-area ====== */
.left-area .arrow-list li {
  list-style: none;
}

.left-area .arrow-list li a {
  color: #333;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.left-area .arrow-list li a:hover {
  color: #085189;
}

/* ======================= .search-form ====== */
.search-form {
  display: flex;
  justify-content: space-between;
  padding: 0 0 2rem;
}

.search-form02 {
  display: flex;
  margin-bottom: 2rem;
}

.search-area {
  border: 1px solid #CCC;
  opacity: 0.8;
  padding: 7px 10px;
  width: 70%;
}

.submit02 {
  background: url(../../images/Btn.png) left top no-repeat;
  border: medium none;
  cursor: pointer;
  font-size: 0;
  height: 36px;
  line-height: 0;
  margin-left: 10px;
}

.submit {
  border-radius: 4px;
  background: #085189;
  color: #FFF;
  width: 4em;
  font-size: 13px;
  border-width: 0;
  height: 2.8em;
}

.submit03 {
  border-radius: 4px;
  background: #085189;
  color: #FFF;
  font-size: 13px;
  border-width: 0;
  height: 2.8em;
  margin-left: 0.5em;
}

@media screen and (min-width: 768px) {
  .search-area {
    width: 160px;
  }

  .submit02 {
    width: 200px;
  }

  .submit {
    height: 36px;
    margin-left: 10px;
  }

  .fix-width {
    width: 160px;
  }
}

/* ======================= .main-area ====== */
.main-area .section01 {
  margin: 0 0.5rem 2rem;
}

.main-area .section01 .hdg-bordered01{
  margin-bottom: 0.8rem;
}

.product-list ul li {
  border: 1px dotted #d4d4d4;
  padding: 10px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all .3s ease-in-out;
  margin-bottom: 0.5em;
}

.product-list ul li:hover {
  background: #cccccc;
}

.product-list ul li dl dt {
  text-align: center;
}

.product-list .hdg-ft02-lv04 {
  color: #085189;
  margin-top: 0.8rem;
  margin-bottom: 1rem;
}

.main-area .section01 .tbl01 {
  border-collapse: collapse;
  border: none;
  width: 100%;
}

.main-area .section01 .tbl01 th,
.main-area .section01 .tbl01 td {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  line-height: 1.5;
  padding: 0.9rem 0.7rem;
  vertical-align: middle;
}

.main-area .section01 .tbl01 th {
  background-color: #a4bed4;
  color: #333333;
  text-align: center;
  width: 36%;
}

.main-area .section01 .tbl01 td {
  background-color: #efefef;
  color: #333333;
}

@media screen and (min-width: 768px) {
  .main-area .section01 {
    margin: 0 0 2rem;
  }

  .product-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .product-list ul li {
    width: 32.1%;
    margin-bottom: 20px;
  }

  .product-list ul::after {
    content: '';
    display: block;
    width: 31.5%;
  }
  
  .main-area .section01 .tbl01 th {
    background-color: #a4bed4;
    color: #333333;
    text-align: center;
    width: 22%;
  }    
}

/********************************************************
 category.html
********************************************************/
.category-main {
  border-bottom: 1px solid #085189;
  position: relative;
  padding: 0.625rem;
  margin-bottom: 3rem;
}

.category-main .arrow {
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -10px;
}

.category-main dl {
  width: 100%;
}

.category-main dl dt {
  width: 100%;
  text-align: center;
}

.category-main dl dd {
  width: 100%;
}

.category-main .hdg-ft02-lv02 {
  line-height: 1;
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .category-main .arrow {
    position: absolute;
    bottom: -16px;
    left: 50%;
    margin-left: -10px;
}
  .category-main dl {
    display: flex;
    justify-content: space-between;
  }

  .category-main dl dt {
    width: 29%;
  }

  .category-main dl dd {
    margin-left: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .category-main dl dt {
    width: 195px;
  }

  .category-main dl dd {
    width: 440px;
    margin-left: 0;
  }
}

/*------ .ac-area ----*/
.ac-area dl {
  width: 100%;
}

.ac-area dl dt {
  background: #085189;
  border: 1px dotted #CCC;
  padding: 0.75rem 0.76rem;
  transition: all .3s ease-in-out;
  color: #fff;
}

.ac-area dl dd {
  padding: 1.25rem 0;
}

/*丸背景付き三角矢印*/
.ac-area dl dt span {
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.ac-area dl dt span:before {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
}

.ac-area dl dt span:after {
  content: '';
  width: 0;
  height: 0;
  border: solid 5px transparent;
  border-left: solid 5px #085189;
  position: absolute;
  top: 50%;
  left: 7px;
  margin-top: -6px;
}

/*.ac-area dl dt span {
  background: url(../images/icon_open.png) left center no-repeat;
  padding: 0.5rem 0 0.5rem 3rem;
  font-weight: bold;
}
*/
.ac-area dl .active {
  background: #085189;
  color: #FFF;
}

.ac-area dl .active span {
  background: url(../images/icon_close.png) left center no-repeat;
}

@media screen and (min-width: 768px) {
  .ac-area dl {
    margin-bottom: 3rem;
  }
}

/*------ .detail-list ----*/
.detail-list li {
  width: auto;
  text-align: center;
  margin-bottom: 1em;
}

.detail-list .hdg-ft02-lv04 {
  text-align: left;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.detail-list .hdg-ft02-lv04 a {
  background: url(../images/icon_circle.gif) left 5px no-repeat;
  padding-left: 1rem;
}

.detail-list li p {
  line-height: 1.3;
  text-align: left;
}

.detail-list li .img-wrap {
  text-align: center;
  margin-bottom: 2em;
}

.detail-list li .img-wrap a {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .detail-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .detail-list::after {
    content: '';
    display: block;
    width: 32.7%;
  }
  
  .detail-list li {
    width: 32.7%;
  }
  
  .detail-list li .img-wrap {
    display: table;
    overflow: hidden;
    text-align: center;
    height: 160px;
    width: 100%;
    margin-bottom: 0.2em;
  }

  .detail-list li .img-wrap a {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }
}

/********************************************************
 detail.html
********************************************************/
/*------ .tag ----*/
.tag {
  padding: 10px 0.5em 10px;
}

.tag img {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .tag {
    padding: 20px 0 10px;
  }
}

/*------ .info-box ----*/
.info-box {
  background: #fcfae5;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}

/********************************************************
 result.html
********************************************************/
.search-result .hdg-ft02-lv03 {
  margin: 2rem 0;
}

.search-result .hdg-menu01-sub01 {
  margin-bottom: 0;
}

.search-result .detail-list .hdg-ft02-lv04 {
  margin-bottom: 0.3rem;
}


/*行頭が揃えるためlist-styleに変更　.detail-list liは他ページにもClassあり*/
.search-result .detail-list li {
  text-align: center;
  margin: 0 0 1rem 1rem;
  list-style: disc;
  color: #085189;
}

.search-result .detail-list .hdg-ft02-lv04 a {
  background: none;
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .search-result .detail-list li {
    margin: 0 0.5rem 2.5rem 1rem;
    width: 28%;
  }
}
