@charset "utf-8";

/*
* Container
* Common Parts
* Home
* NEWS（Home・下層共通）
* Style (NEWS個別記事、固定ページ、404ページ)
* Pagination, Pager
*/

/* ==================================================

	Container

================================================== */

/* 横幅、余白の設定変更 */
.container {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1200px) {
  .container {
    max-width: 76%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}

/* 横幅いっぱいにしたいコンテンツ */
.section-courses .container,
.section-space .container {
  max-width: 1400px;
}



/* ==================================================

	Common Parts

================================================== */

/* containerの画像はwidth100%にする */
.container img {
  width: 100%;
}

/* タイトル
-------------------------------------------------- */
.section-title {
  margin: 0;
  padding: 0;
  font-size: 60px;
  line-height: 1;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

/* 本文
-------------------------------------------------- */
.section-text {
  width: 320px;
}
.section-text p,
.section-text table,
.post-text p,
.post-text ul li {
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.08rem;
}
@media (max-width: 768px) {
  .section-text {
    width: auto;
  }
}

/* Link-button
-------------------------------------------------- */
.link-button {
  width: 320px;
  height: 60px;
  border: 1px #fff solid;
  border-radius: 30px;
  font-size: 16px;
  text-align: center;
  /* 中央寄せ */
  display: flex;
  justify-content: center;
  align-items: center;
}
a.link-button {
  color: #fff;
}
@media (max-width: 768px) {
  .link-button {
    width: 100%;
  }
}



/* ==================================================

	Home / Mainvisual

================================================== */

/* mainvisual
-------------------------------------------------- */
.section-head-mainvisual {
  position: relative;
  width: 100vw;
  min-height: 100vh; /* Windows, Android */
  min-height: 100svh; /* Safari */
  -webkit-user-select: none; /* テキストを選択不可にする */
  -moz-user-select: none;
  user-select: none;
}

/* carousel デフォルト設定変更 */
.section-head-mainvisual .carousel-style {
  top: 0;
}
.section-head-mainvisual .carousel-item img {
  z-index: -1;
  object-fit: cover; /* アスペクト比を維持したまま拡大縮小 */
  min-height: 100vh; /* Windows, Android */
  min-height: 100svh; /* Safari */
  width: 100%;
}
.section-head-mainvisual .carousel-item {
  display: block;
  width: 100vw;
  height: 100vh;
}

/* ロゴ
-------------------------------------------------- */
.section-head-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: 30px;
  margin-bottom: 35px;
  z-index: 97;
}
.section-head-logo-inner img {
  width: 157px;
  height: auto;
}
@media (max-width: 768px) {
  .section-head-logo {
    margin-left: 20px;
    margin-bottom: 48px;
  }
  .section-head-logo-inner img {
    width: 100px;
  }
}



/* ==================================================

	Home / CONCEPT

================================================== */

.section-concept {
  color: #fff;
  background-color: transparent;
}
/* 背景画像 */
.section-concept-bg-wrap {
  position: relative;
  height: 4500px; /* 背景の高さを3画面分に */
  background-image:
    url('../img/home/concept_bg_yoko_01.jpg'),
    url('../img/home/concept_bg_yoko_02.jpg'),
    url('../img/home/concept_bg_yoko_03.jpg');
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto 1500px, auto 1500px, auto 1500px; /* 各背景を縦に分割 */
  background-position: top, center 1500px, center 3000px; /* 各画像の縦位置 */
}

/* 要素を固定する */
.section-concept-sticky {
  position: sticky;
  top: 0;
  z-index: 99; /* 背景より前面に表示 */
}

/* テキスト */
.section-concept .section-title {
  padding-top: 154px;
  margin-bottom: 100px;
}
.concept-lead {
  margin-bottom: 50px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08rem;
}
.section-concept .section-text {
  padding-bottom: 200px;
}

@media (max-width: 768px) {
  .section-concept-bg-wrap {
    height: 2400px;
    background-size: auto 800px, auto 800px, auto 800px;
    background-position: top, center 800px, center 1600px;
  }
  .section-concept .section-title {
    padding-top: 127px;
    margin-bottom: 45px;
  }
  .section-concept .section-text {
    padding-bottom: 200px;
  }
  .section-concept .concept-lead {
    font-size: 20px; /* 画面の横幅準拠 */
    margin-bottom: 40px;
  }
}



/* ==================================================

	Home / COURSES

================================================== */
/* COURSESとPAIRINGの間に1px隙間が出るため、背景色を追加 */
.courses-pairing-bg {
  background: #495057;
}

.section-courses {
  background: #495057;
  color: #fff;
  padding-top: 200px;
}

/* タイトル */
.section-courses .section-title-pc {
  margin: 0 0 80px auto;
  width: 320px;
}
.section-title-sp { display: none; }
.section-title-pc { display: block; }
@media (max-width: 992px) {
  /* 1カラムの時のレイアウト */
  .section-courses .section-title-sp {
    margin: 0 auto 50px auto;
    text-align: center; /* 992幅のみ中央寄せ */
  }
  .section-title-sp { display: block; }
  .section-title-pc { display: none; }
}
@media (max-width: 768px) {
  .section-courses .section-title-sp {
    margin: 0 0 50px 30px;
    text-align: left;
  }
}



/* 共通要素
-------------------------------------------------- */
.section-courses-image {
  width: auto;
  max-width: 53.5%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .section-courses-image {
    position: relative;
  }
  /* テキスト中央寄せ */
  .section-courses .section-text {
    margin: 0 auto;
  }
}



/* topの要素
-------------------------------------------------- */
.section-courses-wrap-top {
  position: relative;
}

/* 画像部分 */
.section-courses-image-top {
  left: 0; /* 左寄せ */
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-courses-image-top {
    max-width: calc( 100vw - 30px );
    margin: 0 auto 50px 0;
  }
}
@media (max-width: 768px) {
  .section-courses-image-top {
    margin: 0 auto 50px -30px;
  }
}

/* テキスト部分 */
.section-courses-text-top {
  margin-top: 0;
  margin-right: 205px; /* 右寄せ */
  margin-bottom: 150px;
  margin-left: auto;
}
.section-courses-text-top .section-text {
  margin-left: auto; /*  右寄せ */
}
@media (max-width: 1400px) {
  .section-courses-text-top {
    margin-right: calc((100vw - 990px) / 2); /* レスポンシブに */
  }
}
@media (max-width: 1200px) {
  .section-courses-text-top {
    margin-right: 12%; /* レスポンシブに */
  }
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-courses-text-top {
    margin-right: auto; /* 中央寄せ */
    margin-bottom: 120px;
    margin-left: auto;
  }
  .section-courses-text-top .section-text {
    margin-left: auto;
  }
}



/* bottom（carousel）の要素
-------------------------------------------------- */
.section-courses-wrap-bottom {
  position: relative;
  padding-bottom: 200px; /* 画像が absolute で要素がかぶるため、画像の100px を入れた数値 */
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-courses-wrap-bottom {
    padding-bottom: 100px; /* 画像がrelativeになるので、純粋に100pxだけにする */
  }
}

/* 画像部分 */
.section-courses-image-bottom {
  right: 0; /* 右寄せ */
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-courses-image-bottom {
    max-width: 100%;
    margin: 0 30px 120px 30px; /* 左右に30pxマージンを空ける */
  }
}
@media (max-width: 768px) {
  .section-courses-image-bottom {
    margin: 0 0 120px 0;
  }
}

/* テキスト部分 */
.section-courses-text-bottom {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: 205px; /* 左寄せ */
}
.section-courses .courses-subtitle {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1;
}
.section-courses-text-bottom .section-text {
  margin-bottom: 60px;
}
.section-courses-text-bottom .section-text:last-of-type { /* 一番最後のテキストだけに適用 */
  margin-bottom: 0;
}
.section-courses-text-bottom .section-text p {
  margin: 0;
  line-height: 1.75;
}
@media (max-width: 1400px) {
  .section-courses-text-bottom {
    margin-left: calc((100vw - 990px) / 2); /* レスポンシブに */
  }
}
@media (max-width: 1200px) {
  .section-courses-text-bottom {
    margin-left: 12%; /* レスポンシブに */
  }
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-courses-text-bottom {
    margin: 0 auto;
  }
}



/* carousel デフォルト設定変更
-------------------------------------------------- */
/* ボタン位置 */
.section-courses-image-button {
  position: relative;
  margin-top: 15px;
  width: 100px;
}
.section-courses-image-button .carousel-control-next,
.section-courses-image-button .carousel-control-prev {
  align-items: normal;
  width: 28px;
}



/* ==================================================

  Home / PAIRING

================================================== */

.section-pairing {
  background: #495057;
  color: #fff;
  padding-top: 100px;
}
.section-pairing .section-title {
  margin-bottom: 80px;
  text-align: center;
}
.section-pairing .section-text {
  margin: 0 auto 100px;
}
@media (max-width: 768px) {
  .section-pairing .section-title {
    margin-bottom: 50px;
  }
}

/* 画像レイアウト
-------------------------------------------------- */
.section-pairing-image-wrap {
  width: auto;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 280px;
}
/* 画像サイズ */
.section-pairing-image-01 img,
.section-pairing-image-02 img {
  width: auto;
  max-width: 53.5%;
}
.section-pairing-image-01 {
  margin-bottom: 100px;
  text-align: left; /* 画像を左寄せ */
}
.section-pairing-image-02 {
  text-align: right; /* 画像を右寄せ */
}
@media (max-width: 1400px) {
  .section-pairing-image-wrap {
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .section-pairing-image-wrap {
    padding-bottom: 160px;
  }
  .section-pairing-image-01 img,
  .section-pairing-image-02 img {
    width: auto;
    max-width: calc(100vw - 30px);
  }
}

/* 一番下の画像
-------------------------------------------------- */
.section-pairing-image-bottom {
  width: 100%;
  height: 540px;
  overflow: hidden; /* 画像のはみ出しを隠す */
}
.section-pairing-image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 横幅100%、高さに合わせて画像をトリミング */
  display: block;
}
@media (max-width: 768px) {
  .section-pairing-image-bottom {
    height: 300px;
  }
}



/* ==================================================

  Home / SPACE

================================================== */

.section-space {
  background: #DBDBDB;
  color: #202020;
  padding-top: 200px;
}
@media (max-width: 768px) {
  .section-space {
    padding-top: 167px;
  }
}

/* 上の要素
-------------------------------------------------- */
.section-space-wrap-top {
  position: relative;
}

/* テキスト部分 */
.section-space-text {
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: 205px; /* 左寄せ */
}
.section-space .section-title {
  margin-bottom: 100px;
}
.section-space .section-text {
  margin-bottom: 185px;
}
@media (max-width: 1400px) {
  .section-space-text {
    margin-left: calc((100vw - 990px) / 2); /* レスポンシブに */
  }
}
@media (max-width: 1200px) {
  .section-space-text {
    margin-left: 12%; /* レスポンシブに */
  }
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-space-text {
    margin: 0 auto 90px;
  }
  /* テキスト中央寄せ */
  .section-space .section-title {
    text-align: center;
  }
  .section-space-text .section-text {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .section-space .section-title {
    margin-bottom: 52px;
    text-align: left;
  }
}

/* 最初の画像
-------------------------------------------------- */
.section-space-image-01 {
  width: auto;
  max-width: 53.5%;
  position: absolute;
  top: 0;
  right: 0; /* 右寄せ */
}
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-space-image-01 {
    position: relative;
    max-width: calc( 100vw - 30px );
    margin: 0 0 60px auto;
  }
}
@media (max-width: 768px) {
  .section-space-image-01 {
    margin: 0 -30px 30px auto;
  }
}


/* 自由配置の画像レイアウト
-------------------------------------------------- */
.section-space-image-position {
  position: relative;
  width: 100%;
  aspect-ratio: 5/4; /* 全体の比率・高さは幅に合わせて自動調整 */
  margin-bottom: 200px;
}
.section-space-image-02,
.section-space-image-03,
.section-space-image-04 {
  position: absolute;
  height: auto;
}
.section-space-image-02 {
  top: 0;
  left: 0;
  width: 53.5%; /* 約730px */
}
.section-space-image-03 {
  top: 30%;
  right: 14%;
  width: 23.5%; /* 約320px */
}
.section-space-image-04 {
  top: 70%;
  left: 22%;
  width: 31.5%; /* 約430px */
}

/* 画像のキャプション */
.section-space-image-caption {
  margin-top: 14px;
  font-size: 12px;
  line-height: 1;
}
.section-space-image-02 .section-space-image-caption {
  text-align: right;
}
@media (max-width: 768px) {
  .section-space-image-position {
    aspect-ratio: auto; /* 固定高さを解除して中身に合わせる */
    margin-bottom: 160px;
  }
  .section-space-image-02,
  .section-space-image-03,
  .section-space-image-04 {
    position: static; /* absolute解除 */
    width: auto;
    height: auto;
  }
  .section-space-image-02 {
    max-width: calc(100vw - 30px);
    margin-left: -30px;
    margin-bottom: 77px;
  }
  .section-space-image-03 {
    max-width: 80%;
    margin-right: -30px;
    margin-left: auto; /* 右寄せ */
    margin-bottom: 60px;
  }
  .section-space-image-04 {
    max-width: calc(100vw - 60px);
    margin-left: -30px;
  }
}



/* ==================================================

	Home / ACCESS

================================================== */

.section-access {
  background: #495057;
  color: #fff;
  padding-top: 200px;
  padding-bottom: 240px;
}
.section-access a {
  color: #fff;
}
.section-access .section-title {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-access {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .section-access .section-title {
    margin-bottom: 43px;
  }
}

/* flexで横並びにする
-------------------------------------------------- */
.section-access-row {
  display: flex;
  align-items: flex-start; /* 上端揃え */
  justify-content: flex-start; /* 左寄せ */
}
.section-access-image {
  flex: 0 0 55%;
  max-width: 55%;
  order: 2; /* 画像を右 */
}
.section-access-table-wrap {
  flex: 0 0 45%;
  max-width: 45%;
  order: 1; /* テーブルを左 */
}
/* スマホ時：画像の下にテーブルを配置 */
@media (max-width: 992px) {
  .section-access-row {
    flex-direction: column;
    align-items: center; /* 全体を中央寄せ */
  }
  .section-access-table-wrap,
  .section-access-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section-access-image {
    order: 1; /* 画像を上 */
  }
  .section-access-table-wrap {
    order: 2; /* テーブルを下 */
  }
}
@media (max-width: 768px) {
  .section-access-row {
    justify-content: flex-start; /* 全体を左寄せ */
  }
}

/* 画像
-------------------------------------------------- */
@media (max-width: 992px) { /* 1カラム時のレイアウト */
  .section-access-image {
    margin-bottom: 65px;
  }
}

/* table
-------------------------------------------------- */
table.section-access-table {
  width: 340px;
  line-height: 1.75;
  text-align: left;
}
.section-access-table th {
  width: 110px;
  font-weight: normal;
  vertical-align: top;
}
.section-access-table td {
  width: 230px;
}
@media (max-width: 768px) {
  .section-access-table th, .section-access-table td {
    display: block;
    width: 100%;
  }
  .section-access-table td {
    margin-bottom: 2rem;
  }
}



/* ==================================================

	Home / RESERVATION

================================================== */

.section-reservation {
  background: #495057;
  color: #fff;
  padding-top: 200px;
  padding-bottom: 200px;
}
.section-reservation .section-title {
  margin-bottom: 100px;
  text-align: center;
}
.section-reservation .section-text {
  margin: 0 auto 120px;
  width: 544px;
}
.section-reservation .link-button-wrap .link-button {
  margin: 0 auto;
}
.section-reservation .link-button-wrap {
  margin-bottom: 30px;
}
/* 一番下のボタンは margin:0 */
.section-reservation .link-button-wrap:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-reservation {
    padding-top: 167px;
    padding-bottom: 160px;
  }
  .section-reservation .section-title {
    margin-bottom: 53px;
  }
  .section-reservation .section-text {
    width: auto;
  }
}



/* ==================================================

	NEWS（Home・一覧ページ）

================================================== */

/* 一覧全体 */
body.home .postlist,
body.blog .postlist-content {
  width: 768px;
  margin: 0 0 0 auto; /* 右寄せ */
}
@media (max-width: 992px) {
  body.home .postlist,
  body.blog .postlist-content {
    width: auto;
    margin: 0;
  }
}

/* NEWS Home
-------------------------------------------------- */
.section-news {
  background: #DBDBDB;
  color: #202020;
  padding-top: 200px;
}
.section-news a {
  color: #202020;
}
.section-news .section-title {
  margin-bottom: 100px;
}
body.home .postlist-item {
  padding-top: 40px;
  padding-bottom: 35px;
  border-bottom: 1px #202020 solid;
}
body.home .postlist-item:first-of-type { /* NEWS一覧の最初だけに適用 */
  padding-top: 0;
}
body.home .postlist-date {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1;
}
body.home .postlist-title {
  margin-bottom: 15px;
  font-size: 20px;
}
body.home .postlist-detail {
  margin-bottom: 35px;
  font-size: 14px;
  line-height: 1.86;
}

/* postlist-more */
.postlist-more {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}
.postlist-more a {
  /* テキストと画像を中央揃え */
  display: flex;
  align-items: center;
}
.postlist-more-text {
  margin-right: 8px;
  line-height: 1;
}
img.postlist-more-arrow {
  width: auto;
  height: 10px;
}

/* link-button */
.postlist .link-button-wrap {
  margin: 80px 0 200px;
}
.postlist .link-button {
  margin: 0 0 0 auto;
  border: 1px #202020 solid;
  color: #202020;
}
@media (max-width: 768px) {
  .postlist .link-button-wrap {
    margin: 60px 0 160px;
  }
}

/* NEWS 一覧ページ
-------------------------------------------------- */
body.blog .postlist-content {
  padding-bottom: 320px;
}
body.blog .postlist-item {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px #202020 solid;
}
body.blog .postlist-item:first-of-type { /* NEWS一覧の最初だけに適用 */
  padding-top: 0;
}
body.blog .postlist-date {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1;
}
body.blog .postlist-title {
  font-size: 16px;
  margin-bottom: 0;
}
body.blog .postlist-title p {
  margin: 0;
}



/* ==================================================

	Style (NEWS個別記事、固定ページ、404ページ)

================================================== */

/* 下層ページタイトル
-------------------------------------------------- */
.page-title {
  margin-top: 200px;
  margin-bottom: 65px;
  font-size: 60px;
  line-height: 1;
}
@media (max-width: 768px) {
  .page-title {
    margin-top: 127px;
    margin-bottom: 150px;
    font-size: 32px;
    text-align: center;
  }
}

/* 投稿内容
-------------------------------------------------- */
.post-content {
  width: 544px;
  margin: 0 auto;
  padding-bottom: 80px;
}
.post-date {
  margin-bottom: 20px;
  font-size: 16px;
}
h1.post-title {
  margin-bottom: 40px;
  font-size: 24px;
}
.post-image {
  margin-bottom: 40px;
}
.post-text p {
  margin-bottom: 2.25rem;
}

@media (max-width: 768px) {
  .post-content {
    width: auto;
  }
}

/* 基本設定
-------------------------------------------------- */
/* 記事の一番上に来た要素のmarginを0にする */
.post-content > *:first-child { margin-top: 0; }

.post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  margin: 50px 0 1rem 0;
  font-weight: bold;
  line-height: 1.6;
}
.post-content h2 { font-size: 2rem; } /* 28px */
.post-content h3 { font-size: 1.5rem; } /* 24px */
.post-content h4 { font-size: 1.125rem; } /* 18px */
.post-content h5 { font-size: 1rem; } /* 16px */
.post-content h6 { font-size: 0.875rem; } /* 14px */

