/* 基本 */
.top-img-container {
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1030px;
}

#mainvisual {
  width: 100%;
  height: 550px;
  text-align: center;
}

#mainvisual img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

/* NEWS */
.p-line-informaiton {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
}

.p-line-informaiton ul {
  flex: 1;
  font-size: 13px;
}

.p-line-informaiton li {
  margin-bottom: 15px;
}

.p-line-informaiton__ttl {
  position: relative;
  margin: 0 40px 0 0;
  font-size: 14px;
  font-weight: bold;
}

.p-line-informaiton__ttl:before {
  content: "";
  position: absolute;
  top: 7px;
  right: -20px;
  width: 1px;
  height: 10px;
  background: #d2d2d2;
}

/* NEW ARRIVAL */
.p-new-item.u-container {
  padding-bottom: 0;
}

/* FREE */
.p-free__body {
  margin-left: 60px;
  margin-right: 60px;
  line-height: 2;
}

/* スマホ (&#8804;648px) */
@media screen and (max-width: 648px) {
  .top-img-container {
    padding-left: 0;
    padding-right: 0;
  }

  .p-line-informaiton {
    display: block;
  }

  .p-line-informaiton ul {
    font-size: 12px;
  }

  .p-line-informaiton__ttl {
    margin: 0;
  }

  .p-line-informaiton__ttl:before {
    content: none;
  }

  .p-free__body {
    margin-left: 0;
    margin-right: 0;
  }
}

/* PC (&#8805;649px) */
@media screen and (min-width: 649px) {
  .p-line-informaiton {
    max-width: 760px;
  }
}