@charset "UTF-8";
/* ============================================================
   共通ヘッダー／フッター用スタイル（旧デザインページ向け）

   assets/css/style.css からヘッダー・フッター・ナビ部分のみを抽出し、
   旧デザインの css/*.css と共存できるようスコープを調整したものです。
   新デザインのページ（_inc/header.php を使うページ）では読み込みません。

   読み込み順（重要）:
     1. css/preset.css → css/style.css → css/each.css → css/responsive.css （旧）
     2. assets/css/common-header-footer.css （このファイル＝最後に読み込む）

   抽出元との対応:
     :root 変数                → style.css 4-17
     ナビ/ヘッダー/フッター本体 → style.css 838-1547
     ユーティリティ            → style.css 2800-2851
     SP 用の色調整             → style.css 8100-8207

   2026-08-24 作成
   ============================================================ */

/* --- rem の基準（旧CSSは px / em のみ使用のため影響なし） --- */
html {
  font-size: 62.5%;
}

/* --- box-sizing はヘッダー／フッター配下だけに限定（旧グリッドを壊さないため） --- */
.l-header,
.l-header *,
.l-header *::before,
.l-header *::after,
.l-footer,
.l-footer *,
.l-footer *::before,
.l-footer *::after {
  box-sizing: border-box;
}

/* --- 旧CSSの指定がヘッダー／フッターに漏れるのを打ち消すスコープ付きリセット --- */
.l-header,
.l-footer {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #11212F;
  letter-spacing: 0;
  clear: both;
}

.l-header ul,
.l-header ol,
.l-header li,
.l-footer ul,
.l-footer ol,
.l-footer li {
  margin: 0;
  padding: 0;
  list-style: none;
  background: none;
}

.l-header a,
.l-footer a {
  text-decoration: none;
}

.l-header img,
.l-footer img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

.l-header p,
.l-header dl,
.l-header dt,
.l-header dd,
.l-header h1,
.l-footer p,
.l-footer dl,
.l-footer dt,
.l-footer dd,
.l-footer h1 {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}

.l-header address,
.l-footer address {
  font-style: normal;
}

.l-header button {
  font-family: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

/* --- 固定ヘッダー分の上部余白（旧CSSの body { padding-top:120px } を上書き） --- */
body {
  padding-top: 148px;
}

@media screen and (max-width: 1023px) {
  body {
    padding-top: 61px;
  }
}

/* ---------- :root 変数 ---------- */
:root {
  --content_width: 960px;
  --content-both_space: 15px;
  --header_height:90px;
  --waves_height: 60px;
}
@media screen and (max-width: 1023px) {
  :root {
    --content-both_space: 15px;
    --header_height:65px;
    --waves_height: 20px;
  }
}


/* ---------- ナビ／ヘッダー／フッター 本体 ---------- */
/* -------------------------------------------*/ 
body.is-open .l-navi {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media screen and (max-width: 1023px) {
  .l-navi {
    width: 30rem;
    height: calc(100% - 6.1rem);
    max-width: 100vw;
    padding: 4rem 2rem;
    display: block;
    background-color: rgba(17, 33, 47, 0.9);
    z-index: 50;
    position: fixed;
    top: 6.1rem;
    right: 0;
    transition: 0.5s;
    border: none;
    overflow-y: scroll;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
  }
}

.l-navi__menu {
  display: flex;
  justify-content: center;
  gap: 3rem;
  background-color: #f1efe9;
}
@media screen and (max-width: 1023px) {
  .l-navi__menu {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 1023px) {
  .l-navi__menu-item {
    border-bottom: 1px solid #DDDDDD;
  }
}
@media screen and (max-width: 767px) {
  .l-navi__menu-item {
    width: 100%;
  }
}
.l-navi__menu-item.has-child {
  position: relative;
}
.l-navi__menu-item.has-child .l-navi__menu-link {
  flex-direction: row;
  gap: 0.35rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__menu-item.has-child .l-navi__menu-link::after {
    transition: 0.3s;
    transition-property: background-color;
  }
  .l-navi__menu-item.has-child .l-navi__menu-link:hover::after {
    background-color: #11212F;
  }
}
.l-navi__menu-item.has-child .l-navi__menu-link::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 10/13;
  -webkit-mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
  background-color: #11212F;
  transform: rotate(90deg);
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-item.has-child .l-navi__menu-link::after {
    background-color: #fff;
    transform: none;
  }
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-item + .l-navi__menu-item .l-navi__menu-link {
    padding-top: 0.8rem;
  }
}

.l-navi__menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 500;
  color: #11212F;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 4.8rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__menu-link {
    transition: 0.3s;
    transition-property: font-weight, color; /* 背景色は変えない */
  }
  .l-navi__menu-link:hover {
    color: #282828;
    font-weight: 800;
    background-color: transparent; /* 背景は透明のまま */
  }
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-link {
    height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-weight: 400;
    text-align: left;
    color: #fff;
    padding-bottom: 0.9rem;
    padding-inline: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-navi__menu-link {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    text-align: left;
    padding-bottom: 0.8rem;
  }
}
@media screen and (max-width: 767px) and (hover: hover) and (pointer: fine) {
  .l-navi__menu-link:hover {
    color: #B7B7B7;
    background-color: transparent;
  }
}
@media screen and (max-width: 1023px) {
  .l-navi__menu-link::after {
    content: "";
    display: block;
    width: 1rem;
    aspect-ratio: 10/13;
    -webkit-mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
            mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
    background-color: #fff;
  }
}

.l-navi__child-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 23.5rem;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: calc(100% + 1px);
  left: -1rem;
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
}
@media screen and (max-width: 1023px) {
  .l-navi__child-wrap {
    width: 90%;
    margin-top: 0.6rem;
    margin-left: auto;
    position: relative;
    opacity: 1;
    visibility: visible;
    padding-block: 0;
    background-color: transparent;
  }
}
.l-navi__child-wrap.show {
  opacity: 1;
  visibility: visible;
}

