.main-header {
    background-color: #fff;
    width: 1280px;
    padding: 18px 15px 18px 58px;
    margin: 0 auto;
}

.content-sec {
    margin: 0 auto;
    background: url(../images/slanting.png);
    width: 1280px;
    background-repeat: repeat;
}
.content-sec h1 {
    margin: 0 0 0 45px;
    padding: 20px 0 15px;
}
.content-sec .border {
    width: 100%;
    margin-left: 45px;
}
.content-sec .border.pad-below {
    margin-bottom: 60px;
}
.content-sec .content-img {
    margin: 0 auto;
    display: block;
}

.store-list-wrapper {
    margin: 0 45px;
    display: flex;
    flex-direction: row;
}
.store-list {
    display: inline-block;
    width: calc(50% - 15px);
}
.store-list + .store-list {
    margin-left: 30px;
}
.store-list dt {
    font-size: 24px;
    border-bottom: 3px solid black;
    margin: 27px 0 12px;
}
.store-list dd {
    margin: 0;
    padding: 3px 0 3px 9px;
}

p {
    width: 1100px;
    margin-left: 90px;
    margin-right: 90px;
    margin-top: 10px;
    margin-bottom: 20px;
  }


/* ボタンここヨリ */
.button {
    display: inline-block;
    width: 620px;
    height: 42px;
    text-align: center;
    text-decoration: none;
    line-height: 42px;
    outline: none;
  }
  .button::before,
  .button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
  }
  .button,
  .button::before,
  .button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  
  /* ボタンアニメーションパターンここから */
  .button {
    position: relative;
    z-index: 2;
    background-color: #96ffec;
    border: none;
    color: #333;
    font-weight: 620;
    line-height: 44px;
    overflow: hidden;
  }
  .button:hover {
    color: #fff;
  }
  .button::after {
    top: -100%;
    width: 100%;
    height: 100%;
  }
  .button:hover::after {
    top: 0;
    background-color: #333;
  }
  /* ボタンアニメーションパターンここヨリ */
  
  /* ボタンここマデ */