@charset "UTF-8";

/* =====================================================
 * Base
 * ================================================== */

/*! normalize.css v3.0.0 | MIT License | git.io/normalize */

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  color: inherit;
  font: inherit;
}

button {
  overflow: visible;
}

a,
button {
  transition:
    opacity 0.1s ease-in-out,
    background-color 0.1s ease-in-out,
    color 0.1s ease-in-out;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

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

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  border: 1px solid #c0c0c0;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* -----------------------------------------------------
 * Init
 * -------------------------------------------------- */
/* normalize overwrite */

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
    "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", Meiryo, sans-serif;
  letter-spacing: 0.1rem;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

a {
  color: #3f95cb;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
figure,
figcaption,
small {
  margin: 0;
  font-size: 100%;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
}

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

ul {
  list-style-type: none;
  padding: 0;
}

ol {
  padding: 0;
}

th {
  font-weight: normal;
  text-align: left;
}

/* -----------------------------------------------------
 * scrollbar
 * -------------------------------------------------- */
/* スクロールバーの幅と高さを設定する */
.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* スクロールバーの形を設定する */
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
  border-radius: 50px;
}

/* スクロールバーの色を設定する */
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #ccc;
}

/* =====================================================
 * Figure Image
 * ================================================== */
figure img {
  width: 100%;
  height: auto;
}

/* -----------------------------------------------------
 * animate State classes
 * -------------------------------------------------- */

.invisible {
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transform: translate3d(0, 20%, 0);
  transform: translate3d(0, 20%, 0);
}

.visible {
  opacity: 1;
  transition: all 0.5s ease;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* -----------------------------------------------------
 * Utilities
 * -------------------------------------------------- */
.u-noto-sans {
  font-family: "Noto Sans JP", sans-serif;
}

.u-hover:hover {
  opacity: 0.7;
}

.u-hover-low:hover {
  opacity: 0.85;
}

.u-overflow-hidden {
  overflow: hidden;
  border-radius: inherit;
  height: 100%;
  width: 100%;
}

/*docs
---
title: テキスト寄せ
name: util-010
category: utilities
---

```html
<p class="mod-left">.mod-left</p>
<p class="mod-center">.mod-center</p>
<p class="mod-right">.mod-right</p>
```
*/

.mod-left {
  text-align: left !important;
}

.mod-center {
  text-align: center !important;
}

.mod-right {
  text-align: right !important;
}

/*docs
---
title: メディア表示
name: util-020
category: utilities
---

```html
<div class="is-pc-hide">PC非表示（指定がなければSP表示）</div>
<div class="is-pc-show">PCでは必ず表示（指定がなければSP表示）</div>
<div class="is-sp-show">SPでは必ず表示（指定がなければPC表示）</div>
<div class="is-sp-hide">SP非表示（指定がなければPC表示）</div>
<p>テキストテキストテキスト。<br class="is-br-sp-show">SPでは改行が入る。</p>
<p>テキストテキストテキスト。<br class="is-br-pc-show">PCでは改行が入る。</p>
```
*/

.is-br-sp-show {
  display: none;
}

.is-br-pc-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp-hide {
    display: none;
  }
}

