
@charset "UTF-8";
/* Scss Document */
/* hover opacity */
/* hover txt */
/* reset.css
--------------------------------------------------*/
body {
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  line-height: 1;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, button {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-family: 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

*,
*:visited,
*:focus,
*:active,
*:link,
button {
  text-decoration: none;
  outline: 0;
}

ul,
li {
  list-style: none;
}

address {
  font-style: normal;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote,
q {
  quotes: none;
}

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

input[type="button"],
input[type="text"],
input[type="submit"],
input[type="image"] {
  -webkit-appearance: none;
  border-radius: 0;
}

input::placeholder {
  color: #C9CACA;
}

input[type=text].g_textarea {
  border-radius: 5px 0 0 5px;
}

iframe {
  border: none;
}

a {
  color: #595757;
}

/* clearfix */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0;
  content: ".";
}

/* style
--------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  color: #595757;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 1024px) {
  a img:hover,
  button img:hover {
    opacity: 0.8;
    transition: .2s;
  }
}

/*----------------------------
* パンくず
*----------------------------*/
.breadcrumb_list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 20px 0;
}

.breadcrumb_list li {
  font-size: 12px;
  color: #949495;
}

.breadcrumb_list li::after {
  content: "\FF1E";
  margin: 0 .5em;
}

.breadcrumb_list li a {
  color: #949495;
  text-decoration: underline;
  transition: 0.2s ease-out;
}

.breadcrumb_list li:last-child::after {
  content: "";
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .breadcrumb_list li a:hover {
    color: #027da6;
  }
}

.wrapper {
  position: relative;
}

/*----------------------------
* メニュー本体
*----------------------------*/
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background: #008FBE;
  color: #000;
  text-align: center;
  transform: translateY(-100%);
  transition: all 0.6s;
  width: 100%;
  height: 100%;
}

nav.globalMenuSp ul {
  background: #ccc;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  font-size: 1.1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px dotted #333;
}

/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

/*----------------------------
* アニメーション部分(nav.globalMenuSp)
*----------------------------*/
/* アニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all .3s linear;
}

/* アニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

/* style -PC
--------------------------------------------------*/
.sp {
  display: none;
}

.sp2 {
  display: none;
}

.tab {
  display: none;
}

.tab2 {
  display: none;
}

.pc {
  display: block;
}

/* header
--------------------------------------------------*/
header {
  position: relative;
  z-index: 305;
}

header > .inner {
  position: fixed;
  box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.6);
}

header > .inner > .flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #fff;
  margin-top: 30px;
}

@media print {
  header {
    display: none;
  }
}

.logo {
  max-width: 200px;
}

.gnav .bg-b {
  background-color: #595757;
}

.gnav .bg-g {
  background-color: #3FAE2A;
}

.nav-button-wrap,
.open {
  display: block;
}

.close {
  display: block;
}

/* dorp down */
.dropdown {
  /* 閉じるボタン */
}

.dropdown .reset {
  font-size: 12px;
  font-weight: bold;
  color: #595757;
  line-height: 1.5;
  border: none;
  background: none;
  cursor: pointer;
  width: 70px;
  margin: 0 0 28px;
  display: block;
  margin-left: auto;
}

.dropdown .g_txt01 {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #595757;
  text-indent: -0.75em;
  padding: 0 0 0 1em;
}

.dropdown .g_txt01::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #008FBE;
  display: inline-block;
  margin: 0 5px 0 0;
}

/* footer
--------------------------------------------------*/
@media screen and (max-width: 600px) {
  .btn_totop {
    position: fixed;
  }
}

.pagetop {
  position: fixed;
  bottom: 50px;
  right: 40px;
  animation-duration: .5s;
  z-index: 99;
}

.pagetop a {
  display: block;
  background: #3E3C3C;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 16px 19px;
  transition: 0.2s ease-out;
  width: 60px;
  height: 40px;
  opacity: 0.7;
}

.pagetop a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7.5px 7.5px 7.5px;
  border-color: transparent transparent #ffffff transparent;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .pagetop a:hover {
    opacity: 1;
  }
}

