@charset "UTF-8";
/**********
* リセットcss
**********/

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;          
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    box-sizing: border-box;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

nav ul, li {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    box-sizing: border-box;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select, textarea {
    vertical-align:middle;
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, 'メイリオ', Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    -webkit-appearance: none;
    border-radius: 0px;
    border: none;
    box-sizing: border-box;
}

input[type="submit"]{
    -webkit-appearance: none;
    border-radius: 0px;
    border: none;
}
@charset "UTF-8";

/*********************

* global

*********************/
@font-face {
  font-family: 'ＭＳ Ｐゴシック';
  src: url('../font/msgothic.ttc') format('opentype');
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'ＭＳ Ｐゴシック', 'ＭＳ Ｐゴシック', 'MS PGothic', 'メイリオ', Meiryo, 'Meiryo', 'Hiragino Sans', sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.inner {
  width: 100%;
  max-width: 89.5rem;
  margin: 0 auto;
}

a {
  transition: .5s;
}

img {
  max-width: 100%;
}

a::visited, a:active {
  color: inherit;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
}

.two_colum.flex_box {
  position: relative;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1150px;
  padding: 2.6rem 0 7rem;
  justify-content: center;
  flex-wrap: nowrap;
  flex-direction: row-reverse;
  z-index: 0;
}

#download_list {
  width: 1150px;
}

.two_colum.flex_box .main {
  margin-right: auto;
  max-width: 77.6rem;
}

/*********************

* header

*********************/
.header {
  position: relative;
  width: 100%;
  background-color: #fff;
  z-index: 10;
  padding-top: 2.1rem;
}

.header>.flex_box {
  align-items: flex-start;
}

.header_logo {
  margin-left: 1.2%;
  margin-right: auto;
  margin-top: 0.7rem;
}

.header_logo img {
  height: 5rem;
}

.header_sub_nav {
  margin-left: auto;
  margin-right: 2.3%;
}

.header_sub_nav .flex_box {
  align-items: center;
}

.header_sub_nav ul li {
  position: relative;
  margin-right: 3.1rem;
}

.header_sub_nav ul li.sitemap::before {
  content: '';
  position: absolute;
  right: -1.4rem;
  top: 21%;
  width: 0.1rem;
  height: 64%;
  background-color: #1b1b1b;
}

.header_sub_nav ul li a {
  position: relative;
  color: #1b1b1b;
  font-size: 1.4rem;
  font-weight: 600;
}

.header_sub_nav ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0%;
  height: 0.1rem;
  background-color: #1b1b1b;
  transition: .5s ease;
}

.header_sub_nav ul li a:hover::before {
  width: 100%;
}

.header_sub_nav ul li.contact,
.header_sub_nav ul li.download {
  margin-left: 8px;
  margin-right: 0px;
}

.header_sub_nav ul li.contact a p ,
.header_sub_nav ul li.download a p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 100;
}

.header_sub_nav ul li.contact a,
.header_sub_nav ul li.download a {
  background-color: #999;
  border-radius: 4px;
  display: block;
  text-align: center;
  margin-left: 0.5rem;
  padding: 4px;
}

.header_sub_nav ul li.contact a > img,
.header_sub_nav ul li.download a > img {
  padding: 4px;
  width: 40px;
  height: 32px;
}

.header_sub_nav ul li.contact a::before,
.header_sub_nav ul li.download a::before {
  display: none;
}

.header_sub_nav ul li.contact a:hover,
.header_sub_nav ul li.download a:hover {
  opacity: 0.75;
}

.g_nav {
  margin: 0.7rem 0 1.9rem;
  position: relative;
  padding-right: 2.3%;
  justify-content: flex-end;
}

.g_nav>ul>li {
  margin-left: 5rem;
}

.g_nav>ul>li>a {
  font-size: 1.5rem;
  color: #1b1b1b;
  font-weight: 600;
}

.g_nav>ul>li>.sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 2.2rem;
  width: 100%;
  padding-top: 2rem;
}

.sub-menu>.flex_box {
  display: flex;
  align-items: flex-start;
  background-color: rgba(0, 0, 0, 0.78);
  padding: 2.7rem 5.7% 2.1rem;
  min-height: 30rem;
  flex-wrap: nowrap;
}

