@charset "UTF-8";

/* CSS Document */

/* ------------------------------
[MEMO]
  - 単位指定について
    px:  絶対値で指定するときに使用（PC表示の幅や高さ、配置等）
    rem: 相対値で指定するときに使用（フォントサイズやpadding等）
         remはhtmlのみのフォントサイズに基づいて計算されます。
------------------------------ */

/* ------------------------------
Global setting
------------------------------ */

html {
  font-size: 14px; /* 1rem = 14px */
}

body {
  font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ',
    Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック',
    sans-serif;
  font-size: 14px;
  color: #2c2c2c;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
}

p {
  line-height: 2;
}

strong {
  font-weight: bold;
  font-family: 'I-OTF-UDゴ表示Pro M', sans-serif;
}

a {
  color: #0067af;
}

a:hover {
  text-decoration: underline;
}

.layout_header,
.layout_main,
.layout_footer {
  -webkit-font-smoothing: antialiased;
}

/* スマホ 幅が 0px - 599px */

@media screen and (max-width: 599px) {
  html,
  body {
    width: 100%;
  }

  .sp-hidden {
    display: none;
  }
}

/* PC 幅が 600px 以上 */

@media screen and (min-width: 600px) {
  html,
  body {
    min-width: 960px;
  }

  .pc-hidden {
    display: none;
  }

  .inner {
    width: 960px;
    margin: 0 auto;
  }
}

/* 幅が 960px 以上 */

@media screen and (min-width: 960px) {
  html,
  body {
    overflow-x: hidden;
  }
}

/*
 * IE10/11でわずかに上にテキストが上がうのを防ぐ. フォントはメイリオ.
 * 対象範囲: IE10以上
 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast: active) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

/* 全ページ共通部分 START */

/* ----------------
HEADER
---------------- */
.header-copy {
  text-align: right;
  font-size: 11px; /* 変動したくないので絶対値で指定 */
  color: #999;
  padding: 8px 0; /* 変動したくないので絶対値で指定 */
}

/* ----------------
GLOBAL NAVI
---------------- */
.layout_global-navi {
  background-color: #373737;
}

.layout_global-navi.header_is-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}

.global-navi-logo_link {
  color: #fff;
}

.global-navi-logo_link:hover {
  text-decoration: none;
}

.global-navi-list-item_link {
  color: #fff;
  width: 100%;
  font-weight: 700;
  display: block;
}

.global-navi-list-item_link:hover {
  text-decoration: none;
}

.global-navi-child {
  z-index: 100;
}

.global-navi-child-item {
  position: relative;
}

.global-navi-child-item_link {
  width: 100%;
  font-weight: 700;
  display: block;
}

.global-navi-child-item_link:hover {
  text-decoration: none;
}

.global-navi-contact_btn,
.global-navi-apply_btn {
  display: block;
  text-align: center;
  font-weight: bold;
  border-radius: 2px;
}

.global-navi-contact_btn {
  color: #fff;
  border: solid 1px #fff;
}

.global-navi-apply_btn {
  background-color: #ed1c24;
  color: #fff;
}

