@charset "UTF-8";

/* # =================================================================
# normalize
# ================================================================= */
/*! normalize.scss v0.1.0 | MIT License | based on git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms











   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/* # =================================================================
# base
# ================================================================= */
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
  letter-spacing: 0.08em;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -ms-font-feature-settings: "normal";
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: #333;
  text-decoration: none;
}

a:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li,
ol li {
  list-style-type: none;
}

p {
  margin: 0;
}

main {
  display: block;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.4rem;
  color: #333;
}

select::-ms-expand {
  display: none;
}

hr {
  border: none;
  margin: 0;
}

b,
strong,
em {
  font-weight: bold;
}

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

/* # =================================================================
# structures
# ================================================================= */
.st-l-wrapper {
  min-width: 1200px;
}

.st-l-main {
  overflow: hidden;
}

.st-l-inner {
  max-width: 1320px;
  padding: 0 60px;
  margin: 0 auto;
}

.st-l-column {
  width: 1000px;
  margin: 0 auto;
}

.st-l-column._swd {
  width: 800px;
}

/**
 * header
 */
.st-header {
  background: #fff;
  position: relative;
  z-index: 1;
}

.st-hd__top {
  background: #000;
  height: 40px;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.st-hd__top img {
  width: 196px;
}

.st-hd__conts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
  padding: 0 60px;
  position: relative;
}

.st-hd__logo {
  width: 235px;
}

.st-hd__trigger {
  height: 15px;
  width: 25px;
  margin: auto;
  position: relative;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 9999;
}

.st-hd__trigger span {
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
}

.st-hd__trigger span:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.st-hd__trigger span:nth-child(3) {
  bottom: 0;
}

.st-hd__trigger.is-open span:nth-child(1) {
  -webkit-animation: open1 .6s forwards;
  animation: open1 .6s forwards;
}

.st-hd__trigger.is-open span:nth-child(2) {
  opacity: 0;
}

.st-hd__trigger.is-open span:nth-child(3) {
  width: 100%;
  -webkit-animation: open2 .6s forwards;
  animation: open2 .6s forwards;
}

.st-hd__trigger.is-close span:nth-child(1) {
  -webkit-animation: close1 .6s forwards;
  animation: close1 .6s forwards;
}

.st-hd__trigger.is-close span:nth-child(2) {
  opacity: 1;
}

.st-hd__trigger.is-close span:nth-child(3) {

  -webkit-animation: close2 .6s forwards;
  animation: close2 .6s forwards;
}

@-webkit-keyframes open1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}

@keyframes open1 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}

@-webkit-keyframes open2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}

@keyframes open2 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }

  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}

@-webkit-keyframes close1 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }

  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes close1 {
  0% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }

  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes close2 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }

  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@keyframes close2 {
  0% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }

  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }

  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

/**
 * nav
 */
/* ヘッダー PCメニュー */

.st-gn__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 -30px;
}

.st-gn__link {
  margin: 0 30px;
}

.st-gn__link>a {
  display: block;
  position: relative;
  padding: 24px 0;
}

.st-gn__link--search {
  border-left: solid 1px;
  width: 47px;
}

.st-gn__link--search a {
  display: block;
  height: 34px;
}

