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

/* common */
*, *:before, *:after {margin:0;padding:0;box-sizing:border-box;border:0;}
html {font-size: 62.5%;}
body {
  line-height: 1.75;
  font-size: 14px;
  font-size: 1.4rem;
  color: #666;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-image:url(img/bgimg.png);
}
img {max-width: 100%;height: auto;vertical-align: middle;}
a{text-decoration: none;color: #683824;transition: all 0.3s 0s;}
a:hover, a:focus {text-decoration: none;outline: none;opacity: .7;}
ul,ol,li {list-style: none;}

/* header */
header {
  background-color: #fff;
}
#logo{
    max-width: calc(980px + 4em);
    padding: 0.5em 2em;
    margin: 0 auto;
}
#title {
    background: #d4155b;
    padding: 0.5em 2em;
}
#title h1 {
    color: #fff;
    max-width: 980px;
    margin: 0 auto;
    font-size: 26px;
    font-size: 2.6rem;
}
.topic_path {
    padding: 0 2em;
    background-color: #ededed;
    border-bottom: 1px solid #ccc;
}
.topic_path ul {
    max-width: 980px;
    padding: .5em 0;
    margin: 0 auto;
    display: flex;
    font-size: 12px;
    font-size: 1.2rem;
}
.topic_path li {
    position: relative;
    padding: 0 2em 0 0;
}
.topic_path li:after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    right: 1em;
    width: 4px;
    height: 4px;
    border-top: 1px solid #003567;
    border-right: 1px solid #003567;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.topic_path li:last-child:after {
  display: none;
}
.topic_path li a {
    color: #E0147F;
}

/* contents */
h2 {
  height: 70px;
  text-align: center;
  background-color: #ff7bad;
}
h3 {
  text-align: center;
  padding: .5em 2em;
}
#main {
  max-width: 980px;
  padding-bottom: 5px;
  background-color: #ffffff;
  margin: 0 auto;
}
#main_image {
  text-align: center;
}
#pictlist {
  text-align: center;
  margin: 50px 2em;
}

/* footer*/
#page-top {
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 12px;
  font-size: 1.2rem;
}
#page-top a {
  background-color: #d4155b;
  color: #fff;
  width: 150px;
  padding: 15px 0;
  text-align: center;
  display: block;
  border-radius: 25px;
}
#copy {
  background-color: #d4155b;
  padding: 1em 2em;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
}

/* ladiesProject */
article ul {
    margin: 28px 1em;
    display: flex;
    align-items: flex-start;
/*    justify-content: space-between;*/
    flex-wrap: wrap;
}
article ul li {
    width: 23%;
    margin: 0 1% 2em;
    position: relative;
}
article ul li a {
  display: block;
  border: 1px solid #cacaca;
  padding: 50px .10px 40px;
  border-radius: 10px;
  text-align: center;
}
article ul li .ladiesName {
  margin-top: 10px;
  color: #f05283;
  margin-bottom: 5px;
  font-size: 80%;
}
article ul li .dealerName {
  border-top: 1px dashed #f05283;
  padding-top: 10px;
  font-size: 70%;
}
article ul li .detail {
  width: 100%;
  text-align: right;
  background-color: #ff7bad;
}
.prefecture {
  width: 78px;
  height: 43px;
  text-align: center;
  padding-top: 8px;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  background: url(img/prefecture.png) no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.detail {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
}

@media screen and (max-width: 768px){
  article ul li {
      width: 48%;
  }
  #copy {
    width: 100%
  }
  #page-top {
    position: static;
    margin: 0 2em 1em;
  }
  #page-top a {
    width: 100%;
    padding: 10px 0;
  }
}