@charset "UTF-8";

/* ここから：トップページ 固定ページ標準レイアウト解除 */
body.home #page_header,
body.home #bread_crumb {
  display: none !important;
}

body.home #container,
body.home #main_contents,
body.home #main_col,
body.home #article,
body.home .post_content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.home #container,
body.home #main_contents {
  display: block;
}

body.home .post_content > p:empty {
  display: none;
}
/* ここまで：トップページ 固定ページ標準レイアウト解除 */


/* ここから：トップページ FV親要素 */
.fujiyama-front {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.fujiyama-front,
.fujiyama-front * {
  box-sizing: border-box;
}

.fujiyama-front-fv {
  position: relative;
  width: 100%;
  min-height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background-image: url("../img/top/topfvbgf.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fujiyama-front-fv__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: auto;
  margin: 0 auto;
  padding: 120px 0 45px;
}
/* ここまで：トップページ FV親要素 */


/* ここから：トップページ 書籍バナースライダー */
.fujiyama-front-book-slider {
  --book-slider-width: min(1320px, 74vw);
  --book-slider-gap: clamp(18px, 1.8vw, 34px);
  --book-slider-button-size: 66px;

  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fujiyama-front-book-slider.is-prepared {
  opacity: 1;
}

.fujiyama-front-book-slider__viewport {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.fujiyama-front-book-slider__track {
  display: flex;
  align-items: center;
  gap: var(--book-slider-gap);
  width: max-content;
  margin: 0;
  padding: 0;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.fujiyama-front-book-slider__slide {
  flex: 0 0 var(--book-slider-width);
  width: var(--book-slider-width);
  min-width: 0;
  margin: 0;
  padding: 0;
}

.fujiyama-front-book-slider__link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-decoration: none;
  transition: opacity 0.45s ease;
}

.fujiyama-front-book-slider__link:hover {
  opacity: 0.72;
}

.fujiyama-front-book-slider__image,
body.home .post_content .fujiyama-front-book-slider__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  user-select: none;
  -webkit-user-drag: none;
}

.fujiyama-front-book-slider__controls {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 5;
  width: var(--book-slider-width);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.fujiyama-front-book-slider.is-ready .fujiyama-front-book-slider__controls {
  opacity: 1;
  visibility: visible;
}

.fujiyama-front-book-slider__button {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--book-slider-button-size);
  height: var(--book-slider-button-size);
  margin: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #1c1c1c;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition:
    opacity 0.25s ease,
    background-color 0.25s ease;
}

.fujiyama-front-book-slider__button:hover {
  opacity: 0.72;
}

.fujiyama-front-book-slider__button:focus-visible {
  outline: 2px solid #1c1c1c;
  outline-offset: 3px;
}

.fujiyama-front-book-slider__button:disabled {
  cursor: default;
  opacity: 0.4;
}

.fujiyama-front-book-slider__button--prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.fujiyama-front-book-slider__button--next {
  right: 0;
  transform: translate(50%, -50%);
}

.fujiyama-front-book-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 14px;
  margin: 26px 0 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.fujiyama-front-book-slider.is-ready .fujiyama-front-book-slider__pagination {
  opacity: 1;
  visibility: visible;
}

.fujiyama-front-book-slider__dot {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease;
}

.fujiyama-front-book-slider__dot:hover {
  opacity: 0.7;
}

.fujiyama-front-book-slider__dot.is-active {
  background: #111111;
  transform: scale(1.08);
}

.fujiyama-front-book-slider__dot:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}

@media screen and (max-width: 950px) {
  .fujiyama-front-fv__inner {
    padding: 118px 0 52px;
  }

  .fujiyama-front-book-slider {
    --book-slider-width: 80vw;
    --book-slider-gap: 22px;
    --book-slider-button-size: 58px;
  }

  .fujiyama-front-book-slider__button {
    font-size: 22px;
  }
}

@media screen and (max-width: 750px) {
  .fujiyama-front-fv__inner {
    padding: 102px 0 44px;
  }

  .fujiyama-front-book-slider {
    --book-slider-width: 86vw;
    --book-slider-gap: 14px;
    --book-slider-button-size: 48px;
  }

  .fujiyama-front-book-slider__button {
    font-size: 19px;
  }

  .fujiyama-front-book-slider__pagination {
    gap: 9px;
    margin-top: 20px;
  }

  .fujiyama-front-book-slider__dot {
    width: 9px;
    height: 9px;
  }
}

@media screen and (max-width: 480px) {
  .fujiyama-front-fv__inner {
    padding: 92px 0 36px;
  }

  .fujiyama-front-book-slider {
    --book-slider-width: 88vw;
    --book-slider-gap: 10px;
    --book-slider-button-size: 42px;
  }

  .fujiyama-front-book-slider__button {
    font-size: 17px;
  }

  .fujiyama-front-book-slider__pagination {
    margin-top: 16px;
  }
}
/* ここまで：トップページ 書籍バナースライダー */


/* ここから：トップページ 新刊 */
.fujiyama-front-new-book,
.fujiyama-front-new-book * {
  box-sizing: border-box;
}

.fujiyama-front-new-book {
  width: 100%;
  margin: 0;
  padding: 110px 24px 120px;
  color: #111111;
  background: #ffffff;
}

.fujiyama-front-new-book__inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
}

.fujiyama-front-new-book__heading {
  width: 100%;
  margin: 0 0 72px;
  padding: 0;
  text-align: center;
}

.fujiyama-front-new-book__en {
  display: block;
  margin: 0 0 4px;
  padding: 0;
  color: #777777;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.fujiyama-front-new-book__title,
body.home .post_content .fujiyama-front-new-book__title {
  margin: 0;
  margin-top: 0 !important;
  padding: 0;
  color: #111111;
  font-family: "FOT-筑紫Cオールド明朝 Pr6 B", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

.fujiyama-front-new-book__list {
  width: 100%;
  margin: 0;
  padding: 0;
}

.fujiyama-front-new-book__item {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fujiyama-front-new-book__item + .fujiyama-front-new-book__item {
  margin-top: 90px;
  padding-top: 90px;
  border-top: 1px solid #cfcfcf;
}

.fujiyama-front-new-book__cover-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

.fujiyama-front-new-book__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fujiyama-front-new-book__image,
body.home .post_content .fujiyama-front-new-book__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  margin: 0 auto;
  padding: 0;
  transition: opacity 0.3s ease;
}

.fujiyama-front-new-book__cover-link:hover .fujiyama-front-new-book__image {
  opacity: 0.72;
}

.fujiyama-front-new-book__content {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.fujiyama-front-new-book__book-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 24px;
  padding: 0;
}

.fujiyama-front-new-book__label {
  display: inline-flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  min-height: 28px;
  margin: 0;
  padding: 4px 10px;
  background: #b00000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.fujiyama-front-new-book__book-title,
body.home .post_content .fujiyama-front-new-book__book-title {
  flex: 1 1 300px;
  align-self: center;
  min-width: 0;
  margin: 0;
  margin-top: 0 !important;
  padding: 0;
  color: #111111;
  font-family: "TsukuAntiqueLGoStd-B", sans-serif !important;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: left;
}

.fujiyama-front-new-book__book-title a,
.fujiyama-front-new-book__book-title a:visited,
.fujiyama-front-new-book__book-title a:hover,
.fujiyama-front-new-book__book-title a:focus {
  color: inherit;
  text-decoration: none;
}

.fujiyama-front-new-book__book-title a {
  transition: opacity 0.3s ease;
}

.fujiyama-front-new-book__book-title a:hover {
  opacity: 0.62;
}

.fujiyama-front-new-book__subtitle,
body.home .post_content .fujiyama-front-new-book__subtitle {
  margin: 0 0 28px;
  padding: 0;
  color: #222222;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.025em;
}

.fujiyama-front-new-book__description {
  margin: 0 0 34px;
  padding: 0;
  color: #444444;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.015em;
}

.fujiyama-front-new-book__description > :first-child {
  margin-top: 0;
}

.fujiyama-front-new-book__description > :last-child {
  margin-bottom: 0;
}

.fujiyama-front-new-book__description p,
body.home .post_content .fujiyama-front-new-book__description p {
  margin: 0 0 1.35em;
  padding: 0;
  line-height: 2;
}

.fujiyama-front-new-book__price,
body.home .post_content .fujiyama-front-new-book__price {
  margin: 0 0 30px;
  padding: 20px 0 0;
  border-top: 1px solid #cfcfcf;
  color: #111111;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: right;
}

.fujiyama-front-new-book__price-tax {
  margin-left: 0.3em;
  font-size: 13px;
  font-weight: 400;
}

body.home .post_content a.fujiyama-front-new-book__more,
body.home .post_content a.fujiyama-front-new-book__more:link,
body.home .post_content a.fujiyama-front-new-book__more:visited,
body.home .post_content a.fujiyama-front-new-book__more:hover,
body.home .post_content a.fujiyama-front-new-book__more:focus,
body.home .post_content a.fujiyama-front-new-book__more:active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 210px;
  min-height: 54px;
  margin: 0 auto;
  padding: 14px 28px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.fujiyama-front-new-book__more:hover {
  opacity: 0.68;
}

@media screen and (max-width: 950px) {
  .fujiyama-front-new-book {
    padding: 90px 28px 100px;
  }

  .fujiyama-front-new-book__heading {
    margin-bottom: 60px;
  }

  .fujiyama-front-new-book__title,
  body.home .post_content .fujiyama-front-new-book__title {
    font-size: 40px;
  }

  .fujiyama-front-new-book__item {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 52px;
  }

  .fujiyama-front-new-book__image,
  body.home .post_content .fujiyama-front-new-book__image {
    max-height: 450px;
  }

  .fujiyama-front-new-book__book-title,
  body.home .post_content .fujiyama-front-new-book__book-title {
    font-size: 29px;
  }

  .fujiyama-front-new-book__subtitle,
  body.home .post_content .fujiyama-front-new-book__subtitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 750px) {
  .fujiyama-front-new-book {
    padding: 68px 18px 78px;
  }

  .fujiyama-front-new-book__heading {
    margin-bottom: 46px;
  }

  .fujiyama-front-new-book__en {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .fujiyama-front-new-book__title,
  body.home .post_content .fujiyama-front-new-book__title {
    font-size: 34px;
  }

  .fujiyama-front-new-book__item {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .fujiyama-front-new-book__item + .fujiyama-front-new-book__item {
    margin-top: 66px;
    padding-top: 66px;
  }

  .fujiyama-front-new-book__cover-link {
    width: min(300px, 78vw);
    margin: 0 auto;
  }

  .fujiyama-front-new-book__image,
  body.home .post_content .fujiyama-front-new-book__image {
    max-height: none;
  }

  .fujiyama-front-new-book__book-heading {
    gap: 10px;
    margin-bottom: 20px;
  }

  .fujiyama-front-new-book__label {
    min-height: 26px;
    padding: 3px 9px;
    font-size: 11px;
  }

  .fujiyama-front-new-book__book-title,
  body.home .post_content .fujiyama-front-new-book__book-title {
    flex-basis: 240px;
    font-size: 26px;
    line-height: 1.55;
  }

  .fujiyama-front-new-book__subtitle,
  body.home .post_content .fujiyama-front-new-book__subtitle {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.7;
  }

  .fujiyama-front-new-book__description {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.9;
  }

  .fujiyama-front-new-book__description p,
  body.home .post_content .fujiyama-front-new-book__description p {
    line-height: 1.9;
  }

  .fujiyama-front-new-book__price,
  body.home .post_content .fujiyama-front-new-book__price {
    margin-bottom: 26px;
    padding-top: 18px;
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .fujiyama-front-new-book {
    padding: 58px 14px 66px;
  }

  .fujiyama-front-new-book__heading {
    margin-bottom: 38px;
  }

  .fujiyama-front-new-book__title,
  body.home .post_content .fujiyama-front-new-book__title {
    font-size: 30px;
  }

  .fujiyama-front-new-book__item {
    gap: 34px;
  }

  .fujiyama-front-new-book__cover-link {
    width: min(260px, 76vw);
  }

  .fujiyama-front-new-book__book-heading {
    align-items: center;
    gap: 8px;
  }

  .fujiyama-front-new-book__label {
    min-height: 23px;
    padding: 2px 7px;
    font-size: 10px;
  }

  .fujiyama-front-new-book__book-title,
  body.home .post_content .fujiyama-front-new-book__book-title {
    flex-basis: 200px;
    font-size: 23px;
  }

  .fujiyama-front-new-book__subtitle,
  body.home .post_content .fujiyama-front-new-book__subtitle {
    font-size: 17px;
  }

  .fujiyama-front-new-book__description {
    font-size: 14px;
  }

  .fujiyama-front-new-book__price,
  body.home .post_content .fujiyama-front-new-book__price {
    font-size: 18px;
  }

  .fujiyama-front-new-book__price-tax {
    font-size: 12px;
  }

  .fujiyama-front-new-book__more,
  .fujiyama-front-new-book__more:visited,
  .fujiyama-front-new-book__more:hover,
  .fujiyama-front-new-book__more:focus {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 13px 20px;
    font-size: 13px;
  }
}
/* ここまで：トップページ 新刊 */


/* ここから：トップページ 取り扱い書籍 */
.fujiyama-front-books,
.fujiyama-front-books * {
  box-sizing: border-box;
}

.fujiyama-front-books {
  width: 100%;
  margin: 0;
  padding: 110px 24px 120px;
  color: #111111;
  background: #ffffff;
}

.fujiyama-front-books__inner {
  width: min(1290px, 100%);
  margin: 0 auto;
  padding: 0;
}

.fujiyama-front-books__heading {
  width: 100%;
  margin: 0 0 72px;
  padding: 0;
  text-align: center;
}

.fujiyama-front-books__en {
  display: block;
  margin: 0 0 4px;
  padding: 0;
  color: #777777;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
}

.fujiyama-front-books__title,
body.home .post_content .fujiyama-front-books__title {
  margin: 0;
  margin-top: 0 !important;
  padding: 0;
  color: #111111;
  font-family: "FOT-筑紫Cオールド明朝 Pr6 B", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.00em;
  text-align: center;
}

.fujiyama-front-books__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 76px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fujiyama-front-books__item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.fujiyama-front-books__link,
.fujiyama-front-books__link:visited,
.fujiyama-front-books__link:hover,
.fujiyama-front-books__link:focus {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  color: #111111;
  text-decoration: none;
}

.fujiyama-front-books__cover {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: 330px;
  margin: 0 0 28px;
  padding: 0;
}

.fujiyama-front-books__image,
body.home .post_content .fujiyama-front-books__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin: 0 auto;
  padding: 0;
  transition: opacity 0.3s ease;
}

.fujiyama-front-books__link:hover .fujiyama-front-books__image {
  opacity: 0.7;
}

.fujiyama-front-books__book-title,
body.home .post_content .fujiyama-front-books__book-title {
  margin: 0 0 18px;
  padding: 0;
  color: #111111;
  font-family: "TsukuAntiqueLGoStd-B", sans-serif !important;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-align: left;
}

.fujiyama-front-books__labels {
  display: inline;
  margin: 0 8px 0 0;
  padding: 0;
}

.fujiyama-front-books__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin: 0 4px 0 0;
  padding: 2px 7px;
  background: #333333;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  vertical-align: 0.12em;
  white-space: nowrap;
}

.fujiyama-front-books__label--new {
  background: #b00000;
}

.fujiyama-front-books__book-title-text {
  display: inline;
}

.fujiyama-front-books__price,
body.home .post_content .fujiyama-front-books__price {
  margin: auto 0 0;
  padding: 0;
  color: #222222;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-align: right;
}

.fujiyama-front-books__price-tax {
  margin-left: 0.3em;
  font-size: 11px;
  font-weight: 400;
}

@media screen and (max-width: 950px) {
  .fujiyama-front-books {
    padding: 90px 28px 100px;
  }

  .fujiyama-front-books__heading {
    margin-bottom: 60px;
  }

  .fujiyama-front-books__title,
  body.home .post_content .fujiyama-front-books__title {
    font-size: 40px;
  }

  .fujiyama-front-books__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 34px;
    row-gap: 66px;
  }

  .fujiyama-front-books__cover {
    height: 300px;
    margin-bottom: 24px;
  }

  .fujiyama-front-books__book-title,
  body.home .post_content .fujiyama-front-books__book-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 750px) {
  .fujiyama-front-books {
    padding: 68px 18px 78px;
  }

  .fujiyama-front-books__heading {
    margin-bottom: 46px;
  }

  .fujiyama-front-books__en {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .fujiyama-front-books__title,
  body.home .post_content .fujiyama-front-books__title {
    font-size: 34px;
  }

  .fujiyama-front-books__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 54px;
  }

  .fujiyama-front-books__cover {
    height: 280px;
    margin-bottom: 22px;
  }

  .fujiyama-front-books__book-title,
  body.home .post_content .fujiyama-front-books__book-title {
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.6;
  }

  .fujiyama-front-books__price,
  body.home .post_content .fujiyama-front-books__price {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  .fujiyama-front-books {
    padding: 58px 14px 66px;
  }

  .fujiyama-front-books__heading {
    margin-bottom: 38px;
  }

  .fujiyama-front-books__title,
  body.home .post_content .fujiyama-front-books__title {
    font-size: 30px;
  }

  .fujiyama-front-books__list {
    column-gap: 16px;
    row-gap: 46px;
  }

  .fujiyama-front-books__cover {
    height: 220px;
    margin-bottom: 18px;
  }

  .fujiyama-front-books__book-title,
  body.home .post_content .fujiyama-front-books__book-title {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  .fujiyama-front-books__labels {
    margin-right: 6px;
  }

  .fujiyama-front-books__label {
    min-height: 19px;
    margin-right: 3px;
    padding: 1px 5px;
    font-size: 9px;
  }

  .fujiyama-front-books__price,
  body.home .post_content .fujiyama-front-books__price {
    font-size: 14px;
  }

  .fujiyama-front-books__price-tax {
    font-size: 10px;
  }
}
/* ここまで：トップページ 取り扱い書籍 */


/* ここから：トップページ お知らせ */
.fujiyama-front-news,
.fujiyama-front-news * {
  box-sizing: border-box;
}

.fujiyama-front-news {
  width: 100%;
  margin: 0;
  padding: 0;
  color: #111111;
  background: #ffffff;
}

.fujiyama-front-news__heading {
  width: min(620px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 34px;
  text-align: center;
}

.fujiyama-front-news__title,
body.home .post_content .fujiyama-front-news__title {
  margin: 0;
  padding: 0;
  color: #111111;
  font-family: "FOT-筑紫Cオールド明朝 Pr6 B", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.00em;
  text-align: center;
}

.fujiyama-front-news__heading-line {
  display: block;
  width: 100%;
  height: 0.25px;
  margin: 24px 0 0;
  background: #b8b1a3;
}

.fujiyama-front-news__body {
  width: 100%;
  margin: 0;
  padding: 78px 24px 90px;
  background: #f1f1f1;
}

.fujiyama-front-news__inner {
  width: min(1290px, 100%);
  margin: 0 auto;
}

.fujiyama-news-headline {
  width: 100%;
  margin: 0;
  padding: 0;
}

.fujiyama-news-headline__item {
  width: 100%;
  margin: 0;
  padding: 0 42px 34px;
  border-bottom: 1px solid #cecece;
}

.fujiyama-news-headline__item + .fujiyama-news-headline__item {
  padding-top: 40px;
}

.fujiyama-news-headline__link,
.fujiyama-news-headline__link:visited,
.fujiyama-news-headline__link:hover,
.fujiyama-news-headline__link:focus {
  color: inherit;
  text-decoration: none;
}

.fujiyama-news-headline__link {
  transition: opacity 0.35s ease;
}

.fujiyama-news-headline__link:hover {
  opacity: 0.62;
}

.fujiyama-news-headline__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
}

.fujiyama-news-headline__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  min-height: auto;
  margin: 0;
  padding: 8px 18px;
  border-radius: 999px;
  background: #050505;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.fujiyama-news-headline__date {
  margin: 0;
  padding: 0;
  color: #747474;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.00em;
}

.fujiyama-news-headline__title,
body.home .post_content .fujiyama-news-headline__title {
  margin: 0;
  margin-top: 20px !important;
  padding: 0;
  color: #111111;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.00em;
  text-align: left;
}

@media screen and (max-width: 950px) {
  .fujiyama-front-news__heading {
    padding: 40px 0 64px;
  }

  .fujiyama-front-news__title,
  body.home .post_content .fujiyama-front-news__title {
    font-size: 40px;
  }

  .fujiyama-front-news__body {
    padding: 68px 24px 78px;
  }

  .fujiyama-news-headline__item {
    padding-right: 24px;
    padding-left: 24px;
  }

  .fujiyama-news-headline__date {
    font-size: 22px;
  }

  .fujiyama-news-headline__title,
  body.home .post_content .fujiyama-news-headline__title {
    font-size: 27px;
  }
}

@media screen and (max-width: 750px) {
  .fujiyama-front-news__heading {
    width: calc(100% - 48px);
    padding: 34px 0 50px;
  }

  .fujiyama-front-news__title,
  body.home .post_content .fujiyama-front-news__title {
    font-size: 34px;
  }

  .fujiyama-front-news__heading-line {
    margin-top: 18px;
  }

  .fujiyama-front-news__body {
    padding: 48px 20px 56px;
  }

  .fujiyama-news-headline__item {
    padding: 0 4px 28px;
  }

  .fujiyama-news-headline__item + .fujiyama-news-headline__item {
    padding-top: 30px;
  }

  .fujiyama-news-headline__meta {
    gap: 10px;
    margin-bottom: 16px;
  }

  .fujiyama-news-headline__label {
    min-width: 88px;
    min-height: 34px;
    padding: 6px 14px;
    font-size: 15px;
  }

  .fujiyama-news-headline__date {
    font-size: 17px;
  }

  .fujiyama-news-headline__title,
  body.home .post_content .fujiyama-news-headline__title {
    margin-top: 0 !important;
    font-size: 21px;
    line-height: 1.65;
  }
}

@media screen and (max-width: 480px) {
  .fujiyama-front-news__heading {
    width: calc(100% - 36px);
    padding: 30px 0 42px;
  }

  .fujiyama-front-news__title,
  body.home .post_content .fujiyama-front-news__title {
    font-size: 30px;
  }

  .fujiyama-front-news__body {
    padding: 40px 16px 48px;
  }

  .fujiyama-news-headline__meta {
    flex-wrap: wrap;
    gap: 8px 10px;
  }

  .fujiyama-news-headline__label {
    min-width: 82px;
    font-size: 14px;
  }

  .fujiyama-news-headline__date {
    font-size: 15px;
  }

  .fujiyama-news-headline__title,
  body.home .post_content .fujiyama-news-headline__title {
    font-size: 19px;
  }
}
/* ここまで：トップページ お知らせ */