.global-navi-contact_btn:hover,
.global-navi-apply_btn:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .global-navi-logo {
    position: relative;
    z-index: 98;
    padding: 0.6rem 1.2rem;
  }

  .global-navi_sp-pulldown-btn {
    position: absolute;
    right: 0.8rem;
    top: 0.6rem;
    width: 3rem;
    height: 2rem;
    text-align: center;
  }

  .global-navi_sp-pulldown-btn::after {
    color: #fff;
    content: '\f107';
    font-family: FontAwesome, sans-serif;
    font-size: 2rem;
    line-height: 2rem;
  }

  .global-navi_sp-pulldown-btn.is-open::after {
    content: '\f106';
  }

  .layout_global-navi_sp-pulldown {
    position: absolute;
    width: 100%;
    transition: all 300ms 0s linear;
    max-height: 0;
    overflow-y: hidden;
    z-index: 99;
  }

  .layout_global-navi_sp-pulldown.is-view {
    max-height: 64rem;
  }

  .layout_global-navi_sp-mask.is-view {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 97;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .global-navi-list-item {
    position: relative;
    background-color: #606971;
    border-bottom: 1px solid #79848e;
  }

  .global-navi-list-item_link {
    padding: 0.6rem 1.2rem;
    box-sizing: border-box;
  }

  .global-navi-list-item_link::after {
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    font-size: 1.2rem;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
  }

  .global-navi-list-item.has-child .global-navi-list-item_link::after {
    content: '\f055';
    font-family: FontAwesome, sans-serif;
    font-size: 1.2rem;
    position: absolute;
    right: 1.8rem;
    top: 0.5rem;
  }

  .global-navi-list-item.has-child.is-open .global-navi-list-item_link::after {
    content: '\f056';
  }

  .global-navi-child {
    transition: all 300ms 0s linear;
    max-height: 0;
    overflow-y: hidden;
  }

  .global-navi-list-item.is-open .global-navi-child {
    max-height: 23rem;
  }

  .global-navi-child-item {
    background-color: #727c86;
    border-top: 1px solid #5c646c;
  }

  .global-navi-child-item_link {
    color: #fff;
    padding: 0.6rem 1.2rem 0.6rem 2rem;
    box-sizing: border-box;
  }

  .global-navi-child-item_link::after {
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    font-size: 1.2rem;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
  }

  .global-navi-child-item_link img {
    display: none;
  }

  .layout_global-navi-contact-btn {
    padding: 1rem;
    background-color: #606971;
  }

  .layout_global-navi-contact-btn a {
    margin-top: 8px;
    padding: 0.8rem 0;
    text-align: center;
  }

  .layout_global-navi-contact-btn a:first-child {
    margin-top: 0;
  }

  .global-navi-close-btn {
    color: #fff;
    background-color: #2d2d2d;
    text-align: center;
    cursor: pointer;
    padding: 0.6rem 0;
    font-weight: 700;
  }

  .global-navi-close-btn::before {
    content: '\f00d';
    font-family: FontAwesome, sans-serif;
    font-size: 1rem;
    margin-right: 0.5rem;
  }

  /* global top navi */
  .layout_global-top-navi {
    background-color: #606971;
  }

  .layout_global-top-navi ul li {
    border-bottom: 1px solid #79848e;
  }

  .layout_global-top-navi ul li a {
    display: block;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.86rem;
    color: #fff;
  }

  .layout_global-top-navi ul li a:hover {
    color: #00d9d9;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_global-navi {
    position: relative;
    height: 55px;
    min-width: 960px;
    padding-top: 34px;
  }

  .layout_global-navi-inner {
    width: 960px;
    margin: 0 auto;
  }

  .global-navi-logo {
    float: left;
    width: 110px;
    margin-right: 30px;
    padding: 12px 0;
  }

  .global-navi-logo_link {
    display: block;
  }

  .global-navi-list {
    width: 420px;
    float: left;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }

  .global-navi-list-item {
    -webkit-flex-grow: 1;
    flex-grow: 1;
    line-height: 55px;
    height: 55px;
    text-align: center;
    position: relative;
  }

  .global-navi-list-item:hover {
    background-color: #616161;
  }

  .global-navi-list-item.has-child:hover::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fff;
    bottom: -5px;
    left: calc(50% - 5px);
    position: absolute;
    transform: rotate(-45deg);
  }

  .global-navi-child {
    position: absolute;
    width: 140%;
    top: 55px;
    left: 0;
    background-color: #fff;
    display: block;
    transition: all 300ms 0s linear;
    max-height: 0;
    overflow-y: hidden;
  }

  .global-navi-list-item:hover .global-navi-child {
    max-height: 30rem;
  }

  .global-navi-child-item {
    height: 50px;
    text-align: left;
    border-right: 1px solid #d2d2d2;
    border-left: 1px solid #d2d2d2;
  }

  .global-navi-child-item:last-child {
    border-bottom: 1px solid #d2d2d2;
  }

  .global-navi-child-item_link {
    width: 100%;
    height: 100%;
    color: #2c2c2c;
    padding: 0 12px;
    box-sizing: border-box;
    text-align: center;
  }

  .global-navi-child-item_link img {
    vertical-align: middle;
  }

  .global-navi-child-item_link.link_angle-right {
    text-align: left;
  }

  .global-navi-child-item_link.link_angle-right::after {
    position: static;
    display: inline;
    padding-left: 1rem;
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    font-size: 1.2rem;
  }

  .global-navi-child-item_link:hover {
    background-color: #f1f1f1;
  }

  .layout_global-navi-contact-btn {
    float: right;
    display: flex;
    flex-flow: row nowrap;
    align-content: space-between;
    width: 264px;
    margin: 12px 0 12px 8px;
  }

  .layout_global-navi-contact-btn a {
    display: block;
    width: 124px;
    height: 30px;
    line-height: 30px;
    margin-left: 8px;
    padding: 0;
  }

  .global-navi-close-btn {
    display: none;
  }

  /* global top navi */
  .layout_global-top-navi {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    min-width: 960px;
    background-color: #606971;
  }

  .layout_global-top-navi ul {
    text-align: right;
  }

  .layout_global-top-navi ul li {
    display: inline-block;
    margin-left: 20px;
  }

  .layout_global-top-navi ul li a {
    display: inline-block;
    padding: 8px 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.86rem;
    color: #fff;
  }

  .layout_global-top-navi ul li a:hover {
    color: #00d9d9;
  }
}

