@charset "utf-8";

/*------------------------------------------------
factory
------------------------------------------------*/

.base-list {
  width: 100%;
}
.base-item {
  width: 100%;
  margin-bottom: 25px;
}
.base-item-name {
  width: 100%;
}
.base-item-name .title-type-tag {
  display: block;
  line-height: 1.2;
}
.base-item-detail {
  margin: 25px 0;
}
.base-item-detail-pic {
  width: 80%;
  max-width: 340px;
  margin: 0 auto 15px;
  box-shadow: 8px 8px 0 #2c4390;
  overflow: hidden;
}
.base-item-detail-pic > img {
  width: 100%;
  height: 100%;
}
.base-item-detail-text {
  width: 80%;
  max-width: 340px;
  margin: 0 auto 15px;
}

.base-item-detail-map {
  color: #2c4390;
}

.base-item-detail-map:hover {
  border-bottom: 1px dashed;
}

@media print, screen and (min-width: 769px) {
  .base-list {
    width: 750px;
    margin: auto;
  }
  .base-item {
    margin: 50px 0;
  }
  .base-item-name {
    width: auto;
    text-align: center;
  }
  .base-item-name .title-type-tag {
    display: inline-block;
    text-align: left;
    line-height: 1;
    min-width: 500px;
  }
  .base-item-detail {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 50px 0 70px;
  }
  .base-item:nth-of-type(even) .base-item-detail {
    flex-direction: row-reverse;
  }
  .base-item-detail-pic {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    margin: 0;
  }
  .base-item-detail-text {
    width: calc(100% - 390px);
  }
}

