@charset "UTF-8";
.isPC{
  display: block;
}
.isSP{
  display: none;
}
body{
  width: 100%;
}
.contentInr{
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
  padding: 0 15px;
}

/* header */
header{
  background: #fff;
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
}
.logo{
  margin: 25px 0;
  text-align: center;
}
.logo a{
  display: inline-block;
}
.logo img{
  width: auto;
  max-width: 100%;
}

/* footer */
footer{
  background: #333;
}
footer ul{
  padding: 30px 0;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
footer ul li + li{
  margin-left: 30px;
}
footer a{
  color: #fff;
}

/* コンテンツ */
section{
  margin-bottom: 95px;
}
h1{
  font-size: 24px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 40px;
}
.brandList{
  display: -webkit-flex;
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
}
.brandList a{
  display: block;
}
.brandListItem{
  width: calc((100% - 37px) / 3);
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 18px;
}
.brandListItem:nth-of-type(3n-2){
  margin-left: 0;
}
.brandBnr{
  margin-bottom: 10px;
}
.brandBnr img{
  width: auto;
  max-width: 100%;
}
.brandTxt{
  padding: 0 10px;
}
.brandTxt p{
  line-height: 1.65;
}
.note{
  padding-left: 2em;
  text-indent: -2em;
  font-size: 11px;
  margin-top: 15px;
}
.note + .note{
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .isPC{
    display: none;
  }
  .isSP{
    display: block;
  }
  .contentInr{
    max-width: initial;
    padding: 0 3%;
  }

  /* header / footer */
  header{
    margin-bottom: 7.5%;
  }
  .logo{
    margin: 0;
  }
  header .contentInr,
  footer .contentInr{
    padding: 20px 3%;
  }
  footer ul{
    flex-direction: column;
    padding: 0;
  }
  footer ul li + li{
    margin-left: 0;
    margin-top: 2%;
  }

  /* コンテンツ */
  h1{
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 7.5%;
  }
  section{
    margin-bottom: 25%;
  }
  .brandList{
    flex-direction: column;
  }
  .brandListItem{
    width: 100%;
    display: block;
    margin-bottom: 7.5%;
    margin-left: 0;
  }
  .brandListItem:last-of-type{
    margin-bottom: 0;
  }
  .brandBnr{
    margin-bottom: 4%;
  }
  .brandBnr img{
    width: 100%;
  }
  a:hover{
    opacity: 1;
  }
}