/* ----------------
FOOTER
---------------- */

/* ----------------
FOOTER NAVI
---------------- */
.layout_footer {
  clear: both;
  background-color: #373737;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_footer {
    padding: 2rem 0;
  }
}

/* ----------------
FOOTER CONTACT
---------------- */
.footer-contact {
  padding: 1rem 0;
  background-color: #373737;
  color: #fff;
  display: flex;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-contact {
    text-align: center;
  }

  .footer-contact-inner {
    margin: 0 auto;
    width: 100%;
  }
}

.footer-contact-head {
  padding: 1rem 0;
  font-weight: bold;
  font-size: 1.15rem;
}

.footer-contact-button {
  text-align: center;
}

.footer-contact-button a {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 1rem;
  border-radius: 2px;
}

.footer-contact-button a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.footer-contact-button_link {
  color: #fff;
  border: solid 1px #fff;
}

.footer-apply-button_link {
  background-color: #ed1c24;
  color: #fff;
  border: 1px solid #ed1c24;
}
.footer-apply-button_link a {
  margin-right: 0;
}
.footer-trial-button .footer-apply-button_link {
  background-color: #00c1c1;
  border: none;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-contact-head {
    text-align: center;
  }

  .footer-contact-button {
    margin: 0 2rem;
  }

  .footer-contact-button a + a {
    margin-top: 8px;
  }

}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .footer-contact {
    padding: 2rem 0 1rem;
  }

  .footer-contact-inner {
    overflow: hidden;
    width: 960px;
  }

  .footer-contact-head {
    border-bottom: 1px solid #5f5f5f;
    padding: 0.5rem 0;
    margin: 0 0 1rem;
  }

  .footer-contact-button {
    width: 100%;
  }

  .footer-contact-button a {
    display: inline-block;
    width: 443px;
    margin-right: 9px;
  }
  .footer-contact-button .footer-apply-button_link {
    margin-right: 0;
    width: 443px;
  }

}

/* ----------------
FOOTER TRIAL
---------------- */
.footer-trial {
  padding: 1rem 0;
  background-color: #373737;
  color: #fff;
}

.footer-trial-head {
  padding: 1rem 0;
  font-weight: bold;
  font-size: 1.15rem;
}

.footer-trial-break {
  float: left;
  width: 690px;
  background-color: #60697161;
  margin: 1rem 0;
  line-height: 1.8;
  padding: 1rem 1.3rem;
  border: 1px solid #5f5f5f;
  border-radius: 2px;
}

.footer-trial-button {
  text-align: center;
}

.footer-trial-button a {
  display: block;
  font-weight: 600;
  font-size: 1.14rem;
  padding: 1rem;
  border-radius: 2px;
}

.footer-trial-button a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-trial {
    border-top: 1px solid #5f5f5f;
  }

  .footer-trial-head {
    text-align: center;
  }

  .footer-trial-button {
    margin: 0 2rem;
  }

  .footer-trial-infomation {
    padding: 1rem;
  }

  .footer-trial-break {
    float: none;
    width: 87%;
    background-color: #5f5f5f;
    margin: 1rem auto;
    line-height: 1.8;
    padding: 1rem 0.8em;
    border: 1px solid #5f5f5f;
    border-radius: 2px;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .footer-trial {
    overflow: hidden;
    padding: 0.5rem 0 2rem;
  }

  .footer-trial-inner {
    width: 960px;
  }

  .footer-trial-head {
    border-bottom: 1px solid #5f5f5f;
    padding: 0.5rem 0;
    margin: 0 0 1rem;
  }

  .footer-trial-button {
    float: right;
    width: 198px;
    margin-left: 2em;
  }

  .footer-trial-button a {
    float: left;
    display: block;
    width: 170px;
  }

  .footer-trial-infomation p {
    line-height: 1.8;
  }
}

/* ----------------
FOOTER MENU
---------------- */
.footer-menu {
  background-color: #f2c200;
}