.l-navi__child-item:not(:last-child) .l-navi__child-link {
  border-bottom: 1px solid #F0F4F7;
}

.l-navi__child-link {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4666666667;
  padding-block: 0.8rem 0.7rem;
  padding-inline: 2rem 1.7rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__child-link {
    transition: 0.3s;
    transition-property: background-color;
  }
  .l-navi__child-link:hover {
    background-color: #bfbbab; /* ← 変更 */
  }
}
.l-navi__child-link::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 10/13;
  -webkit-mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
  background-color: #11212F;
}

/* ------------------- grandchild (製品リスト) ------------------ */
.l-navi__child-item.has-grandchild {
  position: relative; /* 親を基準にする */
}
.l-navi__grandchild-wrap {
  position: absolute;
  top: 0;          /* 親と同じ高さから出す */
  left: 100%;      /* 右に展開 */
  min-width: 20rem;
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 50;
}
.l-navi__child-item.has-grandchild:hover .l-navi__grandchild-wrap {
  opacity: 1;
  visibility: visible;
}
.l-navi__grandchild-item:not(:last-child) .l-navi__grandchild-link {
  border-bottom: 1px solid #F0F4F7;
}
.l-navi__grandchild-link {
  display: flex;
  justify-content: flex-start;
  font-size: 1.4rem;
  font-weight: 500;
  padding-block: 0.7rem;
  padding-inline: 2rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-navi__grandchild-link:hover {
    background-color: #bfbbab; /* ← 変更 */
  }
}

/* ------------------- スマホタップ用 showクラス ------------------ */
.l-navi__grandchild-wrap.show {
  opacity: 1;
  visibility: visible;
}








/* -------------------------------------------*/
.l-header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .l-header {
    border-bottom: 1px solid #DDDDDD;
  }
}

.l-header__top {
  display: flex;
  justify-content: space-between;
  padding: 1rem 3rem;
  background-color: #f1efe9;
}
@media screen and (max-width: 1023px) {
  .l-header__top {
    padding-block: 0;
    padding-inline: 2rem 0;
    align-items: center;
    justify-content: space-between;
  }
}

.l-header__logo {
  width: 24rem;
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    width: 17.7rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 16.5rem;
  }

  .l-header__logo::after {
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__logo {
    transition: 0.3s;
    transition-property: opacity;
  }
  .l-header__logo:hover {
    opacity: 0.8;
  }
}
.l-header__logo a {
  display: block;
}

.l-header__logo::after {
  content: "株式会社ユー・イー・エス";
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #444;
  line-height: 1.2;
  margin-top: 4px;
text-align: center;
}

