@charset "UTF-8";

/* CSS Document */

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

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

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

body {
  font-family: 'ヒラギノ角ゴ ProN', '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;
}

a {
  color: #0067af;
}

a:hover {
  text-decoration: underline;
}

code {
  font-family: SFMono-Regular, Consolas, Liberation Mono, Menlo, Courier, monospace;
}

/* スマホ 幅が 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;
  z-index: 900;
}

.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 {
  display: block;
  text-align: center;
  font-weight: bold;
  background-color: #fc0;
  color: #2c2c2c;
  border-radius: 2px;
}

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

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .global-navi-logo {
    position: relative;
    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;
    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;
  }

  .global-navi-list-item {
    position: relative;
    background-color: #6d6d6d;
    border-bottom: 1px solid #5a5a5a;
  }

  .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;
    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;
    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: #848484;
    border-top: 1px solid #5a5a5a;
  }

  .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;
    font-size: 1.2rem;
    position: absolute;
    right: 2rem;
    top: 0.4rem;
  }

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

  /* サイバートラスト */
  .global-navi-child-item_link.navi_cybertrust::before {
    content: attr(data-label);
  }

  /* ラビッドSSL */
  .global-navi-child-item_link.navi_rapidssl::before {
    content: attr(data-label);
  }

  /* ジオトラスト */
  .global-navi-child-item_link.navi_geotrust::before {
    content: attr(data-label);
  }

  /* デジサート（旧シマンテック） */
  .global-navi-child-item_link.navi_symantec::before {
    content: attr(data-label);
  }

  /* グローバルサイン */
  .global-navi-child-item_link.navi_globalsign::before {
    content: attr(data-label);
  }

  /* JPRS */
  .global-navi-child-item_link.navi_jprs::before {
    content: attr(data-label);
  }

  /* セコム */
  .global-navi-child-item_link.navi_secom::before {
    content: attr(data-label);
  }

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

  .global-navi-contact_btn {
    padding: 0.8rem 0;
    text-align: center;
    background-color: #fc0;
  }

  .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;
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

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

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

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

  .global-navi-logo {
    float: left;
    width: 145px;
    padding: 14px 0;
  }

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

  .global-navi-list {
    width: 680px;
    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: 65px;
    position: absolute;
    transform: rotate(-45deg);
  }

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

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

  .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;
    word-break: keep-all;
  }

  .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;
    font-size: 1.2rem;
  }

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

  .layout_global-navi-contact-btn {
    float: right;
    width: 130px;
    margin: 12px 0;
  }

  .global-navi-contact_btn {
    width: 124px;
    height: 30px;
    line-height: 30px;
    padding: 0;
  }

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

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

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

/* ----------------
FOOTER NAVI
---------------- */
.layout_footer {
  clear: both;
}

.footer-service-navi-box {
  box-sizing: border-box;
  text-align: center;
}

.footer-service-navi_link {
  color: #2c2c2c;
  display: block;
}

.footer-service-navi_link:hover {
  text-decoration: none;
  opacity: 0.7;
}

.footer-service-name {
  padding: 1rem 0;
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 2rem;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-service-navi {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #a5a5a5;
    border-bottom: 1px solid #a5a5a5;
  }

  .footer-service-navi-box {
    flex-grow: 1;
    width: 50%;
    box-sizing: border-box;
    text-align: center;
    border-top: 1px solid #a5a5a5;
  }

  .footer-service-navi-box:nth-of-type(odd) {
    border-right: 1px solid #a5a5a5;
  }

  .footer-service-img {
    display: none;
  }

  .footer-service-text {
    display: none;
  }
}

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

  .footer-service-navi {
    overflow: hidden;
  }

  .footer-service-navi-box {
    float: left;
    width: 240px;
    border-right: 1px solid #e6e6e6;
    padding: 20px;
    box-sizing: border-box;
  }

  .footer-service-navi-box:last-child {
    border-right: none;
  }

  .footer-service-img {
    height: 63px;
    line-height: 63px;
  }

  .footer-service-img img {
    vertical-align: middle;
  }

  .footer-service .footer-service-text {
    text-align: left;
    line-height: 1.5;
  }
}

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