.footer-menu-list {
  padding: 1rem 0 0;
}

.footer-menu-item {
  border-right: 1px solid #cea500;
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0 1rem;
}

.footer-menu-item:last-child {
  border-right: none;
}

.footer-menu-item_link {
  color: #2c2c2c;
}

/* ----------------
layout_btn-gototop
----------------- */

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_footer {
    position: relative;
  }

  .layout_btn-gototop {
    display: none;
    position: fixed;
    bottom: 3.2rem;
    right: 1rem;
    text-align: center;
    z-index: 99;
  }

  .layout_btn-gototop .fa-angle-up {
    background-color: #2c2c2c;
    border-radius: 50%;
    color: #fff;
    font-size: 5rem;
    padding: 0 0.3rem 0.6rem;
    line-height: 3.2rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_btn-gototop {
    display: none;
    max-height: 0;
    overflow-y: hidden;
  }
}

/* ----------------
MAIN
---------------- */

/* --------------------
BREADCRUMB
---------------------- */

.layout_breadcrumb {
  background-color: #505357;
}

.layout_breadcrumb .breadcrumb-list {
  color: #a9a9a9;
  display: inline-block;
  line-height: 2.5;
}

.layout_breadcrumb .breadcrumb-list_link {
  color: #a9a9a9;
}

.layout_breadcrumb .breadcrumb-list_link::after {
  display: inline-block;
  content: '>';
  margin: 0 0.5rem;
}

/* --------------------
SECTION
---------------------- */

.layout_section {
  margin-bottom: 4rem;
}

/* ----------
content-title
----------- */

.layout_content-title {
  /* margin: 0 0 4rem; */
  margin: 0;
  background-color: #010b1b;
}

.contents-title-inner {
  color: #fff;
}

.content-title_head {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1rem;
}

.content-title_text {
  line-height: 1.5;
}

.content-title_entry-btn {
  margin: 1rem 0 0;
}

.content-title_logo img {
  vertical-align: middle;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_content-title {
    position: relative;
    background: url(../images/content-title_sp.jpg) no-repeat right center
      #010b1b;
    background-size: cover;
  }

  .layout_content-title::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .contents-title-inner {
    position: relative;
    z-index: 1;
    padding: 4rem 1rem;
  }

  .content-title_text br {
    display: none;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_content-title {
    height: 200px;
    background: url(../images/content-title.jpg) no-repeat center center #010b1b;

    /* background-size: contain; */
  }

  .contents-title-inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .content-title_entry-btn {
    width: 14rem;
  }

  /* コンテンツタイトルにロゴが入っている時 */
  .layout_content-title.side-logo .contents-title-inner {
    position: relative;
  }

  .layout_content-title.side-logo .content-title_head {
    width: 650px;
  }

  .layout_content-title.side-logo .content-title_text {
    width: 650px;
  }

  .content-title_logo {
    width: 260px;
    height: 190px;
    line-height: 190px;
    background-color: #fff;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
  }

  .layout_content-title.side-logo .contents-title-inner::before {
    position: absolute;
    content: '';
    top: 0;
    bottom: -5px;
    right: 4px;
    width: 245px;
    height: 180px;
    box-shadow: 0 20px 2px #5a5a5a; /* 影を入れる */
    transform: rotate(2deg); /* 回転させる */
    opacity: 0.5;
  }

  /* End コンテンツタイトルにロゴが入っている時 */
}

/* ----------
content-summary
----------- */
.layout_content-summary {
  margin-bottom: 4rem;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_content-summary .inner {
    padding: 0 1rem;
  }
}

/* 全ページ共通部分 END */

/* --------------
CONTENT
----------------- */

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_content-inner {
    margin: 0 1rem;
  }
}

/* --------------
CONTENT 1COLUMN
----------------- */

.layout_column1 p {
  margin: 0 0 1rem;
}

/* --------------
CONTENT 2COLUMN
----------------- */

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_column2 .layout_local-navi {
    background-color: #dadada;
    padding: 1rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_column2 .inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
  }

  .layout_column2 .layout_column2-main {
    width: 750px;
  }

  .layout_column2 .layout_local-navi {
    width: 170px;
  }
}