.l-header__right {
  display: flex;
  gap: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .l-header__right {
    gap: 0;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__right .l-header__cta-link {
    width: 6rem;
    aspect-ratio: 1/1;
    justify-content: center;
    border: none;
    border-left: 1px solid #DDDDDD;
    border-radius: 0;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-header__right .l-header__cta-link.--tel .img {
    width: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__right .l-header__cta-link.--tel .box {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__right .l-header__cta-link.--cta {
    padding: 0;
    background-color: #fff;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__right .l-header__cta-link.--cta::before {
    background-color: #fff !important;
  }
}
@media screen and (max-width: 767px) {
  .l-header__right .l-header__cta-link.--cta::before {
    width: 2rem;
  }
}

.l-header__cta-link {
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.l-header__cta-link.--tel {
  color: #282828;
  background-color: #f1efe9;
  padding-block: 0.2rem 0.4rem;
  padding-inline: 1rem;
}
.l-header__cta-link.--tel .img {
  width: 2.1rem;
}
.l-header__cta-link.--tel .img img {
  display: block;
}
.l-header__cta-link.--tel .box {
  display: flex;
  flex-direction: column;
}
.l-header__cta-link.--tel .num {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
}
.l-header__cta-link.--tel .text {
  font-size: 1.2rem;
  margin-top: -0.5rem;
}
.l-header__cta-link.--cta {
  background-color: #282828;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  padding-inline: 3.2rem;
  border: 2px solid #282828;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__cta-link.--cta {
    transition: 0.3s;
    transition-property: background-color, color;
  }
  .l-header__cta-link.--cta::before {
    transition: 0.3s;
    transition-property: background-color;
  }
  .l-header__cta-link.--cta:hover {
    background-color: #fff;
    color: #282828;
    border: 2px solid #282828;
  }
  .l-header__cta-link.--cta:hover::before {
    background-color: #282828;
  }
}
.l-header__cta-link.--cta::before {
  content: "";
  display: block;
  width: 2rem;
  aspect-ratio: 24/18;
  -webkit-mask: url(../images/icon/icon_mail.svg) no-repeat center/contain;
          mask: url(../images/icon/icon_mail.svg) no-repeat center/contain;
  background-color: #fff;
  margin-top: 0.2rem;
}

.l-header__bottom {
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 1023px) {
  .l-header__bottom {
    border: none;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1D6FB9;
    width: 6rem;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 0;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__trigger-inner {
    display: inline-block;
    position: relative;
    width: 2.9rem;
    height: 2.5rem;
    transition: all 0.4s;
  }
}
@media screen and (max-width: 767px) {
  .l-header__trigger-inner {
    width: 2.4rem;
    height: 1.8rem;
  }
}

.l-header__trigger-line {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
  transition-property: transform;
}
.l-header__trigger-line:nth-of-type(1) {
  top: 0;
}
.l-header__trigger-line:nth-of-type(1).is-active {
  transform: translateY(13px) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-header__trigger-line:nth-of-type(1).is-active {
    transform: translateY(8px) rotate(45deg);
  }
}
.l-header__trigger-line:nth-of-type(2) {
  top: 1.15rem;
}
@media screen and (max-width: 767px) {
  .l-header__trigger-line:nth-of-type(2) {
    top: 8px;
  }
}
.l-header__trigger-line:nth-of-type(2).is-active {
  opacity: 0;
  transform: translateY(-100%);
}
.l-header__trigger-line:nth-of-type(3) {
  bottom: 0;
}
.l-header__trigger-line:nth-of-type(3).is-active {
  transform: translateY(-10px) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .l-header__trigger-line:nth-of-type(3).is-active {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* -------------------------------------------*/
.l-footer {
  background-color: #f1efe9;
  color: #282828;
  padding-block: 8rem 1.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-block: 5.2rem 6rem;
  }
}

.l-footer__body {
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .l-footer__body {
    flex-direction: column;
    gap: 4rem;
  }
}

.l-footer__name {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .l-footer__name {
    font-size: 1.8rem;
  }
}

.l-footer__address-dl {
  margin-top: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 1.4285714286;
  font-weight: bold;
}
.l-footer__address-dl .inner + .inner {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__address-dl .inner + .inner {
    margin-top: 1.6rem;
  }
}

.l-footer__menu {
  max-width: 44rem;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__menu {
    max-width: 100%;
  }
}

.l-footer__menu-item {
  width: calc(50% - 2rem);
  border-bottom: 1px solid #233748;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-item {
    width: 100%;
  }
}
.l-footer__menu-item:not(:first-child):not(:nth-child(2)) {
  padding-top: 0.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-item:not(:first-child) {
    padding-top: 0.8rem;
  }
}

.l-footer__menu-link {
  display: block;
  font-size: 1.5rem;
  line-height: 1.4666666667;
  color: #282828;
  padding-bottom: 0.7rem;
  padding-right: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__menu-link {
    padding-inline: 2rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__menu-link {
    transition: 0.3s;
    transition-property: color;
  }
  .l-footer__menu-link::after {
    transition: 0.3s;
    transition-property: background-color, transform;
  }
  .l-footer__menu-link:hover {
    color: #282828;
    font-weight: 800;
  }
  .l-footer__menu-link:hover::after {
    background-color: #282828;
    font-weight: 800;
    transform: translateX(0.3rem);
  }
}
.l-footer__menu-link::after {
  content: "";
  display: block;
  width: 1rem;
  aspect-ratio: 10/13;
  -webkit-mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
          mask: url(../images/icon/icon_arrow.svg) no-repeat center/contain;
  background-color: #282828;
}

.l-footer__logo {
  display: block;
  width: 21.3rem;
  margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-top: 5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__logo {
    transition: 0.3s;
    transition-property: opacity;
  }
  .l-footer__logo:hover {
    opacity: 0.7;
  }
}

.l-footer__copy {
  font-size: 12px;
  text-align: center;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 4rem;
  }
}

/* -------------------------------------------*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
}


/* ---------- ユーティリティ ---------- */
.u-dn {
  display: none;
}

@media screen and (max-width: 1023px) {
  .u-pc {
    display: none;
  }
}

@media not all and (max-width: 1023px) {
  .u-st {
    display: none !important;
  }
}

@media not all and (max-width: 767px) {
  .u-pt {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp {
    display: none !important;
  }
}

.u-con--md {
  width: 100%;
  max-width: 125rem;
  margin-inline: auto;
  padding-inline: 6rem;
}
@media screen and (max-width: 767px) {
  .u-con--md {
    max-width: 55rem;
    padding-inline: 2rem;
  }
}

.u-con--lg {
  max-width: 132rem;
  margin-inline: auto;
  padding-inline: 6rem;
}
@media screen and (max-width: 767px) {
  .u-con--lg {
    max-width: 65rem;
    padding-inline: 1.6rem;
  }
}

/* ---------- SP 用の色調整 ---------- */
/* =========================
   SP header fix
========================= */
@media screen and (max-width: 767px) {

  /* スマホメニュー背景 */
  .l-navi {
    background: #111 !important;
  }

  .l-navi__inner {
    background: #111 !important;
  }

  /* メニュー文字 */
  .l-navi__menu-link,
  .l-navi__child-link,
  .l-navi__grandchild-link {
    color: #fff !important;
  }

  /* 区切り線 */
  .l-navi__menu-item,
  .l-navi__child-item,
  .l-navi__grandchild-item {
    border-color: rgba(255,255,255,.18) !important;
  }

  /* ハンバーガー線 */
  .l-header__trigger-line {
    background: #111 !important;
  }

  /* メール・お問い合わせボタン */
  .l-header__cta-link.--cta {
    background: #111 !important;
    border-color: #111 !important;
  }

  .l-header__cta-link.--cta::before,
  .l-header__cta-link.--cta::after {
    color: #fff !important;
  }

  /* 電話・メール系アイコンが青く見える場合の保険 */
  .l-header__cta-link .img img {
    filter: none !important;
  }
}

@media screen and (max-width: 767px) {

  .l-header .l-navi,
  .l-header .l-navi__inner,
  .l-header .l-navi__menu {
    background: #111 !important;
  }

  .l-header .l-navi__menu-link,
  .l-header .l-navi__child-link,
  .l-header .l-navi__grandchild-link {
    background: #111 !important;
    color: #fff !important;
  }

  .l-header .l-navi__menu-link::after,
  .l-header .l-navi__child-link::after {
    border-color: #fff !important;
  }

  .l-header__trigger-line {
    background: #111 !important;
  }

  .l-header__cta-link.--cta {
    background: #111 !important;
  }
}

/* =========================
   SP header button color fix
========================= */
@media screen and (max-width: 1023px) {
  .l-header__trigger {
    background-color: #111 !important;
  }

  .l-header__trigger.is-active,
  body.is-open .l-header__trigger {
    background-color: #111 !important;
  }

  .l-header__trigger-line {
    background-color: #fff !important;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__cta-link.--cta {
    background-color: #111 !important;
    border-color: #111 !important;
  }

  .l-header__cta-link.--cta::before,
  .l-header__cta-link.--cta::after {
    color: #fff !important;
  }
}

/* ============================================================
   旧デザインページ: ページ見出しの h1 化に伴うスタイル
   旧デザインでは h1 がヘッダー内の 11px の説明文で、実際の見出しは h2 でした。
   ヘッダー差し替えで h1 が失われるため、本文の見出しを h1 に昇格させています。
   見た目は従来の h2 とまったく同じになるよう、同じ指定を当てています。
   ============================================================ */
h1.page-title {
  font-family: 新ゴ B;
  font-size: 26px;
  font-weight: bold;
  margin: 30px 0 40px 0;
  clear: both;
  position: relative;
  text-align: left;
  letter-spacing: 2px;
  line-height: 30px;
}

@media screen and (min-width: 481px) {
  h1.page-title {
    margin-bottom: 50px;
  }
}

h1.page-title span {
  text-align: left !important;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 0 2.5em;
  padding: 0 1em;
  background-color: #fff;
}

h1.page-title::before {
  position: absolute;
  top: 50%;
  z-index: 1;
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
}

@media screen and (max-width: 480px) {
  h1.page-title {
    font-size: 1.3em;
    letter-spacing: 1px;
    line-height: 1.2em;
    margin: 10px 0 15px 0;
  }
  h1.page-title span {
    margin: 0 0.8em;
  }
}