.post-content h2+h2, .post-content h2+h3, .post-content h2+h4, .post-content h2+h5, .post-content h2+h6,
.post-content h3+h2, .post-content h3+h3, .post-content h3+h4, .post-content h3+h5, .post-content h3+h6,
.post-content h4+h2, .post-content h4+h3, .post-content h4+h4, .post-content h4+h5, .post-content h4+h6,
.post-content h5+h2, .post-content h5+h3, .post-content h5+h4, .post-content h5+h5, .post-content h5+h6,
.post-content h6+h2, .post-content h6+h3, .post-content h6+h4, .post-content h6+h5, .post-content h6+h6 {
	margin-top: 20px;
}

/* blockquote
-------------------------------------------------- */
.post-content blockquote {
  margin: 2rem 0;
  padding: 30px 40px;
  background: #f1f1f1;
}
.post-content blockquote p:last-child {
  margin-bottom: 0;
}

/* table
-------------------------------------------------- */
.post-content table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  width: 100%;
  margin: 1rem 0;
}
.post-content th {
  font-weight: bold;
}
.post-content th, .post-content td {
  padding: 2%;
  margin: 0;
  overflow: visible;
  line-height: 1.6;
  border-bottom: 1px solid #e6e6e6;
}
.post-content table tbody > tr:nth-child(2n+1) > td {
  background: #f9f9f9;
}