.st-gn__link--search ._srearch_icon {
  display: block;
  border: 1px solid transparent;
  height: 35px;
  width: 32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 9002;
  -webkit-transform: rotate(-315deg);
  transform: rotate(-315deg);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.st-gn__link--search ._srearch_icon ._bars {
  display: block;
  position: relative;
  height: 2px;
  width: 12px;
  margin-top: 15px;
  margin-left: 22px;
  background-color: #000;
  -webkit-transition: all 300ms;
  transition: all 300ms;

}

.st-gn__link--search ._srearch_icon ._bars::before {
  content: '';
  height: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  right: 0;
  background-color: transparent;
  border: 2px solid #000;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  top: -8px;
  left: -18px;
}

.st-gn__link--search img {
  width: 25px;
}

.st-gn__link--search a.is-open ._srearch_icon {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.st-gn__link--search a.is-open ._srearch_icon ._bars {
  width: 25px;
  margin-top: 18px;
  margin-left: -2px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.st-gn__link--search a.is-open ._srearch_icon ._bars::before {
  height: 25px;
  width: 0;
  border-radius: 0;
  top: -12px;
  left: 12px;
  border-left-width: 0;
  border-top-width: 0;
  border-bottom-width: 0;
}

.st-gn__sub_list {
  display: none;
  padding: 20px 60px;
  position: absolute;
  left: 0;
  font-size: 0;
  word-spacing: 0;
  letter-spacing: 0;
  text-align: center;
  width: 100%;
  top: 100%;
  background: #0080bc;
  background: -webkit-gradient(linear, left top, right top, from(#0080bc), color-stop(50%, #004b91), to(#002967));
  background: linear-gradient(to right, #0080bc 0%, #004b91 50%, #002967 100%);
}

.st-gn__sub_list li {
  display: inline-block;
  margin: 0 20px;
}

.st-gn__sub_list li a {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  line-height: 2.4;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.st-gn__sub_list li a::before {
  background-color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
}

.st-gn__sub_list li a:hover {
  color: #fff;
}

.st-gn__sub_list li a.is-current::before {
  -webkit-transform: none;
  transform: none;
}

.st-gn__sub_contact_list {
  display: none;
}

.st-gn__search {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 114px);
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 1;
}

.st-gn__search__box {
  width: 730px;
  height: 74px;
  position: absolute;
  top: 40px;
  right: 40px;
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  -webkit-transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  opacity: 0;
}

.st-gn__search__box form {
  height: 100%;
}

.st-gn__search__box input[type="text"] {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  font-family: 'Montserrat', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
  font-size: 2.0rem;
  letter-spacing: 0.12em;
  padding: 0 60px 0 30px;
}

.st-gn__search__box input[type="submit"] {
  background: url(/company/images/icn_search.svg) no-repeat center center;
  background-size: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  text-indent: -99999px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.st-gn__search.is-open {
  opacity: 1;
  visibility: visible;
}

.st-gn__search.is-open .st-gn__search__box {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

@-webkit-keyframes gnavHover {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@keyframes gnavHover {
  0% {
    width: 0;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes gnavOut {
  0% {
    width: 100%;
    right: 0;
  }

  100% {
    width: 0;
    right: 0;
  }
}

@keyframes gnavOut {
  0% {
    width: 100%;
    right: 0;
  }

  100% {
    width: 0;
    right: 0;
  }
}

/**
 * footer

 */

.st-ft__pagetop {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 60px;
  right: 60px;
}

.st-ft__pagetop a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(0, 75, 145, 0.8);
}

.st-ft__pagetop a i {
  width: 16px;
  height: 9px;
  background: url(../images/icn_arrow_wh.png) no-repeat right center;
  background-size: auto 100%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.st-ft__top {
  background: #f3f3f3;
}

.st-ft__logo {
  padding: 26px 0 29px;
  border-bottom: solid 1px #ccc;
}

.st-ft__logo img {
  width: 185px;
}

.st-ft__logo span {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  vertical-align: middle;
  margin: 0 0 0 20px;
}

.st-ft__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 0 30px;
}

.st-ft__link {
  min-width: 230px;
}

.st-ft__link__ttl a {
  line-height: 1.8;
}

.st-ft__link--contact .st-ft__sub_menu {
  margin: 9px 0 0;
}

.st-ft__link--contact .st-ft__sub_menu li {
  width: 300px;
}

.st-ft__link--contact .st-ft__sub_menu li+li {
  margin: 2px 0 0;
}

.st-ft__link--contact .st-ft__sub_menu li a {
  padding: 12px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  width: 100%;
}

.st-ft__link+.st-ft__link {
  margin: 16px 0 0;
}

.st-ft__sub_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 16px 0 0;
}

.st-ft__sub_menu ul+ul {
  margin: 0 0 0 38px;
}

.st-ft__sub_menu ul li a {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  line-height: 2.0;
  color: #555;
}

.st-ft__sub_menu--other {
  padding: 23.5px 0;
  border-top: solid 1px #ccc;
  margin: 0;
}

.st-ft__sub_menu--other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.st-ft__sub_menu--other ul li {
  margin: 0 15px;
}

.st-ft__middle {
  padding: 19px 0 18px;
}

.st-ft__logo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.st-ft__logo_list li {
  margin: 0 15px;
}

.st-ft__logo_list li a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.st-ft__logo_list li a:hover {
  opacity: .7;
}

.st-ft__logo_list li:first-child {
  width: 75px;
}

.st-ft__logo_list li:nth-child(2) {
  width: 87px;
}

.st-ft__logo_list li:nth-child(3) {
  width: 83px;
}

.st-ft__logo_list li:nth-child(4) {
  width: 133px;
}

.st-ft__logo_list li:last-child {
  width: 187px;
}

.st-ft__link {
  background: #333;
  padding: 30px 0;
}

.st-ft__link ul{
  display: flex;
  justify-content: center;
}

.st-ft__link ul li:last-child::before{
  color: #fff;
  content: "｜";
  padding: 0 20px;
}

.st-ft__link ul li a:link,
.st-ft__link ul li a:hover,
.st-ft__link ul li a:active,
.st-ft__link ul li a:visited{
  color: #fff;
}


.st-ft__bottom {
  background: #000;
  padding: 42px 0 50px;
  position: relative;
}

.st-ft__copy {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  line-height: 2.3;
  color: #fff;
  text-align: center;
}

.st-ft__group_logo {
  width: 196px;
  margin: 13px auto 0;
  line-height: 0;
}

/* =================================================================
contents
================================================================= */
/**
 * パンくず
 */
.c-breadcrumb {
  height: 80px;
  position: relative;
}

.c-breadcrumb::before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
}

.c-breadcrumb .st-l-inner {
  height: 100%;
}

.c-breadcrumb__bg {
  background: #000;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 95px 0 0;
  position: relative;
}

.c-breadcrumb ul {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-breadcrumb ul li {
  color: #555;
  display: inline;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.c-breadcrumb ul li+li {
  margin: 0 0 0 30px;
  position: relative;
}

.c-breadcrumb ul li+li::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-breadcrumb ul li a {
  color: #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0 0 5px;
  vertical-align: middle;
}

.c-breadcrumb ul li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 2px;
  -webkit-transform: translateX(-101%);
  transform: translateX(-101%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.c-breadcrumb ul li a:hover::before {
  -webkit-transform: none;
  transform: none;
}

/**
 * ボタン
 */
.c-btn {
  width: 230px;
}

.c-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  height: 46px;
  font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
  /* font-size: 1.4rem;*/
  /*202305変更*/
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  position: relative;
  overflow: hidden;
}

.c-btn a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.c-btn a:hover::before {
  -webkit-transform: none;
  transform: none;
}

.c-btn a:hover i::before {
  -webkit-animation: btnHover .5s forwards;
  animation: btnHover .5s forwards;
}

.c-btn i {
  display: block;
  width: 16px;
  height: 9px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  overflow: hidden;
}

.c-btn i::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(/company/images/icn_arrow_bl.png) no-repeat right center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.c-btn--bl a {
  background: #000;
  color: #fff;
}

.c-btn--bl a::before {
  background-color: rgba(255, 255, 255, 0.2);
}

.c-btn--bl i::before {
  background-image: url(/company/images/icn_arrow_wh.png);
}

@-webkit-keyframes btnHover {
  0% {
    right: 0;
  }

  25% {
    right: -100%;
  }

  26% {
    right: 100%;
  }

  100% {
    right: 0;
  }
}

@keyframes btnHover {
  0% {
    right: 0;
  }

  25% {
    right: -100%;
  }

  26% {
    right: 100%;
  }

  100% {
    right: 0;
  }
}

.c-headline {
  font-size: 6.0rem;
  letter-spacing: 0.06em;
  line-height: 1.0;
  margin: 0;
}

.c-headline small {
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
  display: block;
  margin: 0 0 10px;
}

.c-headline span {
  font-family: "Montserrat", sans-serif;
  line-height: 1.0;
  display: inline-block;
  margin: 0 -4px;
  background: -webkit-gradient(linear, left top, right top, from(#009bdc), color-stop(50%, #0084c9), to(#005ead));
  background: linear-gradient(90deg, #009bdc, #0084c9 50%, #005ead);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
  color: #005ead;
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#009bdc', endColorstr='#005ead');
  font-weight: 700;
}

.c-headline--fs02 {
  font-size: 4.0rem;
}

.c-headline--fs02 small {
  font-size: 1.6rem;
}

.c-headline-l2 {
  font-size: 3.6rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.0;
  margin: 0;
}

/**
 * font-size
 */
.c-fs30 {
  font-size: 3.0rem;
}

.c-icon-arw {
  display: block;
  width: 16px;
  height: 9px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.c-icon-arw::before {
  content: "";
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  background: url(/company/images/icn_arrow.png) no-repeat right center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

a:hover .c-icon-arw::before {
  -webkit-animation: btnHover .5s forwards;
  animation: btnHover .5s forwards;
}

/**
 * layout
 */

.c-l-sp {
  display: none;
}

.c-l-tb {
  display: none;
}

.c-l-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-l-pages {
  padding: 100px 0 120px;
}

/* hover */
.c-hover {
  position: relative;
  overflow: hidden;
}

.c-hover::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.c-hover:hover::before {
  -webkit-transform: none;
  transform: none;
}

.c-hover--bl::before {
  background-color: rgba(255, 255, 255, 0.2);
}

/**
 * link
 */
.c-link {
  line-height: 0;
}

.c-link a {
  display: inline-block;
  -webkit-transition: color .3s;
  transition: color .3s;
  position: relative;
  overflow: hidden;
}

.c-link a::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #0092D4;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-link-arrow span {
  position: relative;
  padding: 0 30px 0 0;
}

.c-link-blank::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 12px;
  background: url(/company/images/icn_blank.png) no-repeat center center;
  background-size: 16px auto;
  margin: 0 0 0 7px;
  position: relative;
}

.c-link-pdf ._pdf {
  background: url(/company/images/icn_pdf.png) no-repeat center center;
}

.c-link-pdf:hover ._pdf {
  background-image: url(/company/images/icn_pdf_blue.png);
}

.c-link--more a {
  padding: 0 30px 8px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  line-height: 2.0;
}

.c-link--more a::before {
  background-color: #000;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.c-link--more a:hover::before {
  background-color: #0092D4;
  -webkit-animation: linkBorder .5s forwards;
  animation: linkBorder .5s forwards;
}

.c-link--more a:hover i {
  overflow: hidden;
}

.c-link--more a:hover i::before {
  background-image: url(/company/images/icn_arrow.png);
  -webkit-animation: btnHover .5s forwards;
  animation: btnHover .5s forwards;
}

.c-link--more i {
  top: 9px;
  bottom: auto;
}

.c-link--more i::before {
  background-image: url(/company/images/icn_arrow_bl.png);
}

.c-link-l2 {
  color: #0092D4;
}

.c-link-l3 {
  overflow: hidden;
  position: relative;
}

.c-link-l3::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #eaf7ff;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.c-link-l3 span {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.c-link-l3 span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #0092D4;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-link-mail {
  color: #0092D4;
}

.c-link-mail:hover {
  text-decoration: underline;
}

.c-link-mail::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  width: 23px;
  height: 16px;
  background: url(/company/images/icn_mail.svg) no-repeat center center;
  background-size: 23px 16px;
}

@-webkit-keyframes linkBorder {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  35% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  36% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes linkBorder {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  35% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  36% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.c-page-header {
  background: url(/company/images/bg_header_base.jpg) no-repeat right center;
  background-size: auto 100%;
}

.c-page-header__top {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  height: 460px;
  margin: 0 60px 0 0;
}

.c-page-header__top .st-l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.c-page-header .c-headline {
  letter-spacing: 0.04em;
  margin: 0 0 0 30px;
}

.c-page-header .c-headline small {
  font-size: 2.4rem;
  margin: 0 0 8px;
}

.c-page-header .c-headline--pages {
  font-size: 4.0rem;
  margin-top: 5px;
}

.c-page-header .c-headline--pages._jp {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.c-page-header .c-headline--pages small {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin: 0 15px 0 0;
  vertical-align: middle;
}

.c-page-header .c-headline--pages span {
  vertical-align: middle;
}

.c-page-header .c-headline--pages strong {
  display: block;
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin: 12px 0 0;
  padding: 0 0 0 76px;
  position: relative;
}

.c-page-header .c-headline--pages strong::before {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.c-page-header .c-headline--pages._l2 strong {
  font-size: 4.0rem;
  line-height: 1.5;
}

.c-page-header .c-headline--pages._l2 strong::before {
  top: 30px;
  bottom: auto;
}

.c-p-links {
  border-top: solid 1px #ccc;
}

.c-p-links li {
  border-bottom: solid 1px #ccc;
}

.c-p-links li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.0rem;
  letter-spacing: 0;
  height: 100px;
  padding: 0 20px;
  position: relative;
}

.c-p-links li a i {
  width: 40px;
  height: 18px;
  right: 20px;
}

.c-p-dl {
  margin: 50px 0 0;
}

.c-p-dl+.c-p-dl {
  margin: 67px 0 0;
}

.c-p-dl>dt {
  color: #005fae;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.c-p-dl>dd {
  letter-spacing: 0;
  margin: 25px 0 0;
}

.c-p-dl>dd p+p {
  margin: 32px 0 0;
}

.c-p-dl__note {
  margin: 13px 0 0;
}

.c-p-table {
  margin: 32px 0 0;
}

.c-p-table th {
  background: #eaf7ff;
  border: solid 1px #ccc;
  border-left: none;
  font-weight: 400;
  padding: 21px 30px 21px;
  text-align: left;
  vertical-align: top;
}

/*20230712追加*/
/*.c-p-table th:first-child {
  width: 250px;
}*/
.tw1 th:nth-of-type(1) {
  width: 25%;
}

.tw1 th:nth-of-type(2) {
  width: 45%;
}

.tw1 th:nth-of-type(3) {
  width: 30%;
}

.tw2 th:nth-of-type(1) {
  width: 25%;
}

.tw2 th:nth-of-type(2) {
  width: 20%;
}

.tw2 th:nth-of-type(3) {
  width: 15%;
}

.tw2 th:nth-of-type(4) {
  width: 50%;
}

.tw3 th:nth-of-type(1) {
  width: 25%;
}

.tw3 th:nth-of-type(2) {
  width: 75%;
}

/*～20230712追加*/

.c-p-table th:last-child {
  border-right: none;
}

.c-p-table td {
  padding: 21px 10px 21px 30px;
  border: solid 1px #ccc;
  width: 750px;
  vertical-align: top;
}

.c-p-table td:last-child {
  border-right: none;
}

.c-p-table td p+ol {
  margin: 23px 0 0;
}

.c-p-table td ol+p {
  margin: 23px 0 0;
}

.c-p-table--l2 th {
  vertical-align: middle;
}

.c-p-table--l2 td {
  padding-right: 30px;
  width: 250px;
  letter-spacing: 0;
}

.c-p-box {
  background: #f3f3f3;
  margin: 32px 0 0;
  padding: 34px 40px;
}

.c-p-box dl {
  margin: 0;
}

.c-p-box dt {
  letter-spacing: 0;
  margin: 0 0 15px;
}

.c-p-box dd {
  letter-spacing: 0;
  margin: 0;
}

/*  */
.js-inview {
  opacity: 0;
}

.js-inview-02 {
  opacity: 0;
}

@-webkit-keyframes fadeInUp02 {
  from {
    opacity: 0;
    margin-top: 10px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

@keyframes fadeInUp02 {
  from {
    opacity: 0;
    margin-top: 10px;
  }

  to {
    opacity: 1;
    margin-top: 0;
  }
}

.fadeInUp02 {
  -webkit-animation-name: fadeInUp02;
  animation-name: fadeInUp02;
}

/* タイトル */
.c-ttl {
  font-size: 2.0rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
  font-weight: 700;
}

/* テキスト */
.c-txt-small {
  color: #555;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.c-tr {
  text-align: right;
}

/* リスト */
.c-list-num>li {
  counter-increment: num;
  padding: 0 0 0 20px;
  position: relative;
}

.c-list-num>li::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.c-list-alpha>li {
  counter-increment: alpha;
  padding: 0 0 0 32px;
  position: relative;
}

.c-list-alpha>li+li {
  margin: 32px 0 0;
}

.c-list-alpha>li::before {
  content: counter(alpha, lower-alpha);
  position: absolute;
  left: 0;
  top: 0;
}

/* # =================================================================
# plugins
# ================================================================= */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }

  to {

    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

/* =================================================================
//
//  pages
//
================================================================= */
/*==================
* TOPページ
==================*/
/* MV */
.home-hero {
  position: relative;

}

.home-hero video {
  width: 100%;
}

.home-hero__copy {
  position: absolute;
  top: 50%;
  left: 12.2222222vw;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home-hero__copy p {
  line-height: 0;
}

.home-hero__copy p img {
  width: 285px;
}

.home-hero__headline {
  margin: 0 0 29px;
}

.home-hero__headline img {
  width: 680px;
}

/* NEWS */
.home-news {
  padding: 70px 0 80px;
  overflow: hidden;
}

.home-news .c-headline {
  float: left;
  margin: -8px 0 30px;
}

.home-news .info-list {
  margin: 0 0 0 auto;
  width: 75%;
  float: right;
}

/* ABOUT */
.home-about {
  position: relative;
  overflow: hidden;
  padding: 76px 0 80px;
}

.home-about .st-l-inner {
  position: relative;
}

.home-about .c-headline {
  color: #fff;
  text-align: center;
}

.home-about .c-headline span {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.home-about__bg {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.home-about__bg video {
  min-width: 100%;
  min-height: 100%;
}

.home-about__txt {
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  margin: 23px 0 0;
}

.home-about__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 40px 0 0;
}

.home-about__data_txt {
  text-align: right;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 10px 0 0;
}

.home-about__item {
  width: 31.0833333%;
  text-align: center;
  background: url(/company/images/home/bg_item.png) no-repeat center center;
  padding: 24px 0 37px;
  position: relative;
}

.home-about__item p {
  color: #35eeff;
}

.home-about__item__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.24em;
  margin: 0 0 38px;
}

.home-about__item__ttl span {
  margin: 0 10px;
}

.home-about__item__ttl::before,
.home-about__item__ttl::after {
  content: "";
  display: block;
  width: 17px;
  height: 10px;
  background: url(/company/images/bg_deco.png) no-repeat center center;
  background-size: cover;
}

.home-about__item__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.home-about__item__num span {
  margin: 0 0 0 5.361930294%;
  letter-spacing: 0;
}

.home-about__item__num strong {
  font-size: 8.2rem;
  letter-spacing: -0.02em;
  line-height: 1.0;
  font-weight: 600;
}

.home-about__item__num strong small {
  font-size: 3.6rem;
}

.home-about__item__num small {
  font-size: 2.7rem;
  font-weight: 700;
  display: inline-block;
}

.home-about__item__num sup {
  display: block;
  font-size: 1.3rem;
  position: static;
  text-align: right;
}

.home-about__item--amount img {
  width: 18.49866%;
}

.home-about__item--count img {
  width: 15.5496%;
}

.home-about__item--site img {
  width: 15.0134%;
}

.home-about__item--site .home-about__item__num sup {
  left: 0;
}

.home-about__btn {
  margin: 27px auto 0;
}

/* BUSINESS DOMEIN / TOP MESSAGE */
.home-sec:not(.home-about) {
  position: relative;
}

.home-sec:not(.home-about) .st-l-inner {
  width: 73.3333333%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home-sec__img {
  width: 53.333333%;
}

.home-sec__img img {
  width: 100%;
}


.home-sec__conts {

  width: 36.363636363%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 60px;
  -webkit-transform: perspective(0) translateY(-50%);
  transform: perspective(0) translateY(-50%);
}

.home-sec__txt {
  letter-spacing: 0;
  margin: 35px 0 0;
}

.home-sec__btn {
  margin: 42px 0 0;
}

.home-bus {
  background: url(/company/images/home/bg_business.jpg) no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.home-message {
  background: #f7fbfd url(/company/images/home/img_message_pc.jpg) no-repeat left center;
  height: 700px;
}

.home-message .home-sec__conts {
  left: auto;
  right: 60px;
  width: 40.909090909%;
}

.home-links {
  background: url(/company/images/home/bg_links_pc.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

.home-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 -1.66666666%;
}

.home-links li {
  width: 23.2%;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  margin: 0 0.8%;
}

.home-links li a {
  display: block;
}

.home-links li a._blank p {
  background-image: url(/company/images/icn_blank.png);
}

.home-links li p {
  background: #fff url(/company/images/icn_arrow.png) no-repeat right 10px bottom 8px;
  background-size: 16px auto;
  height: 60px;
  line-height: 1.2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
}

.home-links .st-l-inner ul li p span {
  font-size: 1.4rem;
}

/*==================
* ABOUT
==================*/
.co-header .c-page-header__top {
  background-image: url(/company/images/about/bg_header_pc.jpg);
}

.co-header .c-page-header__top .c-headline--pages strong {
  text-shadow: 0 0 6px #fff;
}

/* footer上ナビ */
.about-link {
  margin: 95px 0 0;
}

.about-link .c-headline {
  letter-spacing: 0.12em;
}

.about-link__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  margin: 24px 0 0;
}

.about-link__nav li {
  width: 33.33333%;
  border-bottom: solid 1px #ccc;
  border-right: solid 1px #ccc;
}

.about-link__nav li:nth-child(3n) {
  border-right: none;
}

.about-link__nav li:nth-child(n+7) {
  border-bottom: none;
}

.about-link__nav li a {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 16px;
  line-height: 1.3;
  position: relative;
  -webkit-transition: color .3s, border .3s;
  transition: color .3s, border .3s;
  overflow: hidden;
}

.about-link__nav li a::before {
  content: "";
  display: block;
  background: #eaf7ff;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.about-link__nav li a span {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.about-link__nav li a span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #0092D4;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  position: absolute;
  bottom: 0;
  left: 0;

}

.about-link__nav li a i {
  right: 20px;
}

.about-link__nav li a.is-current {
  color: #0092D4;
}

.about-link__nav li a.is-current::before {
  -webkit-transform: none;
  transform: none;
}

.about-link__nav li a.is-current span::before {
  -webkit-transform: none;
  transform: none;
}

.about-link__nav li._ft a>span::before {
  display: none;
}

/* TOP */
.co-sec {
  padding: 60px 0;
}

.co-sec:nth-of-type(even) .co-col__img {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.co-sec .c-headline {
  margin: 0 0 25px;
}

.co-sec .c-btn {
  margin: 32px 0 0;
}

.co-sec--message {
  padding: 100px 0 20px;
}

.co-sec--message .co-col {
  position: relative;
}

.co-sec--message .co-col__img {
  width: 100%;
}

.co-sec--message .co-col__txt {
  background: #fff;
  padding: 40px;
  position: absolute;
  right: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.15);
}

.co-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.co-col__img {
  width: 55%;
}

.co-col__img img {
  width: 100%;
}

.co-col__txt {
  width: 40%;
}

.co-col__sub_ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0 0 14px;
}

.co-other {
  background: url(/company/images/bg_base.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 60px 120px;
  margin: 40px 0 0;
}

.co-other__bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.co-other__headline {
  margin: 0;
  position: relative;
  color: #fff;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.co-other__headline small {
  font-size: 2.0rem;
  display: block;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

.co-other__headline span {
  font-family: "Montserrat", sans-serif;
  font-size: 3.0rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.co-other__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.co-other__link {
  width: 50%;
}

.co-other__link a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  height: 400px;
  overflow: hidden;
}

.co-other__link a::after {
  content: "";
  display: block;
  border: solid 20px transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
}

.co-other__link a:hover::after {
  border-color: #004288;
}

.co-other__link a:hover span {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.co-other__link a:hover .co-other__txt {
  opacity: 1;
  height: auto;
}

.co-other__link a:hover .co-other__icn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-70px);
  transform: translateY(-70px);
}

.co-other__link--overview .co-other__icn img {
  width: 64px;
  height: 53px;
}

.co-other__link--directors .co-other__icn img {
  width: 78px;
  height: 43px;

}

.co-other__link--group .co-other__icn img {
  width: 85px;
  height: 69px;
}

.co-other__link--publication .co-other__icn img {
  width: 55px;
  height: 53px;
}

.co-other__link:last-child {
  width: 100%;
}

.co-other__link:last-child a {
  height: 140px;
}

.co-other__link:last-child a::after {
  display: none;
}

.co-other__link:last-child a h3 {
  position: relative;
  padding: 0 65px 0 0;
}

.co-other__link:last-child a h3 span {
  letter-spacing: 0.14em;
}

.co-other__link:last-child a i {
  width: 40px;
  height: 18px;
  right: 0;
}

.co-other__conts {
  position: relative;
  z-index: 1;
  margin: 13px 0 0;
}

.co-other p {
  position: relative;
}

.co-other__txt {
  color: #fff;
  position: relative;
  text-align: center;
  opacity: 0;
  height: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.co-other__icn {
  text-align: center;
  margin: 0 auto 16px;
  height: auto;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* トップメッセージ */
.m-sec {
  padding-bottom: 120px;
}

.m-top {
  height: 600px;
  background: url(/company/images/about/bg_message_pc.jpg) no-repeat center center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.m-top__conts {
  margin-top: -8px;
}

.m-top h2 {
  line-height: 1.6;
  color: #0057a1;
  font-weight: 700;
}

.m-top__name {
  margin: 36px 0 0;
  letter-spacing: 0;
}

.m-top__name strong {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 0 17px;
}

.m-desc {
  margin: 70px 0 0;
  letter-spacing: 0;
}

.m-desc p+p {
  margin: 32px 0 0;
}

.m-desc p+.m-desc__name {
  margin: 44px 0 0;
}

.m-desc__name strong {
  font-size: 3.0rem;
  font-weight: 400;
  line-height: 1.4;
}

/* FTセグメント */
.ft-wrap {
  padding-top: 90px;
}

.ft-lead {
  letter-spacing: 0;
}

.ft-sec {
  padding: 78px 0 72px;
}

.ft-sec .c-headline-l2 {
  color: #005fae;
  letter-spacing: 0;
  text-align: center;
}

/*
.ft-sec:nth-of-type(odd) {
  background: #eaf7ff;
}
*/
/*プラットフォームソリューション・セグメント新設の為、背景カラーの順番変更202305*/
.ft-sec:nth-of-type(even) {
  background: #eaf7ff;
}


.ft-sec__img {
  margin: 58px 0 0;
}

.ft-sec__txt {
  letter-spacing: 0;
  margin-top: 56px;
}

.ft-sec__txt+.ft-sec__txt {
  margin-top: 48px;
}

.ft-sec__txt p+p {
  margin: 32px 0 0;
}

.ft-sec__sub_h {
  font-size: 2.4rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 0 0 26px;
}

.ft-model {
  margin: 72px 0 0;
}

.ft-market__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 38px 0 0;
}

.ft-market__list+p {
  margin: 13px 0 0;
}

.ft-market__list li {
  background: #eaf7ff;
  padding: 22px 0 26px;
  text-align: center;
  width: 313px;
}

.ft-market__list li .cls-1 {
  fill: none;
  stroke: #005fae;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.ft-market__list li .cls-2 {
  fill: #005fae;
}

.ft-market__list li:nth-child(1) svg {
  width: 104px;
}

.ft-market__list li:nth-child(2) svg {
  width: 87px;
}

.ft-market__list li:nth-child(3) svg {
  width: 98px;
}

.ft-market__ttl {
  font-size: 1.8rem;
  margin: 0 0 11px;
}

.ft-market__icn {
  height: 90px;
  margin: 0 0 7px;
}

.ft-market__num {
  color: #005fae;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}

.ft-market__num strong {
  font-size: 5.0rem;
  line-height: 1.0;
  letter-spacing: 0;
  vertical-align: bottom;
}

.ft-market__num strong small {
  font-size: 5.0rem;
}

.ft-market__num sup {
  font-size: 1.3rem;
  font-weight: 400;
  top: 19px;
  left: 5px;
  vertical-align: top;
}

.ft-str {
  padding-bottom: 108px;
}

.ft-str .ft-sec__txt {
  margin-top: 60px;
}


.ft-str .ft-sec__txt p+p {
  margin: 0;
}

.ft-str__list li {
  padding: 30px 0;
  border-top: solid 1px #ccc;
}

.ft-str__list li:last-child {

  border-bottom: solid 1px #ccc;
}

.ft-str__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ft-str__list li a:hover span::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.ft-str__logo {
  width: 200px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 40px 0 0;
}

.ft-str__link {
  color: #0092D4;
  font-size: 2.0rem;
  letter-spacing: 0;
  line-height: 0;
}

.ft-str__link span {
  display: inline-block;
  position: relative;
  overflow: hidden;
  line-height: 1.6;
}

.ft-str__link span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #0092D4;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.ft-topics {
  padding-bottom: 0;
}

.ft-topics__info {
  margin: 50px 0 0;
  letter-spacing: 0;
}

.ft-topics__info+.ft-topics__info {
  margin: 50px 0 0;
}

.ft-topics__info .c-ttl {
  letter-spacing: 0;
  margin: 0 0 13px;
}

.ft-topics__info .info-list {
  margin: 0;
}

.ft-topics__info .info-list dl {
  min-height: inherit;
  padding: 26.5px 0;
}

.ft-topics__list li {
  border-top: solid 1px #ccc;
}

.ft-topics__list li:last-child {
  border-bottom: solid 1px #ccc;
}

.ft-topics__list li a {
  display: block;
  padding: 27px 100px 27px 0;
  position: relative;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.ft-topics__list li a ._pdf {
  width: 34px;
  height: 26px;
  background: url(/company/images/icn_pdf.png) no-repeat center center;
  background-size: 34px auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
}

.ft-topics__list li a:hover {
  color: #0092D4;
  text-decoration: underline;
}

.ft-topics__list li a:hover i {
  background-image: url(/company/images/icn_pdf_blue.png);
}

.ft-topics__more {
  margin: 22px 0 0;
  text-align: right;
}

.ft-topics__more a {
  padding-right: 24px;
}

/* 会社概要 */
.co-prof__conts p {
  margin: 0 0 32px;
}

.co-prof__conts+.co-prof__conts {
  margin-top: 94px;
}

.co-prof dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  width: 100%;
}

.co-prof dl._no_bd dt {
  padding-top: 0;
}

.co-prof dl._no_bd dt::before {
  display: none;
}

.co-prof dl._no_bd dd {
  padding-top: 0;
  border: none;
}

.co-prof dl:last-child dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #009bdc;
  background: -webkit-gradient(linear, left top, left bottom, from(#009bdc), color-stop(50%, #0084c9), to(#1379d0));
  background: linear-gradient(to bottom, #009bdc 0%, #0084c9 50%, #1379d0 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.co-prof dl:last-child dd {
  border-bottom: solid 1px #ccc;
}

.co-prof dl dt {
  width: 160px;
  padding: 21px 0;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.co-prof dl dt::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #009bdc;
  background: -webkit-gradient(linear, left top, left bottom, from(#009bdc), color-stop(50%, #0084c9), to(#1379d0));
  background: linear-gradient(to bottom, #009bdc 0%, #0084c9 50%, #1379d0 100%);
  position: absolute;
  left: 0;
  top: 0;
}

.co-prof dl dd {
  margin: 0;
  padding: 21px 0 21px 40px;
  border-top: solid 1px #ccc;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
}

.co-prof dl dd .co-prof__auth {
  padding: 7px 0;
}

.co-prof dl dd .co-prof__auth li {
  margin: 0 0 30px;
}

.co-prof dl dd .co-prof__auth li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.co-prof dl dd .co-prof__auth li a:hover {
  color: #0092D4;
}

.co-prof dl dd .co-prof__auth li .co-prof__img {
  width: 16.375%;
  margin: 0 2.631578947% 0 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.co-prof dl dd .co-prof__auth li p {
  letter-spacing: 0;
  margin: 0;
  text-align: left;
}

.co-prof dl dd .co-prof__auth li._privacy_mark {
  margin: 0;
}

.co-prof dl dd .co-prof__auth li._privacy_mark img {
  width: 97px;
}

.co-prof dl dd a {
  line-height: 2.0;
}

/* デジタルガレージグループ */
.group p {
  letter-spacing: 0;
}

.gr-wrap {
  padding-top: 90px;
}

.gr-sec__headline {
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 32px;
}

.gr-sec__headline strong {
  font-family: "Montserrat", sans-serif;
  font-size: 7.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.0;
  margin: 0 10px 0 -6px;
}

.gr-concept {
  letter-spacing: 0;
  /*margin: 88px 0 0;*/
  /*202305変更*/
  margin: 88px 0 50px;
}

.gr-concept .c-headline-l2 {
  color: #005fae;
  text-align: center;
  font-weight: 700;
}

.gr-concept__lead {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  margin: 32px 0 0;
}

.gr-concept__lead+p {
  margin: 20px 0 0;
}

.gr-concept__img {
  text-align: center;
  margin: 56px 0 0;
}

.gr-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gr-col:nth-of-type(even) .gr-col__txt {
  overflow: hidden;
  padding: 90px 60px 65px 0;
}

.gr-col:nth-of-type(even) .gr-col__txt .gr-col__inner {
  float: right;
}

.gr-col:nth-of-type(odd) .gr-col__img {
  overflow: hidden;
  padding: 100px 60px 100px 0;
}

.gr-col:nth-of-type(odd) .gr-col__img .gr-col__inner {
  float: right;
}

.gr-col:nth-of-type(odd) .gr-col__txt {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.gr-col__txt {
  width: 50%;
  padding: 90px 0 65px 60px;
}

.gr-col__txt .c-btn {
  width: 430px;
  margin-top: 42px;
}

.gr-col__img {
  width: 50%;
  min-height: 494px;
  padding: 100px 0 100px 60px;
  background: url(/company/images/about/bg_ft_pc.jpg) no-repeat center center;
  background-size: cover;
}

.gr-col__inner {
  width: 91.293322062%;
}

.gr-col__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1.9444444444% -21.5px;
}

.gr-col__list li {
  background: #fff;
  width: 29.590017825%;
  margin: 0 1.871657754% 21px;
}

.gr-col__list li a {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.gr-col__list li a:hover {
  opacity: .7;
}

.gr-lti {
  background: rgba(65, 135, 153, 0.1);
  margin: 0;
}

.gr-lti h2 strong {
  color: #418799;
}

.gr-lti .gr-col__img {
  background-image: url(/company/images/about/bg_lti_pc.jpg);
}

.gr-mt {
  background: rgba(65, 135, 153, 0.1);
}

.gr-mt h2 strong {
  color: #418799;
}

.gr-mt .gr-col__img {
  background-image: url(/company/images/about/bg_mt_pc.jpg);
}

.gr-mt__box {
  margin: 42px 0 0;
  background: #fff;
  padding: 20px 40px 26px;
}

.gr-mt__box dl {
  margin: 0;
}

.gr-mt__box dl dt {
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 3px;
}

.gr-mt__box dl dd {
  margin: 0;
}

.gr-mt__box dl dd li {
  font-size: 1.4rem;
  line-height: 2.0;
  padding: 0 0 0 15px;
  position: relative;
}

.gr-mt__box dl dd li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #0092d4;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}

.gr-it {
  background: rgba(74, 121, 240, 0.09);
}

.gr-it h2 strong {
  color: #475e98;
}


.gr-it .gr-col__img {
  background-image: url(/company/images/about/bg_it_pc.jpg);
}

.gr-lti {
  background: rgba(65, 135, 153, 0.1);
}

.gr-lti h2 strong {
  color: #418799;
}

.gr-lti .gr-col__img {
  background-image: url(/company/images/about/bg_lti_pc.jpg);
}

.gr-dglab {
  background: #f3f3f3;
}

.gr-dglab .gr-sec__headline strong {
  font-size: 6.0rem;
  letter-spacing: 0;
}

.gr-dglab .gr-col__img {
  background-image: url(/company/images/about/bg_dglab_pc.jpg);
}

/* 役員一覧 */
.di-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 -56px;
}

.di-info__list li {
  width: 450px;
  margin: 0 0 56px;
}

.di-info__list li p {
  text-align: center;
  margin: 10px 0 0;
  letter-spacing: 0;
}

.di-info__list li p em {
  font-style: normal;
  font-size: 2.0rem;
  font-weight: 400;
  line-height: 1.6;
}

/* ベリトランスのあゆみ */
.history p {
  letter-spacing: 0;
}

.history p+p {
  margin: 32px 0 0;
}

.hi-wrap {
  padding-top: 90px;
}

.hi-sec {
  background: no-repeat center bottom/ cover;
  color: #fff;
}

.hi-sec__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 757px;
}

.hi-sec__header {
  width: 45%;
  padding: 98px 0;
}

.hi-sec__headline {
  font-size: 3.0rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0 0 40px;
  text-align: center;
}

.hi-sec__headline span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 23px 0 0;
}

.hi-sec__headline span strong {
  font-family: "Montserrat", sans-serif;
  font-size: 6.0rem;
  font-weight: 400;
  line-height: 1.0;
  margin: 0 30px;
  position: relative;
}

.hi-sec__headline span strong::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -52px;
}

.hi-sec__headline span strong+strong::before {
  display: none;
}

.hi-sec__list {
  width: 45.83333333%;
  /*padding: 93px 0 116px;*/
  padding: 93px 0 90px;
  position: relative;
}

.hi-sec__list::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 116px;
  bottom: 0;
}

.hi-sec__list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.hi-sec__list dl+dl {
  margin: 44px 0 0;
}

.hi-sec__list dl dt {
  width: 128px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  margin: 0 30px 0 0;
  position: relative;
}

.hi-sec__list dl dt::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 7px;
}

.hi-sec__list dl dd {
  letter-spacing: 0;
  margin: 0;
}

.hi-per01 {
  background-image: url(/company/images/about/bg_history_01_pc.jpg);
  margin: 95px 0 0;
}

.hi-per01 .hi-sec__list::before {
  height: calc(100% - 110px);
}

.hi-per02 {
  background-image: url(/company/images/about/bg_history_02_pc.jpg);
  color: #333;
}

.hi-per02 .hi-sec__headline {
  color: #00366c;
}

.hi-per02 .hi-sec__headline strong::before {
  background: #00366c;
}

.hi-per02 .hi-sec__list::before {
  background: #00366c;
}

.hi-per02 .hi-sec__list dl dt {
  color: #00366c;
}


.hi-per02 .hi-sec__list dl dt::before {
  background: #00366c;
}

.hi-per03 {
  background-image: url(/company/images/about/bg_history_03_pc.jpg);
}

.hi-per03 .hi-sec__headline span {
  margin-right: 60px;
}

.hi-per03 .hi-sec__list::before {
  height: calc(100% - 140px);
  top: 0;
  bottom: auto;
}

/* 電子公告 */
.pn-info {
  padding-top: 88px;
}

.pn-info__txt {
  letter-spacing: 0;
}

.pn-info__list {
  margin: 52px 0 0;
}

.pn-info__list li+li {
  margin: 2px 0 0;
}

.pn-info__list li a {
  background: #eaf7ff;
  color: #0092D4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 80px;
  letter-spacing: 0;
  padding: 0 100px 0 30px;
  position: relative;
}

.pn-info__list li a i {
  width: 34px;
  height: 26px;
  background: url(/company/images/icn_pdf.png) no-repeat center center;
  background-size: 34px auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
}

.pn-info__list li a::before {
  background: #fff;
}

.pn-info__list li a:hover i {
  background-image: url(/company/images/icn_pdf_blue.png);
}

.pn-info__list li a:hover::before {
  -webkit-transform: none;
  transform: none;
}

/* アクセス */
.map .c-headline-l2 {
  color: #005fae;
  text-align: center;
}

.map-info {
  padding-top: 90px;
}

.map-sec {
  padding: 67px 0 55px;
}

.map-sec+.map-sec {
  padding: 55px 0 0;
}

.map-info__prof {
  margin: 60px 0 0;
}

.map-info__prof dl dt i {
  width: 17px;
  display: inline-block;
  margin: 0 14px 0 0;
}

.map-info__prof dl._address dt i img {
  width: 13px;
}

.map-info__prof dl._tel dt i img {
  width: 16px;
}

.map-info__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 50px 0 0;
}

.map-info__access>div {
  width: 50%;
}

.map-info__access>div:nth-child(2) dt {
  width: 100px;
}

.map-info__access dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0;
  margin: 0;
}

.map-info__access dl dt {
  width: 165px;
  font-weight: 700;
}

.map-info__access dl dd {
  margin: 0;
}

.map-info__box {
  width: 100%;
  height: 500px;
  margin: 45px 0 0;
}

/*==================
* 事業領域
==================*/
.bu-header .c-page-header__top {
  background-image: url(/company/images/business/bg_header_pc.jpg);
}

.bu-header .c-page-header__top .c-headline {
  color: #fff;
}

.bu-header .c-page-header__top .c-headline span {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.bu-sec {
  padding: 80px 0;
}

.bu-sec:nth-of-type(2) {
  background: #eaf7ff;
}

.bu-sec:last-child {
  padding-bottom: 120px;
}

.bu-sec h2 {
  color: #005fae;
  text-align: center;
}

.bu-top {
  background: #fff url(/company/images/business/bg_top_pc.jpg) no-repeat top center;
  background-size: 100% auto;
  padding: 92px 0 74px;
  letter-spacing: 0;
}

.bu-top__headline {
  font-size: 2.4rem;
  line-height: 1.6;
  margin: 0 0 45px;
}

.bu-top__txt {
  margin: 0 0 52px;
}

.bu-top img {
  margin: 0 0 30px;
}

.bu-sec__item {
  padding: 60px 0;
}

.bu-sec__item+.bu-sec__item {
  border-top: dotted 1px #333;
}

.bu-sec__item:first-of-type {
  margin: 60px 0 0;
  padding-top: 0;
}

.bu-sec__item:last-child {
  padding-bottom: 0;
}

.bu-sec__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bu-sec__img {
  width: 45%;
}

.bu-sec__txt {
  width: 50%;
}

.bu-sec__txt dl {
  margin: 0;
}

.bu-sec__txt dl+dl {
  margin: 32px 0 0;
}

.bu-sec__txt dt {
  color: #333;
}

.bu-sec__service {
  margin: 40px 0 0;
}

.bu-sec__service dt {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.0;
  margin: 0 0 20px;
}

.bu-sec__service dd {
  margin: 0;
}

.bu-sec__service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}

.bu-sec__service__list._bd li {
  border: solid 1px #ccc;
}

.bu-sec__service__list li {
  width: 224px;
  margin: 0 10px;
}

.bu-sec__service__list li a {
  background: #fff;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.bu-sec__service__list li a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.bu-sec__service__list li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url(/company/images/icn_blank.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.bu-sec__service__list li a>span {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.bu-sec__service__list li a>span em {
  display: block;
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: normal;
  font-weight: 400;
}

.bu-sec__service__list li a p {
  color: #555;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  text-align: center;
  -webkit-transition: color .3s;
  transition: color .3s;
}

.bu-sec__service__list li a p em {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-style: normal;
}

.bu-sec__service__list li a p._small {
  font-size: 2.0rem;
  letter-spacing: 0;
}

.bu-sec__service__list li a p._small span {
  font-size: 2.2rem;
}

.bu-sec__service__list li a:hover::before {
  opacity: 1;
}

.bu-sec__service__list li a:hover::after {
  background-image: url(/company/images/icn_blank_wh.png);
}

.bu-sec__service__list li a:hover span {
  opacity: 1;
}

.bu-sec__service__list li a:hover p {
  color: #fff;
  z-index: 1;
}

.bu-sec__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 -40px;
}

.bu-sec__other li {
  border: solid 1px #ccc;
  width: 48.33333333%;
  margin: 0 0 40px;
  padding: 40px 40px 30px;
}

.bu-sec__other li dl {
  margin: 40px 0 0;
}

.bu-sec__other li dl dt {
  color: #333;
  text-align: center;
}

/*==================
* CONTACT
==================*/
.in-header .c-page-header__top {
  background-image: url(/company/images/inquiry/bg_header_pc.jpg);
}

/* 一覧 */
.in-top {
  padding-top: 110px;
}

.in-top__list {
  margin: 52px 0 0;
}

/* フォーム */
.f-required {
  background: #ff5252;
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.0;
  padding: 7px 9px;
}

.form {
  width: 800px;
  margin: 0 auto;
  padding-top: 110px;
}

.form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.form dl+dl {
  margin: 40px 0 0;
}

.form dl dt {
  letter-spacing: 0;
  width: 220px;
  padding: 13px 0 0;
  position: relative;
}

.form dl dt .f-required {
  position: absolute;
  top: 17px;
  right: 0;
}

.form dl dd {
  margin: 0;
  padding: 0 0 0 40px;
  width: 580px;
}

.form input[type=text],
.form textarea {
  background: #f3f3f3;
  height: 60px;
  width: 100%;
  padding: 15px;
}

.form input[type=text]._error,
.form textarea._error {
  border: solid 1px #ff5252;
}

.form textarea {
  height: 200px;
}

.f-txt {
  letter-spacing: 0;
  text-align: center;
  margin-top: 40px;
}

.f-txt:first-child {
  margin-top: 0;
}

.f-txt .f-required {
  margin: 0 9px 0 0;
}

.f-txt+dl {
  margin: 60px 0 0;
}

.f-error {
  font-size: 1.4rem;
  color: #ff5252;
  margin: 2px 0 0;
}

.f-btn {
  width: 520px;
  margin: 32px auto 0;
}

.f-btn a {
  border: solid 1px;
  height: 46px;
  font-size: 1.4rem;
}

.f-check {
  margin: 50px 0 0;
}

.f-check__wrap {
  background: #eaf7ff;
  margin: 22px 0 0;
  padding: 27px 0;
  text-align: center;
}

.f-checkbox {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.f-checkbox input {
  display: none;
}

.f-checkbox input:checked+span::after {
  opacity: 1;
}

.f-checkbox span {
  display: inline-block;
  padding: 0 0 0 48px;
  position: relative;
  cursor: pointer;
}

.f-checkbox span::before,
.f-checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.f-checkbox span::before {
  background: #fff;
  width: 26px;
  height: 26px;
  left: 5px;
}

.f-checkbox span::after {
  width: 12px;
  height: 8px;
  border-left: solid 2px #333;
  border-bottom: solid 2px #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -2px;
  left: 12px;
  opacity: 0;
}

.contact-form-submit {
  background: #aaa;
  width: 300px;
  margin: 60px auto 0;
  overflow: hidden;
  position: relative;
}

.contact-form-submit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
}

.contact-form-submit.is-checked {
  background: #000;
}

.contact-form-submit.is-checked:hover::before {
  -webkit-transform: none;
  transform: none;
}

.contact-form-submit input {
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  height: 60px;
  width: 100%;
  text-align: center;
  position: relative;
}

.f-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px 0 0;
}

.f-btn-list li {
  width: 260px;
  margin: 0 10px;
}

.f-btn-list .c-btn a {
  border: solid 1px #000;
  height: 60px;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
}

.confirm dl {
  border-bottom: solid 1px #ccc;
}

.confirm dl:first-of-type {
  border-top: solid 1px #ccc;
}

.confirm dl dt {
  padding: 25px 0;
}

.confirm dl dt .f-required {
  top: 30px;
}

.confirm dl dd {
  letter-spacing: 0;
  padding: 25px 0 29px 40px;
}

.confirm dl+dl {
  margin: 0;
}

.complete {
  padding-top: 115px;
}

.complete .f-comp__txt {
  font-size: 3.6rem;
  letter-spacing: 0;
  line-height: 1.0;
  text-align: center;
  margin: 0 0 52px;
}

.complete .c-btn {
  margin: 52px auto 0;
}

/*==================
* NEWS
==================*/
.info-header .c-page-header__top {
  background-image: url(/company/images/info/bg_header_pc.jpg);
}

.info-header .c-page-header__top .c-headline {
  color: #fff;
}

.info-header .c-page-header__top .c-headline span {
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
}

.info-date {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #888;
  width: 118px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.info-tag {
  background: #000;
  color: #fff;
  width: 120px;
  height: 26px;
  line-height: 26px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 1.3rem;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
}

.info-txt {
  margin: 0 0 0 40px;
  letter-spacing: 0;
}

.info-txt span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 2.3;
  color: #ff5065;
  margin: 0 0 0 15px;
}

.info-txt a {
  -webkit-transition: color .2s;
  transition: color .2s;
}

.info-txt a:hover {
  color: #0092D4;
  text-decoration: underline;
}

.info-top {
  background: #eaf7ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px;
}

.info-top__select {
  width: 230px;
  background: #fff;
  margin: 0 0 0 auto;
  position: relative;
}

.info-top__select label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.2rem;
  height: 46px;
  width: 100%;
  position: relative;
}

.info-top__select label::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: solid 1px #000;
  border-bottom: solid 1px #000;
  margin: auto;
  position: absolute;
  top: -3px;
  bottom: 0;
  right: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.info-top__select select {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}

.info-headline {
  color: #005fae;
  margin: 56px 0 0;
  text-align: center;
}

.info-list {
  margin: 40px 0 0;
}

.info-list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin: 0;
  min-height: 85px;
  padding: 21px 0;
  border-top: solid 1px #ccc;
}

.info-list dl:last-of-type {
  border-bottom: solid 1px #ccc;
}

.info-pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 60px 0 0;
}

.info-pages__item {
  width: 35px;
  margin: 0 7px;
}

.info-pages__item a {
  color: #999;
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-align: center;
  -webkit-transition: color .2s;
  transition: color .2s;
}

.info-pages__item a span {
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  border-bottom: solid 1px transparent;
  line-height: 1.5;
}

.info-pages__item a.is-active {
  color: #333;
  pointer-events: none;
}

.info-pages__item--btn {
  margin: 0;
  border-right: solid 1px #ccc;
  width: auto;
}

.info-pages__item--btn a {
  font-size: 1.6rem;
  padding: 0 15px;
}

.info-pages__item--btn:last-child {
  border-right: none;
}

.info-pages__item--btn:nth-last-child(-n + 2) {
  border-right: none;
  border-left: solid 1px #ccc;
}

.info-pages__item--btn:nth-last-child(-n + 2) i {
  margin: 0 0 0 10px;
}

.info-pages__item--btn:nth-last-child(-n + 2) i::after {
  right: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.info-pages__item--btn i {
  display: inline-block;
  width: 18px;
  height: 11px;
  position: relative;
  margin: 0 10px 0 0;
}

.info-pages__item--btn i::before,
.info-pages__item--btn i::after {
  content: "";

  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.info-pages__item--btn i::before {
  height: 1px;
  width: 100%;
  background: #999;
}

.info-pages__item--btn i::after {
  width: 6px;
  height: 6px;
  border-right: solid 1px #999;
  border-bottom: solid 1px #999;
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.info-pages__item--btn._prev {
  margin: 0 43px 0 0;
}

.info-pages__item--btn._next {
  margin: 0 0 0 43px;
}

/* 詳細 */
.info-art__head {
  position: relative;
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
  margin: 0 0 60px;
}

.info-art__head .info-new {
  display: inline-block;
  color: #ff5065;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  margin: 0 20px 0 0;
}

.info-art__head .info-date {
  width: 100px;
  display: inline-block;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

.info-art__head .info-tag {
  display: inline-block;
}

.info-art__head .info-share {
  margin: 0 0 0 auto;
  font-size: 0;
  letter-spacing: 0;
  word-spacing: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.info-art__head .info-share li {
  display: inline-block;
  vertical-align: middle;
  line-height: 0;
}

.info-art__head .info-share li:last-child {
  margin: 0 0 0 3px;
}

.info-art__head h2 {
  color: #005fae;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 10px 0 0;
}

.info-art__head .info-art__sub {
  font-size: 2.0rem;
  letter-spacing: 0;
  margin: 12px 0 0;
}

.info-art__body p {
  letter-spacing: 0;
}

.info-art__body p+p {
  margin: 32px 0 0;
}

.info-art__body p+.info-art__img {
  margin: 52px 0 0;
}

.info-art__body p+.info-art__note {
  margin: 45px 0 0;
}

.info-art__body p.info-art__ttl+p {
  margin: 0;
}

.info-art__body p.info-art__img {
  text-align: center;
}

.info-art__body p.info-art__img+p {
  margin: 50px 0 0;
}

.info-art__body .c-link-l2:hover {
  text-decoration: underline;
}

.info-art__body h3 {
  font-size: 2.4rem;
  color: #005fae;
  letter-spacing: 0;
  line-height: 1.3;
  margin: 68px 0 0;
}

.info-art__body h3+p {
  margin: 48px 0 0;
}

.info-art__body h3+.info-art__box {
  margin-top: 16px;
}

.info-art__body .info-art__note {
  text-indent: -1em;
  padding-left: 1em;
}

.info-art__body .info-art__note+.info-art__note {
  margin: 0;
}

.info-art__body .info-art__links {
  margin: 16px 0 0;
}

.info-art__body .info-art__links li a {
  display: block;
  height: auto;
  font-size: 1.6rem;
  padding: 21.5px 0;
  -webkit-transition: color .3s;
  transition: color .3s;
  position: relative;
}

.info-art__body .info-art__links li a ._pdf {
  width: 34px;
  height: 26px;
  background-size: 34px auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
}

.info-art__body .info-art__links li a:hover {
  text-decoration: underline;
  color: #0092D4;
}

.info-art__body .info-art__links li a::after {
  width: 13px;
  height: 10px;
  background-size: 13px 10px;
  vertical-align: middle;
}

.info-art__body .info-art__links li a.c-link-pdf {
  padding-right: 100px;
}

.info-art__body .info-art__box {
  margin: 68px 0 0;
  padding: 0;
}

.info-art__body .info-art__box dl {
  margin: 0;
  padding: 34px 40px;
}

.info-art__body .info-art__box dl+dl {
  border-top: solid 1px #ccc;
  padding-bottom: 45px;
}

.info-art__body .info-art__box dl dd p+p {
  margin: 11px 0 0;
}

.info-art__body .info-art__box dl dd p a {
  color: #0092D4;
}

.info-art__body .info-art__box .c-btn {
  width: 460px;
  margin: 20px 0 0;
}

.info-art__body .info-art__box .c-btn a {
  height: 60px;
  font-size: 1.8rem;
  letter-spacing: 0.14em;
}

.info-art__body .info-art__box+.info-art__note {
  margin: 10px 0 0;
}

.info-art__body .info-art__link+.info-art__link {
  margin: 0;
}

.info-art__body table th,
.info-art__body table td {
  border: solid 1px #ccc;
  padding: 15px;
}

.info-art__body table th {
  background: #f2f2f2;
}

.info-art__link a {
  color: #0092D4;
}

.info-art__link a:hover {
  text-decoration: underline;

}

.info-art__link._tel a::before {

  display: none;
}

.info-art__link._tel a span::before {
  background-image: url(/company/images/icn_tel.svg);
}

.info-art__link._tel span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px 0 0;
  width: 16px;
  height: 17px;
  background: url(/company/images/icn_tel_bl.svg) no-repeat center center;
  background-size: 16px 17px;
}

.info-art__link ._pdf {
  display: inline-block;
  width: 34px;
  height: 26px;
  background: url(/company/images/icn_pdf.png) no-repeat center center;
  background-size: cover;
  vertical-align: middle;
  margin: 0 0 0 10px;
}

.info-art__link span:hover {
  text-decoration: none;
}

.info-art__bottom {
  background: #eaf7ff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 60px 0 0;
  padding: 20px;
}

.info-art__bottom .info-art__link {
  margin: 0 0 0 auto;
}

.info-art__bottom .info-art__link a {
  letter-spacing: 0;
}

.info-art__bottom .c-btn a::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.info-art__bottom .c-btn a:hover::before {
  -webkit-transform: none;
  transform: none;
}

.info-art__bottom .c-btn i {
  right: auto;
  left: 11px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*/////20220527追記・ロゴダウンロード、規約 start/////*/
.logos_col {
  margin: 120px 0 0 0;
}

#logos section:last-of-type {
  margin-bottom: 100px;
}

.logoDL_h2 {
  color: #005fae;
  text-align: center;
}

.logos_col p {
  margin-bottom: 30px;
}

.logos_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 30px 0 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.logos_flex_4g {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.logos_flex li {
  width: calc(50% - 20px);
  margin: 5px;
  align-items: center;
}

.logos_flex_inner div {
  border: 1px solid #ccc;
  height: 314px;
  width: 490px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.logos_flex_inner-text {
  margin-top: 30px;
  font-size: 1.2em;
}

.logos_flex ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  text-align: center;
}

.logos_Dllist li+li {
  border-left: 1px solid #333;
}

.logos_flex ul li a {
  text-decoration: none;
}

.logos_flex ul li a:hover {
  color: #0092d4;
  text-decoration: none;
}

.logos_flex ul li a[href$=".zip"]::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(/company/info/uploads/logos_gipDLicon.png)no-repeat;
  background-size: 20px 20px;
  margin: 0 0 0.5em 1em;
}

.logos_flex ul li a:hover[href$=".zip"]::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(/company/info/uploads/logos_gipDLicon_on.png)no-repeat;
  background-size: 20px 20px;
  margin: 0 0 0.5em 1em;
}

/*ロゴ利用規約*/
.logos_ul {
  margin: 25px 0 0 -8px;
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.logos_de-list>li {
  counter-increment: num;
  padding: 0 0 0 20px;
  position: relative;
}

.logos_de-list> ::before {
  content: counter(num) ".";
  position: absolute;
  top: 0;
  left: 0;
}

.logos_ul>li+li,
p+ol,
.logos_de-list>li+li {
  margin: 32px 0 0;
}

.logos_ul ul li {
  padding: 0 0 0 2em;
}

/*//ロゴ利用規約*/
/*/////20220527追記・ロゴダウンロード、規約 end/////*/
/*==================
* 各種方針・宣言
==================*/
.de-header .c-page-header__top {
  background-image: url(/company/images/declaration/bg_header_pc.jpg);
}

.de-sec {
  letter-spacing: 0;
  padding-top: 90px;
}

.de-list {
  margin: 62px 0 0;

}

.de-list li {
  padding: 0 0 0 20px;
  counter-increment: list;
  position: relative;
}

.de-list li+li {
  margin: 32px 0 0;
}

.de-list li::before {
  content: counter(list) ". ";
  position: absolute;
  top: 0;
  left: 0;
}

.de-list+p {
  margin: 45px 0 0;
}

.de-box {
  background: #f3f3f3;
  margin: 50px 0;
  padding: 32px 40px;
}

.antisocial .de-list {
  margin-top: 30px;
}

/*==================
* サイトマップ
==================*/
.pr-header .c-page-header__top {
  background-image: url(/company/images/privacy/bg_header_pc.jpg);
}

.pr-sec .c-headline-l2 {
  margin: 0 0 50px;
}

.pr-sec .c-ttl {
  letter-spacing: 0;
}

.pr-sec .c-ttl+p {
  margin: 14px 0 0;
}

.pr-sec .c-p-dl+p {
  margin: 32px 0 0;
}

.pr-sec .c-p-dl dd .c-link-l2:hover {
  text-decoration: underline;
}

.pr-sec p {
  letter-spacing: 0;
}

.pr-sec p+p {
  margin: 32px 0 0;
}

.pr-sec p+.c-ttl {
  margin: 25px 0 0;
}

.pr-sec a:hover {
  text-decoration: underline;
}

.pr-box+.pr-box {
  margin: 40px 0 0;
}

.pr-box+.c-ttl {
  margin-top: 32px;
}

.pr-box._pd_nrw {
  padding: 26px 40px 32px;
}

.pr-box dl+dl {
  margin: 25px 0 0;
}

.pr-box dl ul {
  margin: 7px 0 0;
}

.pr-box--l2 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pr-box--l2 dl+dl {
  margin: 0;
}

.pr-box--l2 dl dt {
  margin: 0;
  width: 200px;
}

.pr-box--l2 dl+p {
  margin: 15px 0 0;
}

.privacy .pr-box {
  margin: 70px 0 0;
}

.te-header .c-page-header__top {
  background-image: url(/company/images/termofus/bg_header_pc.jpg);
}

/*===============================
* コーポレート・ガバナンス/コンプライアンス
===============================*/
.ac-header .c-page-header__top {
  background-image: url(/company/images/action/bg_header_pc.jpg);
}

.ac-links li a {
  display: block;
  height: auto;
  padding: 36px 20px;
}

.ac-links li div {
  display: block;
  position: relative;
  line-height: 1.0;
}

.ac-links li div>span {
  line-height: 1.5;
}

.ac-links li div>small {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 2.0;
}

.ac-sec {
  padding-top: 70px;
}

.ac-sec .c-headline-l2 {
  color: #005fae;
  margin: 92px 0 0;
  text-align: center;
}

.ac-sec p {
  letter-spacing: 0;
}

.ac-sec p+p {
  margin: 32px 0 0;
}

.ac-sec .c-p-dl {
  margin: 68px 0 0;
}

.governance .c-list-num {
  margin: 24px 0 0;
}

.compliance .cc-list {
  margin: 60px 0 0;
}

.compliance .cc-list li {
  background: #eaf7ff;
  padding: 21px 30px;
}

.compliance .cc-list li+li {
  margin: 20px 0 0;
}

/*==================
* サイトマップ
==================*/
.si-header .c-page-header__top {
  background-image: url(/company/images/sitemap/bg_header_pc.jpg);
}

.si-links li a {
  color: #0092D4;
  letter-spacing: 0;
}

.si-links li a:hover span::before {
  -webkit-transform: none;
  transform: none;
}

.si-links li a span {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.si-links li a span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #0092D4;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.si-links__item {
  padding: 33px 0 23px;
  border-top: solid 1px #ccc;
}

.si-links__item:last-child {
  border-bottom: solid 1px #ccc;
}

.si-links__item>a {
  font-size: 2.0rem;
  line-height: 1.6;
}

.si-links__sub {
  margin: 5px 0 0;
}

.si-links__sub li {
  display: inline-block;
  margin: 0 44px 0 0;
}

/*==================
* 検索結果一覧ページ
==================*/
.search .st-hd__conts {
  border-bottom: solid 1px #ccc;
}

.search .st-header.is-open .st-hd__conts {
  border-bottom: none;

}

.search .info-pages {
  margin: 40px 0 0;
}

.search-wrap {
  padding-top: 80px;
}

.search-box {
  background: #eaf7ff;
  padding: 30px 30px 32px;
}

.search-list {
  margin: 54px 0 0;
}

.search-list li {
  padding: 32px 0;
  border-bottom: solid 1px #ccc;
}

.search-list li:first-child {
  padding-top: 0;
}

.search-list li a {
  color: #0092d4;
  letter-spacing: 0;
}

.search-list li .c-ttl {
  letter-spacing: 0;
}

.search-list__url {
  line-height: 2.4;
}

.search-list__desc {
  letter-spacing: 0;
  line-height: 2.4;
  height: 76.8px;
  overflow: hidden;
}

/*==================
* 404
==================*/
.er-header {
  background: #eaf7ff;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.er-header h1 {
  font-size: 3.6rem;
  letter-spacing: 0;
  margin: 0;
  text-align: center;
}

.er-conts p {
  text-align: center;
}

.er-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 50px 0 0;
}

.er-list li {
  width: 360px;
  margin: 0 10px;
}

.er-list li a {
  height: 46px;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }

  .st-l-wrapper {
    min-width: inherit;
    padding: 50px 0 0;
  }

  .st-l-inner {
    max-width: inherit;
    padding: 0;
    margin: 0 20px;
  }

  .st-l-column {
    width: auto;
    margin: 0 20px;
  }

  .st-l-column._swd {
    width: auto;
  }

  .st-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }

  .st-hd__top {
    display: none;
  }

  .st-hd__conts {
    height: 50px;
    padding: 0;
  }

  .st-hd__logo {
    width: 143.5px;
    margin: 0 auto;
  }

  .st-hd__trigger {
    display: block;
  }

  .st-gnav {
    display: none;
    border-top: solid 1px #ccc;
    overflow: auto;

    width: 100vw;
    height: 100vh;
    padding-bottom: 60px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background: #fff;
  }

  .st-gn__list {
    display: block;
    margin: 0;
  }

  .st-gn__link {
    margin: 0;
    border-top: solid 1px #cccccc;
  }

  .st-gn__link.js-sub-menu>a {
    background: none;
  }

  .st-gn__link.js-sub-menu>a::before,
  .st-gn__link.js-sub-menu>a::after {
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    background: #0092d4;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }

  .st-gn__link.js-sub-menu>a::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .st-gn__link>a {
    background: url(/company/images/icn_arrow.png) no-repeat right 20px center;
    background-size: 16px auto;
    padding: 18px 20px;
    line-height: 1.0;
  }

  .st-gn__link>a.is-active::before {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .st-gn__link>a.is-active::after {
    display: none;
  }

  .st-gn__link--search {
    display: none;
  }

  .st-gn__sub_list li a::before {
    display: none;
  }

  .st-gn__sub_list {
    position: static;
    background: #f3f3f3;
    padding: 15px 0;
    text-align: left;
  }

  .st-gn__sub_list li {
    display: block;
    margin: 0;
  }

  .st-gn__sub_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #555;
    font-size: 1.3rem;
    line-height: 2.0;
    letter-spacing: 0.12em;
    padding: 7px 80px 7px 20px;
    background: url(/company/images/icn_arrow.png) no-repeat right 20px center;
    background-size: 16px auto;
  }

  .st-gn__sub_list li a:hover {
    color: #555;
  }

  .st-gn__sub_contact_list {
    display: block;
    margin: 0 20px;
  }

  .st-gn__sub_contact_list li {
    border: solid 1px #ccc;
    border-bottom: none;
  }

  .st-gn__sub_contact_list li a {
    display: block;
    background: url(/company/images/icn_arrow.png) no-repeat right 15px center;
    background-size: 16px auto;
    padding: 18px 20px;
    line-height: 1.0;
  }

  .st-gn__sub_contact_list li:last-child {
    border-bottom: solid 1px #ccc;
  }

  .st-gn__search {
    background: none;
    padding: 20px;
    position: static;
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
  }

  .st-gn__search__box {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    height: 50px;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }

  .st-gn__search__box input[type="text"] {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    padding: 0 40px 0 20px;
  }

  .st-gn__search__box input[type="submit"] {
    background-size: 100% auto;
    width: 22.5px;
    height: 22.5px;
    position: absolute;
    right: 18px;
    -webkit-transition: none;
    transition: none;
  }

  .st-footer .st-l-inner {
    margin: 0;
  }

  .st-ft__pagetop {
    width: 44px;
    height: 44px;
    bottom: 10px;
    right: 10px;
  }

  .st-ft__logo {
    padding: 0;
  }

  .st-ft__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 26px 20px;
  }

  .st-ft__logo img {
    width: 143.5px;
  }

  .st-ft__logo span {
    font-size: 1.2rem;
    /*margin: 0 0 0 auto;*/
    margin: 0 0 0 1em;
  }

  .st-ft__menu {
    display: block;
    padding: 0;
  }

  .st-ft__link__ttl {
    border-bottom: solid 1px #ccc;
  }

  .st-ft__link__ttl a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
    padding: 0 20px;
    background: url(/company/images/icn_arrow.png) no-repeat right 20px center;
    background-size: 16px auto;
  }

  .st-ft__link+.st-ft__link {
    margin: 0;
  }

  .st-ft__sub_menu {
    display: none;
  }

  .st-ft__sub_menu--other {
    display: block;
    margin: 0;
    border: none;
    padding: 22px 0 13px;
  }

  .st-ft__sub_menu--other ul li {
    margin: 0 7px 10px;
  }

  .st-ft__middle {
    padding: 30px 0 26px;
    overflow: hidden;
  }

  .st-ft__logo_list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -12.5px -7px;
  }

  .st-ft__logo_list a {
    -webkit-transition: none;
    transition: none;
  }

  .st-ft__logo_list a:hover {
    opacity: 1;
  }

  .st-ft__logo_list li {
    margin: 0 12.5px 7px;
  }

  .st-ft__logo_list li:first-child {
    width: 18%;
  }

  .st-ft__logo_list li:nth-child(2) {
    width: 20.875%;
  }

  .st-ft__logo_list li:nth-child(3) {
    width: 19.875%;
  }

  .st-ft__logo_list li:nth-child(4) {
    width: 31.875%;
  }

  .st-ft__logo_list li:last-child {
    width: 44.75%;
  }

  .st-ft__bottom {
    padding: 25px 0 30px;
  }

  .st-ft__copy {
    font-size: 1.1rem;
    line-height: 2.0;
  }

  .st-ft__group_logo {
    width: 204.5px;
    margin: 10px auto 0;
  }

  .c-breadcrumb__bg {
    padding: 0;
  }

  .c-breadcrumb {
    display: none;
  }

  .c-btn a:hover::before {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  .c-btn a:hover i::before {
    -webkit-animation: none;
    animation: none;
  }

  .c-btn i {
    right: 17px;
  }

  .c-headline {
    font-size: 3.0rem;
    text-align: center;
  }

  .c-headline small {
    font-size: 1.2rem;
    margin: 0 0 6px;
  }

  .c-headline--fs02 {
    font-size: 3.0rem;
  }

  .c-headline--fs02 small {
    font-size: 1.4rem;
    letter-spacing: 0;
  }

  .c-headline-l2 {
    font-size: 2.2rem;
  }

  .c-fs30 {
    font-size: 2.0rem;
  }

  a:hover .c-icon-arw::before {
    -webkit-animation: none;
    animation: none;
  }

  .c-l-pc {
    display: none;
  }

  .c-l-sp {
    display: block;
  }

  br.c-l-sp {
    display: inline-block;
  }

  .c-l-col {
    display: block;
  }

  .c-l-pages {
    padding: 40px 0 50px;
  }

  .c-hover::before {
    display: none;
  }

  .c-hover:hover::before {
    display: none;
  }

  .c-link-arrow span {
    margin: 0;
    padding: 0 24px 0 0;
  }

  .c-link-pdf:hover ._pdf {
    background-image: url(/company/images/icn_pdf.png);
  }

  .c-link--more {
    width: 230px;
    margin: 30px auto 0;
  }

  .c-link--more a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #000;
    color: #fff;
    height: 45px;
    padding: 0;
  }

  .c-link--more a::before {
    display: none;
  }

  .c-link--more a:hover {
    color: #fff;
  }

  .c-link--more a:hover::before {
    background: none;
    -webkit-animation: none;
    animation: none;
  }

  .c-link--more a:hover i::before {
    background-image: url(/company/images/icn_arrow_wh.png);
    -webkit-animation: none;
    animation: none;
  }

  .c-link--more i {
    right: 15px;
    top: 0;
    bottom: 0;
  }

  .c-link--more i::before {
    background-image: url(/company/images/icn_arrow_wh.png);
  }

  .c-link-l3::before {
    display: none;
  }

  .c-link-l3 span::before {
    display: none;
  }

  .c-link-mail:hover {
    text-decoration: none;
  }

  .c-link-mail::before {
    width: 15px;
    height: 10.5px;
    background-size: 15px 10.5px;
  }

  .c-page-header {
    background: none;
  }

  .c-page-header__top {
    margin: 0;
    height: 237.5px;
  }

  .c-page-header .c-headline {
    letter-spacing: 0.08em;
    text-align: left;
    margin: 0;
  }

  .c-page-header .c-headline small {
    font-size: 1.5rem;
    margin: 0 0 4px;
  }

  .c-page-header .c-headline--pages {
    font-size: 2.0rem;
    margin: 0;
  }

  .c-page-header .c-headline--pages small {
    font-size: 1.2rem;
    margin: 0 8px 0 0;
  }

  .c-page-header .c-headline--pages strong {
    font-size: 2.4rem;
    margin: 7px 0 0;
    padding: 0 0 0 37.5px;
  }

  .c-page-header .c-headline--pages strong::before {
    width: 27px;
  }

  .c-page-header .c-headline--pages._l2 strong {
    font-size: 2.0rem;
  }

  .c-page-header .c-headline--pages._l2 strong::before {
    top: 15px;
  }

  .c-p-links {
    margin: 32px 0 0;
  }

  .c-p-links li a {
    font-size: 1.6rem;
    height: 70px;
    padding: 0;
  }

  .c-p-links li a i {
    width: 16px;
    height: 9px;
    right: 0;
  }

  .c-p-dl {
    margin: 32px 0 0;
  }

  .c-p-dl+.c-p-dl {
    margin: 26px 0 0;
  }

  .c-p-dl>dt {
    font-size: 1.8rem;
  }

  .c-p-dl>dd {
    margin: 20px 0 0;
  }

  .c-p-dl>dd p+p {
    margin: 26px 0 0;
  }

  .c-p-dl__note {
    margin: 17px 0 0;
  }

  .c-p-table {
    table-layout: fixed;
    width: 100%;
    margin: 22px 0 0;
  }

  .c-p-table tr:first-child th {
    vertical-align: middle;
  }

  .c-p-table th {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 11px 2.66666666vw;
  }

  .c-p-table th:first-child {
    width: 28.358208955%;
  }

  .c-p-table td {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 11px 2.66666666vw;
    width: 71.641791044%;
  }

  .c-p-table td p+ol {

    margin: 16px 0 0;
  }

  .c-p-table td ol+p {
    margin: 16px 0 0;
  }

  .c-p-table--l2 td {
    padding-right: 2.66666666vw;
    width: 22.388059701%;
  }

  .c-p-table--l2 td:last-child {
    width: 23.7333333%;
  }

  .c-p-box {
    margin: 24px 0 0;
    padding: 13px 20px 20px;
  }

  .c-p-box dt {
    margin: 0 0 8px;
  }

  .c-ttl {
    font-size: 1.6rem;
    letter-spacing: 0;
  }

  .c-txt-small {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .c-list-num>li {
    padding: 0 0 0 15px;
  }

  .c-list-alpha>li {
    padding: 0 0 0 26px;
  }

  .c-list-alpha>li+li {
    margin: 26px 0 0;
  }

  .home-hero__copy {
    top: 30px;
    left: 30px;
    -webkit-transform: none;
    transform: none;
  }

  .home-hero__copy p img {
    width: 59%;
  }

  .home-hero__headline {
    margin: 0 0 15px;
  }

  .home-hero__headline img {
    width: 91.5942%;
  }

  .home-news {
    padding: 36px 0 50px;
  }

  .home-news .c-headline {
    float: none;
    margin: 0 0 25px;
  }

  .home-news .info-list {
    margin: 0;
    float: none;
    width: auto;
  }

  .home-about {
    padding: 36px 0 50px;
    background: url(/company/images/home/bg_sp.jpg) no-repeat center center;
    background-size: cover;
  }

  .home-about__bg {
    display: none;
  }

  .home-about__txt {
    margin: 25px 0 0;
  }

  .home-about__data {
    display: block;
    margin: 23px 0 0;
  }

  .home-about__data_txt {
    font-size: 1.0rem;
  }

  .home-about__item {
    width: 100%;
    background-image: url(/company/images/home/bg_item_sp.png);
    background-size: cover;
    padding: 3.2vw 0 4vw;
  }

  .home-about__item+.home-about__item {
    margin: 20px 0 0;
  }

  .home-about__item__ttl {
    font-size: 3.73333vw;
    margin: 0 0 8px;
  }

  .home-about__item__ttl span {
    margin: 0 8px;
  }

  .home-about__item__ttl::before,
  .home-about__item__ttl::after {
    width: 15px;
    height: 9px;
  }

  .home-about__item__num {
    letter-spacing: 0;
  }

  .home-about__item__num span {
    margin: 0 0 0 4.8vw;
  }

  .home-about__item__num strong {
    font-size: 11.2vw;
  }

  .home-about__item__num strong small {
    font-size: 4vw;
    letter-spacing: 0;
  }

  .home-about__item__num small {
    font-size: 4.8vw;
    letter-spacing: 0.12em;
  }

  .home-about__item__num sup {
    font-size: 2.66666vw;
    top: -1.6vw;
    left: 1.6vw;
  }

  .home-about__item--amount img {
    width: 9.2vw;
  }

  .home-about__item--count img {
    width: 7.73333vw;
  }

  .home-about__item--site img {
    width: 7.46667vw;
  }

  .home-sec:not(.home-about) {
    height: auto;
    padding: 40px 0 125px;
  }

  .home-sec:not(.home-about) .st-l-inner {
    position: static;
    width: auto;
    margin: 0 20px;
  }

  .home-sec__img {
    position: static;
    margin: 25px 0 0;
    width: 100%;
  }

  .home-sec__conts {
    width: 100%;
    position: static;
    -webkit-transform: none;
    transform: none;
  }

  .home-sec__txt {
    margin: 27px 0 0;
  }

  .home-sec__btn {
    margin: 0 auto;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
  }

  .home-bus {
    display: block;
    height: auto;
    padding: 40px 0 125px;
    background: white;
    background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #e2faff), to(#e2faff));
    background: linear-gradient(to bottom, white 0%, #e2faff 30%, #e2faff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e2faff', GradientType=0);
  }

  .home-message {
    background: none;
    height: auto;
  }

  .home-message .home-sec__conts {
    width: auto;
  }

  .home-links {
    background-image: url(/company/images/home/bg_links_sp.jpg);
    padding: 40px 0;
  }

  .home-links ul {
    display: block;
  }

  .home-links li {
    width: 100%;
    margin: 0;
  }

  .home-links li img {
    width: 100%;
  }

  .home-links li+li {
    margin: 30px 0 0;
  }

  .home-links li p {
    background-position: right 10px center;
    background-size: 15px auto;
    height: 40px;
  }

  .co-header .c-page-header__top {
    background-image: url(/company/images/about/bg_header_sp.jpg);
  }

  .about-link {
    margin: 46px 0 0;
  }

  .about-link .c-headline {
    text-align: left;
  }

  .about-link__nav {
    margin: 16px 0 0;
  }

  .about-link__nav li {
    width: 50%;
    border-right: none;
  }

  .about-link__nav li:nth-child(2n) {
    border-left: solid 1px #ccc;
  }

  .about-link__nav li a {
    height: 50px;
    font-size: 1.1rem;
    letter-spacing: 0;
    padding: 0 30px 0 10px;
  }

  .about-link__nav li a i {
    right: 10px;
  }

  .about-link__nav li a.is-current span::before {
    display: none;
  }

  .about-link__nav li._ft span {
    display: inline;
  }

  .co-sec {
    padding: 0;
  }

  .co-sec .st-l-inner {
    margin: 0;
  }

  .co-sec .c-headline {
    margin: 0 0 15px;
  }

  .co-sec .c-btn {
    margin: 24px auto 0;
  }

  .co-sec--message {
    padding: 0;
  }

  .co-sec--message .co-col__txt {
    position: static;
    -webkit-transform: none;
    transform: none;
    padding: 26px 20px 60px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .co-col {
    display: block;
  }

  .co-col__img {
    width: 100%;
  }

  .co-col__txt {
    width: 100%;
    padding: 30px 20px 60px;
  }

  .co-col__sub_ttl {
    font-size: 1.4rem;
    line-height: 2.0;
    margin: 0 0 8px;
    text-align: center;
  }

  .co-other {
    background-image: url(/company/images/bg_base_sp.jpg);
    margin: 0;
    padding: 40px 20px;
  }

  .co-other__headline small {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .co-other__headline span {
    font-size: 2.0rem;
    line-height: 1.2;
  }

  .co-other__links {
    display: block;
  }

  .co-other__link {
    width: 100%;
  }

  .co-other__link a {
    height: 160px;
  }

  .co-other__link a::after {
    display: none;
  }

  .co-other__link a:hover::after {
    border-color: transparent;
  }

  .co-other__link a:hover span {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .co-other__link a:hover .co-other__icn {
    opacity: 1;
    margin-top: 0;
    visibility: visible;
    -webkit-transform: none;
    transform: none;
    height: auto;
  }

  .co-other__link--overview .co-other__icn img {
    width: 32.5px;
    height: 26.5px;
  }

  .co-other__link--directors .co-other__icn img {
    width: 39px;
    height: 21.5px;
  }

  .co-other__link--group .co-other__icn img {
    width: 42.5px;
    height: 34.5px;
  }

  .co-other__link--publication .co-other__icn img {
    width: 27.5px;
    height: 26.5px;
  }

  .co-other__link:last-child a {
    height: 70px;
  }

  .co-other__link:last-child a h3 {
    padding: 0 30px 0 0;
  }

  .co-other__link:last-child a i {
    width: 16px;
    height: 9px;
  }

  .co-other__conts {
    margin: 5px 0 0;
  }

  .co-other__txt {
    display: none;
  }

  .co-other__icn {
    margin: 0 0 9px;
  }

  .m-sec {
    padding-bottom: 50px;
  }

  .m-top {
    background-image: url(/company/images/about/bg_message_sp.jpg);
    display: block;
    height: auto;
    padding-top: 153.86666666666%;
    position: relative;
  }

  .m-top__conts {
    margin-top: 0;
    padding-top: 40px;
    position: absolute;
    top: 0;
  }

  .m-top h2 {
    font-size: 5.8666666vw;
  }

  .m-top__name {
    margin: 16px 0 0;
  }

  .m-top__name {
    line-height: 1.8;
  }

  .m-top__name strong {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 0 0 9px;
  }

  .m-desc {
    margin: 32px 0 0;
  }

  .m-desc p+p {
    margin: 28px 0 0;
  }

  .m-desc p+.m-desc__name {
    margin: 26px 0 0;
  }

  .m-desc__name {
    line-height: 1.8;
  }

  .m-desc__name strong {
    font-size: 2.0rem;
    line-height: 1.5;
  }

  .ft-wrap {
    padding-top: 30px;
  }

  .ft-sec {
    padding: 40px 0 33px;
  }

  .ft-sec__img {
    margin: 30px 0 0;
  }

  .ft-sec__txt {
    margin-top: 34px;
  }

  .ft-sec__txt+.ft-sec__txt {
    margin-top: 36px;
  }

  .ft-sec__txt p+p {
    margin: 26px 0 0;
  }

  .ft-sec__sub_h {
    font-size: 1.8rem;
    line-height: 1.4;
    margin: 0 0 20px;
  }

  .ft-model {
    margin: 35px 0 0;
  }

  .ft-model .st-l-column {
    margin: 34px 0 0;
  }

  .ft-market__list {
    display: block;
    margin: 30px 0 0;
  }

  .ft-market__list+p {
    margin: 16px 0 0;
  }

  .ft-market__list li {
    padding: 14px 0 18px;
    width: 100%;
  }

  .ft-market__list li+li {
    margin: 10px 0 0;
  }

  .ft-market__list li:nth-child(1) svg {
    width: 52px;
  }

  .ft-market__list li:nth-child(2) svg {
    width: 43.5px;
  }

  .ft-market__list li:nth-child(3) svg {
    width: 49px;
  }

  .ft-market__conts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .ft-market__ttl {
    font-size: 1.4rem;
    margin: 0 0 5px;
  }

  .ft-market__icn {
    height: auto;
    line-height: 0;
    margin: 7px 15px 0 0;
  }

  .ft-market__num {
    font-size: 1.8rem;
  }

  .ft-market__num strong {
    font-size: 5.25rem;
  }

  .ft-market__num strong {
    font-size: 14vw;
  }

  .ft-market__num strong small {
    font-size: 1.5rem;
  }

  .ft-market__num sup {
    font-size: 1.0rem;
    top: 38px;
  }

  .ft-str {
    padding-bottom: 40px;
  }

  .ft-str .ft-sec__txt {
    margin-top: 30px;
  }

  .ft-str__list li {
    padding: 25px 0 19px;
  }

  .ft-str__list li a {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    line-height: 1.8;
  }

  .ft-str__list li a:hover span::before {
    display: none;
  }

  .ft-str__logo {
    width: 29.850746268%;
    margin: 0 5.970149253% 0 0;
  }

  .ft-str__txt {
    margin-top: -6px;
  }

  .ft-str__link {
    font-size: 1.6rem;
    line-height: 1.6;
  }

  .ft-str__link span {
    display: inline;
  }

  .ft-str__link span::before {
    display: none;
  }

  .ft-topics {
    padding-bottom: 0;
  }

  .ft-topics__info {
    margin: 34px 0 0;
  }

  .ft-topics__info+.ft-topics__info {
    margin: 34px 0 0;
  }

  .ft-topics__info .c-ttl {
    margin: 0 0 25px;
  }

  .ft-topics__info .info-list dl {
    padding: 15.5px 0;
  }

  .ft-topics__list li a {
    padding: 13px 0;
  }

  .ft-topics__list li a ._pdf {
    display: inline-block;
    position: static;
    width: 17px;
    height: 13px;
    background-size: 17px auto;
  }

  .ft-topics__list li a:hover {
    color: #333;
    text-decoration: none;
  }

  .ft-topics__list li a:hover i {
    background-image: url(/company/images/icn_pdf.png);
  }

  .co-prof__conts p {
    text-align: center;
    margin: 0 0 26px;
  }

  .co-prof__conts+.co-prof__conts {
    margin-top: 46px;
  }

  .co-prof dl {
    display: block;
    border-top: solid 1px #ccc;
    padding: 23px 0;
  }

  .co-prof dl._no_bd {
    border-top: none;
    padding-top: 0;
  }

  .co-prof dl._no_bd dt {
    color: #0092d4;
  }

  .co-prof dl:last-child {
    border-bottom: solid 1px #ccc;
  }

  .co-prof dl:last-child dt::after {
    display: none;
  }

  .co-prof dl:last-child dd {
    border: none;
  }

  .co-prof dl dt {
    margin: 0 0 11px;
    padding: 0;
    font-weight: 700;
    line-height: 1.8;
  }

  .co-prof dl dt::before {
    display: none;
  }

  .co-prof dl dd .co-prof__auth {
    display: block;
  }

  .co-prof dl dd .co-prof__auth li a:hover {
    color: #333;
  }

  .co-prof dl dd .co-prof__auth li .co-prof__img {
    width: 39.10448%;
    margin: 0 5.970149253% 0 0;
  }

  .co-prof dl dd .co-prof__auth li._privacy_mark {
    text-align: center;
  }

  .co-prof dl dd {
    border: none;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0;
  }

  .group .c-headline strong {
    font-size: 2.0rem;
  }

  .gr-wrap {
    padding-top: 30px;
  }

  .gr-sec__headline {
    font-size: 1.6rem;
    margin: 0 0 16px;
  }

  .gr-sec__headline strong {
    font-size: 4.5rem;
    font-weight: 600;
    margin: 0 18px 0 -3px;
  }

  .gr-concept {
    margin: 40px 0 0;
  }

  .gr-concept .c-headline-l2 {
    line-height: 1.4;
  }

  .gr-concept__lead {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 20px 0 0;
  }

  .gr-concept__lead+p {
    margin: 17px 0 0;
  }

  .gr-concept__img {
    margin: 35px 0 0;
  }

  .gr-col {
    display: block;
  }

  .gr-col:nth-of-type(even) .gr-col__txt {
    padding: 40px 20px;
  }

  .gr-col:nth-of-type(even) .gr-col__txt .gr-col__inner {
    float: none;
  }

  .gr-col:nth-of-type(odd) .gr-col__img {
    padding: 35px 20px 50px;
  }

  .gr-col:nth-of-type(odd) .gr-col__img .gr-col__inner {
    float: none;
  }

  .gr-col__txt {
    width: 100%;
    padding: 40px 20px;
  }

  .gr-col__txt .c-btn {
    width: 100%;
    margin-top: 24px;
  }

  .gr-col__txt .c-btn a {
    font-size: 1.1rem;
    padding: 0 25px 0 0;
  }

  .gr-col__img {
    width: 100%;
    min-height: inherit;
    padding: 35px 20px 50px;
  }

  .gr-col__inner {
    width: 100%;
  }

  .gr-col__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 -15px;
  }

  .gr-col__list li {
    width: 47.761194029%;
    margin: 0 0 15px;
  }

  .gr-col__list li a:hover {
    opacity: 1;

    /*2023年５月追加*/
  }

  .gr-lti {
    margin: 0;
  }

  .gr-lti .gr-col__img {
    background-image: url(/company/images/about/bg_lti_sp.jpg);
  }

  .gr-mt .gr-col__img {
    background-image: url(/company/images/about/bg_mt_sp.jpg);
  }

  .gr-mt__box {
    margin: 22px 0 0;
    padding: 12px 20px 16px;
  }

  .gr-mt__box dl dt {
    margin: 0 0 10px;
  }

  .gr-mt__box dl dd li {
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 0 0 0 13px;
  }

  .gr-mt__box dl dd li::before {
    width: 4px;
    height: 4px;
    top: 8px;
  }

  .gr-mt__box dl dd li+li {
    margin: 5px 0 0;
  }

  .gr-it .gr-col__img {
    background-image: url(/company/images/about/bg_it_sp.jpg);
  }

  .gr-lti h2 {
    letter-spacing: -0.06em;
  }

  .gr-lti .gr-col__img {
    background-image: url(/company/images/about/bg_lti_sp.jpg);
  }

  .gr-dglab .gr-sec__headline strong {
    font-size: 4.5rem;
    margin-right: 10px;
  }

  .gr-dglab .gr-col__img {
    background-image: url(/company/images/about/bg_dglab_sp.jpg);
  }

  .di-info__list {
    display: block;
    margin: 0 0 -18px;
  }

  .di-info__list li {
    margin: 0 0 18px;
    width: 100%;
  }

  .di-info__list li p em {
    font-size: 1.8rem;
  }

  .history p+p {
    margin: 28px 0 0;
  }

  .hi-wrap {
    padding-top: 30px;
  }

  .hi-sec__col {
    display: block;
    min-height: inherit;
  }

  .hi-sec__header {
    width: 100%;
    padding: 58px 0 0;
  }

  .hi-sec__headline {
    font-size: 2.0rem;
    margin: 0 0 26px;
  }

  .hi-sec__headline span {
    margin: 11px 0 0;
  }

  .hi-sec__headline span strong {
    font-size: 3.0rem;
    margin: 0 15px;
  }

  .hi-sec__headline span strong::before {
    width: 20px;
    right: -25px;
  }

  .hi-sec__list {
    width: 100%;
    margin: 27px 0 0;
    /*padding: 0 0 54px;*/
    padding: 0 0 24px;
  }

  .hi-sec__list::before {
    left: 5px;
    height: calc(100% - 16px);
  }

  .hi-sec__list dl {
    display: block;
  }

  .hi-sec__list dl+dl {
    margin: 25px 0 0;
  }

  .hi-sec__list dl dt {
    width: auto;
    margin: 0 0 5px;
    padding: 0 0 0 25px;
  }

  .hi-sec__list dl dt::before {
    width: 12px;
    height: 12px;
    left: 0;
  }

  .hi-sec__list dl dd {
    padding: 0 0 0 25px;
  }

  .hi-per01 {
    margin: 34px 0 0;
    background-image: url(/company/images/about/bg_history_01_sp.jpg);
  }

  .hi-per01 .hi-sec__list::before {
    height: calc(100% - 16px);
  }

  .hi-per02 {
    background-image: url(/company/images/about/bg_history_02_sp.jpg);
  }

  .hi-per03 {
    background-image: url(/company/images/about/bg_history_03_sp.jpg);
  }

  .hi-per03 .hi-sec__headline span {
    margin-right: 35px;
  }

  .hi-per03 .hi-sec__list::before {
    height: calc(100% - 90px);
    top: 16px;
  }

  .pn-info {
    padding-top: 32px;
  }

  .pn-info__txt {
    line-height: 1.8;
  }

  .pn-info__list {
    margin: 34px 0 0;
  }

  .pn-info__list li a {
    height: auto;
    min-height: 78px;
    line-height: 1.8;
    padding: 14px 50px 14px 15px;
  }

  .pn-info__list li a i {
    right: 10px;
  }

  .pn-info__list li a:hover i {
    background-image: url(/company/images/icn_pdf.png);
  }

  .pn-info__list li a:hover::before {
    display: none;
  }

  .map-info {
    padding-top: 30px;
  }

  .map-sec {
    padding: 40px 0 30px;
  }

  .map-sec+.map-sec {
    padding: 30px 0 0;
  }

  .map-info__prof {
    margin: 30px 0 0;
  }

  .map-info__prof dl dt i {
    margin: 0 10px 0 0;
  }

  .map-info__access {
    display: block;
    margin: 30px 0 0;
  }

  .map-info__access>div {
    width: 100%;
  }

  .map-info__access>div:nth-child(2) dt {
    width: 44.776119402%;
    max-width: 150px;
  }

  .map-info__access dl dt {
    width: 44.776119402%;
    max-width: 150px;
  }

  .map-info__box {
    height: auto;
    padding: 100% 0 0;
    height: 30px 0 0;
  }

  .bu-header .c-page-header__top {
    background-image: url(/company/images/business/bg_header_sp.jpg);
  }

  .bu-sec {
    padding: 40px 0;
  }

  .bu-sec:last-child {
    padding-bottom: 50px;
  }

  .bu-top {
    background-image: url(/company/images/business/bg_top_sp.jpg);
    padding: 44px 0 38px;
  }

  .bu-top__headline {
    font-size: 1.8rem;
    margin: 0 0 20px;
  }

  .bu-top__txt {
    line-height: 1.8;
    margin: 0 0 27px;
  }

  .bu-top img {
    margin: 0 0 14px;
  }

  .bu-sec__item {
    padding: 30px 0;
  }

  .bu-sec__item:first-of-type {
    margin: 38px 0 0;
  }

  .bu-sec__col {
    display: block;
  }

  .bu-sec__img {
    width: 100%;
  }

  .bu-sec__txt {
    width: 100%;
  }

  .bu-sec__txt dl {
    margin: 27px 0 0;
  }

  .bu-sec__txt dl+dl {
    margin: 23px 0 0;
  }

  .bu-sec__txt dd {
    margin: 17px 0 0;
    line-height: 1.8;
  }

  .bu-sec__service {
    margin: 23px 0 0;
  }

  .bu-sec__service dt {
    font-size: 1.6rem;
  }

  .bu-sec__service__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 -15px;
  }

  .bu-sec__service__list li {
    width: 47.761194029%;
    margin: 0 0 15px;
  }

  .bu-sec__service__list li a {
    height: auto;
    padding: 45% 0 0;
  }

  .bu-sec__service__list li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .bu-sec__service__list li a img._v4g {
    width: 77.5%;
  }

  .bu-sec__service__list li a img._vair {
    width: 93.75%;
  }

  .bu-sec__service__list li a img._sumapay {
    width: 67.5%;
  }

  .bu-sec__service__list li a img._ato {
    width: 50.9375%;
  }

  .bu-sec__service__list li a img._ivr {
    width: 56.25%;
  }

  .bu-sec__service__list li a img._cash {
    width: 84.6875%;
  }

  .bu-sec__service__list li a img._mpos {
    width: 67.5%;
  }

  .bu-sec__service__list li a::before {
    display: none;
  }

  .bu-sec__service__list li a::after {
    width: 4.2666666vw;
    height: 3.2vw;
    right: 1.8666666vw;
    bottom: 6px;
  }

  .bu-sec__service__list li a>span {
    display: none;
  }

  .bu-sec__service__list li a p {
    font-size: 4vw;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }

  .bu-sec__service__list li a p em {
    font-size: 4vw;
  }

  .bu-sec__service__list li a p._small {
    font-size: 4vw;
  }

  .bu-sec__service__list li a p._small span {
    font-size: 4vw;
  }

  .bu-sec__service__list li a:hover::before {
    display: none;
  }

  .bu-sec__service__list li a:hover::after {
    background-image: url(/company/images/icn_blank.png);
  }

  .bu-sec__service__list li a:hover span {
    display: none;
  }

  .bu-sec__service__list li a:hover p {
    color: #333;
  }

  .bu-sec__other {
    display: block;
    margin: 0 0 -20px;
  }

  .bu-sec__other li {
    width: 100%;
    margin: 0 0 20px;
    padding: 20px 20px 16px;
  }

  .bu-sec__other li dl {
    margin: 15px 0 0;
  }

  .bu-sec__other li dl dd {
    margin: 11px 0 0;
    line-height: 1.8;
  }

  .in-header .c-page-header__top {
    background-image: url(/company/images/inquiry/bg_header_sp.jpg);
  }

  .in-top {
    margin: 0 15px;
  }

  .in-top__list {
    margin: 32px 0 0;
  }

  .form {
    width: auto;
    padding-top: 32px;
    margin: 0 15px;
  }

  .form dl {
    display: block;
  }

  .form dl+dl {
    margin: 20px 0 0;
  }

  .form dl dt {
    width: 100%;
    font-weight: 700;
  }

  .form dl dt .f-required {
    position: static;
    margin: 0 0 0 10px;
  }

  .form dl dd {
    margin: 15px 0 0;
    padding: 0;
    width: 100%;
  }

  .form input[type=text],
  .form textarea {
    height: 50px;
  }

  .form textarea {
    height: 100px;
  }

  .f-txt {
    text-align: left;
    margin-top: 32px;
  }

  .f-txt+dl {
    margin: 32px 0 0;
  }

  .f-btn {
    width: 100%;
  }

  .f-btn a {
    font-size: 1.2rem;
    line-height: 1.6;
    height: 56px;
  }

  .contact-form-submit {
    width: 230px;
    margin-top: 40px;
  }

  .contact-form-submit::before {
    display: none;
  }

  .contact-form-submit.is-checked:hover::before {
    display: none;
  }

  .contact-form-submit input {
    font-size: 1.4rem;
    height: 46px;
  }

  .f-btn-list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 40px 0 0;
  }

  .f-btn-list li {
    width: 230px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .f-btn-list li.contact-form-submit {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin: 0 0 20px;
  }

  .f-btn-list .c-btn a {
    height: 46px;
    font-size: 1.4rem;
  }

  .confirm dl {
    padding: 15px 0;
  }

  .confirm dl+dl {
    margin: 0;
  }

  .confirm dl dt {
    padding: 0;
  }

  .confirm dl dd {
    padding: 0;
  }

  .complete .f-comp__txt {
    font-size: 2.6rem;
    margin: 0 0 32px;
  }

  .complete .c-btn {
    margin-top: 32px;
  }

  .info-header .c-page-header__top {
    background-image: url(/company/images/info/bg_header_sp.jpg);
  }

  .info-date {
    width: 83px;
  }

  .info-tag {
    width: 78px;
    height: 17px;
    line-height: 17px;
    font-size: 1.0rem;
  }

  .info-txt {
    width: 100%;
    margin: 0;
  }

  .info-txt span {
    font-size: 1.2rem;
  }

  .info-txt a:hover {
    color: #004b91;
    text-decoration: none;
  }

  .info-top {
    padding: 15px;
  }

  .info-top .c-btn {
    width: 47.540983606%;
  }

  .info-top .c-btn a {
    letter-spacing: 0;
    font-size: 1.2rem;
    padding: 0 15px 0 0;
  }

  .info-top .c-btn i {
    right: 8.275862068%;
  }

  .info-top__select {
    width: 47.540983606%;
  }

  .info-top__select label::before {
    width: 6px;
    height: 6px;
    right: 10.344827586%;
  }

  .info-top__select select {
    font-size: 1.6rem;
  }

  .info-headline {
    margin: 40px 0 0;
  }

  .info-list {
    margin: 35px 0 0;
  }

  .info-list dl {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    min-height: inherit;
    padding: 16px 0;
  }

  .info-pages {
    margin: 40px 0 0;
  }

  .info-pages__item {
    display: none;
    width: 4.266666666vw;
    margin: 0 1.3333333vw;
  }

  .info-pages__item a {
    font-size: 3.2vw;
  }

  .info-pages__item--btn {
    display: block;
    width: auto;
    margin: 0;
  }

  .info-pages__item--btn a {
    font-size: 2.6666666666vw;
    letter-spacing: 0;
    padding: 5px 1.8vw;
  }

  .info-pages__item--btn:first-child a {
    padding-left: 0;
  }

  .info-pages__item--btn:last-child a {
    padding-right: 0;
  }

  .info-pages__item--btn:nth-last-child(-n + 2) i {
    margin: 0 0 0 1.333333vw;
  }

  .info-pages__item--btn i {
    margin: 0 1.333333vw 0 0;
    width: 3.733333333vw;
    height: 6px;
  }

  .info-pages__item--btn i::after {
    width: 4px;
    height: 4px;
  }

  .info-pages__item--btn._prev {
    margin: 0 2.6666666vw 0 0;
  }

  .info-pages__item--btn._next {
    margin: 0 0 0 2.6666666vw;
  }

  .info-art__head {
    margin: 0 0 30px;
  }

  .info-art__head .info-new {
    font-size: 1.4rem;
    margin: 0 10px 0 0;
  }

  .info-art__head .info-date {
    font-size: 1.4rem;
    width: 90px;
  }

  .info-art__head .info-share {
    position: static;
    margin: 10px 0 0;
  }

  .info-art__head h2 {
    font-size: 1.8rem;
    margin: 15px 0 0;
  }

  .info-art__head .info-art__sub {
    font-size: 1.6rem;
  }

  .info-art__body p+p {
    margin: 26px 0 0;
  }

  .info-art__body p+.info-art__img {
    margin: 32px 0 0;
  }

  .info-art__body p+.info-art__note {
    margin: 26px 0 0;
  }

  .info-art__body p.info-art__img+p {
    margin: 32px 0 0;
  }

  .info-art__body .c-link-l2:hover {
    text-decoration: none;
  }

  .info-art__body h3 {
    font-size: 1.8rem;
    margin: 40px 0 0;
  }

  .info-art__body h3+p {
    margin: 30px 0 0;
  }

  .info-art__body .info-art__links li a {
    font-size: 1.4rem;
    padding: 20px 0;
  }

  .info-art__body .info-art__links li a ._pdf {
    display: inline-block;
    position: static;
    width: 17px;
    height: 13px;
    background-size: 17px auto;
    margin: 0 0 0 7px;
  }

  .info-art__body .info-art__links li a:hover {
    color: #333;
    text-decoration: none;
  }

  .info-art__body .info-art__box {
    margin: 40px 0 0;
  }

  .info-art__body .info-art__box dl {
    padding: 15px;
  }

  .info-art__body .info-art__box dl+dl {
    padding-bottom: 20px;
  }

  .info-art__body .info-art__box dl dd p+p {
    margin: 7px 0 0;
  }

  .info-art__body .info-art__box .c-btn {
    width: 100%;
  }

  .info-art__body .info-art__box .c-btn a {
    height: auto;
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 15px 35px 16px 20px;
  }

  .info-art__link a:hover {
    text-decoration: none;
  }

  .info-art__bottom {
    margin: 30px 0 0;
    padding: 15px;
  }

  .info-art__bottom .info-art__link {
    margin: 0;
  }

  .info-art__bottom .c-btn {
    width: 47.540983606%;
  }

  .info-art__bottom .c-btn a {
    font-size: 1.2rem;
  }

  .de-header .c-page-header__top {
    background-image: url(/company/images/declaration/bg_header_sp.jpg);
  }

  .de-list {
    margin: 30px 0 0;
  }

  .de-list li+li {
    margin: 20px 0 0;
  }

  .de-list+p {
    margin: 30px 0 0;
  }

  .de-box {
    margin: 30px 0;
    padding: 13px 20px;
  }

  .pr-header .c-page-header__top {
    background-image: url(/company/images/privacy/bg_header_sp.jpg);
  }

  .pr-header .c-page-header__top .c-headline {
    text-shadow: 0 0 6px #fff;
  }

  .pr-sec .c-headline-l2 {
    margin: 0 0 30px;
  }

  .pr-sec .c-ttl+p {
    margin: 8px 0 0;
  }

  .pr-sec .c-p-dl dd .c-link-l2:hover {
    text-decoration: none;
  }

  .pr-sec p+.c-ttl {
    margin: 26px 0 0;
  }

  .pr-sec a:hover {
    text-decoration: none;
  }

  .pr-box+.pr-box {
    margin: 30px 0 0;
  }

  .pr-box+.c-ttl {
    margin-top: 26px;
  }

  .pr-box._pd_nrw {
    padding: 13px 20px 20px;
  }

  .pr-box dl+dl {
    margin: 18px 0 0;
  }

  .pr-box--l2 dl {
    display: block;
  }

  .pr-box--l2 dl+dl {
    margin-top: 10px;
  }

  .pr-box--l2 dl dt {
    width: auto;

    font-weight: 700;
  }

  .privacy .pr-box {
    margin: 35px 0 0;
  }

  .te-header .c-page-header__top {
    background-image: url(/company/images/termofus/bg_header_sp.jpg);
  }

  .te-header .c-page-header__top .c-headline {
    text-shadow: 0 0 10px #fff;
  }

  .ac-header .c-page-header__top {
    background-image: url(/company/images/action/bg_header_sp.jpg);
  }

  .ac-links li a {
    height: auto;
    padding: 15px 30px 15px 0;
  }

  .ac-links li div>small {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 5px 0 0;
  }

  .ac-sec .c-headline-l2 {
    margin: 43px 0 0;
  }

  .ac-sec p+p {
    margin: 26px 0 0;
  }

  .ac-sec .c-p-dl {
    margin: 32px 0 0;
  }

  .governance .c-list-num {
    margin: 18px 0 0;
  }

  .compliance .cc-list {
    margin: 30px 0 0;
  }

  .compliance .cc-list li {
    padding: 12px 20px;
  }

  .si-header .c-page-header__top {
    background-image: url(/company/images/sitemap/bg_header_sp.jpg);
  }

  .si-links li a span::before {
    display: none;
  }

  .si-links__item {
    padding: 20px 0 12px;
  }

  .si-links__item>a {
    font-size: 1.6rem;
  }

  .si-links__sub {
    margin: 5px -28px 0 0;
  }

  .si-links__sub li {
    margin: 0 28px 0 0;
  }

  .search-box {
    padding: 12px 20px;
  }

  .search-list {
    margin: 30px 0 0;
  }

  .search-list li {
    padding: 20px 0;
  }

  .search-list__desc {
    height: 67.2px;
  }

  .er-header {
    height: 180px;
  }

  .er-header h1 {
    font-size: 2.0rem;
  }

  .er-conts p {
    text-align: left;
  }

  .er-list {
    display: block;
  }

  .er-list li {
    width: 100%;
    margin: 0;
  }

  .er-list li+li {
    margin: 20px 0 0;
  }

  .er-list li a {
    font-size: 1.2rem;
  }

  /*20220527追加・ロゴダウンロード、規約*/
  .logos_col {
    margin: 10% 0 0 0;
  }

  .logoDL_h2 {
    margin: 0 0 4%;
  }

  .logos_col p {
    margin-bottom: 1em;
  }

  .logos_flex {
    display: block;
  }

  .logos_flex li {
    width: 100%;
    margin: 0 0 5%;
  }

  .logos_flex_inner div {
    border: 1px solid #ccc;
    height: auto;
    width: 100%;
    display: block;
    vertical-align: middle;
    text-align: center;
  }

  .logos_flex_inner-text {
    margin-top: 2%;
  }

  /*ロゴ利用規約*/
  .logos_ul>li+li,
  p+ol,
  .logos_de-list>li+li {
    margin: 12px 0 0;
  }

  .logos_ul ul li {
    text-indent: -1em;
    padding-left: 1em;
  }

  /*//ロゴ利用規約*/
  /*///20220527追加・ロゴダウンロード、規約*/
}

@media only screen and (max-width: 374px) {
  body {
    font-size: 3.733333333vw;
  }

  .st-ft__sub_menu ul li a {
    font-size: 3.46666666vw;
  }

  .c-headline--fs02 {
    font-size: 8vw;
  }

  .c-headline--fs02 small {
    font-size: 3.73333333vw;
  }

  .c-headline-l2 {
    font-size: 5.86666666vw;
  }

  .c-page-header .c-headline--pages._jp {
    font-size: 5.333333333vw;
  }

  .c-page-header .c-headline--pages strong {
    padding: 0 0 0 10vw;
  }

  .c-page-header .c-headline--pages._l2 strong {
    font-size: 5.3333333vw;
  }

  .c-p-links li a {
    font-size: 4.2666666vw;
  }

  .c-p-dl>dt {
    font-size: 4.8vw;
  }

  .co-col__sub_ttl {
    font-size: 3.73333333vw;
  }

  .ft-sec__sub_h {
    font-size: 4.8vw;
  }

  .ft-str__link {
    font-size: 4.2666666vw;
  }

  .group .c-headline strong {
    font-size: 5.333333vw;
  }

  .gr-sec__headline {
    font-size: 4.26666666vw;
  }

  .gr-sec__headline strong {
    font-size: 12vw;
    margin: 0 4.8vw 0 -3px;
  }

  .gr-concept__lead {
    font-size: 4.26666666vw;
  }

  .gr-col__txt .c-btn a {
    font-size: 2.93333333vw;
    padding: 0 6.6666666vw 0 0;
  }

  .gr-col__txt .c-btn a i {
    right: 2.5333333vw;
  }

  .hi-sec__list {
    /*padding: 0 0 14.4vw;*/
    padding: 0 0 8vw;
  }

  .map-info__prof dl dt i {
    width: 15px;
  }

  .map-info__prof dl._address dt i img {
    width: 10px;
  }

  .map-info__prof dl._tel dt i img {
    width: 14px;
  }

  .bu-top__headline {
    font-size: 4.8vw;
  }

  .info-top .c-btn i {
    width: 12px;
  }

  .info-art__head h2 {
    font-size: 4.8vw;
  }

  .info-art__head .info-art__sub {

    font-size: 4.26666666vw;
  }

  .info-art__body h3 {
    font-size: 4.3vw;
  }

  .info-art__body .info-art__note {
    font-size: 3.2vw;
  }

  .info-art__body .info-art__box dl dt {
    font-size: 4.2666666vw;
  }

  .info-art__body .info-art__box .c-btn a {
    font-size: 3.73333333vw;
  }

  .info-art__bottom .c-btn i {
    width: 12px;
  }

  .ac-links li div>small {
    font-size: 3.733333333vw;
  }

  .search-list__desc {
    height: 17.92vw;
  }
}

@media only screen and (min-width: 993px) {
  .st-gn__link.is-active>a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #004489 transparent;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .st-gn__link.is-active>a::after {
    -webkit-animation: gnavHover .3s forwards;
    animation: gnavHover .3s forwards;
  }

  .st-gn__link>a:not(.no-hover).is-current::after {
    width: 100%;
    -webkit-animation: none;
    animation: none;
  }

  .st-gn__link>a:not(.no-hover)::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #009bdc;
    background: -webkit-gradient(linear, left top, left bottom, from(#009bdc), color-stop(50%, #0084c9), to(#1379d0));
    background: linear-gradient(to bottom, #009bdc 0%, #0084c9 50%, #1379d0 100%);
    position: absolute;
    bottom: 22px;
  }

  .st-gn__link>a:not(.no-hover).is-off::after {
    -webkit-animation: gnavOut .3s forwards;
    animation: gnavOut .3s forwards;
  }

  .st-gn__link>a:hover::after {
    -webkit-animation: gnavHover .3s forwards;
    animation: gnavHover .3s forwards;
  }
}

@media only screen and (min-width: 993px) and (max-width: 768px) {
  .st-gn__link.is-active>a::before {
    display: none;
  }
}

@media only screen and (min-width: 769px) {
  .st-gn__search__box input[type="submit"]:hover {
    background-color: #ccc;
    background-image: url(/company/images/icn_search_wh.svg);
    background-size: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    right: 20px;
  }

  .st-ft__pagetop a {
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
  }

  .st-ft__pagetop a:hover {
    opacity: .7;
  }

  .c-link a:hover {
    color: #0092D4;
  }

  .c-link a:hover::before {
    -webkit-transform: none;
    transform: none;
  }

  .c-link-l3:hover {
    color: #0092D4;
  }

  .c-link-l3:hover::before {
    -webkit-transform: none;
    transform: none;
  }

  .c-link-l3:hover span::before {
    -webkit-transform: none;
    transform: none;
  }

  .about-link__nav li a:hover {
    color: #0092D4;
  }

  .about-link__nav li a:hover::before {
    -webkit-transform: none;
    transform: none;
  }

  .about-link__nav li a:hover span::before {
    -webkit-transform: none;
    transform: none;
  }

  .info-pages__item a:hover {
    color: #0092D4;
  }

  .info-pages__item a:hover span {
    border-color: #0092D4;
  }

  .info-pages__item a:hover i::before {
    background-color: #0092D4;
  }

  .info-pages__item a:hover i::after {
    border-color: #0092D4;
  }
}

@media all and (-ms-high-contrast: none) {

  /* IE10,11用 */
  .c-headline span {
    color: #0092d4;
    background: none;
  }
}

@media only screen and (max-width: 992px) {
  .c-l-mtb {
    display: none;
  }

  .c-l-tb {
    display: block;
  }

  br.c-l-tb {
    display: inline-block;
  }
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media only screen and (min-width: 1320px) {
  .gr-col__inner {
    width: 540px;
  }
}

@media only screen and (max-width: 432px) {
  .hi-sec__list dl+dl {
    margin: 6.666666666vw 0 0;
  }

  .hi-sec__list dl dt {
    margin: 0 0 1.3333333vw;
    padding: 0 0 0 6.66666666vw;
  }

  .hi-sec__list dl dd {
    padding: 0 0 0 6.66666666vw;
  }

  .hi-per03 .hi-sec__list::before {
    height: calc(100% - 30vw);
    top: 4.266666666vw;
  }
}

/*202307追加*/
ul.list {
  margin: 20px 40px;
}

ul.list li {
  list-style: disc;
}

.view_more {
  text-align: right;
  margin-top: -10px
}