/*------------------------------------------*/
/* 見出しリード
/*------------------------------------------*/
.publishing-heading {
  font-weight: 500;
}

.iPhone .publishing-heading {
  font-weight: bold;
}

@media screen and (max-width: 833px) {
  .publishing-heading {
    font-size: 1.3rem;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .publishing-heading {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .publishing-heading {
    font-size: 1.5rem;
    margin-bottom: 60px;
  }
}


/*------------------------------------------*/
/* flow
/*------------------------------------------*/

.publishing-flow li {
  position: relative;
}

.publishing-flow li:not(:last-child)::before {
  content: '';
  display: inline-block;
  border-left: dashed 2px #7d7d7d;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 25px;
}

@media screen and (max-width: 767px) {
  .publishing-flow li:not(:last-child) {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 768px), print {
  .publishing-flow li:not(:last-child) {
    padding-bottom: 40px;
  }
}

/* 制作の流れ box ----------------------------------*/
.publishing-flow .box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 制作の流れ 数字 ----------------------------------*/
.publishing-flow .num {
  width: 100%;
  max-width: 50px;
  height: 50px;
  color: #fff;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  background: #004098;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 制作の流れ 見出し ----------------------------------*/
.publishing-flow .heading {
  width: 100%;
  text-align: left;
  color: #004098;
  font-weight: 500;
  padding-left: 10px;
}

.iPhone .publishing-flow .heading {
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .publishing-flow .heading {
    width: 95%;
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px), print {
  .publishing-flow .heading {
    font-size: 1.2rem;
  }
}

/* 制作の流れ テキスト ----------------------------------*/
.publishing-flow .text {
  margin-left: 60px;
}

/*------------------------------------------*/
/* 実績
/*------------------------------------------*/

@media screen and (min-width: 834px), print {
  .publishing-works {
    display: flex;
  }
}

/* 画像 --------------------------------*/
.publishing-works figure img {
  width: 100%;
}

@media screen and (max-width: 833px) {
  .publishing-works figure {
    display: inline-block;
    max-width: 280px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 834px), print {
  .publishing-works figure {
    max-width: 300px;
    margin-right: 60px;
  }
}

/* 小見出し --------------------------------*/
.publishing-works .heading {
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  border-bottom: dashed 2px var(--color-light-gray);
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

/* 書籍情報 --------------------------------*/
.publishing-info {
  margin-top: 20px;
}

/* 表 --------------------------------*/
.publishing-works table {
  border-collapse: collapse;
  width: 100%;
}

.publishing-works table th,
.publishing-works table td {
  text-align: left;
  border-bottom: dotted 1px var(--color-light-gray);
  font-size: 0.8rem;
  padding: 5px 0;
}

/* 購入先 --------------------------------*/
.publishing-buyer {
  font-size: 0.9rem;
  margin-top: 20px;
}

.publishing-buyer .inbox {
  display: flex;
  flex-wrap: wrap;
}

.publishing-buyer .inbox p+p {
  margin-left: 2em;
}