.sub-menu>.flex_box>li {
  width: 26rem;
  margin-right: 2.4rem;
}

.sub-menu>.flex_box>li:nth-of-type(4) {
  margin-right: 0;
}

.sub-menu-ttl {
  display: block;
  width: 30rem;
  position: relative;
  padding-top: 0.2rem;
  padding-left: 1.3rem;
  font-size: 1.6rem;
  border-left: 0.2rem solid #07a5e6;
  color: #fff;
  margin-right: 3.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.sub-menu-ttl img {
  position: absolute;
  left: 0;
  top: 4rem;
  width: 100%;
}

.g_nav>ul>li>.sub-menu>.flex_box>li>a {
  display: block;
  font-size: 1.4rem;
  /* font-weight: 600; */
  color: #fff;
  padding: 0.6rem 0.3rem 0.6rem;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.g_nav>ul>li.product>.sub-menu>.flex_box>li>a {
  margin-bottom: 0;
}

.g_nav>ul>li>.sub-menu .flex_box>li>.sub-menu>li>a {
  display: block;
  position: relative;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.6rem 0.3rem 0.6rem;
  border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
}

.g_nav>ul>li>.sub-menu li .sub-menu.third {
  display: none;
  border-bottom: 0.1rem dashed rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0 0.8rem;
}

.g_nav>ul>li .sub-menu li .sub-menu.second>li>a::before {
  position: absolute;
  right: 0;
  top: 0.5rem;
  content: '+';
  font-size: 1.2rem;
  color: #a27804;
}

.g_nav>ul>li .sub-menu li .sub-menu.second>li.open>a::before {
  content: '-';
  right: 0.2rem;
}

.g_nav>ul>li .sub-menu li .sub-menu.second .sub-menu li>a {
  display: block;
  position: relative;
  padding: 0.5rem 0 0.5rem 1em;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.g_nav>ul>li>.sub-menu>.flex_box>li>a:hover,
.g_nav>ul>li>.sub-menu li>.sub-menu>li>a:hover,
.g_nav>ul>li>.sub-menu li>.sub-menu>li>.sub-menu>li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.g_nav>ul>li>.sub-menu>li>a:hover {
  opacity: 0.7;
}

/*********************

* footer

*********************/
.footer {
  position: relative;
  padding-bottom: 3.5rem;
  background-color: #c3c0c0;
}

.f_nav {
  margin: 0 auto;
  padding: 4.9rem 5.5% 2.7rem;
  border-bottom: 0.2rem solid #a6a6a6;
}

.f_nav>.flex_box {
  justify-content: space-between;
}

.f_nav ul>li {
  margin-bottom: 2.4rem;
  line-height: 1.3;
}

.f_nav ul>li>a {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.8rem;
}

.f_nav .sub-menu li {
  padding-left: 1.5em;
  margin-bottom: 0.1rem;
}

.f_nav .sub-menu li a {
  font-size: 1.5rem;
  color: #fff;
}

.f_nav ul>li>a:hover,
.f_nav ul>li>.sub-menu>li a:hover {
  opacity: 0.7;
}

.footer_sub_nav ul li.contact,
.footer_sub_nav ul li.download {
  padding: 0;
}

.footer_sub_nav ul li.contact a,
.footer_sub_nav ul li.download a {
  display: block;
  padding: 1.3rem 2.7rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
}

.footer_sub_nav ul li.contact a {
  background-color: #000;
}

.footer_sub_nav ul li.download a {
  background-color: #7d7d7d;
}

.footer_sub_nav ul li.contact a::before,
.footer_sub_nav ul li.download a::before {
  display: none;
}

.footer_sub_nav ul li.contact a:hover,
.footer_sub_nav ul li.download a:hover {
  opacity: 0.75;
}

.footer_sub_nav {
  position: absolute;
/*  right: 7.2%; */
/*  top: 24.2rem; */
  right: 6.8%;
  top: 30rem; 

}

.footer_logo {
  margin-top: 1.7rem;
  text-align: center;
}

.footer_logo img {
  height: 4.3rem;
}

.copyright {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.top_scroll {
  position: fixed;
  right: 4%;
  bottom: 2rem;
}

.top_scroll i {
  font-size: 4rem;
  color: #ccc;
}

/*********************

* hamburger

*********************/
.hamburger {
  padding: 0;
  position: fixed;
  top: 1vw;
  right: 2%;
  width: 6rem;
  height: 6rem;
  background-color: transparent;
  z-index: 9999;
  cursor: pointer;
  box-shadow: none;
  border: none;
  justify-content: center;
  align-items: center;
  display: none;
}

.hamburger:focus {
  outline: none;
}

.hamburger span {
  position: relative;
  display: block;
  width: 80%;
  margin: 0 auto;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

.hamburger span::before, .hamburger span::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  content: '';
  background-color: #000;
  transition: .2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hamburger span:before {
  top: -10px;
}

.hamburger span::after {
  top: 10px;
}

.hamburger.open span {
  background-color: transparent
}

.hamburger.open span:before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span:after {
  top: 0;
  transform: rotate(-45deg);
}

/*********************

* header_modal

*********************/
.header_modal {
  position: fixed;
  top: 8.1vw;
  left: 0;
  /* padding-bottom: 8.1vw; */
  width: 100%;
  height: calc(100vh - 8.1vw);
  background-color: #fff;
  z-index: 3;
  border-top: 0.1rem solid #e0e0e0;
  display: none;
  overflow-y: scroll;
}

.header_modal_wrap {
  padding-bottom: 35vw;
}

.header_modal.open {
  right: 0;
  z-index: 12;
  transition: 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.modal_nav {
  position: relative;
    top: 48px;
  background-color: #2a2a2a;
}

.modal_nav ul li {
  width: 100%;
  margin: 0 auto;
  border-bottom: 1px solid #b5b5b5;
}

.modal_nav>ul>li.open>a {
  background-image: url(../img/sidebar_arrow_02.png);
  background-size: 1.4rem;
  background-position: 95.3% center;
}

.modal_nav>ul>li>ul.sub-menu {
  display: none;
}

.modal_nav>ul>li>ul.sub-menu>li>ul.sub-menu {
  display: none;
  background-color: rgba(6, 71, 98, 0.9);
}

.modal_nav a {
  position: relative;
  font-family: '小塚ゴシック Pr6N', 'Hiragino Sans', sans-serif;
  font-weight: 300;
  color: #fff;
}

.modal_nav>ul>li>a {
  position: relative;
  display: block;
  padding: 2rem 3rem;
  font-size: 1.9rem;
  color: #fff;
  background-image: url(../img/sidebar_arrow_01.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-color: #2a2a2a;
  background-size: 0.7rem;
  letter-spacing: 0.1em;
}

.modal_nav>ul>li.current_page_item>a {
  color: #c78008;
  cursor: default;
}

.modal_nav>ul>li>ul.sub-menu>li {
  border-bottom: none;
}

.modal_nav>ul>li>ul.sub-menu>li>a {
  background-color: #474747;
  background-image: none;
  padding: 1.2rem 5rem;
  font-size: 1.8rem;
  z-index: 1;
  border-top: 0.1rem solid #b5b5b5;
  display: block;
}

.modal_nav>ul>li.product>ul.sub-menu>li>a {
  position: relative;
}

.modal_nav>ul>li.product>ul.sub-menu>li>a::after {
  position: absolute;
  content: '+';
  right: 4.9%;
  top: 30%;
  font-size: 1.5rem;
}

.modal_nav>ul>li.product>ul.sub-menu>li.open>a::after {
  content: '-';
  top: 16%;
  right: 5%;
  font-size: 2.3rem;
}

.modal_nav>ul>li>ul.sub-menu>li>ul.sub-menu>li {
  border-bottom: none;
}

.modal_nav>ul>li>ul.sub-menu>li>ul.sub-menu>li>a {
  display: block;
  font-size: 1.6rem;
  padding: 1.2rem 6.5rem;
  background-color: transparent;
  background-image: url(../img/sidebar_arrow_03.png);
  background-size: 0.5rem;
  background-position: 94.8% center;
  background-repeat: no-repeat;
}

.modal_nav>ul>li>ul.sub-menu>li>ul.sub-menu>li>ul.sub-menu {
  display: none;
}

.modal_nav li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.modal_nav>ul>li>ul.sub-menu>li>a:hover,
.modal_nav>ul>li>ul.sub-menu>li.open>a {
  background-color: #2a2a2a;
  color: #f39800;
}

.modal_nav>ul>li>ul.sub-menu>li>ul.sub-menu>li>a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/*********************

* bread crumb

*********************/
.breadcrumb,
.breadcrumb a {
  font-size: 1.2rem;
  color: #8d8d8d;
  margin-bottom: 3.3rem;
  margin-top: 0.4rem;
}

.breadcrumb i {
  display: none;
}

.breadcrumb li {
  display: inline-block;
  font-weight: 500;
}

/*********************

* archive.php

*********************/
/*********************

* sidebar.php

*********************/
.sidebar {
  width: 34.3rem;
}

.sidebar_heading {
  position: relative;
  /* padding-left: 2.6rem; */
  padding: 1.6rem 2.6rem  1.6rem 2.6rem;
  width: 25.4rem;
  /* height: 5.8rem;
  line-height: 5.8rem; */
  font-size: 1.9rem;
  color: #fff;
  font-weight: 500;
  background-color: #08a5e5;
  z-index: 2;
  font-family: '小塚ゴシック Pr6N', 'Hiragino Sans', sans-serif;
  letter-spacing: 0.2em;
}

.sidebar_list {
  position: relative;
  width: 28.3rem;
  padding-top: 3rem;
  background-color: #2a2a2a;
  z-index: 1;
  margin-top: -3rem;
}

.sidebar_list li {
  position: relative;
  border-bottom: 1px solid #b5b5b5;
  z-index: 1;
}

.sidebar_list li:last-child {
  border-bottom: none;
}

.sidebar_list li a {
  position: relative;
  display: block;
  padding: 1.7rem 2.9rem;
  font-size: 1.4rem;
  font-family: '小塚ゴシック Pr6N', 'Hiragino Sans', sans-serif;
  font-weight: 300;
  color: #fff;
  background-image: url(../img/sidebar_arrow_01.png);
  background-repeat: no-repeat;
  background-position: 95% center;
  background-color: #2a2a2a;
  background-size: 2%;
  letter-spacing: 0.1em;
}

.sidebar_list li a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.sidebar_list li.current_page_item>a {
  color: #c78008;
  cursor: default;
}

.sidebar_list li.current_page_item a:hover {
  background-color: transparent;
}

.sidebar_list>.page_item_has_children.open {
  border-bottom: none;
}

.sidebar_list>.page_item_has_children>.children {
  display: none;
  z-index: 0;
  position: relative;
}

.sidebar_list li.open>a {
  background-image: url(../img/sidebar_arrow_02.png);
  background-size: 4%;
  background-position: 96% center;
}

.sidebar_list>.page_item_has_children>.children>.page_item {
  border-bottom: none;
}

.sidebar_list>.page_item_has_children>.children>.page_item>a {
  background-color: #474747;
  background-image: none;
  padding: 0.8rem 3.3rem;
  font-size: 1.3rem;
  z-index: 1;
  border-top: 0.1rem solid #b5b5b5;
}

.sidebar_list>.page_item_has_children>.children>.page_item:last-of-type>a {
  border-bottom: 0.1rem solid #b5b5b5;
}

.sidebar_list>.page_item_has_children>.children>.page_item>a:hover {
  background-color: #2a2a2a;
  color: #f39800;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children>a::after {
  position: absolute;
  content: '+';
  right: 1.2rem;
  top: 0.8rem;
  font-size: 1.3rem;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children.open>a::after {
  content: '-';
  right: 1.3rem;
  top: 0px;
  font-size: 2.3rem;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children>.children {
  position: absolute;
  top: 0;
  left: 100%;
  transition: 1.0s ease;
  background-color: rgba(6, 71, 98, 0.9);
  z-index: -1;
  width: 78%;
  display: none;
  opacity: 0;
  transition: 2.0s ease;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children.open>.children {
  display: block;
  opacity: 1;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children>.children>.page_item {
  border-bottom: none;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children>.children>.page_item>a {
  font-size: 1.2rem;
  padding: 0.8rem 1.8rem;
  background-color: transparent;
  background-image: url(../img/sidebar_arrow_03.png);
  background-size: 1.8%;
  background-position: 93% center;
}

.sidebar_list>.page_item_has_children>.children>.page_item_has_children>.children>.page_item>a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/*********************

* single.php

*********************/
.single_wrap {
  margin-top: 3.6rem;
  padding-bottom: 10rem;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0;
  font-weight: 500;
  color: #444;
  word-break: break-all;
}

.single_ttl {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
}

.post_date {
  text-align: right;
  display: block;
  font-size: 1.3rem;
  color: #f0a42f;
  margin-top: 1rem;
}

.single_wrap .single_thumb {
  width: 100%;
  height: auto;
  margin: 1.9rem auto 7.4rem;
  display: block;
}

.single_wrap img {
  max-width: 100%;
  height: auto;
  max-height: 70rem;
  margin: 3rem auto;
}

.single_wrap iframe {
  max-width: 100%;
  margin: 3rem auto;
}

.img_center, .iframe_center {
  display: block;
}

.img_100 {
  display: block;
  width: 100%;
  height: auto;
  margin: 3rem auto;
}

.img_80 {
  display: block;
  width: 80%;
  height: auto;
  margin: 3rem auto;
}

.img_60 {
  display: block;
  width: 60%;
  height: auto;
  margin: 3rem auto;
}

.single_wrap h2 {
  margin: 6rem 0 4rem;
  padding: 0.8rem 2%;
  font-size: 2.2rem;
  color: #fff;
  background: #424242;
  line-height: 1.5;
}

.single_wrap h3 {
  border-bottom: 0.2rem solid #000;
  margin: 5rem 0 2.5rem;
  font-size: 2.2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  line-height: 1.5;
}

.single_wrap p {
  margin-bottom: 1rem;
}

.single_wrap ul {
  margin: 2rem auto;
}

.single_wrap ul ul a {
  font-weight: normal !important;
}

.single_wrap ul li {
  padding: 0 0 0 2.3em;
  font-weight: bold;
  position: relative;
}

.single_wrap ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1b0";
  position: absolute;
  left: 1em;
  color: #b9272d;
}

.single_wrap a {
  color: #f0a42f;
  font-weight: 600;
  transition: 0.8s;
}

.single_wrap a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.ssbp-wrap {
  margin-top: 8rem !important;
}

.single_table_1 {
  width: 90%;
  margin: 4rem auto;
  border: 0.1rem solid #e0e0e0;
}

.single_table_1 tbody {
  width: 100%;
  height: 100%;
}

.single_table_1 tr {
  border-bottom: 0.1rem solid #e0e0e0;
}

.single_table_1 tr:last-child {
  border: none;
}

.single_table_1 th {
  width: 30%;
  border-right: 0.1rem solid #e0e0e0;
  text-align: left;
  background-color: #f1eee8;
}

.single_table_1 td {
  background-color: #f7f7f7;
}

.single_table_1 th, .single_table_1 td {
  padding: 1.5rem 0.2rem;
}

.marker-animation.active {
  background-position: -100% .5em;
}

.marker {
  background-image: -webkit-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: -moz-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: -ms-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: -o-linear-gradient(left, transparent 50%, #fff799 50%);
  background-image: linear-gradient(left, transparent 50%, #fff799 50%);
  background-repeat: repeat-x;
  background-size: 200% .8em;
  background-position: 0 .5em;
  transition: all 2s ease;
  font-weight: 900;
  color: #333;
}

.marker.go {
  background-position: -100% .5em;
}

.bold {
  font-weight: 900;
  color: #333;
}

.bg_gray {
  background-color: #f3f3f3;
  font-weight: 900;
  color: #333;
  display: inline-block;
}

.heading_01 {
  font-size: 1.7rem;
  font-weight: bold;
  margin-top: 0.3rem;
  position: relative;
  padding: 0 0 0 1em;
}

.heading_01::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '■';
}

blockquote {
  position: relative;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  font-style: italic;
  color: #464646;
  border-left: solid 4rem #c4c4c4;
  background: #f3f3f3;
  box-shadow: 0 0.2rem 4rem rgba(0, 0, 0, 0.19);
  margin: 3rem auto;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -3.2rem;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  color: #FFF;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 900;
}

blockquote p {
  position: relative;
  padding: 0;
  margin: 1rem 0;
  z-index: 3;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

/*********************

* post-navi

*********************/
.single_wrap .post-navi {
  margin-top: 6.5rem;
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 0.1rem solid #dbdbdb;
}

.post-navi span {
  width: 45%;
  display: block;
}

.post-navi .next {
  text-align: right;
}

.post-navi span a {
  display: block;
  text-overflow: ellipsis;
  word-wrap: break-word;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4rem;
  color: #F0A42F;
}

.post-navi span:hover a {
  text-decoration: underline;
  color: rgba(220, 72, 50, 1);
}

/*********************

* 関連記事

*********************/
/*********************

* ページネーション

*********************/
.wp-pagenavi {
  margin-top: 8rem;
  text-align: center;
  margin-bottom: 3.3rem;
}

.wp-pagenavi .current {
  margin: 0.2%;
  padding: 0.4rem 1rem;
  background: #000;
  color: #fff;
}

.larger,
.nextpostslink,
.previouspostslink,
.smaller {
  margin: 0.2%;
  padding: 0.4rem 1rem;
  background: #ededed;
  color: #000;
}

/*********************

* レスポンシブ

*********************/
@media screen and (max-width: 1110px) {
  .header_logo img {
    height: 4.2rem;
  }

  .footer_sub_nav {
    right: 5.5%;
    top: 30rem; 
  }

  .footer_sub_nav ul li.contact a, .footer_sub_nav ul li.download a {
    padding: 1.3rem 2.1rem;
  }

  /* max-width:1110px */
}

/*--- タブレット ---*/
@media screen and (max-width: 1024px) {
  html {
    font-size: calc(100vw / 1024 * 10);
  }

  .header {
    padding: 1rem 2%;
  }

  .header_sub_nav {
    display: none;
  }

  .g_nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header {
    padding: 1rem 2%;
    position: fixed;
    top: 0;
    left: 0;
  }

  .f_nav {
    padding: 4.9rem 5% 2.7rem;
  }

  .f_nav ul>li {
    margin-bottom: 2.2rem;
  }

  .f_nav ul>li>a {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 1.7rem;
  }

  .f_nav .sub-menu li a {
    font-size: 1.7rem;
  }

  .footer_sub_nav {
    right: 5%;
/*    top: 27.2rem; */
    top: 35rem;
  }

  .footer_sub_nav ul li.contact a, .footer_sub_nav ul li.download a {
    padding: 1.3rem 1.7rem;
  }

  .sidebar {
    display: none;
  }

  .downloadSidebar {
    display: block;
  }



  /* max-width:1024px */
}

/*--- スマホ ---*/
@media screen and (max-width: 479px) {
  html {
    font-size: calc(100vw / 320 * 10);
  }

  .header_logo {
    margin-top: 0;
  }

  .header_logo img {
    height: 3rem;
    display: block;
  }

  .hamburger {
    top: 1.4vw;
    width: 4rem;
    height: 4rem;
  }

  .hamburger span {
    height: 2px;
  }

  .header_modal {
    top: 15.7vw;
  }

  .footer {
    padding-bottom: 6rem;
  }

  .f_nav {
    padding: 2.2rem 5% 1rem;
    display: none;
  }

  .f_nav_box {
    width: 100%;
  }

  .f_nav ul>li {
    margin-bottom: 0.8rem;
  }

  .f_nav ul>li>a {
    font-size: 1.3rem;
  }

  .f_nav .sub-menu li a {
    font-size: 1.3rem;
  }

  .footer_sub_nav {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .footer_sub_nav ul li.contact, .footer_sub_nav ul li.download {
    width: 50%;
  }

  .footer_sub_nav ul li.contact a, .footer_sub_nav ul li.download a {
    display: block;
    width: 100%;
    padding: 1.5rem 0;
    text-align: center;
  }

  .top_scroll i {
    font-size: 3rem;
  }

  .modal_nav>ul>li>a {
    padding: 1.2rem 2rem;
    font-size: 1.3rem;
  }

  .modal_nav>ul>li>ul.sub-menu>li>a {
    padding: 1rem 3rem;
    font-size: 1.3rem;
  }

  .modal_nav>ul>li>ul.sub-menu>li>ul.sub-menu>li>a {
    padding: 1rem 4rem;
    font-size: 1.2rem;
  }

  .modal_nav>ul>li.product>ul.sub-menu>li>a::after {
    top: 28%;
  }

  .modal_nav>ul>li.product>ul.sub-menu>li.open>a::after {
    top: 9%;
  }



  /* max-width:479px */
}