@keyframes fadein {
  /* ボタン表示のキーフレーム */
  0% {
    height: 0;
    opacity: 0;
  }
  1% {
    height: auto;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeout {
  /* ボタン非表示のキーフレーム */
  0% {
    height: auto;
    opacity: 1;
  }
  99% {
    height: auto;
    opacity: 0;
  }
  100% {
    height: 0;
  }
}

@-webkit-keyframes fadein {
  /* ボタン表示のキーフレーム */
  0% {
    height: 0;
    opacity: 0;
  }
  1% {
    height: auto;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeout {
  /* ボタン非表示のキーフレーム */
  0% {
    height: auto;
    opacity: 1;
  }
  99% {
    height: auto;
    opacity: 0;
  }
  100% {
    height: 0;
  }
}

footer {
  margin: 100px 0 0;
  background-color: #595757;
  padding: 64px 0 20px;
  font-size: 14px;
  /* アイコン */
}

footer .inner {
  max-width: 1005px;
  margin: 0 auto;
}

footer .inner .flex {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 80px;
}

footer .inner .sns {
  max-width: 960px;
  margin: 0 0 20px auto;
}

footer .box_l {
  margin: 0 60px 0 0;
}

footer .f_ttl {
  font-weight: bold;
  margin: 0 0 13px;
}

footer .f_ttl a {
  text-decoration: none;
  transition: 0.2s ease-out;
}

footer .f_ttl a > span {
  position: relative;
}

footer .icon01 a > span:after,
footer .icon02 a > span:after,
footer .icon03 a > span:after,
footer .icon04 a > span:after,
footer .icon05 a > span:after,
footer .icon06 a > span:after,
footer .icon07 a > span:after {
  position: absolute;
}

footer .icon01 a > span:after {
  content: url(/assets/images/f_icon01.png);
  right: -20px;
}

footer .icon02 a > span:after {
  content: url(/assets/images/f_icon02.png);
  top: -8px;
  right: -27px;
}

footer .icon03 a > span:after {
  content: url(/assets/images/f_icon03.png);
  top: -8px;
  right: -23px;
}

footer .icon04 a > span:after {
  content: url(/assets/images/f_icon04.png);
  top: -7px;
  right: -23px;
}

footer .icon05 a > span:after {
  content: url(/assets/images/f_icon05.png);
  top: -9px;
  right: -26px;
}

footer .icon06 a > span:after {
  content: url(/assets/images/f_icon06.png);
  top: -3px;
  right: -24px;
}

footer .icon07 a > span:after {
  content: url(/assets/images/f_icon07.png);
  top: -10px;
  right: -22px;
}

footer .f_link {
  margin: 0 0 26px;
}

footer .f_link li {
  text-indent: -0.8em;
  padding: 0 0 0 1.5em;
  margin: 0 0 20px;
}

footer .f_link li::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  margin: 0 5px 0 0;
}

footer .f_link li:last-child {
  margin: 0;
}

footer .mb0 {
  margin: 0;
}

footer a {
  color: #fff;
}

footer .f_bnr {
  display: flex;
  justify-content: space-between;
  margin: 0 0 18px;
  flex-wrap: wrap;
}

footer .f_bnr li {
  margin: 0 0 10px;
}

footer .copyright {
  text-align: center;
  font-size: 10px;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  footer .f_link a:hover {
    text-decoration: underline;
  }
  footer .f_ttl a:hover {
    text-decoration: underline;
  }
}

/* 右カラム
  --------------------------------------------------*/
.tabnone {
  display: block;
}

.right_column .bg_box, .right_column_list .bg_box {
  background: #F9F9F9;
  padding: 30px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  margin: 30px 0 0;
}

.right_column .bg_box .r_ttl, .right_column_list .bg_box .r_ttl {
  font-size: 14px;
  text-align: center;
  margin: 0 0 19px;
}

.right_column .bg_box .r_ttl strong, .right_column_list .bg_box .r_ttl strong {
  font-weight: bold;
  display: block;
}

.right_column .bg_box .r_button, .right_column_list .bg_box .r_button {
  background: #3FAE2A;
  border-radius: 5px;
  margin: 0 0 20px;
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.3);
}

.right_column .bg_box .r_button a, .right_column_list .bg_box .r_button a {
  position: relative;
  display: block;
  padding: 19px 14px 17px 30px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  transition: 0.2s ease-out;
  text-decoration: none;
  color: #fff;
}

.right_column .bg_box .r_button a:before, .right_column_list .bg_box .r_button a:before {
  content: "";
  position: absolute;
  background: url("/assets/images/contact_icon.png") center/cover no-repeat;
  top: 21px;
  left: 20px;
  width: 15px;
  height: 15px;
}

.right_column .bg_box .r_button.blue, .right_column_list .bg_box .r_button.blue {
  background: #008FBE;
}

.right_column .bg_box .r_button.blue a:before, .right_column_list .bg_box .r_button.blue a:before {
  left: 55px;
}

.right_column .bg_box .r_button._gray, .right_column_list .bg_box .r_button._gray {
  background: #595757;
}

.right_column .bg_box .r_button._gray a, .right_column_list .bg_box .r_button._gray a {
  text-align: left;
  position: relative;
  display: inline-block;
  padding: 15px 40px 15px 20px;
}

.right_column .bg_box .r_button._gray a:after, .right_column_list .bg_box .r_button._gray a:after {
  position: absolute;
  content: "";
  top: calc(50% - 5px);
  right: 20px;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
}

.right_column .bg_box .r_button._gray a:before, .right_column_list .bg_box .r_button._gray a:before {
  display: none;
}

.right_column .bg_box .r_txt,
.right_column .bg_box .r_tel,
.right_column .bg_box .r_tel2,
.right_column .bg_box .r_mail, .right_column_list .bg_box .r_txt,
.right_column_list .bg_box .r_tel,
.right_column_list .bg_box .r_tel2,
.right_column_list .bg_box .r_mail {
  text-align: center;
}

.right_column .bg_box .r_txt, .right_column_list .bg_box .r_txt {
  font-size: 12px;
  color: #595757;
  margin: 0 0 10px;
}

.right_column .bg_box .r_txt strong, .right_column_list .bg_box .r_txt strong {
  font-weight: bold;
}

.right_column .bg_box .r_tel a, .right_column_list .bg_box .r_tel a {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.right_column .bg_box .r_tel a:before, .right_column_list .bg_box .r_tel a:before {
  content: "";
  width: 21px;
  height: 20px;
  display: inline-block;
  background: url(/assets/images/right_icon_tel.png) center/cover no-repeat;
  position: absolute;
  top: 5px;
  left: 0;
}

.right_column .bg_box .r_tel2, .right_column_list .bg_box .r_tel2 {
  font-size: 14px;
  color: #595757;
  margin: 0 0 10px;
}

.right_column .bg_box .r_tel2 .mr01, .right_column_list .bg_box .r_tel2 .mr01 {
  margin: 0 0.5em 0 0;
}

.right_column .bg_box .r_mail, .right_column_list .bg_box .r_mail {
  font-size: 14px;
  font-weight: bold;
  color: #595757;
}

.right_column .bg_box .r_mail a, .right_column_list .bg_box .r_mail a {
  color: #595757;
  text-decoration: underline;
  position: relative;
  margin: 0 0 0 25px;
}

.right_column .bg_box .r_mail a:before, .right_column_list .bg_box .r_mail a:before {
  position: absolute;
  content: "";
  background: url(/assets/images/right_icon02.png) center/cover no-repeat;
  width: 18px;
  height: 12px;
  top: 5px;
  left: -25px;
}

.right_column .bg_box :last-child, .right_column_list .bg_box :last-child {
  margin: 0;
}

.right_column .r_privacy, .right_column_list .r_privacy {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0;
}

.right_column .r_privacy .icon, .right_column_list .r_privacy .icon {
  width: 50px;
  height: 50px;
  margin: 0 20px 0 0;
}

.right_column .r_privacy .r_txt02, .right_column_list .r_privacy .r_txt02 {
  max-width: 160px;
  font-size: 10px;
  line-height: 1.8;
  color: #595757;
}

.right_column_list.growone {
  position: inherit;
}

.right_column_list.growone .bg_box {
  margin: 60px 0 0;
}

.right_column_list.growone .bg_box .link_box {
  margin: 0 50px;
}

.right_column_list.growone .bg_box .link_box a.link_txt {
  font-size: 14px;
}

.right_column_list.nc {
  position: inherit;
}

.right_column_list.nc .bg_box {
  margin: 60px 0 0;
}

.right_column_list.nc .bg_box .link_box {
  margin: 0 40px;
}

.right_column_list.nc .bg_box .r_button {
  display: inline-block;
  margin: 0 5px 20px;
}

.right_column_list.nc a.link_txt {
  width: auto;
  margin: 10px 0;
  font-size: 14px;
}

.right_column_list.article {
  position: inherit;
}

.right_column_list.article .bg_box {
  margin: 60px 0 0;
}

.right_column_list.article .bg_box .link_box {
  margin: 0 20px;
}

.right_column_list.article .bg_box .link_box a.link_txt {
  font-size: 14px;
}

.right_column_list.article .bg_box .link_box a._link_pdf::after {
  width: 12.5px;
  height: 15px;
  margin: 3px 0 0 8px;
}

.right_column_list.article .bg_box .r_button {
  display: inline-block;
  margin: 0 5px 20px;
}

@media screen and (min-width: 1024px) {
  .right_column .bg_box .r_button:hover a, .right_column_list .bg_box .r_button:hover a {
    background: #349321;
    border-radius: 5px;
  }
  .right_column .bg_box .r_button.blue:hover a, .right_column_list .bg_box .r_button.blue:hover a {
    background: #027da6;
  }
  .right_column .bg_box .r_button._gray:hover a, .right_column_list .bg_box .r_button._gray:hover a {
    background: #3e3c3c;
  }
  .right_column .bg_box .r_mail a:hover, .right_column_list .bg_box .r_mail a:hover {
    color: #008FBE;
  }
}

.g_case_ttl {
  float: left;
  background: #008FBE;
  padding: 2px 5px;
  color: #fff;
  margin: 0 9px 9px 0;
  font-size: 14px;
  font-weight: normal;
}

@media screen and (min-width: 1024px) {
  header {
    height: 102px;
  }
  header {
    /* スクロール前のロゴ */
    /* スクロール後のロゴ */
  }
  header .h_logo {
    padding: 23px 0 21px 21px;
    width: 180px;
  }
  header .no_scroll {
    display: block;
  }
  header .no_scroll.scroll {
    display: none;
  }
  header .scroll_logo {
    display: none;
  }
  header .scroll_logo.scroll {
    display: block;
    line-height: 1;
  }
  header .h_logo.scroll {
    padding: 15px 0 12px 21px;
    width: 150px;
  }
  header .h_logo.scroll img {
    height: auto;
  }
  header .inner {
    height: 72px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 999;
  }
  header .inner.scroll {
    height: auto;
  }
  .gnav_area {
    padding: 0 0 0 80px;
    background: linear-gradient(135deg, #fff 0%, #fff 8%, #008FBE 6%, #008FBE 100%);
    display: flex;
    -webkit-box-pack: end;
    justify-content: flex-end;
    font-size: 0;
  }
  .gnav_area .gnav_list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    /* グロナビアイコン */
    /* 製品・ソリューション */
    /* 検索 */
    /* お問い合わせ */
  }
  .gnav_area .gnav_list > li {
    width: 100px;
  }
  .gnav_area .gnav_list > li:nth-of-type(1) {
    width: 155px;
  }
  .gnav_area .gnav_list > li:nth-of-type(3) {
    width: 140px;
  }
  .gnav_area .gnav_list > li > a,
  .gnav_area .gnav_list > li .pc > a {
    display: block;
    padding: 13px 0px 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .gnav_area .gnav_list > li .g_txt {
    display: block;
    text-align: center;
    font-size: 13px;
    font-weight: bold;
  }
  .gnav_area .gnav_list > li .pic {
    margin: 0 auto;
    text-align: center;
    display: block;
  }
  .gnav_area .gnav_list > li .pic img {
    width: 25.2px;
    margin: 0 auto 8px;
  }
  .gnav_area .gnav_list > li .pic img:hover {
    opacity: 1;
    transition: .2s;
  }
  .gnav_area .gnav_list .bg-b .scroll {
    padding: 3px 0;
  }
  .gnav_area .gnav_list .bg-b .fade {
    display: block;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    color: #fff;
  }
  .gnav_area .gnav_list .g_product .pic {
    width: 29.64px;
  }
  .gnav_area .gnav_list .g_product .hover-r .g_bnr-list > li {
    width: calc((99% - 100px)/5);
    margin: 0 20px 14px 0;
  }
  .gnav_area .gnav_list .g_product .hover-r .g_bnr-list > li:nth-child(5n) {
    margin: 0 0 14px;
  }
  .gnav_area .gnav_list .search .pic {
    width: 25.8px;
  }
  .gnav_area .gnav_list .bg-g .pic {
    width: 25.65px;
  }
  .dropdown.open {
    animation: showop 0.2s linear 0s;
    -webkit-animation: showop 0.2s linear 0s;
    -ms-animation: showop 0.2s linear 0s;
    color: #fff;
    display: block;
    z-index: -1;
  }
  .inner.scroll .dropdown.open {
    animation: showop-s 0.2s linear 0s;
    -webkit-animation: showop-s 0.2s linear 0s;
    -ms-animation: showop-s 0.2s linear 0s;
  }
  .dropdown.find {
    animation: find 0.2s linear 0s;
    -webkit-animation: find 0.2s linear 0s;
    -ms-animation: find 0.2s linear 0s;
  }
  /* ドロップダウンメニュー スクロール前 */
  .dropdown {
    z-index: -2;
    position: absolute;
    top: -450px;
    left: 0;
    width: 100%;
  }
  .dropdown > li {
    display: inline-block;
    margin: 10px 0;
  }
  .dropdown > li a {
    color: #fff;
  }
  .dropdown.open {
    top: 72px;
    opacity: 1;
    display: block;
    height: 100vh;
  }
  .dropdown-btn.seach .dropdown {
    top: -240px;
  }
  .dropdown.close {
    display: block;
    opacity: 1;
  }
  /* ドロップダウンメニュー スクロール後 */
  .inner.scroll .dropdown {
    transition: 0.2s;
  }
  .inner.scroll .dropdown.open {
    top: 43px;
    transition: 0.2s;
  }
  .inner.scroll .gnav_list > li .pic {
    margin: 0 auto;
  }
  .inner.scroll .bg-b .pc a {
    padding: 9px 0 3px;
  }
  /* ドロップダウンメニュー ホバー */
  .gnav_list > li:hover > a,
  .gnav_list > li:hover > .pc a {
    background: #027DA6;
    text-align: center;
  }
  /* ドロップダウンメニュー ホバー 会社概要 */
  .gnav_list > .bg-b:hover > .pc a {
    background: #3e3c3c;
  }
  .gnav_list > .bg-b:hover > a {
    background: #595757;
  }
  .gnav_list > .bg-g:hover > a {
    background: #349321;
    transition: .2s;
  }
  .dropdown-btn a {
    position: relative;
    transition: 0.2s ease-out;
  }
  /* グロナビホバー時の　▼アイコン */
  .dropdown-btn.hover .icon:before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 9999;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10.5px 0 10.5px;
    border-color: #027DA6 transparent transparent transparent;
  }
  /*　スクロール後のグロナビホバー時の　▼アイコン */
  .scroll .dropdown-btn.hover .icon:before {
    bottom: -8px;
  }
  /* 検索グロナビホバー時の　▼アイコン */
  .dropdown-btn.hover .icon2:before {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 9999;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10.5px 0 10.5px;
    border-color: #3e3c3c transparent transparent transparent;
  }
  .dropdown-btn2 {
    cursor: pointer;
    display: block !important;
  }
  .dropdown-btn2 a:hover {
    text-decoration: none;
  }
  .dropdown-btn2 .g_link-list a:hover {
    text-decoration: underline;
  }
  .dropdown {
    transition: 0.2s;
  }
  .hover_wrapper {
    background: linear-gradient(90deg, #008FBE 0%, #008FBE calc(50% - 700px), #F8F8F8 calc(50% - 700px), #F8F8F8 100%);
    box-shadow: 0 8px 3px -3px rgba(0, 0, 0, 0.3), inset 0px 2px 1px -1px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 5000;
  }
  .hover-box {
    display: flex;
    box-shadow: 0 8px 3px -3px rgba(0, 0, 0, 0.3), inset 0px 2px 1px -1px rgba(0, 0, 0, 0.3);
  }
  .delete_are {
    width: 100%;
    height: 150%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    position: relative;
    z-index: -100;
  }
  .delete_are.open {
    display: block;
  }
  .g_product .hover-box,
  .g_case .hover-box {
    display: flex;
    max-width: 1410px;
    margin: 0 auto;
    position: relative;
  }
  /*　ホバー ソリューション部 */
  .hover-l {
    width: 20%;
    background: #008FBE;
    font-size: 16px;
    font-weight: bold;
    padding: 0 0 188px;
    height: 396px;
    /* アイコン */
  }
  .hover-l .g_ttl {
    position: relative;
    color: #fff;
    padding: 24px 0 24px 20px;
    text-decoration: none;
    cursor: pointer;
  }
  .hover-l .g_ttl::before {
    width: 10px;
    height: 10px;
    position: absolute;
    right: 110px;
  }
  .hover-l .g_bnr-list .bnr,
  .hover-l .g_bnr-list .g_txt {
    display: block;
  }
  .hover-l .g_bnr-list .bnr {
    margin: 0 0 5px;
    border-radius: 5px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.3);
  }
  .hover-l .g_bnr-list .bnr img {
    border-radius: 5px;
  }
  .hover-l .g_bnr-list a:hover .g_txt01 {
    text-decoration: underline;
  }
  .hover-l .g_bnr-list a:hover .bnr img {
    opacity: 0.8;
    transition: .2s;
  }
  .hover-l .product a {
    position: relative;
  }
  .hover-l .product a::before {
    content: url(/assets/images/product_icon.png);
    position: absolute;
    right: -29px;
  }
  .hover-l .case a {
    position: relative;
  }
  .hover-l .case a::before {
    content: url(/assets/images/case_icon.png);
    position: absolute;
    top: -10px;
    right: -49px;
  }
  /* シャドウ */
  .hover-l {
    box-shadow: 0 5px 3px -3px rgba(0, 0, 0, 0.2) inset;
  }
  .hover-r, .hover-box .bg-box.company, .hover-box .bg-box.search {
    box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.3) inset;
  }
  /* 導入事例-最新情報 */
  .g_case .hover-r.g_case_hover {
    padding: 20px 16px 22px 39px;
  }
  .g_case .hover-r .g_bnr-list > li {
    width: 30%;
    margin: 0 2% 0px 0;
    transition: 0.2s ease-out;
  }
  .g_case .hover-r .g_bnr-list > li .bnr {
    margin: 0 0 17px;
  }
  .g_case .hover-r .g_bnr-list > li .g_txt01 {
    margin: 0 0 10px;
  }
  .g_case .hover-r .g_bnr-list .clearfix .g_case_link {
    float: left;
    width: 75%;
  }
  .g_case .hover-r .g_bnr-list .clearfix .g_case_link li {
    font-size: 14px;
    color: #595757;
    width: 250px;
  }
  .g_case .hover-r .g_bnr-list .clearfix .g_case_link li a {
    color: #595757;
    text-decoration: underline;
    transition: 0.2s ease-out;
    font-weight: normal;
  }
  .g_case .hover-r .g_bnr-list .clearfix .g_case_link li a:hover {
    color: #008fbe;
  }
  /* 会社概要　検索のhover */
  .hover-box .bg-box {
    background: #F8F8F8;
    padding: 18px 20px;
    width: 100%;
  }
  /* 会社概要のhover */
  .hover-box .bg-box.company {
    height: 410px;
  }
  .hover-box .bg-box.company .flex2 {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 30px;
    max-width: 1480px;
  }
  .hover-box .bg-box.company .g_company {
    font-size: 16px;
    font-weight: bold;
    color: #595757;
    position: relative;
  }
  .hover-box .bg-box.company .g_company::after {
    content: url(/assets/images/gnav_company_ttl_icon.png);
    position: absolute;
    top: -8px;
    right: -40px;
  }
  .hover-box .bg-box.company .flex3 {
    display: flex !important;
    justify-content: space-between;
    max-width: 1180px;
    margin: 0 auto;
  }
  .hover-box .bg-box.company .sp-border {
    color: #595757;
  }
  .hover-box .bg-box.company .sp-border:hover {
    text-decoration: underline;
  }
  .hover-box .bg-box.company .bnr-list {
    width: 72.88%;
    display: flex;
    flex-wrap: wrap;
  }
  .hover-box .bg-box.company .bnr-list li {
    width: calc((99% - 60px)/4);
    margin: 0 2.32% 14px 0;
  }
  .hover-box .bg-box.company .bnr-list li:nth-child(4n) {
    margin: 0;
  }
  .hover-box .bg-box.company .bnr-list li span {
    display: block;
  }
  .hover-box .bg-box.company .bnr-list li .bnr {
    border-radius: 5px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.3);
    margin: 0 0 7px;
  }
  .hover-box .bg-box.company .bnr-list li .bnr img {
    width: 100%;
    border-radius: 5px;
  }
  .hover-box .bg-box.company .bnr-list li a:hover {
    text-decoration: underline;
  }
  .hover-box .bg-box.company .bnr-list li a:hover .bnr img {
    opacity: 0.8;
    transition: .2s;
  }
  .hover-box .bg-box.company .link-list {
    width: 23.38%;
  }
  .hover-box .bg-box.company .link-list li {
    margin: 0 0 30px;
  }
  .hover-box .bg-box.company .link-list li a:hover {
    text-decoration: underline;
  }
  /* 検索のhover */
  .hover-box .bg-box.search {
    padding: 80px 20px;
  }
  .gnav_list > li > a {
    padding: 3%;
  }
  .hover-menu {
    /* >アイコン */
  }
  .hover-menu > li {
    color: #fff;
    text-decoration: none;
  }
  .hover-menu > li > a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }
  .hover-menu > li:nth-of-type(1) > a:hover {
    text-decoration: underline;
    transition: .2s;
  }
  .hover-menu > li:nth-child(n + 2):hover {
    background-color: #027DA6;
  }
  .hover-menu .arrow {
    width: 100%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
  }
  .hover-menu .arrow a {
    display: block;
    color: #fff;
    padding: 20px 0 18px 20px;
  }
  .hover-menu .arrow:after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    vertical-align: middle;
  }
  .hover-r.open, .hover-r.open2 {
    display: block;
  }
  .g_category.bg_hover {
    background-color: #027DA6;
    transition: .2s;
  }
  .hover-r {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #F8F8F8;
    width: 80%;
    padding: 40px 0 50px 20px;
    display: none;
    height: 396px;
  }
  .hover-r .g_bnr-list {
    display: flex;
    flex-wrap: wrap;
  }
  .hover-r .g_bnr-list > li {
    width: 18.51%;
    margin: 0 1.6% 14px 0;
    overflow: hidden;
  }
  .hover-r .g_bnr-list > li:nth-child(5n) {
    margin: 0 0 14px;
  }
  .hover-r .g_bnr-list a {
    display: block;
    content: none;
  }
  /* カテゴリ */
  /* 業種・業務 */
  .industries .g_link-list,
  .business .g_link-list {
    display: flex;
    flex-wrap: wrap;
  }
  .industries .g_link-list li,
  .business .g_link-list li {
    width: calc(93% / 3);
    margin: 0 20px 0px 0;
  }
  .industries .g_link-list li:nth-child(3n),
  .business .g_link-list li:nth-child(3n) {
    margin: 0 0 0px;
  }
  .industries .g_link-list li:nth-child(-n+3),
  .business .g_link-list li:nth-child(-n+3) {
    border-top: 1px solid #e8e8e8;
  }
  .industries .g_link-list a,
  .business .g_link-list a {
    border-bottom: 1px solid #e8e8e8;
    display: block;
    padding: 18px 0;
  }
  .industries .hover-r,
  .business .hover-r {
    padding: 80px 20px 76px 40px;
  }
  /* カラム調整
        --------------------------------------------------*/
  .main_content {
    max-width: 1400px;
    padding: 0 60px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .main_column {
    width: calc(100% - 320px);
  }
  .r_column {
    width: 290px;
    position: relative;
  }
  /* right_column js
        --------------------------------------------------*/
  .right_column {
    width: 290px;
    position: fixed;
    top: 130px;
    overflow: hidden;
    animation-duration: .5s;
  }
  .pagetop a {
    color: #fff;
    text-decoration: none;
    display: block;
  }
  .right_column.show {
    /* ボタン表示の状態 */
    height: auto;
    opacity: 1;
  }
  .right_column.scroll {
    top: 40px;
  }
  .right_column.hide {
    /* ボタン非表示の状態 */
  }
  .right_column.static {
    /* フッターで止めた時の状態を設定 */
    position: absolute;
    top: auto;
    bottom: 0;
  }
}