.is-pc-hide {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-pc-hide {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .is-pc-hide--flex {
    display: flex;
  }
}

.is-pc-hide--inline {
  display: inline;
}

/*docs
---
title: JSメディアチェック用
name: util-030
category: utilities
---
SP表示チェック。
- jQueryのis(':visible')を利用することで、JSとCSSの同期が取れる。
- SP時に display: block; となる。

```html
<div class="check-media">SP時 display: block;</div>
```
*/

.check-media {
  display: block;
}

/* no border */
.nobl {
  border-left: none;
}

.nobr {
  border-right: none;
}

.nobb {
  border-bottom: none;
}

.nobt {
  border-top: none;
}

.u-mt40 {
  margin-top: 40px;
}

.u-text-center {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

/* =====================================================
 * FLOATING
 * ================================================== */

.btn-floating {
  position: fixed;
  top: calc(50% - 205px);
  right: 0;
  z-index: 3;
  display: none;
  width: 80px;
}

.btn-floating a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  border-radius: 20px 0 0 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: bold;
  line-height: 1;
}

.btn-floating a:visited {
  color: #fff !important;
}

.btn-floating a:nth-child(1) {
  padding: 0 20px;
  height: 250px;
  background: #000;
  color: #fff;
  font-size: 2.5rem;
}

.btn-floating a:nth-child(2) {
  padding: 0 30px;
  height: 150px;
  background: #21279a;
  font-size: 1.7rem;
}

.btn-floating a:hover {
  opacity: 0.8;
}

/* -----------------------------------------------------
* Header
* -------------------------------------------------- */

.l-header ~ main {
  margin-top: 120px;
}

.l-header ~ main.has-banner {
  margin-bottom: 85px;
}

.l-header .l-header-logo .is-show-page {
  display: block;
}

.l-header .l-header-logo .is-show-top {
  display: none;
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 5px 25px;
}

.l-header {
  position: relative;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

.page-home .l-header {
  position: fixed;
  background-color: inherit;
}

.page-home .l-header-contact a {
  border-color: #fff;
  background-image: url(/images/arrow_right_01.png);
  color: #fff;
}

.page-home .l-header-contact a:hover {
  border-color: #fff;
  background-color: #fff;
  background-image: url(/images/arrow_right_02.png);
  color: #3f95cb;
}

.page-home .l-header-menu-list > ul > li > a {
  color: #fff;
}

.page-home .l-header-btn-hamburger div {
  background-color: #fff;
}

.page-home .l-header-btn-txt {
  color: #fff;
}

.l-header.is-fixed {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.l-header.is-fixed .i-logo-sns {
  display: none;
}

.l-header.is-fixed .i-logo-Slopebase img {
  height: 19px;
}

.l-header.is-fixed .i-logo-Slopebase .logo {
  height: 66px;
}

.l-header.is-fixed .list-sub-nav .hide {
  display: none;
}

.l-header.is-fixed .i-logo-nttdata {
  position: absolute;
  right: 0;
  top: 15px;
  width: 90px;
}

@media screen and (max-width: 768px) {
.l-header.is-fixed .i-logo-nttdata {
    width: auto;
  }
}

.l-header.is-fixed .l-header-inner {
  height: 80px;
  padding: 10px 25px;
}
/* 2025ヘッダー問い合わせ全メニューある時
.l-header.is-fixed .list-sub-nav {
  margin: 0px 190px 0 0;
}*/

/* 2025ヘッダー問い合わせ横調整*/
.l-header.is-fixed .list-sub-nav {
  margin: 0px 190px 0 0;
}

.l-header.is-fixed .l-header-btn {
  position: absolute;
  top: 18px;
  right: 150px;
}

.l-header.is-fixed .list-global-nav {
  margin: 0px 0 0 10px;
}

.l-header.is-fixed .l-header-inner {
  height: 80px;
  padding: 10px 25px;
}

.l-header.is-fixed .i-logo-Slopebase .logo {
  height: 41px;
}

.l-header-logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.l-header-logo img {
  width: auto;
  height: 41px;
}

.i-logo-nttdata {
  height: 34px;
  padding: 3px 14px 0;
  border-left: 1px solid #ccc;
  margin-left: 14px;
}

.i-logo-nttdata img {
  width: auto;
  height: 15px;
}

.l-header-btn {
  width: 59px;
  height: 45px;
  background: #21279a;
  padding: 15px 18px;
  border-radius: 45px;
  cursor: pointer;
}

.l-header-btn-hamburger {
  position: relative;
  width: 24px;
}

.l-header-btn-hamburger div {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease-in;
}

.l-header-btn-hamburger div:first-child {
  top: 3px;
}

.l-header-btn-hamburger div:last-child {
  top: 10px;
}

.l-header-btn-txt {
  color: #3f95cb;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.06em;
}

/* -----------------------------------------------------
* SP NAVI
* -------------------------------------------------- */
.l-gnav-sp {
  display: none;
  position: fixed;
  z-index: 99;
  top: 80px;
  left: 0;
  overflow-y: scroll;
  width: 100%;
  height: calc(100%);
  background-color: #21279a;
}

.l-gnav-sp .list-secondary.list-contact li a:hover {
  opacity: 1;
}

.l-gnav-sp a:hover {
  opacity: 0.7;
}

/* -----------------------------------------------------
 * Footer
 * -------------------------------------------------- */

.l-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 20px;
  background: #21279a;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

.l-footer__banner {
  padding-top: 75px;
  padding-bottom: 80px;
  background-color: #cbd2ec;
  color: #000;
}

.l-footer__banner-btn:before {
  content: "";
  background: url(/images/top_2022/ico-arrow-short-white.svg) no-repeat center / contain;
  width: 17px;
  aspect-ratio: 17 / 7;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.l-footer__banner-link {
  border-radius: 5px;
  display: block;
  overflow: hidden;
}

.l-footer-banner-img {
  aspect-ratio: 1200 / 320;
  width: min(1200px, 100% - 40px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}

.l-footer__banner-heading {
  font-size: 2.6rem;
  line-height: 1.62;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
  margin-bottom: -5px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.l-footer__banner-paragraph {
  font-size: 1.6rem;
  line-height: 2.63;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.l-footer__banner-btns {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.l-footer__banner-btn {
  width: 36%;
  border-radius: 1000px;
  padding-top: 27px;
  padding-bottom: 27px;
  border: none;
  background-color: #21279a;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  position: relative;
  padding-right: 62px;
  padding-left: 62px;
}

footer .l-gnav-sp {
  background-color: #06284e;
}

.l-footer-nav-top .list-first--col1 {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #e4e7ef;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 14px;
  padding-bottom: 10px;
  padding: 14px 30px 10px;
  position: relative;
  gap: 23px;
}

.l-footer-nav-top .list-first--col1 .pr1 {
  padding-right: 15px;
}

.l-footer-nav-top .list-first > li > a.txd-line {
  text-decoration: underline;
  pointer-events: auto !important;
  text-decoration: none;
}

.l-footer {
  z-index: 10;
}

.l-footer::before {
  background: url(../images/top_2022/ico-arrow-short-white.svg) no-repeat center;
  background-size: cover;
}

.l-footer-nav-bottom {
  width: 100%;
  display: flex;
  justify-content: start;
}

.l-footer-nav-bottom ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding-top: 54px;
  padding-bottom: 32px;
}

.l-footer-nav-bottom img {
  height: 20px;
}

.l-footer-nav-bottom ul li {
  font-size: 1.4rem;
  color: #fff;
}

.l-footer-nav-bottom ul li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

.l-footer-nav-bottom ul li a.ntt {
  font-weight: 700;
  display: flex;
  gap: 10px;
}

.l-footer-nav-bottom ul li a:hover {
  opacity: 0.7;
}

.l-footer-license {
  margin: 2px 0 0;
  width: 100%;
  border-top: 1px solid #fff;
}

.l-footer-license ul li {
  margin: 40px 0 0;
}

.l-footer-license ul li figure {
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: center;
}

.l-footer-license ul li figure a {
  transition: opacity 0.2s ease-in-out;
}

.l-footer-license ul li figure a:hover {
  opacity: 0.7;
}

.l-footer-license ul li figure a img {
  max-height: unset;
}

.l-footer-license ul li p {
  margin: 20px 0 0;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0;
}

.l-footer-license ul li figure img {
  width: auto;
}

.l-footer-copyright {
  margin: 20px 0 0;
  padding: 20px 0 35px 0;
  font-size: 1.1rem;
  text-align: right;
}

.l-footer__solution {
  padding-top: 123px;
  padding-bottom: 204px;
  background-color: #fff;
}

.l-footer__solution-heading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-footer__solution-innerheading::before {
  content: "";
  background: url(/images/heading-box.svg) no-repeat center / cover;
  width: 40px;
  aspect-ratio: 1;
  position: absolute;
  top: 11px;
  left: 0;
}

.l-footer__solution-innerheading {
  font-size: 5rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #21279a;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  padding-left: 72px;
}

.l-footer__solution-paragraph1 {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.48;
  color: #000;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 5px;
}

.l-footer__solution-paragraph2 {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  color: #000;
  text-align: center;
}

.l-footer__solution-list {
  display: flex;
  gap: 20px;
  row-gap: 48px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.l-footer__solution-item {
  width: calc(20% - 20px * 4 / 5);
}

.l-footer__solution-img {
  width: 100%;
  aspect-ratio: 1;
}

.l-footer__solution-name {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-top: 8px;
  line-height: 2.5;
  letter-spacing: 0;
}

.l-footer-license ul li p.isms {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  text-decoration: none;
}

.l-footer-license ul li a {
  text-decoration: none;
}

.l-footer__solution {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.l-footer-banner-img.l-footer-fix-banner {
  width: min(800px, calc(100vw - 80px));
}

.l-footer .l-gnav-sp .list-first {
  padding-bottom: unset;
}

.l-footer-banner {
  position: fixed;
  top: 100%;
  z-index: 9999;
  right: 50%;
  transform: translateX(50%);
  transition: top ease-in-out 0.8s;
  display: block;
  border-radius: 5px;
  overflow: hidden;
}

footer .mod-nav-sp li.has-child ul a.is-link {
  margin-right: 10px;
}

footer .mod-nav-sp li.has-child ul a.is-link {
  border-bottom: 1px solid #acb1bf;
}

footer .mod-nav-sp li.has-child ul > li:last-of-type > a.is-link {
  border-bottom: none;
  margin-bottom: 20px;
}

/* -----------------------------------------------------
 * Layout
 * -------------------------------------------------- */
.l-wrapper {
  flex-direction: column;
  min-height: 100vh;
}

.l-container {
  width: min(1200px, 100vw - 40px);
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-container {
    width: min(1200px, 100vw - 60px);
  }
}

@media screen and (max-width: 768px) {
  .l-container--sp1 {
    width: min(1200px, 100vw - 76px);
  }
}

.l-container--1280 {
  width: min(1280px, 100vw - 100px);
}

@media screen and (max-width: 768px) {
  .l-container--1280 {
    width: min(1280px, 100vw - 60px);
  }
}

.l-container--1080 {
  width: min(1080px, 100vw - 40px);
}

@media screen and (max-width: 768px) {
  .l-container--1080 {
    width: min(1080px, 100vw - 60px);
  }
}

.l-row .box-col {
  padding: 0 2%;
}

.l-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  margin-right: -2%;
}

.mod-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

/* -----------------------------------------------------
 * Breadcrumb
 * -------------------------------------------------- */
.c-breadcrumb {
  background-color: #21279a;
  height: 60px;
  display: flex;
  align-items: center;
}

.c-breadcrumb__list {
  display: flex;
  gap: 35px;
  align-items: center;
}

.c-breadcrumb__item,
.c-breadcrumb__item a {
  position: relative;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.c-breadcrumb__item:after {
  content: "/";
  position: absolute;
  right: -22px;
}

.c-breadcrumb__item:last-of-type {
  color: #fffc0e;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.c-breadcrumb__item:last-of-type:after {
  content: unset;
}

/* -----------------------------------------------------
 * Animation
 * -------------------------------------------------- */
@-webkit-keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: scale(4) translate3d(0, 50%, 0);
    transform: scale(4) translate3d(0, 50%, 0);
  }

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

@keyframes fadein {
  from {
    opacity: 0;
    -webkit-transform: scale(4) translate3d(0, 50%, 0);
    transform: scale(4) translate3d(0, 50%, 0);
  }

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

/* -----------------------------------------------------
 * Mod Backtop
 * -------------------------------------------------- */
.mod-backtop {
  position: fixed;
  z-index: 999999!important;
  right: 20px;
  bottom: 20px;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(200px);
  transform: translateY(200px);
}

.mod-backtop:hover {
  opacity: 0.7;
}

.mod-backtop a {
  display: block;
  overflow: hidden;
  width: 60px;
  height: 0;
  padding: 60px 0 0;
  border-radius: 5px;
  background: #fff url(/images/top_2022/ico-arrow-short-blue_pagetop.svg) no-repeat 50% 50%;
  background-size: 15px auto;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transform: rotate(-90deg);
}

.is-page-active .mod-backtop {
  -webkit-transform: translateY(0);
  transform: translateY(0);
	z-index: 999999!important;
}




/* -----------------------------------------------------
 * Responsive min-width: 769px
 * -------------------------------------------------- */
@media print, screen and (min-width: 769px) {
  h2 {
    font-size: 3.8rem;
  }

  .is-pc-hide {
    display: none !important;
  }

  .is-br-pc-show {
    display: inline-block !important;
  }

  .l-header-logo img {
    height: 48px;
  }

  .l-header-inner {
    max-width: 100%;
    height: 120px;
    margin: 0 auto;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /*展開時*/
  .is-menu-open .l-header {
    background: #21279a;
    box-shadow: none;
  }
  .is-menu-open .l-header .l-header-logo .is-show-page {
    display: none;
  }
  .is-menu-open .l-header .l-header-logo .is-show-top {
    display: block;
  }
  .is-menu-open .l-header-btn {
    background: #fff;
  }
  .is-menu-open .l-header-btn.is-open .l-header-btn-hamburger div {
    background: #21279a;
  }
  .is-menu-open .list-sub-nav {
    display: none;
  }

  .l-header-btn.is-open .l-header-btn-hamburger div:first-child,
  .l-header-btn.is-open .l-header-btn-hamburger div:last-child {
    top: 6.5px;
  }

  .l-header-btn.is-open .l-header-btn-hamburger div:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .l-header-btn.is-open .l-header-btn-hamburger div:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .i-logo-Slopebase {
    margin-right: 1em;
  }

  .i-logo-Slopebase img {
    height: 69px;
    margin-bottom: 10px;
  }

  .i-logo-Slopebase img:hover {
    opacity: 0.8;
  }

  .l-header-btn {
    position: absolute;
    top: 51px;
    right: 40px;
  }

  .l-gnav-sp {
    top: 0;
    overflow-y: auto;
    height: calc(100%);
    color: #fff;
    padding-top: 110px;
    z-index: 99;
  }

  .l-gnav-sp::-webkit-scrollbar {
    display: none;
  }

  .l-gnav-sp a {
    color: #fff;
    text-decoration: none;
  }

  .l-gnav-sp .list-first {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1280px;
    padding-bottom: 100px;
  }
  .l-gnav-sp .list-first > li {
    margin: 37px 20px 27px;
    width: 300px;
  }
/*2025メニュー全て追加時削除*/
  .l-gnav-sp .list-first::after{
  content:"";
  display: block;
   width: 340px;
}

  .l-gnav-sp .list-first li.has-child > a,
  .l-gnav-sp .list-first li.has-child a.heading {
    display: block;
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    pointer-events: none;
    font-weight: 700;
  }

  .l-gnav-sp .list-first li.has-child a.subheading {
    margin-top: 56px;
  }

  .l-gnav-sp .list-first li.has-child > img {
    display: none;
  }

  .l-gnav-sp .list-secondary {
  }

  .l-gnav-sp .list-secondary li {
    min-height: 40px;
    font-size: 1.7rem;
    font-weight: 700;
  }

  .l-gnav-sp .list-secondary.list-sns li {
    min-height: 60px;
    font-size: 1.8rem;
  }

  .l-gnav-sp .list-secondary.list-sns li img {
    margin: 45px 20px 0 10px;
  }

  .l-gnav-sp .list-secondary.list-contact li {
    position: relative;
    top: -10px;
    min-height: 80px;
    font-size: 2rem;
  }

  .l-gnav-sp .list-secondary.list-contact li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
  }

  .l-gnav-sp .list-secondary.list-contact li a:hover {
    background: #fff;
    color: #21279a;
  }

  /* ヘッダー右・ロゴ */
  .i-logo-nttdata {
    height: auto;
    padding: 0;
    border-left: none;
    margin-left: 0;
  }

  .i-logo-nttdata img {
    position: absolute;
    top: 18px;
    right: 42px;
    height: 19px;
  }

  .i-logo-nttdata img:hover {
    opacity: 0.8;
  }

  .list-sub-nav {
    display: flex;
    margin: 27px 67px 0 0;
  }

  .list-sub-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 6px;
    height: 45px;
    border: 2px solid #21279a;
    border-radius: 22.5px;
    color: #21279a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.4rem;
    padding-left: 35px;
    padding-right: 35px;
  }

  .list-sub-nav .wide {
    width: 120px;
  }

  .list-sub-nav a:last-child {
    background: #000;
    color: #fff;
    padding-left: 19px;
    padding-right: 19px;
  }

  .list-sub-nav a:hover {
    border-color: #21279a;
    background: #21279a;
    color: #fff;
  }

  .l-footer-nav-top {
    padding: 62px 0 44px 0;
    background-color: #e4e7ef;
  }

  .l-footer-nav-top .list-first {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2em;
  }

  .l-footer-nav-top .list-first--col1 {
    flex-direction: column;
    width: 20%;
    gap: 37px;
  }

  .l-footer-nav-top .list-first--col2 {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .l-footer-nav-top .list-first--col1 li a {
    font-weight: 700;
    font-size: 1.6rem;
  }

  .list-first--col2 .has-child {
    flex: 1;
  }
/*2025メニュー復活時削除！*/
  .list-first--col2025 .has-child {
    flex: unset;
  }

  .list-first--col2 .has-child:last-of-type {
    width: 220px;
    flex: unset;
  }

  .l-footer-content {
    width: 80%;
    padding-top: 14px;
  }

  .l-footer-heading {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.83;
    letter-spacing: 0;
    text-align: start;
    margin-bottom: 8px;
    color: #21279a;
  }
  .l-footer-heading a{
    color: #000;
	text-decoration: none;
  }
  .l-footer-heading a:hover{
	text-decoration: underline;
  }
	
  .l-footer-heading--px1 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .l-footer-second-heading a,
  .l-footer-second-heading {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 2.67;
    text-decoration: none;
    color: #000;
  }

  .l-footer-second-heading:has(+ul):hover {
    text-decoration: none;
  }

  .l-footer-nav-top .list-first > li:last-child {
    margin-right: 0;
  }

  .l-footer-nav-top .list-first > li img {
    display: none;
  }

  .l-footer-second-heading a:hover,
  .l-footer-second-heading:hover {
    text-decoration: underline;
  }

  .l-footer-second-heading:not(:has(a)):hover {
    text-decoration: none;
  }

  .l-footer-nav-top .list-first > li:last-child {
    margin-right: 0;
  }

  .l-footer-nav-top .list-first > li img {
    display: none;
  }

  .l-footer-nav-top .list-first > li.has-child > a:hover {
    cursor: default;
    text-decoration: none;
  }

  .l-footer-nav-top .list-first > li > a {
    font-size: 1.6rem;
    color: #000;
    pointer-events: none;
    text-decoration: none;
  }

  .l-footer-nav-top .list-first > li > a.txd-line {
    text-decoration: underline;
    pointer-events: auto !important;
    text-decoration: none;
  }

  .l-footer-nav-top .list-first > li > a:hover {
    text-decoration: none;
  }
  .l-footer-nav-top .list-secondary {
    margin-top: 10px;
  }

  .l-footer-nav-top .list-secondary li {
    position: relative;
    padding-left: 0.5em;
  }

  .l-footer-nav-top .list-secondary li:before {
    content: "";
    background-image: url(/images/heading-icon1.png);
    position: absolute;
    left: 0;
    top: 0.7em;
    height: 5px;
    width: 11px;
    background-position: cover;
    background-repeat: no-repeat;
  }

  .l-footer-nav-top .list-secondary a {
    font-size: 1.3rem;
    text-decoration: none;
    line-height: 2.2;
    padding-left: 10px;
    font-weight: 400;
    display: inline-block;
    color: #000;
  }

  .l-footer-nav-top .list-secondary a:hover {
    text-decoration: underline;
  }

  .l-footer {
    padding: 0 0 20px;
  }

  .l-footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    max-width: min(1200px, 100% - 60px);
    margin: 0 auto;
  }

  .l-footer-nav ul li {
    width: auto;
    margin: 0 25px 10px;
    font-size: 1.4rem;
  }

  .l-footer-license ul {
    display: flex;
  }

  .l-footer-license ul li:first-of-type {
    padding-right: 67px;
    padding-left: unset;
    border-right: 1px solid #fff;
  }

  .l-footer-license ul li {
    padding-left: 76px;
    width: 25%;
  }

  .l-footer-license ul li figure {
    display: block;
    width: auto;
    height: unset;
    margin: 0;
    padding: 0;
  }

  .l-footer-license ul li figure img {
    width: 100%;
  }

  .l-footer-license ul li p {
    margin: 10px 0 0;
    font-size: 1.2rem;
    text-align: left;
  }

  .mod-nav-sp li.has-child {
    width: 25%;
  }

  .l-footer-copyright {
    margin: 40px 0 0;
    font-size: 1.2rem;
  }

  .mod-inner {
    max-width: min(1200px, 100% - 60px);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
}

/* -----------------------------------------------------
 * Responsive max-width: 1059px
 * -------------------------------------------------- */
@media screen and (max-width: 1059px) {
  .mod-backtop {
    bottom: 140px;
  }
  .list-sub-nav,
  .list-global-nav {
    display: none;
  }

  .l-gnav-sp .list-first {
    max-width: 920px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
  .l-gnav-sp .list-first::after{
  content:"";
  display: block;
   width: 280px;
}
  .l-gnav-sp .list-first li.has-child > a,
  .l-gnav-sp .list-first li.has-child a.heading {
    font-size: 1.7rem;
  }
  .l-gnav-sp .list-secondary li {
    font-size: 1.5rem;
  }

  .l-gnav-sp .list-secondary.list-sns li {
    font-size: 1.5rem;
  }
  .l-gnav-sp .list-secondary.list-contact li {
    font-size: 1.7rem;
  }
	
  .l-footer__solution-heading {
  }

  .l-footer__solution-innerheading::before {
    height: 26px;
    width: 26px;
  }

  .l-footer__solution-innerheading {
    font-size: 3rem;
  }

  .l-footer__solution-paragraph1 {
    font-size: 1.7rem;
    line-height: 2.06;
  }

  .l-footer__solution-paragraph2 {
    font-size: 2.7rem;
    line-height: 1.3;
  }

  .l-footer__solution-name {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .l-footer__solution-innerheading {
    padding-left: 34px;
  }

  .l-footer__solution {
    padding-top: 54px;
  }

  .l-footer__solution-paragraph1 {
    margin-top: 27px;
  }

  .l-footer__solution-name {
    margin-top: 0px;
  }

  .l-footer__solution {
    padding-bottom: 28px;
  }
}

/* -----------------------------------------------------
 * Responsive max-width: 768px
 * -------------------------------------------------- */
@media screen and (max-width: 768px) {
  .l-header ~ main {
    margin-top: 89px;
  }

  .l-header ~ main.has-banner {
    margin-bottom: 91px;
  }

	
  /*展開時*/
  .is-menu-open .l-header {
    box-shadow: none;
  }
  .is-menu-open .l-header .l-header-logo .is-show-page {
    display: block;
  }
  .is-menu-open .l-header .l-header-logo .is-show-top {
    display: none;
  }
  .is-menu-open .l-header-btn {
    background: #21279a;
  }
  .is-menu-open .l-header-btn.is-open .l-header-btn-hamburger div {
    background: #fff;
  }
  .is-menu-open .list-sub-nav {
    display: none;
  }

  .l-header-btn.is-open .l-header-btn-hamburger div:first-child,
  .l-header-btn.is-open .l-header-btn-hamburger div:last-child {
    top: 6.5px;
  }

  .l-header-btn.is-open .l-header-btn-hamburger div:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .l-header-btn.is-open .l-header-btn-hamburger div:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
	
  .mod-backtop a {
    width: 50px;
    height: 0;
    padding: 50px 0 0;
  }

  .l-footer__banner-link img {
    width: 100%;
    border-radius: 5px;
  }

  .l-footer__banner-btn:before {
    width: 13px;
    right: 12px;
  }

  .l-footer__solution-list {
    gap: 20px;
    row-gap: 14px;
  }

  .l-footer__solution-item {
    width: calc(33.33% - 20px * 2 / 3);
  }

  .l-footer-banner-img {
    border-radius: 5px;
    aspect-ratio: 680 / 380;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }

  .mod-backtop {
    bottom: 100px;
    right: 14px;
  }

  .btn-floating {
    position: relative;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 10px 5px;
    width: 100%;
    background: #21279a;
  }

  .btn-floating.is-fixed {
    position: fixed;
    z-index: 9999;
  }

  .btn-floating a {
    margin: 0 5px;
    padding: 0 20px !important;
    width: 50%;
    height: 40px !important;
    border-radius: 40px;
    font-size: 1.4rem !important;
  }

  .btn-floating a:nth-child(2) {
    background: #fff;
    color: #21279a;
  }

  .btn-floating a:visited:nth-child(2) {
    color: #21279a !important;
  }

  .is-sp-show {
    display: block !important;
  }
  .is-sp-hide {
    display: none !important;
  }
  .is-br-sp-show {
    display: inline-block !important;
  }

  .mod-nav-sp li.has-child {
    position: relative;
    z-index: 3;
    width: 100%;
  }

  footer .mod-inner > ul > li.has-child {
    border-bottom: 1px solid #acb1bf;
  }

  footer .mod-nav-sp li.has-child li.has-child:last-of-type {
    border-bottom: none;
  }

  footer .mod-nav-sp li.has-child li.has-child li:last-of-type a {
    border-bottom: none;
  }

  footer .mod-nav-sp li.has-child li.has-child:last-of-type > a {
    border-bottom: none;
    margin-bottom: 20px;
  }

  footer .mod-nav-sp li.has-child li.has-child:last-of-type > a.nomb {
    margin-bottom: 0;
  }

  footer .mod-nav-sp .list-secondary > li > a::after {
    content: "";
    background: url(../images/top_2022/ico-arrow-short-blue.svg) no-repeat center / contain;
    height: 6px;
    width: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  footer .mod-nav-sp li.has-child ul > li > a {
    border-bottom: unset;
    position: relative;
    padding-right: 35px;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-left: 0;
  }

  footer .mod-nav-sp li.has-child ul a:after {
    content: unset;
  }

  footer .mod-nav-sp li.has-child ul img {
    top: 24px;
    right: 3px;
  }

  .mod-nav-sp li.has-child > a:hover {
    text-decoration: none;
  }

  .mod-nav-sp li.has-child img {
    display: block;
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    border-radius: 5px;
    background-color: #21279a;
  }

  /*　スティッキーヘッダー用調整*/

  .l-header.is-fixed .i-logo-Slopebase img {
    height: 48px;
  }

  .l-header.is-fixed .i-logo-nttdata {
    position: relative;
    left: 0;
    top: 0;
  }
  .l-header.is-fixed .l-header-inner {
    height: 90px;
    padding: 5px 25px;
  }

  .l-header.is-fixed .l-header-btn {
    position: absolute;
    top: 23px;
    right: 25px;
  }

  footer .mod-nav-sp li.has-child img {
    background-color: #21279a;
    border-radius: 100px;
    height: 20px;
    width: 20px;
    top: 30px;
    right: 3px;
  }

  .mod-nav-sp .list-first > li > a {
    padding-left: 15px;
    padding-right: 15px;
    background-color: #e4e7ef;
    height: 84px;
    display: flex;
    padding-top: 0px;
    align-items: center;
  }
  footer .mod-nav-sp .list-first > li > a {
    background-color: #e4e7ef;
    font-weight: 700;
    letter-spacing: 0;
  }
  .mod-nav-sp .list-secondary {
    display: none;
  }
  .mod-nav-sp .list-secondary > li > a {
    padding-left: 44px;
    background-color: #3b60d8;
    color: #fff;
    height: 50px;
  }
  footer .mod-nav-sp .list-secondary > li > a {
    background-color: #041d38;
    color: #698cb2;
  }

  footer .mod-nav-sp .list-first > li > a {
    font-size: 1.4rem;
    letter-spacing: 0;
    position: relative;
    margin-bottom: 1px;
    height: 59px;
    padding-left: 0;
    padding-right: 0;
    color: #000;
  }

  .mod-nav-sp a {
    display: block;
    position: relative;
    height: 60px;
    border-bottom: 1px solid #fff;
    font-size: 1.4rem;
    line-height: 50px;
    text-decoration: none;
    height: 50px;
  }
  .l-gnav-sp .list-first li.has-child > a,
  .l-gnav-sp .list-first li.has-child a.heading {
     font-size: 1.4rem;
  }
  .l-gnav-sp .list-secondary li {
     font-size: 1.4rem;
  }
  .l-gnav-sp .list-secondary.list-sns li {
     font-size: 1.4rem;
  }
  .l-gnav-sp .list-secondary.list-contact li {
     font-size: 1.4rem;
  }
  footer .mod-nav-sp a {
    border-bottom: none;
  }

  .mod-nav-sp a:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 20px;
    width: 14px;
    height: 5px;
    background: url(../images/top_2022/ico-arrow-short-white.svg) no-repeat center;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  footer .list-first.list-first--pb1 a:before {
    width: 15px;
    height: 5px;
    right: 5px;
    background: url(../images/top_2022/ico-arrow-short-blue.svg) no-repeat center;
  }

  .mod-nav-sp .list-first > li > a {
    padding-left: 30px;
    padding-right: 55px;
    background-color: #21279a;
    height: 60px;
    display: flex;
    padding-top: 0px;
    align-items: center;
    font-weight: 700;
    color: #fff;
  }

  .mod-nav-sp .list-first > li > a.nobb {
    border-bottom: unset;
  }

  .mod-nav-sp .list-first > li > a::before {
    content: none;
  }

  .mod-nav-sp .list-first--col1 > li > a {
    padding-left: 22px;
    padding-right: 22px;
    background-color: #21279a;
  }

  .mod-nav-sp .list-secondary > li > a {
    padding-left: 44px;
    background-color: #3b60d8;
    color: #fff;
    height: 50px;
  }

  footer .mod-nav-sp .list-secondary > li > a {
    margin-left: 20px;
    background-color: #3b60d8;
    color: #000;
    height: 50px;
  }

  footer .mod-nav-sp .list-secondary > li > ul a {
    padding-left: 0;
    margin-left: 40px;
    color: #000;
    height: 50px;
  }

  .mod-nav-sp .list-secondary {
    display: none;
  }

  footer .mod-nav-sp .list-secondary > li > a {
    background-color: #e4e7ef;
    letter-spacing: 0;
  }

  footer .mod-nav-sp .list-secondary > li > a::after {
    content: "";
    background: url(../images/top_2022/ico-arrow-short-black.svg) no-repeat center;
    height: 6px;
    width: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .l-footer-nav-bottom ul {
    padding: 40px 29px;
    gap: 16px;
    row-gap: 20px;
    justify-content: start;
  }

  footer .list-first--pb1 {
    padding-bottom: 51px;
    background-color: #e4e7ef;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    top: -1px;
  }

  footer .list-first--pb1:before {
    content: "";
    position: absolute;
    width: calc(100% - 60px);
    top: 0;
    right: 50%;
    transform: translateX(50%);
    height: 1px;
    background-color: #acb1bf;
    z-index: 10;
  }

  .l-footer-nav-bottom ul li a {
    font-size: 1.4rem;
    gap: 18px;
  }

  .l-footer-license ul li figure img {
    width: 162px;
  }

  .l-footer-license ul li p {
    font-size: 0.9rem;
  }

  .l-footer-license ul li p {
    margin: 0;
  }

  .l-footer-license ul li {
    margin-top: -3px;
    margin-bottom: 35px;
  }

  .partner-card {
    margin: 0 0 25px;
  }

  .l-footer__banner {
    padding-top: 33px;
    padding-bottom: 40px;
  }

  .l-footer__banner-btns {
    gap: 18px;
    margin-top: 14px;
  }

  .l-footer-license ul li.certificate figure {
    justify-content: start;
    padding-left: 30px;
    display: flex;
    padding-bottom: 6px;
    padding-top: 12px;
  }

  .l-footer-license ul li p.isms {
    font-size: 1.1rem;
    width: 162px;
    text-align: start;
    line-height: 2.1;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l-footer-license {
    border-top: unset;
  }

  .l-footer-license ul li:first-of-type {
    border-right: none;
  }

  .l-footer-copyright {
    max-width: calc(100vw - 40px);
    margin: 0 auto;
    font-size: 1.2rem;
    padding-top: 30px;
    padding-bottom: 7px;
    text-align: center;
    position: relative;
  }

  .l-footer-copyright:before {
    content: "";
    position: absolute;
    height: 1px;
    width: calc(100% - 20px);
    background-color: #fff;
    top: 0;
    right: 50%;
    transform: translateX(50%);
  }

  .l-footer__banner-btn {
    width: 50%;
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 20px;
    padding-left: 10px;
  }

  /* breadcrumb  */
  .c-breadcrumb {
    height: 46px;
  }

  .c-breadcrumb__item,
  .c-breadcrumb__item a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #a9abd1;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* -----------------------------------------------------
 * Mod Fixed Banner
 * -------------------------------------------------- */
.mod-fixed-banner {
  background-color: #000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-decoration: none;
}

.mod-fixed-banner {
  background-color: #000;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 32px;
  text-decoration: none;
  padding: 15px 20px;
}

.mod-fixed-banner a {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #3b60d8;
  color: #fff;
  border-radius: 100px;
  padding: 15px max(50px, 3.33vw);
  width: 400px;
  max-width: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
  font-weight: 700;
}

.mod-fixed-banner a:before {
  content: "";
  background: url(/images/top_2022/ico-arrow-short-white.svg) no-repeat center / contain;
  width: 17px;
  aspect-ratio: 17 / 7;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .mod-fixed-banner a {
    font-size: 1.4rem;
    width: 180px;
    padding: 15px 20px;
  }
  .mod-fixed-banner a:before {
    content: "";
    right: 20px;
  }
}

.mod-fixed-banner--fixed {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 99999;
}

@media screen and (max-width: 768px) {
  .mod-fixed-banner {
    padding: 20px;
    gap: 10px;
  }
  .mod-fixed-banner a:before {
    width: 12px;
  }
}

@media screen and (max-width: 375px) {
  .mod-fixed-banner a {
    padding: 15px 10px;
    gap: 10px;
  }
  .mod-fixed-banner a:before {
    right: 9px;
  }
  .l-footer__solution-list {
    gap: 20px;
  }
  .l-footer__solution-item {
    width: calc(50% - 20px * 1 / 2);
  }
  .l-footer__solution-name {
    margin-top: 4px;
  }
}

.mod-fixed-banner {
  transition: bottom ease-in-out 0.3s;
  bottom: -123px;
}

.mod-fixed-banner.is-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}


/* -----------------------------------------------------
 * 中面：調整
 * -------------------------------------------------- */
.page-mainv_notxt {
  width: 100%;
  position: relative;
  height: 541px;
}
@media screen and (max-width: 768px) {
  .page-mainv_notxt {
    height: 200px;
  }
}
.page-mainv_notxt:before {
  content: "";
  background-image: url(/images/security/secure-mainvisual.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .page-mainv_notxt:before {
    background-image: url(/images/security/secure-mainvisual-sp.jpg);
  }
}
/* -----------------------------------------------------
 * Section: page-index
 * -------------------------------------------------- */
.page-index {
	background: #d7def8;
	padding: 50px 0;
}
.page-index ul{
	box-sizing: border-box;
	  display: flex;
	justify-content: space-between;
}

.page-index a{
	color: #262c9c;
	text-decoration: none;
	display: block;
	background: url("/images/function_top/btn_disc.png")no-repeat left 20px center #fff;
	line-height: 1.5;
	padding: 15px;
	font-weight: 700;
	text-align: center;
	border-radius: 50px;
}
.page-index a.current{
	color: #fff;
	text-decoration: none;
	display: block;
	background: url("/images/function_top/btn_disc_current.png")no-repeat left 20px center #262c9c;
	line-height: 1.5;
	padding: 15px;
	font-weight: 700;
	text-align: center;
	border-radius: 50px;
}
.func-top li {
	width: 32%;
}
.func-func li {
	width: 16%;
	font-size: 1.4rem;
}
/* 経費生産なし*/
.func-management li {
	width: 16%;
	font-size: 1.4rem;
}
/* 経費生産復活時
.func-management li {
	width: 13.5%;
	font-size: 1.4rem;
}
*/
@media screen and (max-width: 1059px) {
.func-func ul {
    display: flex;
  flex-wrap: wrap;
  gap: 10px;
    row-gap: 19px;
  }
.func-func li {
	width: calc(33% - 5px);
  }
.func-management ul {
    display: flex;
  flex-wrap: wrap;
  gap: 10px;
    row-gap: 19px;
  }
.func-management li {
	width: calc(33% - 5px);
  }
}	
@media screen and (max-width: 768px) {
.page-index {
	background: #d7def8;
	padding: 20px 0;
}
.page-index ul{
	box-sizing: border-box;
	  display: block;
}
.page-index li{
	margin: 8px 0;
}
.page-index a,
.page-index a.current{
	background-size: 6px;
	padding: 10px;
	font-size: 1.4rem;
}
.func-top li{
	width: auto;
}
.func-func li {
	width: auto;
  }
.func-management li {
	width: auto;
  }
}	

/* -----------------------------------------------------
 * Section: odd-items
 * -------------------------------------------------- */
.odd-items {
  padding: 125px 0;
}
@media screen and (max-width: 768px) {
.odd-items {
     padding: 56px 0;
  }
}

/* -----------------------------------------------------
 * Section: even-items
 * -------------------------------------------------- */
.even-items {
  padding: 125px 0;
  background-color: #f4f5f8;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
.even-items {
    padding: 56px 0;
  }
}

.even-items:before {
  content: "";
  background-image: url(/images/security/secure-bg1.svg);
  background-position: 43.5% 18.8%;
  background-repeat: no-repeat;
  position: absolute;
  inset: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
.even-items:before {
    background-image: url(/images/security/secure-sp-background.png);
    background-position: 42.5% 59.5%;
    background-size: 100%;
  }
}
/* -----------------------------------------------------
 * Common style for heading
 * -------------------------------------------------- */
.c-heading1 {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .c-heading1 {
    font-size: 3rem;
    line-height: 1.33;
    letter-spacing: 0.1em;
    font-weight: 900;
  }
}

.c-heading2 {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  padding-left: 56px;
  text-align: left;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .c-heading2 {
    font-size: 1.8rem;
    padding-left: 38px;
  }
}

.c-heading2:before {
  content: "";
  background-image: url(/images/heading-box.svg);
  height: 30px;
  width: 30px;
  position: absolute;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .c-heading2:before {
    height: 26px;
    width: 26px;
    top: 5px;
    left: 0;
    background-size: cover;
  }
}

.c-heading3 {
  line-height: 1.18;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 80px;
  padding-bottom: 29px;
  position: relative;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  .c-heading3 {
    margin-top: 52px;
    font-size: 1.5rem;
  }
}

.c-heading3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 8px;
  background-color: #21279a;
  transform: translateY(50%);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .c-heading3:before {
    transform: unset;
  }
}

.c-heading3::after {
  content: "";
  position: absolute;
  background-color: #a1a6b7;
  height: 1px;
  width: calc(100% - 20px);
  bottom: 0;
  right: 0;
}

.c-heading3--mt1 {
  margin-top: 124px;
  padding-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .c-heading3--mt1 {
    margin-top: 54px;
    padding-bottom: 27px;
  }
}

.c-heading3--mt2 {
  margin-top: 132px;
  padding-bottom: 33px;
}

@media screen and (max-width: 768px) {
  .c-heading3--mt2 {
    margin-top: 52px;
    padding-bottom: 27px;
  }
}

/* -----------------------------------------------------
 * Common style for paragraph
 * -------------------------------------------------- */
.c-paragraph {
  font-size: 1.6rem;
  line-height: 1.88;
  font-weight: 400;
  letter-spacing: 0;
  color: #000;
}

@media screen and (max-width: 768px) {
  .c-paragraph {
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
  }
}

.c-paragraph--lh1 {
  line-height: 2.5;
}

.c-paragraph--mt1 {
  margin-top: 36px;
}

@media screen and (max-width: 768px) {
  .c-paragraph--mt1 {
    margin-top: 26px;
  }
}

.c-paragraph1 {
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 0;
  margin-top: 42px;
  margin-bottom: 40px;
  color: #000;
}

@media screen and (max-width: 768px) {
  .c-paragraph1 {
    font-size: 1.4rem;
    line-height: 2.14;
    margin-top: 32px;
    margin-bottom: 23px;
  }
}
/* -----------------------------------------------------
 * Common style for table
 * -------------------------------------------------- */
.c-table1 {
  margin-top: 50px;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .c-table1 {
    margin-top: 23px;
    width: 100%;
  }
}

.c-table1__th {
  line-height: 2.25;
  font-size: 1.6rem;
  font-weight: 700;
  vertical-align: top;
  letter-spacing: 0;
  padding: 20px 32px;
  border: solid 1px #bbbbbb;
}

.c-table1__th--pl1 {
  padding-left: 32px;
}

@media screen and (max-width: 768px) {
  .c-table1__th {
    padding: 16px 8px 16px 14px;
    font-size: 1.4rem;
    line-height: 1.43;
  }
  .c-table1__th:first-of-type {
    width: 96px;
  }
}

.c-table1__td {
  line-height: 2.25;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 20px 32px;
  border: solid 1px #bbbbbb;
}

@media screen and (max-width: 768px) {
  .c-table1__td {
    line-height: 2.08;
    font-size: 1.2rem;
    padding: 10px 18px 10px 18px;
  }
}

.c-table1__thead {
  background-color: #cbd2ec;
}

.c-table1__tbody {
  background-color: #fff;
}

.c-table2 {
  margin-top: 50px;
  width: 100%;
  border: none;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .c-table2 {
    margin-top: 25px;
    border-radius: 5px;
    overflow: hidden;
  }
}

.c-table2--mt1 {
  margin-top: 58px;
}

@media screen and (max-width: 768px) {
  .c-table2--mt1 {
    margin-top: 35px;
  }
}

.c-table2--mt1 .c-table2__thead .c-table2__th {
  padding: 35px 40px;
}

@media screen and (max-width: 768px) {
  .c-table2--mt1 .c-table2__thead .c-table2__th {
    padding: 16px 18px;
  }
}

.c-table2--mt1 .c-table2__tbody .c-table2__th,
.c-table2--mt1 .c-table2__tbody .c-table2__td {
  padding: 29px 40px;
  vertical-align: top;
}

@media screen and (max-width: 768px) {
  .c-table2--mt1 .c-table2__tbody .c-table2__th,
  .c-table2--mt1 .c-table2__tbody .c-table2__td {
    padding: 14px 12px;
  }
}

.c-table2__th {
  line-height: 1.63;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 22px 20px 32px 30px;
}

@media screen and (max-width: 768px) {
  .c-table2__th {
    padding: 13px 18px 13px 18px;
    font-size: 1.4rem;
  }
}

.c-table2__td {
  line-height: 2.25;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 16px 20px 20px 30px;
}

.c-table2__td,
.c-table2__th {
  border: 1px #bbbbbb solid;
  letter-spacing: 0;
}

.c-table2__first {
  width: 184px;
}

@media screen and (max-width: 768px) {
  .c-table2__first {
    width: 96px;
  }
}

.c-table2__thead .c-table2__th {
  background-color: #cbd2ec;
  border-top: none;
}

.c-table2__thead .c-table2__th:first-of-type {
  border-left: none;
}

.c-table2__thead .c-table2__th:last-of-type {
  border-right: none;
}

.c-table2__tbody .c-table2__td,
.c-table2__tbody .c-table2__th {
  padding: 16px 20px 20px 30px;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .c-table2__tbody .c-table2__td,
  .c-table2__tbody .c-table2__th {
    padding: 12px;
    vertical-align: top;
  }
}

@media screen and (max-width: 768px) {
  .c-table2__tbody .c-table2__th {
    font-size: 1.4rem;
    line-height: 1.43;
  }
}

@media screen and (max-width: 768px) {
  .c-table2__tbody .c-table2__td {
    font-size: 1.2rem;
    line-height: 2.08;
    padding: 9px 8px 14px 17px;
  }
}

.c-table2__tbody--bg .c-table2__td,
.c-table2__tbody--bg .c-table2__th {
  background-color: #f4f5f8;
}

/* -----------------------------------------------------
 * Common style for button
 * -------------------------------------------------- */
.c-btn1 {
  background-color: #fff;
  color: #2d6be4;
  padding: 13.4px 20px;
  padding-right: 40px;
  border-radius: 100px;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-decoration: none;
  display: inline-block;
  position: relative;
  min-width: 203px;
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  .c-btn1 {
    position: absolute;
    background: transparent;
    min-width: 26px;
    padding: unset;
    min-height: 26px;
    padding: 13px;
    bottom: 8px;
    right: 11px;
  }
}

.c-btn1::before {
  content: "";
  background: url(/images/top_2022/ico-arrow-short-blue.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translate(-50%, -50%);
  aspect-ratio: 17/7;
  width: 12px;
}

@media screen and (max-width: 768px) {
  .c-btn1::before {
    right: 50%;
    transform: translate(40%, -50%);
    width: 15px;
    background: url(/images/top_2022/ico-arrow-short-white.svg) no-repeat center/contain;
  }
}

.c-btn1:hover {
  opacity: 0.7;
}

.c-btn2 {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #3b60d8;
  color: #fff;
  border-radius: 100px;
  padding: 28px 20px;
  padding-right: 64px;
  width: 22.29vw;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .c-btn2 {
    font-size: 1.4rem;
    width: 50%;
    padding: 9px 30px;
  }
}

.c-btn2:before {
  content: "";
  background: url(/images/top_2022/ico-arrow-short-white.svg) no-repeat center/contain;
  width: 17px;
  aspect-ratio: 17/7;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}

/* -----------------------------------------------------
 * Text Highlight
 * -------------------------------------------------- */
.c-txt-highlight-haft {
  display: inline;
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #fffc0e;
  text-underline-offset: -0.35em;
}

.c-txt-highlight {
  background-color: #fffc0e;
  font-weight: 700;
  display: inline;
}
.c-txt-highlight--regular {
  font-weight: 400;
}

/* -----------------------------------------------------
 * Mainvisual for page not top
 * -------------------------------------------------- */
.page-mainv {
  width: 100%;
  position: relative;
  height: 541px;
}
@media screen and (max-width: 768px) {
  .page-mainv {
    height: 270.5px;
  }
}
.page-mainv:before {
  content: "";
  background-image: url(/images/security/secure-mainvisual.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .page-mainv:before {
    background-image: url(/images/security/secure-mainvisual-sp.jpg);
  }
}
.page-mainv__content {
  display: flex;
  height: 100%;
  justify-content: center;
  flex-direction: column;
  gap: 35px;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .page-mainv__content {
    gap: 6px;
    padding-bottom: 20px;
  }
}

/* -----------------------------------------------------
 * Mod Image Box has background 
 * -------------------------------------------------- */
.mod-imagebox {
  background-color: #f4f5f8;
  padding: 31px 39px 41px 39px;
  margin-top: 44px;
  display: inline-block;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .mod-imagebox {
    padding: 0;
    width: 154px;
    margin-top: 14px;
    background-color: transparent;
  }
}
.mod-imagebox img {
  width: 100%;
  height: 100%;
}

/* -----------------------------------------------------
 * Mod security item
 * -------------------------------------------------- */
.secure-list {
  display: flex;
  flex-wrap: wrap;
  gap: max(1.4vw, 15px);
  margin-top: 41px;
}
@media screen and (max-width: 1059px) {
  .secure-list {
    margin-top: 31px;
    gap: 10px;
    row-gap: 19px;
  }
}
.secure-item {
  width: calc(25% - max(1.4vw, 15px) * 3 / 4);
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  padding-top: 52px;
  padding-bottom: 18px;
}
@media screen and (max-width: 1059px) {
  .secure-item {
    width: calc(50% - 5px);
    padding-top: 20px;
    border-radius: 5px;
  }
}
.secure-item img {
  max-width: 100%;
}
.secure-item__img {
  height: 115px;
}
@media screen and (max-width: 768px) {
  .secure-item__img {
    height: 51px;
  }
}
.secure-item__innerimg1 {
  position: relative;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg1 {
    height: 69px;
    right: 0;
    top: 0;
  }
}
.secure-item__innerimg2 {
  position: relative;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg2 {
    height: 61px;
    top: 0;
  }
}
.secure-item__innerimg3 {
  position: relative;
  top: 5px;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg3 {
    top: 8px;
    height: 56px;
  }
}
.secure-item__innerimg4 {
  position: relative;
  top: -15px;
  right: -9px;
}
@media screen and (max-width: 1059px) {
  .secure-item__innerimg4 {
    height: 110px;
  }
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg4 {
    top: 0px;
    height: 67px;
    right: -13px;
  }
}
.secure-item__innerimg5 {
  position: relative;
  top: 28px;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg5 {
    top: 15px;
    height: 44px;
  }
}
.secure-item__innerimg6 {
  position: relative;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg6 {
    top: 9px;
    height: 54px;
  }
}
.secure-item__innerimg7 {
  position: relative;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg7 {
    height: 53px;
  }
}
.secure-item__innerimg8 {
  position: relative;
  top: 14px;
}
@media screen and (max-width: 768px) {
  .secure-item__innerimg8 {
    height: 50px;
  }
}
.secure-item__number {
  margin-top: 35px;
  width: calc(100% - 48px);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .secure-item__number {
    width: calc(100% - 24px);
  }
}
.secure-item__number::before {
  content: "";
  text-wrap: nowrap;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/images/security/line.png);
  background-repeat: repeat-x;
  background-size: calc(100% + 2px);
  height: 1px;
  width: 100%;
}
.secure-item__innernumber {
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #c5d0f6;
  height: 32px;
  width: 32px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .secure-item__innernumber {
    height: 24px;
    width: 24px;
    font-size: 1.2rem;
  }
}
.secure-item__title {
  font-size: 1.6rem;
  line-height: 1.88;
  width: 100%;
  padding: 7px 24px;
  font-weight: 700;
  padding-bottom: 2px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .secure-item__title {
    font-size: 1.2rem;
    padding: 4px 18px;
  }
}
.secure-item__descriptions {
  width: 100%;
  padding-left: max(0.013vw, 10px);
  padding-right: max(0.013vw, 10px);
}
@media screen and (max-width: 768px) {
  .secure-item__descriptions {
    padding-left: 17px;
    padding-right: 17px;
    margin-top: -6px;
  }
}
.secure-item__description {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.88;
  letter-spacing: 0;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .secure-item__description {
    font-size: 1.2rem;
    line-height: 1.66;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {

.single-link > a::after {
    content: "";
    background: url(../images/top_2022/ico-arrow-short-blue.svg) no-repeat center / contain;
    height: 6px;
    width: 16px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.secure-item__description::before {
  content: "・";
}