.footer-contacts-area {
  padding: 2rem;
}

.footer-contact:first-child::after {
  background-color: #707070;
  content: "";
  display: block;
  height: 1px;
  margin: 1.5rem auto;
  width: 94%;
}

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

.footer-contact-button_link {
  display: block;
  background-color: #414141;
  color: #fff;
  font-size: 0.93rem;
  padding: 0.93rem;
  text-align: center;
}

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

.footer-contacts-area .notes {
  margin-top: 1.5rem;
}

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-contacts-area {
    background: #fc0;
  }

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

  .footer-contacts-area .notes {
    font-size: 0.92rem;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .footer-contacts-area {
    padding: 2rem 0 3.64rem;
    background: url(../images/icon_footer_key.png) repeat-x center bottom #fc0;
  }

  .footer-contacts {
    display: flex;
  }

  .footer-contact {
    align-items: center;
    display: flex;
  }

  .footer-contact:first-child::after {
    height: 1.57rem;
    margin: 0 2.1rem;
    width: 1px;
  }

  .footer-contact-head {
    font-size: 1.14rem;
    margin: 0 1.5rem 0 0;
  }

  .footer-contact-button_link {
    padding: 0.85rem 2.6rem;
    text-align: center;
  }

  .footer-contacts-area .notes {
    text-align: center;
  }
}

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

/* スマホ 幅が 0px - 599px */
@media screen and (max-width: 599px) {
  .footer-news {
    display: none;
  }
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .footer-news {
    background-color: #f2c200;
    padding: 2rem 0;
    border-bottom: 1px solid #cea500;
  }

  .footer-news-inner {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .footer-news-head {
    color: #433c00;
    font-weight: bold;
    margin: 0 0 1rem;
  }

  .footer-news-head::before {
    content: "\f0a1";
    font-family: FontAwesome;
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
  }

  .footer-news-list {
    overflow: hidden;
  }

  .footer-news-list .news-time {
    float: left;
  }

  .news-title_link {
    color: #2c2c2c;
  }

  .footer-news-list .news-title {
    margin: 0 0 0.5rem 7rem;
  }

  .footer-news-list .news-title:last-child {
    margin-bottom: 0;
  }
}

/* ----------------
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: 500;
  }

  .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
---------------- */

.layout_main {
  display: block;
  margin-bottom: 4rem;
}

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

.layout_breadcrumb {
  background-color: #515151;
}

.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;
}

.layout_breadcrumb .small-text {
  font-size: 0.9em;
}

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

.layout_section {
  margin-bottom: 4rem;
}

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

.layout_content-title {
  margin: 0 0 4rem;
  z-index: -1;
  background: url(../images/bg_content-title.png) repeat-x center bottom #fc0;
  background-size: contain;
}

.contents-title-inner {
  padding: 4rem 1rem;
}

.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;
}

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .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 コンテンツタイトルにロゴが入っている時 */
}

/* 全ページ共通部分 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
----------------- */

.layout_column2 .layout_section p {
  margin-bottom: 1rem;
}

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

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

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

/* PC 幅が 600px 以上 */
@media screen and (min-width: 600px) {
  .layout_column2-main {
    width: 750px;
  }
}

/*
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) {
  .layout_local-navi {
    background-color: #dadada;
    padding: 2rem;
    border-top: 1px solid #a0a0a0;
  }

  .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;
    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) {
  .layout_local-navi {
    width: 170px;
  }

  .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 {
  margin: 2rem 0 4rem;
}

.layout_pagenavi .pagenavi {
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.layout_pagenavi .pagenavi .pagenavi-item {
  border: 1px solid #e5e5e5;
  margin: 0 0.2rem;
}

.pagenavi-item.is-current,
.pagenavi-item .pagenavi-link {
  display: block;
  padding: 0.5rem 1rem;
}

.pagenavi-item .pagenavi-link:hover,
.pagenavi-item.is-current {
  background-color: #f7f6f0;
  text-decoration: none;
}