@keyframes showop {
  0% {
    top: -325px;
  }
  100% {
    top: 72px;
  }
}

@keyframes showop-s {
  0% {
    top: -325px;
  }
  100% {
    top: 42px;
  }
}

@keyframes find {
  0% {
    top: 0px;
    display: block;
  }
  100% {
    top: -325px;
    display: none;
  }
}

@-webkit-keyframes showop {
  0% {
    top: -325px;
  }
  100% {
    top: 72px;
  }
}

@-webkit-keyframes find {
  0% {
    top: 72px;
  }
  100% {
    top: -325px;
  }
}

@-ms-keyframes showop {
  0% {
    top: -325px;
  }
  100% {
    top: 72px;
  }
}

@-ms-keyframes find {
  0% {
    top: 72px;
  }
  100% {
    top: -325px;
  }
}

@media screen and (max-width: 1023px) {
  .tabnone0, .tabnone2 {
    display: none;
  }
  .tabnone0.scroll {
    display: block;
  }
  #right_column.tabnone0, #right_column.tabnone2 {
    display: block;
  }
  /* over wright
  --------------------------------------------------*/
  .main_content {
    position: relative;
  }
  .pagetop.static {
    bottom: 1000px;
  }
  .gnav_list {
    margin-top: 15px;
  }
  .main_column {
    padding: 0 30px;
  }
  header .h_logo {
    padding: 19px 0 19px 19px;
  }
  header .h_logo img {
    height: 23px;
  }
  header .h_link a {
    height: 56px;
  }
  header .h_link .pic {
    margin: 0 0 2px;
    width: 24.65px;
    margin: 0 auto 5px;
  }
  .hover-l {
    height: auto;
  }
  .gnav .bg-b {
    width: 100%;
    background: none;
  }
  .gnav .bg-g a {
    border: none;
  }
  .g_bnr-list,
  .g_link-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .g_bnr-list,
  .g_link-list,
  .bnr-list,
  .link-list {
    margin: 0 20px 0;
  }
  .g_bnr-list > li,
  .g_link-list > li,
  .bnr-list > li,
  .link-list > li {
    width: 50%;
  }
  .g_bnr-list > li a,
  .g_link-list > li a,
  .bnr-list > li a,
  .link-list > li a {
    padding: 15px 0;
  }
  .search .mt-site-search-form {
    margin: 0 20px;
  }
  /* 導入事例 */
  .g_case .g_category .hover-r {
    margin: 10px 0 0px;
  }
  .g_case .g_category .g_bnr-list li {
    width: 100%;
    margin: 0 0 10px;
  }
  .g_case .g_category .g_bnr-list li:last-child {
    margin: 0;
  }
  .g_case .g_category .g_bnr-list li a {
    padding: 10px 0 6px;
  }
  .g_case .g_category .g_case_ttl {
    margin: 0 10px;
    padding: 1px 5px;
    font-size: 1.2rem;
  }
  .g_case .g_category .g_case_link {
    float: left;
  }
  .g_case .g_category .g_case_link > li a {
    padding: 0;
    color: #595757;
    font-size: 1.3rem;
    font-weight: normal;
  }
  .hover-r {
    margin: 15px 0 0;
    font-weight: normal;
  }
  .reset {
    display: none !important;
  }
  .scroll_logo {
    display: none;
  }
  .right_column .bg_box .r_ttl strong {
    display: inline-block;
  }
  .right_column, .right_column_list {
    margin: 60px 55px;
  }
  .right_column .bg_box, .right_column_list .bg_box {
    margin: 0 auto 30px;
    padding: 50px;
  }
  .right_column .bg_box .r_tel a, .right_column_list .bg_box .r_tel a {
    text-decoration: underline;
  }
  .right_column .bg_box .r_button,
  .right_column_list .bg_box .r_button {
    max-width: 230px;
    margin: 0 auto 20px;
  }
  .right_column .r_privacy, .right_column_list .r_privacy {
    margin: 30px auto 0;
    max-width: 370px;
  }
  .right_column .r_privacy .r_txt02, .right_column_list .r_privacy .r_txt02 {
    max-width: calc(100% - 80px);
  }
  .right_column_list.growone .bg_box {
    margin: 60px auto 0;
  }
  .right_column_list.growone .bg_box .r_button {
    max-width: 324px;
  }
  .right_column_list.growone .bg_box .link_box {
    width: 375px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 0 0 23px;
  }
  .right_column_list.growone .bg_box .link_box a.link_txt {
    width: auto;
    margin: 10px 20px;
  }
  .right_column_list.nc .bg_box {
    margin: 60px auto 0;
    text-align: center;
  }
  .right_column_list.nc .bg_box .link_box {
    width: 220px;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 0 0 17px;
  }
  .right_column_list.nc a.link_txt {
    margin: 10px 20px;
  }
  .right_column_list.article .bg_box {
    margin: 60px auto 0;
    text-align: center;
  }
  .right_column_list.article .bg_box .r_button {
    max-width: 324px;
  }
  .right_column_list.article .bg_box .link_box {
    text-align: left;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0 0 0 17px;
  }
  .right_column_list.article .bg_box .link_box a.link_txt {
    width: 220px;
    margin: 10px 0;
    padding: 0 35px 0 12px;
  }
  footer .box_l {
    margin: 0 0 65px;
    width: 60%;
  }
  footer .box_m {
    width: 40%;
  }
  footer .box_r .f_link li {
    padding: 0 0 0 0.8em;
  }
  footer .inner .flex {
    flex-wrap: wrap;
    max-width: 540px;
    margin: 0 auto 25px;
  }
  footer .f_bnr {
    max-width: 500px;
    margin: 0 auto;
  }
  footer .f_bnr li {
    margin: 0 0 10px;
  }
  .pagetop {
    right: 30px;
    bottom: 30px;
  }
  /* style -tab
  --------------------------------------------------*/
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
  .tab2 {
    display: inline-block !important;
  }
  header {
    height: 86px;
  }
  header .inner {
    width: 100%;
  }
  header .h_logo {
    padding: 16px 0 16px 19px;
    height: 56px;
    overflow: hidden;
  }
  header .h_link {
    position: fixed;
    right: 60px;
    background: #3FAE2A;
  }
  header .h_link a {
    display: block;
    padding: 5px 0;
    width: 120px;
  }
  header .h_link span {
    display: block;
    text-align: center;
  }
  header .g_txt {
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    vertical-align: sub;
  }
  .gnav_area {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
  .gnav li > a {
    display: block;
    display: block;
    color: #fff;
  }
  .gnav li span {
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
  }
  .hover-menu > li {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    position: relative;
  }
  .hover-menu > li:nth-of-type(7) {
    width: 45.57%;
    margin: 0 auto;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
  }
  .hover-menu > li:nth-of-type(7) a {
    padding: 5% 3%;
    background: url(/assets/images/contact_icon.png) no-repeat top 20px left 85px;
  }
  .hover-menu > li:nth-of-type(7) a span {
    font-size: 20px;
  }
  /* クリックされるまで隠れる */
  /*　クリックされたら開く　*/
  .gnav li span {
    color: #fff;
  }
  .hover-menu > li:nth-child(n + 2) {
    background: #fff;
    color: #595757;
    position: relative;
    margin: 0 -20px -2px;
    padding: 34px 20px 0px;
  }
  .hover-menu > li.open:last-child {
    padding: 18px 20px;
    margin: 0 -20px -0px;
  }
  /* ハンバーガーメニュー */
  .nav-button-wrap {
    display: block;
    position: fixed;
    right: 0px;
    top: 30px;
    z-index: 1000;
    cursor: pointer;
    padding: 18px 17px;
    width: 60px;
    height: 56px;
    background: #008FBE;
  }
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.3s;
  }
  .nav-button {
    z-index: 20;
    width: 25px;
    height: 19px;
    position: relative;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 8px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .active .nav-button span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .active .nav-button span:nth-of-type(2) {
    opacity: 0;
  }
  .active .nav-button span:nth-of-type(3) {
    transform: translateY(-6px) rotate(45deg);
  }
  @keyframes show {
    from {
      height: 0;
      opacity: 0;
    }
    to {
      height: auto;
      opacity: 1;
    }
  }
  @keyframes show2 {
    from {
      top: 0px;
      height: auto;
    }
    to {
      top: -10px;
      height: 0;
    }
  }
  .globalnav-wrap .globalnav {
    display: none;
    opacity: 0;
    animation: show2 0.2s linear 0s;
    -webkit-animation: show2 0.2s linear 0s;
  }
  .globalnav-wrap.open .globalnav {
    display: block;
    opacity: 1;
  }
  .hover-menu > li:nth-child(n + 2) {
    display: none;
  }
  .hover-menu {
    background: #fff;
  }
  .hover-menu > li.g_ttl {
    background: #027DA6;
  }
  .globalnav-wrap.open .globalnav .globalnav_scroll {
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    top: 86px;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    padding: 0px 0px 80px;
    z-index: 500;
  }
  .globalnav-wrap.open .globalnav .globalnav_bg {
    background: #027DA6;
    padding: 120px 20px 1px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.3), inset 0px 1px 1px 1px rgba(0, 0, 0, 0.2);
  }
  /* ハンバーガー　開いている状態 */
  .g_ttl,
  .event,
  .recruit,
  .g_company {
    border-bottom: 1px solid #3597B8;
  }
  .g_company {
    position: relative;
  }
  /* 矢印アイコン */
  .sp-border {
    display: block;
    padding: 28px 0 28px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    width: 95%;
  }
  .sp-border .pic {
    display: none;
  }
  /* >icon */
  .event,
  .recruit {
    position: relative;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
  }
  .event::before, .event::after,
  .recruit::before,
  .recruit::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  .event:before,
  .recruit:before {
    content: "";
    right: 35px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*　アイコン　*/
  .product .sp-border .sp_ttl {
    position: relative;
  }
  .product .sp-border .sp_ttl::after {
    content: url(/assets/images/product_icon.png);
    position: absolute;
    top: -9px;
    right: -21%;
  }
  .case .sp-border .sp_ttl {
    position: relative;
  }
  .case .sp-border .sp_ttl::after {
    content: url(/assets/images/case_icon.png);
    position: absolute;
    top: -5px;
    right: -59%;
  }
  .event .sp-border .sp_ttl {
    position: relative;
  }
  .event .sp-border .sp_ttl::after {
    content: url(/assets/images/event_icon.png);
    position: absolute;
    top: -7px;
    right: -23%;
  }
  .recruit .sp-border .sp_ttl {
    position: relative;
  }
  .recruit .sp-border .sp_ttl::after {
    content: url(/assets/images/recruit_icon.png);
    position: absolute;
    top: -6px;
    right: -47%;
  }
  .company .sp-border .sp_ttl {
    position: relative;
  }
  .company .sp-border .sp_ttl::after {
    content: url(/assets/images/company_icon.png);
    position: absolute;
    top: -7px;
    right: -61%;
  }
  .bg-b .hover-box {
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0px;
  }
  /* 開閉ボタン */
  .open_button {
    z-index: 300;
    position: absolute;
    top: 14%;
    right: 0%;
    background: transparent;
    color: #fff;
    padding: 17px 15px 27px 15px;
    cursor: pointer;
    width: 75px;
  }
  .open_button:before {
    content: "";
    border-left: 1px solid #3597B8;
    position: absolute;
    left: 0;
    width: 1px;
    height: 23px;
  }
  /* 通常時 */
  .open_button:after,
  .f_open_button:after {
    content: "+";
  }
  /*　開いた時　*/
  .open_button.active:after,
  .f_open_button.active:after {
    content: "-";
  }
  .dropdown-btn2:nth-child(n + 2) .arrow {
    font-size: 14px;
    font-weight: bold;
    display: block;
    width: 100%;
    position: relative;
  }
  .dropdown-btn2:nth-child(n + 2) .arrow a {
    display: block;
    color: #fff;
    background: #595757;
    padding: 10px 20px;
    border-radius: 5px;
  }
  .dropdown-btn2:nth-child(n + 2) .arrow:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    margin: 0 5px 0 0;
    position: absolute;
    top: 36%;
    right: 25px;
  }
  .g_bnr-list .bnr {
    display: none;
  }
  /* ハンバーガー */
  .globalnav-wrap {
    font-size: 16px;
    color: #fff;
    display: flex;
    justify-content: space-between;
  }
  .globalnav .dropdown-btn {
    cursor: pointer;
  }
  .globalnav .sp-mb01 {
    margin: 0 0 50px;
  }
  .gnav .bg-g {
    max-width: 350px;
    margin: 0 auto 54px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.3);
    font-weight: bold;
  }
  .gnav .bg-g a {
    padding: 25px 0;
    text-decoration: none;
  }
  .gnav .bg-g span {
    font-size: 20px;
  }
  .gnav .bg-g .pic {
    width: 30px;
    vertical-align: middle;
  }
  /* reset */
  .sp-reset {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    border: none;
    background: none;
    cursor: pointer;
    width: 70px;
    margin: 0 auto 28px;
    display: block;
    margin-left: auto;
  }
  .globalnav.close {
    display: none;
  }
  /* 会社概要のhover */
  .hover-box .bg-box.company {
    /* 通常時 */
  }
  .hover-box .bg-box.company .flex3 {
    background-color: #fff;
    color: #595757;
    position: relative;
    margin: 0 -20px;
    display: none;
    padding: 15px 3%;
  }
  .hover-box .bg-box.company .flex3 .bnr {
    display: none;
  }
  .hover-box .bg-box.company .flex3 .bnr-list li {
    width: 100%;
  }
  .hover-box .bg-box.company .flex3 .bnr-list a {
    padding: 13px 0;
  }
  .hover-box .bg-box.company .flex3 .bnr-list .sp_bob {
    border-bottom: 1px solid #e8e8e8;
    margin: 0 0 10px;
    padding: 0 0 10px;
  }
  footer {
    margin: 60px 0 0;
  }
}