/*
LINK-BOX
*/
.layout_link-box {
  background-color: #f4f4f4;
  padding: 1rem;
  margin: 0 0 2rem;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .layout_link-box li {
    margin: 0 0 1rem;
  }

  .layout_link-box li:last-child {
    margin: 0;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_link-box {
    padding: 1rem 2rem;
  }
}

/* --------------
LOCAL NAVI
----------------- */
.local-navi-head_link {
  color: #2c2c2c;
}

.local-navi_brand-head_link {
  color: #2c2c2c;
}

.local-navi_brand-item_link,
.local-navi-item_link {
  color: #2c2c2c;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .local-navi-head {
    padding: 0 1rem 0.5rem;
    margin: 0 0 0.5rem;
    border-bottom: 1px solid #a0a0a0;
  }

  .local-navi_brand-head,
  .local-navi-sub-head {
    padding: 0 1rem 0.5rem;
  }

  .local-navi_brand-head_link::after {
    content: attr(data-label);
    margin: 0 0.5rem 0 0;
    color: #2c2c2c;
  }

  .local-navi_brand-head_link img {
    display: none;
  }

  .local-navi_brand-list,
  .local-navi-list {
    padding: 0 1rem;
    margin: 0 0 0.5rem;
    border-bottom: 1px solid #a0a0a0;
  }

  .local-navi_brand-list:last-child,
  .local-navi-list:last-child {
    border-bottom: none;
  }

  .local-navi_brand-item,
  .local-navi-item {
    margin: 0 0 0.5rem 1rem;
  }

  .local-navi-head::before,
  .local-navi_brand-head::before,
  .local-navi_brand-item::before,
  .local-navi-sub-head::before,
  .local-navi-item::before {
    content: '\f105';
    font-family: FontAwesome, sans-serif;
    font-size: 1.2rem;
    margin: 0 0.5rem 0 0;
  }

  .local-navi-sub-head.no-link::before {
    /* リンクなしの時 `>` 不要 */
    content: '';
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .local-navi-head {
    border-bottom: 1px solid #a0a0a0;
  }

  .local-navi-head_link {
    display: block;
    background-color: #f5f5f5;
    padding: 1rem;
  }

  .local-navi-head_link.is-current,
  .local-navi-head_link:hover {
    text-decoration: none;
    background-color: #e5e5e5;
  }

  .local-navi_brand-head {
    padding: 0.5rem 0;
    border-bottom: 1px solid #a0a0a0;
    text-align: center;
  }

  .local-navi_brand-head_link {
    padding: 0.5rem 1rem;
    display: block;
  }

  .local-navi_brand-head_link:hover {
    opacity: 0.7;
  }

  .local-navi_brand-head_link img {
    vertical-align: middle;
  }

  .local-navi-sub-head {
    padding: 0.5rem 0;
    border-bottom: 1px solid #a0a0a0;
    text-align: center;
    background-color: #707070;
    color: #fff;
    margin: 1rem 0 0;
  }

  .local-navi_brand-list,
  .local-navi-list {
    border-bottom: 1px solid #a0a0a0;
  }

  .local-navi_brand-list:last-child,
  .local-navi-list:last-child {
    border-bottom: none;
  }

  .local-navi_brand-item,
  .local-navi-item {
    border-bottom: 1px solid #a0a0a0;
  }

  .local-navi_brand-item:last-child,
  .local-navi-item:last-child {
    border-bottom: none;
  }

  .local-navi_brand-item_link,
  .local-navi-item_link {
    display: block;
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
  }

  .local-navi_brand-item_link.is-current,
  .local-navi_brand-item_link:hover,
  .local-navi-item_link.is-current,
  .local-navi-item_link:hover {
    text-decoration: none;
    background-color: #e5e5e5;
  }
}

/* --------------
PAGE NAVI
----------------- */
.layout_pagenavi {
  border-top: 1px solid #daddd9;
}

.layout_pagenavi li {
  border-bottom: 1px solid #daddd9;
}

.layout_pagenavi li.second-category {
  padding-left: 1rem;
}

.layout_pagenavi li a,
.layout_pagenavi li span {
  position: relative;
  display: block;
  padding: 1rem 0 1rem 1rem;
  line-height: 1.2;
  color: #373737;
}

.layout_pagenavi li a::before,
.layout_pagenavi li span::before {
  content: '\f105';
  display: block;
  position: absolute;
  left: 0.2rem;
  top: 1rem;
  font-family: FontAwesome, sans-serif;
}

.layout_pagenavi li a:hover,
.layout_pagenavi li span:hover,
.layout_pagenavi li.current a,
.layout_pagenavi li.current span {
  font-weight: bold;
  color: #ed1c24;
}

.layout_pagenavi li.current a::before,
.layout_pagenavi li.current span::before {
  font-weight: normal;
}