/* ==================================================

	Pagination, Pager

================================================== */

/* Pagination（アーカイブページで使用）
-------------------------------------------------- */
/* pagination位置 */
.pagination-wrap {
  margin-top: 30px;
}

.pagination {
  display: flex;
  justify-content: right; /* 右寄せ */
}
.pagination-prev, .pagination-next,
.pagination-body {
  display: flex;
  margin: 0; /* listのスタイルリセット */
  padding: 0; /* listのスタイルリセット */
  list-style: none; /* listのスタイルリセット */
}
.pagination-prev, .pagination-next,
.pagination li,
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* サイズ */
.pagination-prev, .pagination-next,
.pagination li,
.pagination li.active,
.pagination li a {
  width: 25px;
  height: 25px;
}

.pagination-prev, .pagination-next,
.pagination li {
  margin: 0 10px;
}
.pagination-prev, .pagination-next {
  padding: 0 10px;
}

/* 現在のページ、マウスオーバー時 */
.pagination li.active,
.pagination li a {
  border: 1px solid;
  border-color: transparent;
  border-radius: 50%;
}
.pagination li.active,
.pagination li a:hover {
  border-color: #555;
}
/* 前へ・次へ */
.pagination-prev a,
.pagination-next a {
  height: 25px;
  padding-left: 25px;
  background-size: 10px;
  background-repeat: no-repeat;
}
.pagination-prev a {
  background-image: url("../img/common/icon_prev.png");
  background-position: center left;
}
.pagination-next a {
  background-image: url("../img/common/icon_next.png");
  background-position: center right;
}
@media (max-width: 767px) {
  .pagination-prev, .pagination-next,
  .pagination li {
    margin: 0 5px;
    font-size: 14px;
  }
  .pagination-prev, .pagination-next {
    padding: 0 5px;
  }
}

/* Pager （singleページで使用）
-------------------------------------------------- */
/* Pager位置 */
.pager {
  width: 544px;
  margin: 0 auto 200px;
}
@media (max-width: 767px) {
  .pagination,
  .pager {
    width: 100%;
    margin: 0 auto 160px;
  }
}

.pager {
  display: table;
  table-layout: fixed;
}
.pager-prev, .pager-next {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
  font-size: 0.875rem;
  line-height: 1.6;
}
.pager-prev {
  padding-right: 20px;
  border-right: 1px solid #202020;
}
.pager-next {
  padding-left: 20px;
  text-align: right;
}
.pager a {
  display: block;
  color: #202020;
}
.pager-prev a,
.pager-next a {
  background-size: 10px;
  background-repeat: no-repeat;
}
.pager-prev a {
  padding-left: 25px;
  background-image: url("../img/common/icon_prev.png");
  background-position: center left;
}
.pager-next a {
  padding-right: 25px;
  background-image: url("../img/common/icon_next.png");
  background-position: center right;
}
/* SP表示 */
@media (max-width: 767px) {
  .pager-prev, .pager-next {
    font-size: 0.875rem; /* 14px */
  }
}