@media screen and (max-width: 600px) {
  /* over wright -SP
  --------------------------------------------------*/
  header .h_link {
    width: 100px;
    right: 60px;
  }
  header .h_link a {
    width: 100px;
  }
  .globalnav-wrap.open .globalnav .sp-mb01 {
    margin: 0 0 7%;
  }
  .globalnav-wrap.open .globalnav .globalnav_bg {
    padding: 80px 20px 1px;
  }
  .gnav .bg-g {
    width: 100%;
    max-width: 100%;
  }
  .gnav .bg-g a {
    padding: 16px 0;
  }
  .gnav .bg-g .pic {
    width: 25.3px;
    margin: 0 5px 0 0;
  }
  .gnav .bg-g .g_txt {
    font-size: 16px;
  }
  .gnav .bg-b {
    top: 5%;
  }
  .gnav_list {
    padding: 15px 0 0;
  }
  .g_bnr-list,
  .g_link-list {
    flex-direction: column;
  }
  .g_bnr-list > li,
  .g_link-list > li,
  .bnr-list > li,
  .link-list > li {
    width: 100%;
    margin: 0 0 8px;
  }
  .g_bnr-list > li a,
  .g_link-list > li a,
  .bnr-list > li a,
  .link-list > li a {
    padding: 13px 0;
  }
  .g_bnr-list {
    flex-direction: column;
  }
  .g_bnr-list li {
    width: 50%;
  }
  .g_bnr-list li a {
    padding: 2.4% 0;
  }
  .g_category .g_bnr-list li {
    width: 100%;
    margin: 0 0 8px;
  }
  .g_category .g_bnr-list li a {
    padding: 13px 0;
  }
  .hover-menu > li:nth-child(n + 2) {
    padding: 5% 20px 4px;
  }
  .g_category .g_bnr-list li {
    padding: 0;
  }
  .hover-menu > li.open:nth-child(n + 3) {
    margin: -2px -20px 0px;
    padding: 10px 20px 0px;
  }
  .hover-menu > li.open:last-child {
    padding: 10px 20px;
  }
  .g_bnr-list, .g_link-list, .bnr-list, .link-list {
    margin: 0 15px 0%;
  }
  .g_case .g_category .hover-r {
    margin: 2% 0 0px;
  }
  .g_textarea {
    width: 86%;
  }
  .sp-border {
    padding: 18px 0 18px 20px;
    font-size: 14px;
  }
  .bg-b .hover-box {
    top: 30px;
  }
  .open_button {
    padding: 2% 15px 3.4% 15px;
  }
  .gnav .bg-g span {
    font-size: 16px;
  }
  /* アイコン */
  .open_button {
    width: 60px;
  }
  .event:before,
  .recruit:before {
    right: 28px;
  }
  .right_column .bg_box .r_ttl strong {
    display: block;
  }
  footer {
    padding: 5px 0 20px;
  }
  footer .inner {
    max-width: 100%;
    padding: 0 5%;
  }
  footer .inner .flex {
    flex-direction: column;
    display: block;
  }
  footer .box_l {
    width: 100%;
    margin: 0;
  }
  footer .box_m {
    width: 100%;
  }
  footer .box_r .f_link {
    display: block;
    padding: 0 22px 12px 0;
  }
  footer .box_r .f_link li {
    padding: 0 0 0 2em;
  }
  footer .f_ttl {
    margin: 0;
  }
  footer .f_link {
    margin: 12px 0 0px;
    padding: 0 0 10px;
    border-bottom: 1px solid #707070;
  }
  footer .f_link li {
    padding: 0 0 0 2em;
  }
  .right_column, .right_column_list {
    margin: 50px 20px;
  }
  .right_column .bg_box, .right_column_list .bg_box {
    padding: 30px;
  }
}

@media screen and (max-width: 600px) and (max-width: 500px) {
  .right_column_list.growone .bg_box {
    margin: 50px auto 0;
  }
  .right_column_list.growone .bg_box .r_button {
    max-width: 230px;
  }
  .right_column_list.growone .bg_box .link_box {
    width: 220px;
  }
  .right_column_list.growone .bg_box .link_box a.link_txt {
    margin: 5px 20px;
  }
  .right_column_list.nc .bg_box {
    margin: 50px auto 0;
  }
  .right_column_list.nc .bg_box .r_button {
    max-width: 230px;
  }
  .right_column_list.nc .bg_box .link_box {
    width: 220px;
  }
  .right_column_list.nc .bg_box a.link_txt {
    margin: 5px 20px;
  }
  .right_column_list.article .bg_box {
    margin: 50px auto 0;
  }
  .right_column_list.article .bg_box .r_button {
    max-width: 230px;
  }
  .right_column_list.article .bg_box .link_box {
    width: 220px;
  }
  .right_column_list.article .bg_box .link_box a.link_txt {
    margin: 5px 0;
    padding: 0 27px 0 12px;
  }
}

@media screen and (max-width: 600px) {
  .pagetop {
    right: 15px;
    bottom: 15px;
  }
  .breadcrumb_list {
    display: none;
  }
  /* style -SP
  --------------------------------------------------*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp2 {
    display: inline-block !important;
  }
  .gnavi_list {
    display: none;
  }
  .gnavi_list a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #fff;
    background: #ffc2e5;
    color: #ba8da8;
  }
  footer .f_ttl {
    position: relative;
  }
  footer .f_ttl a {
    display: block;
    padding: 19px 0 19px 20px;
    border-bottom: 1px solid #707070;
  }
  footer .f_link li {
    margin: 0 0 5px;
  }
  footer .f_link li::before {
    display: none;
  }
  footer .f_link {
    display: none;
  }
  footer .f_link a {
    display: block;
    padding: 8px 0;
  }
  footer .f_link a:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    margin: 0 7px 0 0;
  }
  .f_link.open {
    display: block;
  }
  /* 開閉ボタン */
  .f_open_button {
    z-index: 300;
    position: absolute;
    top: 0%;
    right: 0%;
    background: transparent;
    color: #fff;
    padding: 20px 15px 18px 15px;
    cursor: pointer;
    width: 60px;
  }
  .f_open_button:before {
    content: "";
    border-left: 1px solid #707070;
    position: absolute;
    left: 0;
    width: 1px;
    height: 23px;
  }
  /* >icon */
  .sp_icon {
    position: relative;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
  }
  .sp_icon::before, .sp_icon::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
  .sp_icon:before {
    content: "";
    right: 28px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .f_bnr {
    flex-direction: column;
  }
  .f_bnr li {
    text-align: center;
  }
  footer {
    margin: 40px 0 0;
  }
}

@media (min-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.img_size_2-1 {
  position: relative;
  width: 100%;
}

.img_size_2-1::before {
  content: "";
  display: block;
  padding-top: 50%;
}

.img_size_2-1 figure {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: auto;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}

.img_size_2-1 figure img {
  border-radius: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}

.img_size_2-1 figure img.sp_img {
  display: none;
}

.img_size_2-1 figure img.pc_img {
  display: block;
}

.img_size_2-1 figure img:hover {
  opacity: 1;
}

.cookiebox {
  background: #595758;
  border: 1px solid #5e5c5d;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 3px 0px rgba(0, 0, 0, 0.8);
  padding: 40px 40px;
  max-width: 375px;
  position: fixed;
  bottom: 35px;
  right: 30px;
  z-index: 9999;
}

.cookiebox .cookie-ttl {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 16px;
  display: block;
}

.cookiebox p {
  margin-bottom: 25px;
}

.cookiebox a {
  color: #fff;
  text-decoration: underline;
}

.cookiebox #btn {
  background-color: #fff;
  color: #595758;
  width: 100%;
  padding: 16px 0;
  text-align: center;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  transition: opacity .2s;
}

.cookiebox #btn:after {
  content: "×";
  font-size: 30px;
  margin: 0 0 0 14px;
  position: absolute;
  top: 7%;
}

.cookiebox #btn:hover {
  opacity: 0.8;
}

@media screen and (max-width: 600px) {
  /* over wright

@media screen and (max-width: 768px) {
	header > .inner > .flex  { margin-top: 50px; } 
	.nav-button-wrap { top: 50px; }
}

--------------------------------------------------*/
  .cookiebox {
    padding: 40px 30px;
    max-width: 100%;
    margin-left: 20px;
    right: 20px;
    z-index: 999;
    bottom: 20px;
  }
}
