@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import "detail.css";

/* ---------------------------------------------------------------------------
//  base
--------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  height: 100%;
}
img,
iframe {
  border: 0;
  vertical-align: bottom;
}
ul,
ol {
  list-style-type: none;
}
a {
  text-decoration: none;
}
mark {
  font-weight: bold;
  color: inherit;
  background-color: transparent;
}
em {
  font-style: normal;
}
address {
  font-style: normal;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input,
select {
  vertical-align: baseline;
}

.cf::after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

:root {
  --navy: #001e6e;
  --blue: #508ccd;
  --red: #ff0000;
  /* --grad: linear-gradient(to bottom, #508ccd 0%, #508ccd 19%, #2e5ea5 54%, #001e6e 100%); */
  --grad: linear-gradient(180deg, #508ccd -52.46%, #508ccd -17.78%, #2e5ea5 47.31%, #001e6e 131.15%);
  --grad-r: linear-gradient(to top, #508ccd 0%, #508ccd 19%, #2e5ea5 54%, #001e6e 100%);
  --bg1: #fff;
  --bg2: #ebf0f0;
  --bg3: #aaa;
  --bg4: #20282d;
  --gray-bg: #f7f7f7;
  --gray-line: #dedede;
  --gray-txt: #707070;
}

/* ---------------------------------------------------------------------------
//  all
--------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1320px) {
  html {
    font-size: calc(100vw / 1320 * 10);
  }
} /*@*/
@media screen and (max-width: 1024px) {
  html {
    font-size: calc(100vw / 1024 * 10);
  }
} /*@*/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.5rem, 1.5rem);
  color: var(--bg4);
  line-height: 1.6;
  background: var(--bg1);
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  line-height: 1.4;
}

a {
  transition: 0.3s;
  color: inherit;
}
@media screen and (min-width: 751px) {
  a:hover {
    opacity: 0.7;
  }
} /* @min751 */

.preload a {
  transition: none !important;
}

.wrap {
  margin: 0 auto;
  padding-top: 8rem;
}
.inner {
  max-width: 120rem;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
ul li {
  line-height: 2;
}
ul.dot li,
ul.indent li {
  padding-left: 1em;
  position: relative;
}
ul.dot li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
ul.asterisk {
  color: var(--gray-txt);
}
ul.asterisk li::before {
  content: "※";
}
ul.kome {
  position: relative;
  padding-left: 1.25em;
  color: var(--gray-txt);
}
ul.kome li {
  line-height: unset;
}
ul.kome li::before {
  position: absolute;
  content: "※";
  left: 0;
}
ol.num {
  counter-reset: li;
}
ol.num > li {
  padding-left: 1.2em;
  position: relative;
}
ol.num > li:before {
  content: counter(li) ".";
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;
}
ol.brackets {
  counter-reset: li;
}
ol.brackets > li {
  padding-left: 1.55em;
  position: relative;
}
ol.brackets > li:nth-child(n + 10) {
  padding-left: 2.1em;
}
ol.brackets > li:before {
  content: "(" counter(li) ")";
  counter-increment: li;
  position: absolute;
  top: 0;
  left: 0;
}
hr {
  display: block;
  height: 0.1rem;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 1em 0;
}
.news-page hr {
  border-top: 1px solid gray;
}
img {
  width: 100%;
  height: auto;
}
img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
img.contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-overflow {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.t-center {
  text-align: center;
}
.t-right {
  text-align: right;
}
.pc-center {
  text-align: center;
}
.bold {
  font-weight: 700;
}
.block {
  display: block;
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex.jstart {
  justify-content: flex-start;
}
.flex.jend {
  justify-content: flex-end;
}
.flex.jcenter {
  justify-content: center;
}
.flex.fwrap {
  flex-wrap: wrap;
}
.flex.fwrap.bottom > * {
  margin-bottom: 2rem;
}
.flex.istart {
  align-items: flex-start;
}
.flex.iend {
  align-items: flex-end;
}
.flex.icenter {
  align-items: center;
}
.flex.half > * {
  width: 48.5%;
}
.flex.half2 > * {
  width: 46.5%;
}
.flex.half50 > * {
  width: 50%;
}
.flex.third > * {
  width: 32%;
}
.flex.third > .two-thirds {
  width: 64%;
}
.flex.quarter > * {
  width: 24%;
}
.flex.reverse {
  flex-flow: row-reverse;
}
.flex.third.fwrap::after {
  content: "";
  width: 32%;
  display: block;
}
.flex.quarter.fwrap::before {
  content: "";
  width: 24%;
  display: block;
  order: 1;
}
.flex.quarter.fwrap::after {
  content: "";
  width: 24%;
  display: block;
}

.flex.separator .item {
  width: calc(100% / 3);
  padding: 0 4rem;
}
.flex.separator .item:not(:last-child) {
  border-right: 1px solid var(--gray-line);
}

.flex.whalf {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.flex.whalf > * {
  display: block;
}
.flex.whalf > .w80 {
  width: 8rem;
}
.flex.whalf > .w90 {
  width: 9rem;
}
.flex.whalf > .w100 {
  width: 10rem;
}
.flex.whalf > .w80 + * {
  width: calc(100% - 8rem);
}
.flex.whalf > .w90 + * {
  width: calc(100% - 9rem);
}
.flex.whalf > .w100 + * {
  width: calc(100% - 10rem);
}
@media screen and (max-width: 750px) {
  .flex.whalf > .w80.wfull-sp,
  .flex.whalf > .w80.wfull-sp + *,
  .flex.whalf > .w90.wfull-sp,
  .flex.whalf > .w90.wfull-sp + *,
  .flex.whalf > .w100.wfull-sp,
  .flex.whalf > .w100.wfull-sp + * {
    width: 100%;
  }
}

a.scale {
  overflow: hidden;
}
a.scale .image {
  overflow: hidden;
}
a.scale img {
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  a.scale:hover img {
    transform: scale(1.1);
  }
} /* @min751 */

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background:
    url(../images/common/logo_bg.png) center center / contain no-repeat,
    var(--grad);
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading .logo {
  width: 33rem;
  animation: loading-logo 0.3s ease forwards;
}
@keyframes loading-logo {
  from {
    opacity: 0;
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.loading.loaded {
  animation: loading-out 0.5s forwards;
  pointer-events: none;
}
@keyframes loading-out {
  to {
    opacity: 0;
  }
}
.is-loaded-pass .loading {
  display: none !important;
}

.curtain.show {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: 0.3s;
}
section {
  position: relative;
}
.anchor {
  padding-top: 6rem;
  margin-top: -6rem;
}

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

.header-sp,
.sp-only,
.sp-only-inline {
  display: none;
}
br.xl {
  display: none;
}
br.pc {
  display: block;
}
br.tab {
  display: none;
}
br.sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .wrap {
    padding-top: 5.8rem;
  }
  .inner {
    max-width: 92.4rem;
  }
}
@media screen and (min-width: 1024px) {
  br.xl {
    display: inherit;
  }
}
@media screen and (min-width: 750.1px) and (max-width: 1023.9px) {
  br.tab,
  br.tab.sp {
    display: inherit;
  }
}
@media screen and (max-width: 750px) {
  html > * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  html {
    overflow-y: visible;
  }
  body {
    min-width: 100%;
    overflow-x: hidden;
  }
  body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }

  .sp-only {
    display: block;
  }
  .sp-only-inline {
    display: inline;
  }
  .pc-only {
    display: none;
  }
  br.pc {
    display: none;
  }
  br.sp {
    display: block;
  }
  br.tab.sp {
    display: inherit;
  }
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }

  .wrap {
    margin: 0 auto;
    padding-top: 5.8rem;
  }
  .inner {
    width: 100%;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .flex:not(.alw) {
    flex-flow: column nowrap;
  }
  .flex.istart:not(.alw),
  .flex.iend:not(.alw),
  .flex.icenter:not(.alw) {
    align-items: stretch;
  }
  .flex.half:not(.alw) > * {
    width: 100%;
  }
  .flex.half2:not(.alw) > * {
    width: 100%;
  }
  .flex.half50:not(.alw) > * {
    width: 100%;
  }
  .flex.third:not(.alw) > *,
  .flex.third:not(.alw) > .two-thirds {
    width: 100%;
  }
  .flex.quarter:not(.alw) > * {
    width: 100%;
  }
  .flex.reverse:not(.alw) {
    flex-flow: column nowrap;
  }
  /*
  .flex:not(.alw) > * { margin-bottom: 20px; }
  .flex:not(.alw) > *:last-child { margin-bottom: 0; }
  */
  .flex.sp-half > * {
    width: 48%;
  }
  .flex.sp-half50 > * {
    width: 50%;
  }
  .flex.sp-fwrap {
    flex-wrap: wrap;
  }
  .flex.sp-gap0 {
    gap: 0;
  }
  .flex.sp-gap20 {
    gap: 2rem;
  }
  .flex.sp-gap30 {
    gap: 3rem;
  }

  .flex.separator .item {
    width: 100%;
    max-width: initial;
    padding: 3rem 0;
  }
  .flex.separator .item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--gray-line);
  }

  .sp-flex {
    display: flex;
    justify-content: space-between;
  }
  .sp-flex.jstart {
    justify-content: flex-start;
  }
  .sp-flex.jend {
    justify-content: flex-end;
  }
  .sp-flex.jcenter {
    justify-content: center;
  }
  .sp-flex.fwrap {
    flex-wrap: wrap;
  }
  .sp-flex.fwrap.bottom > * {
    margin-bottom: 2rem;
  }
  .sp-flex.istart {
    align-items: flex-start;
  }
  .sp-flex.iend {
    align-items: flex-end;
  }
  .sp-flex.icenter {
    align-items: center;
  }

  .pc-center {
    text-align: left;
  }
  .sp-center {
    text-align: center;
  }

  .table-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 1rem;
    position: relative;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  .table-wrapper::-webkit-scrollbar {
    height: 0.8rem;
  }
  .table-wrapper::-webkit-scrollbar-track {
    background: #e4e4e4;
  }
  .table-wrapper::-webkit-scrollbar-thumb {
    background: #aaa;
  }
  .table-wrapper table {
    width: auto;
  }

  html {
    font-size: calc(100vw / 375 * 10);
  }
  body {
    font-size: 1.4rem;
  }
  .loading .logo {
    width: 24rem;
    padding-bottom: 5rem;
  }
  .anchor {
    /* padding-top: 5.8rem;
    margin-top: -5.8rem; */
    padding-top: 0;
    margin-top: 0;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  heading
--------------------------------------------------------------------------- */
.h68_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 6.8rem;
  font-weight: 600;
  line-height: 1.1;
}
.h60_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.2;
}
.h50_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1.2;
}
.h45_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.h40_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
}
.h32_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.2;
}
.h28_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.h24_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.h20_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
.h18_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: clamp(14px, 1.8rem, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
}
.h16_en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: clamp(14px, 1.6rem, 1.6rem);
  font-weight: 500;
  line-height: 1.2;
}

.h46_ja {
  font-size: 4.6rem;
  font-weight: 500;
  line-height: 1.5;
}
.h32_ja {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
}
.h28_ja {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
}
.h24_ja {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
}
.h20_ja {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}
.h18_ja {
  font-size: clamp(14px, 1.8rem, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
}
.h16_ja {
  font-size: clamp(14px, 1.6rem, 1.6rem);
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 750px) {
  .h68_en {
    font-size: 4.2rem;
  }
  .h60_en {
    font-size: 3.6rem;
  }
  .h50_en {
    font-size: 3.2rem;
  }
  .h45_en {
    font-size: 3rem;
  }
  .h40_en {
    font-size: 3.6rem;
  }
  .h32_en {
    font-size: 2.8rem;
  }
  .h28_en {
    font-size: 2.4rem;
  }
  .h24_en {
    font-size: 2rem;
  }
  .h20_en {
    font-size: 1.8rem;
  }
  .h18_en {
    font-size: 1.7rem;
  }
  .h16_en {
    font-size: 1.5rem;
  }

  .h46_ja {
    font-size: 3.6rem;
  }
  .h32_ja {
    font-size: 2.8rem;
  }
  .h28_ja {
    font-size: 2rem;
  }
  .h24_ja {
    font-size: 1.8rem;
  }
  .h20_ja {
    font-size: 1.6rem;
  }
  .h18_ja {
    font-size: 1.6rem;
  }
  .h16_ja {
    font-size: 1.5rem;
  }

  .sp-h30_ja {
    font-size: 3rem;
  }
  .sp-h24_ja {
    font-size: 2.4rem;
  }
  .sp-h14_ja {
    font-size: 1.4rem;
  }
  .sp-h12_ja {
    font-size: 1.2rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  text
--------------------------------------------------------------------------- */
.en16 {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: clamp(14px, 1.6rem, 1.6rem);
}

.ja24 {
  font-size: clamp(14px, 2.4rem, 2.4rem);
}
.ja18 {
  font-size: clamp(14px, 1.8rem, 1.8rem);
}
.ja15 {
  font-size: clamp(14px, 1.5rem, 1.5rem);
}
.ja14 {
  font-size: clamp(14px, 1.4rem, 1.4rem);
}
.ja13 {
  font-size: clamp(12px, 1.3rem, 1.3rem);
}
.ja12 {
  font-size: clamp(12px, 1.2rem, 1.2rem);
}

@media screen and (max-width: 750px) {
  .en16 {
    font-size: 1.5rem;
  }

  .ja15 {
    font-size: 1.4rem;
  }
  .ja14 {
    font-size: 1.3rem;
  }
  .ja13 {
    font-size: 1.2rem;
  }
  .ja12 {
    font-size: 1.1rem;
  }

  .sp-ja14 {
    font-size: 1.4rem;
  }
  .sp-ja13 {
    font-size: 1.3rem;
  }
  .sp-ja12 {
    font-size: 1.2rem;
  }
  .sp-ja11 {
    font-size: 1.1rem;
  }
  .sp-ja10 {
    font-size: 1rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  weight
--------------------------------------------------------------------------- */
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}

/* ---------------------------------------------------------------------------
//  color
--------------------------------------------------------------------------- */
.fc-w {
  color: var(--bg1);
}
.fc-b {
  color: var(--bg4);
}
.fc-n {
  color: var(--navy);
}

/* ---------------------------------------------------------------------------
//  indent
--------------------------------------------------------------------------- */
.indent1 {
  text-indent: -1em;
  padding-left: 1em;
}
.indent1-1 {
  text-indent: -1.1em;
  padding-left: 1.1em;
}
.indent1-2 {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.indent1s {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
.indent1-3 {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.indent1-4 {
  text-indent: -1.4em;
  padding-left: 1.4em;
}
.indent1m {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.indent1l {
  text-indent: -1.75em;
  padding-left: 1.75em;
}
.indent2 {
  text-indent: -2em;
  padding-left: 2em;
}
.indent3 {
  text-indent: -3em;
  padding-left: 3em;
}
@media screen and (max-width: 750px) {
  .indent1-sp {
    text-indent: -1em;
    padding-left: 1em;
  }
  .indent2-sp {
    text-indent: -2em;
    padding-left: 2em;
  }
  .indent3-sp {
    text-indent: -3em;
    padding-left: 3em;
  }
}

/* ---------------------------------------------------------------------------
//  margin
--------------------------------------------------------------------------- */
.mt0 {
  margin-top: 0;
}
.mt5 {
  margin-top: 0.5rem;
}
.mt10 {
  margin-top: 1rem;
}
.mt20 {
  margin-top: 2rem;
}
.mt30 {
  margin-top: 3rem;
}
.mt40 {
  margin-top: 4rem;
}
.mt50 {
  margin-top: 5rem;
}
.mt60 {
  margin-top: 6rem;
}
.mt80 {
  margin-top: 8rem;
}
.mt90 {
  margin-top: 9rem;
}
.mt100 {
  margin-top: 10rem;
}
.mt110 {
  margin-top: 11rem;
}
.mt120 {
  margin-top: 12rem;
}
.mt130 {
  margin-top: 13rem;
}
.mt140 {
  margin-top: 14rem;
}
.mt150 {
  margin-top: 15rem;
}

.mb0 {
  margin-bottom: 0;
}
.mb5 {
  margin-bottom: 0.5rem;
}
.mb10 {
  margin-bottom: 1rem;
}
.mb20 {
  margin-bottom: 2rem;
}
.mb30 {
  margin-bottom: 3rem;
}
.mb40 {
  margin-bottom: 4rem;
}
.mb50 {
  margin-bottom: 5rem;
}
.mb80 {
  margin-bottom: 8rem;
}
.mb100 {
  margin-bottom: 10rem;
}
.mb110 {
  margin-bottom: 11rem;
}
.mb120 {
  margin-bottom: 12rem;
}
.mb130 {
  margin-bottom: 13rem;
}
.mb140 {
  margin-bottom: 14rem;
}
.mb150 {
  margin-bottom: 15rem;
}

.mr0 {
  margin-right: 0;
}
.mr5 {
  margin-right: 0.5rem;
}
.mr10 {
  margin-right: 1rem;
}
.mr20 {
  margin-right: 2rem;
}
.mr30 {
  margin-right: 3rem;
}
.mr40 {
  margin-right: 4rem;
}
.mr50 {
  margin-right: 5rem;
}
.mr60 {
  margin-right: 6rem;
}
.mr70 {
  margin-right: 7rem;
}
.mr80 {
  margin-right: 8rem;
}

@media screen and (max-width: 750px) {
  .mt80 {
    margin-top: 6rem;
  }
  .mt100 {
    margin-top: 6rem;
  }
  .mt150 {
    margin-top: 10rem;
  }
  .mb80 {
    margin-bottom: 6rem;
  }
  .mb100 {
    margin-bottom: 6rem;
  }
  .mb150 {
    margin-bottom: 10rem;
  }
} /* @max750 */

@media screen and (max-width: 750px) {
  .mt0-sp {
    margin-top: 0;
  }
  .mt5-sp {
    margin-top: 0.5rem;
  }
  .mt10-sp {
    margin-top: 1rem;
  }
  .mt20-sp {
    margin-top: 2rem;
  }
  .mt30-sp {
    margin-top: 3rem;
  }
  .mt40-sp {
    margin-top: 4rem;
  }
  .mt50-sp {
    margin-top: 5rem;
  }
  .mt60-sp {
    margin-top: 6rem;
  }
  .mt70-sp {
    margin-top: 7rem;
  }
  .mt80-sp {
    margin-top: 8rem;
  }
  .mt90-sp {
    margin-top: 9rem;
  }
  .mt100-sp {
    margin-top: 10rem;
  }
  .mt110-sp {
    margin-top: 11rem;
  }
  .mt120-sp {
    margin-top: 12rem;
  }
}

@media screen and (max-width: 750px) {
  .mr0-sp {
    margin-right: 0;
  }
  .mr5-sp {
    margin-right: 0.5rem;
  }
  .mr10-sp {
    margin-right: 1rem;
  }
  .mr20-sp {
    margin-right: 2rem;
  }
  .mr30-sp {
    margin-right: 3rem;
  }
  .mr40-sp {
    margin-right: 4rem;
  }
  .mr50-sp {
    margin-right: 5rem;
  }
  .mr60-sp {
    margin-right: 6rem;
  }
  .mr70-sp {
    margin-right: 7rem;
  }
  .mr80-sp {
    margin-right: 8rem;
  }
  .mr90-sp {
    margin-right: 9rem;
  }
  .mr100-sp {
    margin-right: 10rem;
  }
  .mr110-sp {
    margin-right: 11rem;
  }
  .mr120-sp {
    margin-right: 12rem;
  }
}

@media screen and (max-width: 750px) {
  .mb0-sp {
    margin-bottom: 0;
  }
  .mb5-sp {
    margin-bottom: 0.5rem;
  }
  .mb10-sp {
    margin-bottom: 1rem;
  }
  .mb20-sp {
    margin-bottom: 2rem;
  }
  .mb30-sp {
    margin-bottom: 3rem;
  }
  .mb40-sp {
    margin-bottom: 4rem;
  }
  .mb50-sp {
    margin-bottom: 5rem;
  }
  .mb80-sp {
    margin-bottom: 8rem;
  }
  .mb100-sp {
    margin-bottom: 10rem;
  }
  .mb110-sp {
    margin-bottom: 11rem;
  }
  .mb120-sp {
    margin-bottom: 12rem;
  }
  .mb130-sp {
    margin-bottom: 13rem;
  }
  .mb140-sp {
    margin-bottom: 14rem;
  }
  .mb150-sp {
    margin-bottom: 15rem;
  }
}
.pb0 {
  padding-bottom: 0 !important;
}

/* ---------------------------------------------------------------------------
//  btn
--------------------------------------------------------------------------- */
.btn-wrap {
  margin: 4rem auto 0;
  gap: 1.2rem;
}
.btn-standard {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  text-align: center;
  font-weight: 500;
  color: var(--bg4);
  background: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.3s;
}
.btn-standard.s-s {
  width: 13.2rem;
  max-width: 100%;
  height: 4rem;
}
.btn-standard.s-m {
  width: 24rem;
  max-width: 100%;
  height: 4.4rem;
}
.btn-standard.s-l {
  width: 28rem;
  max-width: 100%;
  height: 4.4rem;
}
.btn-standard.s-auto {
  display: inline-flex;
  padding: 0 1.5rem;
  width: auto;
  max-width: 100%;
  height: 4rem;
}

.btn-standard.c-b {
  border: 2px solid var(--bg4);
}
@media screen and (min-width: 751px) {
  .btn-standard.c-b:hover {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
} /* @min751 */

.btn-standard.c-w {
  border: 2px solid var(--bg1);
  color: var(--bg1);
}
@media screen and (min-width: 751px) {
  .btn-standard.c-w:hover {
    opacity: 1;
    color: var(--navy);
    background: var(--bg1);
  }
} /* @min751 */

.cnt-more {
  display: none;
}
.btn-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid var(--bg4);
  border-radius: 10rem;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 24rem;
  height: 5rem;
}
.btn-more::after {
  content: "＋";
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
.btn-more.active {
  display: none;
}
@media screen and (min-width: 751px) {
  .btn-more:hover {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
} /* @min751 */

.btn-download {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid var(--bg4);
  border-radius: 10rem;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 24rem;
  height: 5rem;
}
.btn-download.c-w {
  border: 2px solid var(--bg1);
  color: var(--bg1);
}
.btn-download::after {
  content: "";
  display: block;
  background: url(../images/common/icon_download_b.svg) center center / contain no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  transition: 0.3s;
}
.btn-download.c-w::after {
  background: url(../images/common/icon_download_w.svg) center center / contain no-repeat;
}

@media screen and (min-width: 751px) {
  .btn-download:hover {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
  .btn-download:hover::after {
    background: url(../images/common/icon_download_w.svg) center center / contain no-repeat;
  }
  .btn-download.c-w:hover {
    opacity: 1;
    color: var(--bg4);
    background: var(--bg1);
  }
  .btn-download.c-w:hover::after {
    background: url(../images/common/icon_download_b.svg) center center / contain no-repeat;
  }
} /* @min751 */

.btn-underline {
  display: inline-block;
  font-weight: 500;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
.btn-underline::before,
.btn-underline::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.1rem;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bg3);
  transition: 0.8s var(--ease-out-expo);
}
.btn-underline.lc-n::before,
.btn-underline.lc-n::after {
  background: var(--navy);
}
.btn-underline::before {
  transform: scaleX(0);
  transform-origin: left;
}
.btn-underline::after {
  transform-origin: right;
  transition-delay: 0.25s;
}
@media screen and (min-width: 751px) {
  .btn-underline:hover::before {
    transform: scaleX(1);
    transition-delay: 0.25s;
  }
  .btn-underline:hover::after {
    transform: scaleX(0);
    transition-delay: 0s;
  }
} /* @min751 */

.link-hoverline {
  padding-bottom: 0.5rem;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
.link-hoverline::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.1rem;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bg3);
  transition: 0.8s var(--ease-out-expo);
}
.link-hoverline::after {
  transform: scaleX(0);
  transform-origin: left;
}
@media screen and (min-width: 751px) {
  .link-hoverline:hover::after {
    transform: scaleX(1);
    transition-delay: 0.25s;
  }
} /* @min751 */

.link-underline {
  text-decoration: underline;
}
@media screen and (min-width: 751px) {
  .link-underline:hover {
    text-decoration: none;
  }
} /* @min751 */

@media screen and (max-width: 750px) {
  .btn-wrap {
    margin: 3rem auto 0;
    align-items: center !important;
  }
} /* @max750 */

@media screen and (max-width: 750px) {
  .btn-standard.s-l.sp-sm {
    width: 24rem;
  }
  .btn-standard.sp-sl {
    width: 28rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  header
--------------------------------------------------------------------------- */
.header-pc {
  width: 100%;
  height: 8rem;
  background: var(--bg1);
  border-bottom: 1px solid var(--bg3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header-pc .head {
  height: 100%;
  padding: 0 4rem;
}
.header-pc .logo {
  width: 19.6rem;
  padding-bottom: 0.8rem;
}
.header-pc .gloval-nav .drop-trigger {
  display: flex;
  align-items: center;
}
.header-pc .gloval-nav .gnav-search-trigger {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  top: 0.5rem;
}
.header-pc .gloval-nav .gnav-search-trigger img {
  display: block;
  width: 100%;
  height: 100%;
}
.header-pc .gloval-nav .gnav-search-trigger > span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 2.4rem;
  height: 2.4rem;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  transform-origin: center;
}
.header-pc .gloval-nav .gnav-search-trigger .default {
  opacity: 1;
  transform: scale(1);
}
.header-pc .gloval-nav .gnav-search-trigger .active {
  opacity: 0;
  transform: scale(0);
}
.header-pc .gloval-nav .gnav-search-trigger.is-active .default {
  opacity: 0;
  transform: scale(0);
}
.header-pc .gloval-nav .gnav-search-trigger.is-active .active {
  opacity: 1;
  transform: scale(1);
}

.header-pc .gloval-nav > ul {
  gap: 4rem;
}
.header-pc .gloval-nav > ul > li {
  padding-top: 2.2rem;
}
.header-pc .gloval-nav > ul > li a {
  position: relative;
  padding-bottom: 2.2rem;
}
.header-pc .gloval-nav > ul > li:not(.gnav-search) > a:hover {
  opacity: 1;
}
.header-pc .gloval-nav > ul > li:not(.gnav-search) > a::after {
  content: "";
  display: block;
  background: var(--grad);
  width: 0.5rem;
  height: 0.5rem;
  position: absolute;
  top: 2.8rem;
  left: calc(50% - 0.25rem);
  opacity: 0;
  transition: opacity 0.3s;
}
.header-pc .gloval-nav > ul > li:not(.gnav-search) > a.drop-trigger::after {
  top: 3rem;
}
.header-pc .gloval-nav > ul > li:hover > a::after {
  opacity: 1;
}

.page--reasons .header-pc .gloval-nav > ul > li.gnav-reasons a::after,
.page--product .header-pc .gloval-nav > ul > li.gnav-product a::after,
.page--cases .header-pc .gloval-nav > ul > li.gnav-cases a::after,
.page--sale .header-pc .gloval-nav > ul > li.gnav-sale a::after,
.page--support .header-pc .gloval-nav > ul > li.gnav-support a::after,
.page--company .header-pc .gloval-nav > ul > li.gnav-company a::after {
  opacity: 1;
}

.header-pc .gloval-nav > ul > li .dropmenu-bg {
  visibility: hidden;
  opacity: 0;
  z-index: 998;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background: var(--bg1);
  padding: 5rem 0;
  transition: 0.5s;
  pointer-events: none;
}
.header-pc .gloval-nav > ul > li .dropmenu-bg.show {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
  pointer-events: auto;
}

.header-pc .gloval-nav > ul > li.gnav-product .flex {
  gap: 1.3rem;
}
.header-pc .gloval-nav > ul > li.gnav-product .item {
  width: 20rem;
}
.header-pc .gloval-nav > ul > li.gnav-product .item p {
  font-size: clamp(14px, 1.4rem, 1.4rem);
}
.header-pc .gloval-nav > ul > li.gnav-product .list {
  padding-left: 5rem;
}
.header-pc .gloval-nav > ul > li.gnav-product .list li {
  font-size: clamp(14px, 1.4rem, 1.4rem);
  margin-bottom: 1.2rem;
}

.header-pc .gloval-nav > ul > li.gnav-cases .gnav-cases-parent {
  gap: 4rem;
  justify-content: flex-start;
}
.header-pc .gloval-nav > ul > li.gnav-cases .gnav-cases-title {
  font-size: clamp(14px, 1.6rem, 1.6rem);
  font-weight: 500;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg4);
  margin-bottom: 2rem;
}
.header-pc .gloval-nav > ul > li.gnav-cases .gnav-cases-child {
  gap: 2.4rem;
}
.header-pc .gloval-nav > ul > li.gnav-cases .gnav-cases-child.wide ul {
  width: 25rem;
}
.header-pc .gloval-nav > ul > li.gnav-cases .gnav-cases-child li {
  font-size: clamp(14px, 1.4rem, 1.4rem);
  margin-bottom: 0.6rem;
}

.header-pc .gloval-nav > ul > li.gnav-company .flex {
  flex-wrap: wrap;
  gap: 4rem 2rem;
}
.header-pc .gloval-nav > ul > li.gnav-company .item {
  width: calc((100% - 2rem * 5) / 6);
}
.header-pc .gloval-nav > ul > li.gnav-company .item .image {
  height: 12rem;
}
.header-pc .gloval-nav > ul > li.gnav-support .dropmenu-bg {
  height: 38rem;
}
.header-pc .gloval-nav > ul > li.gnav-support .flex {
  gap: 4rem 2rem;
}
.header-pc .gloval-nav > ul > li.gnav-support .item {
  width: calc((100% - 2rem * 5) / 6);
}
.header-pc .gloval-nav > ul > li.gnav-support .item .image {
  height: 12rem;
}

@media screen and (max-width: 1024px) {
  .header-pc {
    display: none;
  }
  .header-sp {
    display: block;
    width: 100%;
    height: 5.8rem;
    background: var(--bg1);
    border-bottom: 1px solid var(--bg3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .header-sp .head {
    height: 100%;
    padding: 0 1rem 0 2rem;
  }
  .header-sp .logo {
    width: 13.1rem;
    padding-bottom: 0.5rem;
  }
  .sp-trigger {
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sp-trigger-icon {
    position: relative;
    width: 2.8rem;
    height: 1rem;
  }
  .sp-trigger-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.1rem;
  }
  .sp-trigger-icon,
  .sp-trigger-icon span {
    display: inline-block;
    transition: all 0.2s;
  }
  .sp-trigger-icon span:nth-of-type(1) {
    top: 0;
    background: var(--blue);
  }
  .sp-trigger-icon span:last-of-type {
    bottom: 0;
    background: var(--bg4);
  }
  .sp-trigger.active span:nth-of-type(1) {
    transform: translateY(0.45rem) rotate(-45deg);
  }
  .sp-trigger.active span:last-of-type {
    transform: translateY(-0.45rem) rotate(45deg);
  }
  .header-sp .gnav-sp-wrap {
    display: none;
    position: fixed;
    position: absolute;
    top: 5.8rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 5.8rem);
    background: var(--bg1);
  }
  .header-sp .gnav-sp-scroll {
    width: 100%;
    height: 100%;
    overflow-y: auto;
  }
  .header-sp .search-form-wrap {
    width: 100%;
    height: auto;
    padding: 3rem;
    background: var(--gray-bg);
    overflow-y: none;
  }
  .header-sp .searchform input {
    height: 5rem;
    padding: 1rem;
  }
  .header-sp .searchform #searchsubmit {
    width: 5rem;
    height: 5rem;
  }
  .header-sp .gloval-nav {
    padding: 3rem 3rem 10rem;
  }
  .header-sp .gloval-nav a {
    display: block;
  }
  .header-sp .gloval-nav .gnav-menu1 > li {
    padding-bottom: 1.3rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--gray-line);
  }
  .header-sp .gloval-nav .h20_en {
    display: block;
  }
  .header-sp .gloval-nav .sub {
    display: block;
    font-size: 1.2rem;
  }
  .header-sp .gnav-menu1 .flex {
    gap: 1rem;
  }
  .header-sp .gnav-menu1 .flex a {
    flex: 1;
  }
  .gloval-sp-trigger {
    align-self: stretch;
    width: 4rem;
    position: relative;
  }
  .gloval-sp-trigger::before {
    content: "";
    width: 2rem;
    height: 0.2rem;
    background: var(--bg4);
    position: absolute;
    top: calc(50% - 0.1rem);
    left: calc(50% - 1rem);
  }
  .gloval-sp-trigger::after {
    content: "";
    width: 2rem;
    height: 0.2rem;
    background: var(--bg4);
    position: absolute;
    top: calc(50% - 0.1rem);
    left: calc(50% - 1rem);
    transition: 0.3s;
    transform: rotate(-90deg);
  }
  .gloval-sp-trigger.active::after {
    transform: rotate(0);
  }
  .header-sp .gloval-sp-content {
    display: none;
    border-top: 1px solid var(--gray-line);
    padding-top: 1.6rem;
    margin-top: 1.3rem;
  }
  .gnav-menu-list {
    font-size: 1.4rem;
  }
  .gnav-menu-list > li {
    margin-bottom: 1.3rem;
  }
  .gnav-menu-list .sub > li {
    font-size: 1.3rem;
    line-height: 1.6;
    text-indent: -0.5em;
    padding-left: 0.5em;
    margin-top: 0.8rem;
  }
  .header-sp .gloval-nav .gnav-menu2 > li {
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 0.6rem;
  }
  .header-sp .gloval-nav .gnav-menu2 .external {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .header-sp .gloval-nav .gnav-menu2 .external::after {
    content: "";
    display: block;
    background: url(../images/common/icon_external_b.svg) center center / contain no-repeat;
    width: 1rem;
    height: 1rem;
  }
  .header-sp .gloval-nav .gnav-menu3 > li {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 0.6rem;
  }
} /* @max750 */

.gnav-search-field {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 18rem;
  background: var(--gray-bg);
  position: fixed;
  top: 7rem;
  bottom: 0;
  z-index: 997;
  transition: 0.3s;
}
.gnav-search-field.is-show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-form-wrap {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.searchform {
  width: 100%;
}
.searchform > div {
  width: 100%;
  display: flex;
  align-items: center;
}
.searchform label {
  flex: 1;
}
.searchform input {
  width: 100%;
  height: 6.4rem;
  padding: 2rem;
  border: 1px solid var(--gray-line);
  outline: none;
}

.searchform input::placeholder {
  color: var(--bg3);
}

#searchsubmit {
  font-size: 0;
  color: transparent;
  background: url(../images/common/icon_search_w.svg) center center / 2.4rem no-repeat var(--bg4);
  width: 6.4rem;
  height: 6.4rem;
  border: none;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------
//  side menu
--------------------------------------------------------------------------- */
@media screen and (min-width: 751px) {
  .side-menu {
    position: fixed;
    bottom: 12%;
    right: 0;
    width: 160px;
    color: var(--bg1);
    transition: transform 0.3s ease;
    z-index: 9998;
  }

  .side-menu.is-close {
    transform: translateX(65%);
  }

  .side-menu .trigger li a {
    background: var(--bg4);
  }
  .side-menu .menu {
    background: var(--grad);
  }
  .side-menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--bg1);
    height: 56px;
    display: flex;
    align-items: center;
  }
  .side-menu .trigger li a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_trigger.svg) center center / 36px 36px no-repeat;
    width: 58px;
    height: 100%;
  }
  .side-menu .menu li:nth-child(1) a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_consultation.svg) center center / 36px 36px no-repeat;
    width: 58px;
    height: 100%;
  }
  .side-menu .menu li:nth-child(2) a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_trial.svg) center center / 36px 36px no-repeat;
    width: 58px;
    height: 100%;
  }
  .side-menu .menu li:nth-child(3) a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_mail.svg) center center / 36px 36px no-repeat;
    width: 58px;
    height: 100%;
  }
} /* @min751 */

@media screen and (max-width: 1024px) and (min-width: 751px) {
  .side-menu li a {
    font-size: 14px;
    height: 50px;
  }
  .side-menu .trigger li a::before {
    background: url(../images/common/icon_nav_trigger.svg) center center / 30px 30px no-repeat;
  }
  .side-menu .menu li:nth-child(1) a::before {
    background: url(../images/common/icon_nav_consultation.svg) center center / 30px 30px no-repeat;
  }
  .side-menu .menu li:nth-child(2) a::before {
    background: url(../images/common/icon_nav_trial.svg) center center / 30px 30px no-repeat;
  }
  .side-menu .menu li:nth-child(3) a::before {
    background: url(../images/common/icon_nav_mail.svg) center center / 30px 30px no-repeat;
  }
} /*@*/

@media screen and (max-width: 750px) {
  .side-menu {
    position: fixed;
    bottom: 14%;
    right: 0;
    width: 120px;
    color: var(--bg1);
    transition: transform 0.3s ease;
    z-index: 9998;
  }

  .side-menu.is-close {
    transform: translateX(65%);
  }

  .side-menu.is-close a,
  .side-menu.is-close button,
  .side-menu.is-close [data-click] {
    pointer-events: none;
  }
  .side-menu .trigger li a {
    background: var(--bg4);
  }
  .side-menu .menu {
    background: var(--grad);
  }
  .side-menu li a {
    font-size: 11.25px;
    font-weight: 500;
    color: var(--bg1);
    height: 42px;
    display: flex;
    align-items: center;
  }
  .side-menu .trigger li a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_trigger.svg) center center / 30px 30px no-repeat;
    width: 43.5px;
    height: 100%;
  }
  .side-menu .menu li:nth-child(1) a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_consultation.svg) center center / 30px 30px no-repeat;
    width: 43.5px;
    height: 100%;
  }
  .side-menu .menu li:nth-child(2) a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_trial.svg) center center / 30px 30px no-repeat;
    width: 43.5px;
    height: 100%;
  }
  .side-menu .menu li:nth-child(3) a::before {
    content: "";
    display: block;
    background: url(../images/common/icon_nav_mail.svg) center center / 30px 30px no-repeat;
    width: 43.5px;
    height: 100%;
  }
} /* @max750 */

.product-list-nav {
  display: none;
  width: 100%;
  height: 100vh;
  background: url(../images/common/logo_bg.png) left bottom / contain no-repeat var(--bg4);
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
}
.product-list-nav-sp-scroll {
  width: 100%;
  height: 100%;
}
.product-list-nav-close {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 1;
}
.product-list-nav-menu-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.product-list-nav-menu {
  width: 100%;
}
.product-list-nav-menu .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--bg1);
  margin-bottom: 4rem;
}
.product-list-nav-menu .rebooter .title::before {
  content: "";
  display: block;
  background: url(../images/icon/icon_recooter_w.svg) center center / contain no-repeat;
  width: 2.8rem;
  height: 2.8rem;
}
.product-list-nav-menu .control .title::before {
  content: "";
  display: block;
  background: url(../images/icon/icon_control.svg) center center / contain no-repeat;
  width: 2.8rem;
  height: 2.8rem;
}
.product-list-nav-menu .software .title::before {
  content: "";
  display: block;
  background: url(../images/icon/icon_software.svg) center center / contain no-repeat;
  width: 2.8rem;
  height: 2.8rem;
}
.product-list-nav-menu .option .title::before {
  content: "";
  display: block;
  background: url(../images/icon/icon_option.svg) center center / contain no-repeat;
  width: 2.8rem;
  height: 2.8rem;
}
.product-list-nav-menu li {
  line-height: 1.4;
  margin-bottom: 1.1rem;
}
.product-list-nav-menu li a {
  font-size: clamp(14px, 1.4rem, 1.4rem);
}

@media screen and (max-width: 900px) {
  .product-list-nav {
    z-index: 10001;
  }
}

@media screen and (max-width: 750px) {
  .product-list-nav-sp-scroll {
    overflow-y: auto;
  }
  .product-list-nav-close {
    width: 4rem;
    height: 4rem;
    top: 1rem;
    right: 1rem;
  }
  .product-list-nav-menu-wrap {
    width: 100%;
    height: auto;
    display: block;
    padding: 6rem 0 10rem;
  }
  .product-list-nav-menu .item + .item {
    margin-top: 5rem;
  }
  .product-list-nav-menu .title {
    margin-bottom: 2rem;
  }
  .product-list-nav-menu .rebooter .title::before {
    width: 2rem;
    height: 2rem;
  }
  .product-list-nav-menu .control .title::before {
    width: 2rem;
    height: 2rem;
  }
  .product-list-nav-menu .software .title::before {
    width: 2rem;
    height: 2rem;
  }
  .product-list-nav-menu .option .title::before {
    width: 2rem;
    height: 2rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  aside
--------------------------------------------------------------------------- */
.aside-contact {
  background: var(--grad);
  color: var(--bg1);
}
.aside-contact .item {
  padding: 7rem 0;
}
.aside-contact .item:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.aside-contact .tel {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
}
.aside-contact .tel .text {
  gap: 2rem;
}
.aside-contact .tel .text a {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.aside-contact .tel .text a::before {
  content: "";
  display: block;
  background: url(../images/common/icon_nav_tel.svg) center center / contain no-repeat;
  width: 4rem;
  height: 4rem;
}
.aside-contact .tel .text p {
  font-size: clamp(12px, 1.3rem, 1.3rem);
  display: flex;
  align-items: center;
  gap: 1em;
}
.aside-contact .tel .text .en {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
}

@media screen and (max-width: 750px) {
  .aside-contact .btn.s-m {
    width: 28rem;
  }
  .aside-contact .item {
    padding: 4rem 0;
  }
  .aside-contact .item:nth-child(2) {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .aside-contact .item .h40_en {
    font-size: 2.4rem;
  }
  .aside-contact .tel .text.flex {
    align-items: center !important;
    gap: 0;
  }
  .aside-contact .tel .text a {
    font-size: 2.8rem;
  }
  .aside-contact .tel .text a::before {
    width: 2.8rem;
    height: 2.8rem;
  }
  .aside-contact .tel .text p {
    font-size: 1.2rem;
  }
  .aside-contact .tel .text .en {
    font-size: 1.6rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  footer
--------------------------------------------------------------------------- */
footer {
  background: var(--bg4);
  color: var(--bg1);
}

.pankz {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.pankz-list {
  display: flex;
}
.pankz-list li {
  font-size: clamp(12px, 1.2rem, 1.2rem);
  color: var(--bg1);
}
.pankz-list li a {
  color: var(--bg3);
}
.pankz-list li::after {
  content: "❯";
  margin: 0 1em;
}
.pankz-list li:last-child::after {
  content: none;
}

.footer-nav-wrap {
  background: url(../images/common/logo_bg.png) right bottom / contain no-repeat var(--bg4);
  padding-bottom: 4rem;
}
.footer-nav {
  padding: 10rem 0;
}

.f-menu1 {
  width: 26rem;
}
.f-menu1 > li + li {
  margin-top: 6.5rem;
}
.f-menu1 .cat1 {
  border-bottom: 1px solid var(--bg1);
  padding-bottom: 1.5rem;
}
.f-menu1 .cat1 .h20_en {
  display: block;
}
.f-menu1 .cat1 .sub {
  display: block;
  font-size: clamp(12px, 1.2rem, 1.2rem);
}
.f-menu-list {
  font-size: clamp(14px, 1.4rem, 1.4rem);
}
.f-menu-list > li {
  margin-top: 1.3rem;
}
.f-menu-list .sub > li {
  font-size: clamp(12px, 1.3rem, 1.3rem);
  line-height: 1.6;
  text-indent: -0.5em;
  padding-left: 0.5em;
  margin-top: 0.8rem;
}

.f-menu-list2 li {
  font-size: clamp(14px, 1.6rem, 1.6rem);
}
.f-menu-list2 li:not(:first-child) {
  margin-top: 4rem;
}
.f-menu-list2 li .external {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.f-menu-list2 li .external::after {
  content: "";
  display: block;
  background: url(../images/common/icon_external_w.svg) center center / contain no-repeat;
  width: 1rem;
  height: 1rem;
}

.footer-bottom .logo {
  width: 19.8rem;
}
.footer-bottom-nav {
  gap: 5rem;
}
.footer-bottom-nav li {
  font-size: clamp(12px, 1.3rem, 1.3rem);
}
.footer-bottom .copyright {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: clamp(12px, 1.2rem, 1.2rem);
}

.f-menu3 {
  display: none;
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .footer-nav {
    gap: 5rem 3rem;
    flex-wrap: wrap;
  }
  .f-menu2 {
    width: 100%;
  }
  .f-menu-list2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem 4rem;
    width: 80rem;
    margin: 0 auto;
  }
  .f-menu-list2 li:not(:first-child) {
    margin-top: 0;
  }
  .footer-bottom > .inner > .flex.iend {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .footer-bottom-nav {
    gap: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .pankz {
    display: none;
  }
  .footer-nav-wrap {
    padding-bottom: 10rem;
  }
  .footer-nav {
    padding: 6rem 0 4rem;
  }
  .f-menu1 > li {
    padding-bottom: 1.3rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid var(--gray-line);
  }
  .f-menu1 > li + li {
    margin-top: 0;
  }
  .f-menu1 {
    width: 100%;
  }
  .f-menu1 .cat1 {
    border: none;
    padding: 0;
    gap: 1rem;
  }
  .f-menu1 .cat1 a {
    flex: 1;
  }
  .f-menu1 .gloval-sp-trigger::before {
    background: var(--bg1);
  }
  .f-menu1 .gloval-sp-trigger::after {
    background: var(--bg1);
  }
  .f-menu1 .gloval-sp-content {
    display: none;
    border-top: 1px solid var(--bg1);
    padding-top: 1.6rem;
    margin-top: 1.3rem;
  }
  .f-menu-list > li {
    margin: 0 0 1.3rem;
  }
  .f-menu2 {
    margin-top: 1.4rem;
  }
  .f-menu-list2 li:not(:first-child) {
    margin-top: 0.6rem;
  }
  .f-menu3 {
    display: block;
    margin-top: 3rem;
  }
  .f-menu3 ul > li {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 0.6rem;
  }
  .footer-bottom .logo {
    margin: 0 auto 2rem;
  }
  .footer-bottom-nav {
    display: none;
  }
  .footer-bottom .copyright {
    text-align: center;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  common parts
--------------------------------------------------------------------------- */
section.base {
  padding: 12rem 0;
  overflow-x: hidden;
}
section.base.pt-half {
  padding-top: 6rem;
}
section.base-s {
  padding: 6rem 0;
  overflow-x: hidden;
}
.bg-gray1 {
  background: var(--gray-bg);
}
.bg-gray2 {
  background: var(--gray-line);
}
.bg-white {
  background: var(--bg1);
}

.mv-common {
  height: 80rem;
  overflow: hidden;
  position: relative;
}
.mv-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 10rem;
  position: relative;
  z-index: 2;
}
.mv-inner .h68_en {
  font-size: 5.2rem;
}
.mv-inner .h46_ja {
  font-size: 3.6rem;
}
.mv-inner .h24_ja {
  margin: 0.5em auto;
  font-size: 2rem;
}

.mv-common .ani-lines {
  position: absolute;
  top: 0;
  right: 10rem;
  width: 49rem;
  height: 100%;
}
.mv-common .ani-line1 {
  position: absolute;
  width: 11rem;
  height: 27rem;
  background: #508ccd;
  transform: skew(-20deg);
}
.mv-common .ani-line2 {
  position: absolute;
  width: 11rem;
  height: 80rem;
  background: var(--grad);
  transform: skew(25deg);
}

.basic-mv {
  height: 44rem;
  overflow: hidden;
  background: linear-gradient(to bottom, #ebf0f0 0%, #f7f7f7 100%);
  position: relative;
}
.basic-mv .ani-lines {
  position: absolute;
  top: 0;
  right: 6rem;
  width: 27rem;
  height: 100%;
}
.basic-mv-line .ani-line1 {
  position: absolute;
  width: 11rem;
  height: 18.7rem;
  background: #508ccd;
  transform: skew(20deg);
}
.basic-mv-line .ani-line2 {
  position: absolute;
  width: 11rem;
  height: 44rem;
  background: var(--grad);
  transform: skew(-25deg);
}

.l-heading {
  margin-bottom: 7rem;
}
.l-heading .h18_ja {
  color: var(--bg3);
}
.l-heading.center {
  text-align: center;
}

.navigation-list {
  gap: 4rem 3rem;
}
.navigation-list > div {
  width: calc((100% - 3rem * 2) / 3);
}
.navigation-list.half > div {
  width: calc((100% - 3rem * 1) / 2);
}

.navigation-list.case .image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.navigation-list.case .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navigation-list.case .h20_ja {
  /*min-height: calc(1.6em * 2);*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.navigation-list.case .image .cat {
  display: table;
  font-size: 1.3rem;
  color: var(--bg1);
  background: var(--bg4);
  padding: 0.3rem 1rem;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 750px) {
  section.base {
    padding: 6rem 0;
  }
  section.base-s {
    padding: 4rem 0;
  }
  .mv-common {
    height: 48rem;
  }
  .mv-inner {
    padding: 5rem 3rem;
    align-items: flex-start;
  }
  .mv-inner .h68_en {
    font-size: 3.8rem;
  }
  .mv-inner .h46_ja {
    font-size: 2.4rem;
  }
  .mv-inner .h24_ja {
    font-size: 1.8rem;
  }
  .mv-common .ani-lines {
    top: 0;
    right: 0;
    width: 20rem;
  }
  .mv-common .ani-line1 {
    width: 4rem;
    height: 16rem;
    transform: skew(-25deg);
  }
  .mv-common .ani-line2 {
    width: 4rem;
    height: 34rem;
    transform: skew(30deg);
  }
  .basic-mv {
    height: 32rem;
  }
  .basic-mv .ani-lines {
    width: 100%;
    height: 100%;
    right: auto;
  }
  .basic-mv-line .ani-line1 {
    position: absolute;
    width: 5rem;
    height: 10rem;
    transform: skew(-45deg);
  }
  .basic-mv-line .ani-line2 {
    position: absolute;
    width: 5rem;
    height: 13rem;
    transform: skew(-45deg);
  }
  .l-heading {
    margin-bottom: 4rem;
  }
  .navigation-list > div {
    width: 100%;
  }
  .navigation-list.half > div {
    width: 100%;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  accordion
--------------------------------------------------------------------------- */
.accordion-item {
  border-bottom: 1px solid var(--gray-line);
}
.accordion-trigger {
  border-top: 1px solid var(--gray-line);
  padding: 2rem 4rem 2rem 0;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 750px) {
  .accordion-trigger:hover {
    opacity: 0.7;
  }
} /* @750 */

.accordion-trigger .icon {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}
.accordion-trigger .icon::before {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: var(--bg4);
  position: absolute;
  top: calc(50% - 0.1rem);
  left: calc(50% - 1rem);
}
.accordion-trigger .icon::after {
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: var(--bg4);
  position: absolute;
  top: calc(50% - 0.1rem);
  left: calc(50% - 1rem);
  transition: 0.3s;
  transform: rotate(-90deg);
}
.accordion-trigger.active .icon::after {
  transform: rotate(0);
}
.accordion-content {
  display: none;
}

@media screen and (max-width: 750px) {
  .accordion-trigger .icon {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
  }
  .accordion-trigger .icon::before {
    width: 1.2rem;
    left: calc(50% - 0.6rem);
  }
  .accordion-trigger .icon::after {
    width: 1.2rem;
    left: calc(50% - 0.6rem);
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  tabs
--------------------------------------------------------------------------- */
.tab-btns {
  padding: 6rem 0 4rem;
}
.tab-btns > .flex {
  border-bottom: 1px solid var(--gray-line);
}
.tab-btns .tab-item2 > li {
  width: 40rem;
}
.tab-btns .tab-item2 > li .tab-btn {
  padding-bottom: 1.8rem;
}
.tab-btns .tab-item3 > li {
  width: 24rem;
}
.tab-btns .tab-item3 > li .tab-btn {
  padding-bottom: 1.4rem;
}

.tab-btns li {
  line-height: 1;
}
.tab-btns .tab-btn {
  display: block;
  height: 100%;
  border-bottom: 2px solid transparent;
  opacity: 0.5;
}
@media screen and (min-width: 751px) {
  .tab-btns .tab-btn:not(.tab-active):hover {
    opacity: 0.3;
  }
} /* @min751 */

.tab-btn.tab-active {
  border-bottom: 2px solid var(--bg4);
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .tab-btns {
    padding: 4rem 0 2rem;
  }
  .tab-btns .tab-item2 > li {
    width: 50%;
  }
  .tab-btns .tab-item3 > li {
    width: calc(100% / 3);
  }
  .tab-btns .tab-btn.h20_ja {
    font-size: 1.4rem;
  }
  .tab-btns .tab-btn {
    height: calc(1.6em * 2);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tab-btns .tab-item2 > li .tab-btn {
    height: calc(1.6em * 2 + 1.8rem);
  }
  .tab-btns .tab-item3 > li .tab-btn {
    height: calc(1.6em * 2 + 1.4rem);
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  tag-list
--------------------------------------------------------------------------- */
.tag-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.tag-list li a,
.tag-list li span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  padding: 0.2rem 0.8rem;
}
.tag-list:not(.cases-tag):not(.noicon) li a::after {
  content: "";
  background: url(../images/common/icon_question.svg) center center / contain no-repeat;
  width: 1.6rem;
  height: 1.6rem;
}
.tag-list.blue li a {
  background: var(--navy);
  color: var(--bg1);
}
.tag-list.white li a {
  background: var(--bg1);
}
.tag-list.black li a,
.tag-list.black li span {
  background: var(--bg4);
  color: var(--bg1);
}
.tag-list.cases-tag li a {
  background: var(--bg1);
  border: 1px solid var(--bg3);
  font-size: 1.3rem;
  padding: 0.1rem 1rem;
}

/* ---------------------------------------------------------------------------
//  news-list
--------------------------------------------------------------------------- */
.news-list {
  border-top: 1px solid var(--gray-line);
}
.news-list dt {
  width: 16rem;
  padding: 2rem 0;
  float: left;
  clear: left;
}
.news-list dd {
  padding: 2rem 2rem 2rem 16rem;
  border-bottom: 1px solid var(--gray-line);
}
.news-list .news-list-cat {
  width: 18rem;
  display: inline-block;
}
.news-list .news-list-cat span {
  display: inline-block;
  background: var(--bg1);
  border: 1px solid var(--bg3);
  font-size: 1.3rem;
  padding: 0.1rem 1rem;
}

@media screen and (max-width: 750px) {
  .news-list dt {
    width: 100%;
    padding: 1.5rem 0 0;
    float: none;
    clear: none;
  }
  .news-list dd {
    padding: 0 0 1.5rem;
    border-bottom: 1px solid var(--gray-line);
  }
  .news-list .news-list-cat {
    width: 100%;
    display: block;
    margin: 0.5rem 0;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  bottom catnav
--------------------------------------------------------------------------- */
.bottom-catnav {
  background: var(--bg2);
  padding: 6rem 0;
}
.bottom-catnav .title {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--bg4);
  margin-bottom: 3.2rem;
}
.bottom-catnav .title a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.8rem;
}

.bottom-catnav .catnav-tab-btns {
  background: rgba(255, 255, 255, 0.4);
  padding: 1rem;
  margin-bottom: 2rem;
}
.bottom-catnav .catnav-tab-btns li {
  border-left: 1px solid var(--bg4);
  padding: 0.5rem 4rem;
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 500;
}
.bottom-catnav .catnav-tab-btns li:last-child {
  border-right: 1px solid var(--bg4);
}
.bottom-catnav .catnav-tab-btns li a {
  color: var(--gray-txt);
}
.bottom-catnav .catnav-tab-btns li a.tab-active {
  color: var(--bg4);
  border-bottom: 1px solid var(--bg4);
}

.bottom-catnav-btns {
  gap: 1.2rem 0;
}
.bottom-catnav-btns a {
  font-size: 1.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 10rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0 3rem;
  height: 5rem;
  background: var(--bg1);
}
@media screen and (min-width: 751px) {
  .bottom-catnav-btns a:hover {
    color: var(--bg1);
    background: var(--bg4);
  }
} /* @min751 */

.page--introduction .bottom-catnav-btns a.product-cat01,
.page--introduction-io-control .bottom-catnav-btns a.product-cat01,
.page--what .bottom-catnav-btns a.product-cat01,
.page--what-io-control .bottom-catnav-btns a.product-cat01,
.page--rebooter .bottom-catnav-btns a.product-cat02,
.page--io-control .bottom-catnav-btns a.product-cat03,
.page--cloud-software .bottom-catnav-btns a.product-cat04,
.page--option .bottom-catnav-btns a.product-cat05,
.page--discontinued .bottom-catnav-btns a.product-cat06,
.page--datacenter .bottom-catnav-btns a.product-cat07,
.page--custom .bottom-catnav-btns a.product-cat08,
.product--product_category--discontinued .bottom-catnav a.product-cat06 {
  background: var(--bg4);
  color: var(--bg1);
}
.product--product_category--discontinued .bottom-catnav a.product-cat02,
.product--product_category--discontinued .bottom-catnav a.product-cat03,
.product--product_category--discontinued .bottom-catnav a.product-cat05 {
  background: var(--bg1);
  color: var(--bg4);
}

.case_place--retail-residential .bottom-catnav-btns a.cases-cat1-01,
.case_place--corporate-office .bottom-catnav-btns a.cases-cat1-02,
.case_place--remote-sites .bottom-catnav-btns a.cases-cat1-03,
.case_place--public-transport .bottom-catnav-btns a.cases-cat1-04,
.case_place--healthcare .bottom-catnav-btns a.cases-cat1-05,
.case_place--disaster-management .bottom-catnav-btns a.cases-cat1-06,
.case_place--network-datacenter .bottom-catnav-btns a.cases-cat1-07,
.case_place--others .bottom-catnav-btns a.cases-cat1-08 {
  background: var(--bg4);
  color: var(--bg1);
}

.case_use--remote-management .bottom-catnav-btns a.cases-cat2-01,
.case_use--freeze-recovery .bottom-catnav-btns a.cases-cat2-02,
.case_use--scheduled-operation .bottom-catnav-btns a.cases-cat2-03,
.case_use--environment-monitoring .bottom-catnav-btns a.cases-cat2-05 {
  background: var(--bg4);
  color: var(--bg1);
}

.case_product--network-device .bottom-catnav-btns a.cases-cat3-01,
.case_product--pc-server .bottom-catnav-btns a.cases-cat3-02,
.case_product--camera .bottom-catnav-btns a.cases-cat3-04,
.case_product--digital-signage .bottom-catnav-btns a.cases-cat3-07,
.case_product--sensor-alerts .bottom-catnav-btns a.cases-cat3-09 {
  background: var(--bg4);
  color: var(--bg1);
}

.page--support:not(.page--product-support, .page--faq, .page--maintainance, .page--registration, .page--registration_thanks) .bottom-catnav-btns a.support-cat01,
.page--faq .bottom-catnav-btns a.support-cat02,
.page--maintainance .bottom-catnav-btns a.support-cat06,
.page--registration .bottom-catnav-btns a.support-cat07,
.page--registration_thanks .bottom-catnav-btns a.support-cat07 {
  background: var(--bg4);
  color: var(--bg1);
}

.page--message .bottom-catnav-btns a.company-cat01,
.page--philosophy .bottom-catnav-btns a.company-cat02,
.page--profile .bottom-catnav-btns a.company-cat03,
.page--history .bottom-catnav-btns a.company-cat04,
.page--access .bottom-catnav-btns a.company-cat05,
.page--environment .bottom-catnav-btns a.company-cat06 {
  background: var(--bg4);
  color: var(--bg1);
}

@media screen and (min-width: 751px) {
  /* .page--what .bottom-catnav-btns a.product-cat01:hover,
  .page--what-io-control .bottom-catnav-btns a.product-cat01,
  .page--rebooter .bottom-catnav-btns a.product-cat02:hover,
  .page--io-control .bottom-catnav-btns a.product-cat03:hover,
  .page--cloud-software .bottom-catnav-btns a.product-cat04:hover,
  .page--option .bottom-catnav-btns a.product-cat05:hover,
  .page--discontinued .bottom-catnav-btns a.product-cat06:hover,
  .page--datacenter .bottom-catnav-btns a.product-cat07:hover,
  .page--custom .bottom-catnav-btns a.product-cat08:hover,
  .case_place--retail-residential .bottom-catnav-btns a.cases-cat1-01:hover,
  .case_place--corporate-office .bottom-catnav-btns a.cases-cat1-02:hover,
  .case_place--remote-sites .bottom-catnav-btns a.cases-cat1-03:hover,
  .case_place--public-transport .bottom-catnav-btns a.cases-cat1-04:hover,
  .case_place--healthcare .bottom-catnav-btns a.cases-cat1-05:hover,
  .case_place--disaster-management .bottom-catnav-btns a.cases-cat1-06:hover,
  .case_place--network-datacenter .bottom-catnav-btns a.cases-cat1-07:hover,
  .case_place--others .bottom-catnav-btns a.cases-cat1-08:hover,
  .case_use--remote-management .bottom-catnav-btns a.cases-cat2-01:hover,
  .case_use--freeze-recovery .bottom-catnav-btns a.cases-cat2-02:hover,
  .case_use--scheduled-operation .bottom-catnav-btns a.cases-cat2-03:hover,
  .case_use--security-control .bottom-catnav-btns a.cases-cat2-04:hover,
  .case_use--environment-monitoring .bottom-catnav-btns a.cases-cat2-05:hover,
  .case_product--network-device .bottom-catnav-btns a.cases-cat3-01:hover,
  .case_product--pc-server .bottom-catnav-btns a.cases-cat3-02:hover,
  .case_product--server .bottom-catnav-btns a.cases-cat3-03:hover,
  .case_product--camera .bottom-catnav-btns a.cases-cat3-04:hover,
  .case_product--pc-neighborhood .bottom-catnav-btns a.cases-cat3-05:hover,
  .case_product--reception-system .bottom-catnav-btns a.cases-cat3-06:hover,
  .case_product--digital-signage .bottom-catnav-btns a.cases-cat3-07:hover,
  .case_product--network .bottom-catnav-btns a.cases-cat3-08:hover,
  .case_product--sensor-alerts .bottom-catnav-btns a.cases-cat3-09:hover,
  .page--product-support .bottom-catnav-btns a.support-cat01:hover,
  .page--faq .bottom-catnav-btns a.support-cat02:hover,
  .page--maintainance .bottom-catnav-btns a.support-cat06:hover,
  .page--registration .bottom-catnav-btns a.support-cat07:hover,
  .page--message .bottom-catnav-btns a.company-cat01:hover,
  .page--philosophy .bottom-catnav-btns a.company-cat02:hover,
  .page--profile .bottom-catnav-btns a.company-cat03:hover,
  .page--history .bottom-catnav-btns a.company-cat04:hover,
  .page--access .bottom-catnav-btns a.company-cat05:hover,
  .page--environment .bottom-catnav-btns a.company-cat06:hover {
    opacity: 1;
  } */
} /* @min751 */

@media screen and (max-width: 750px) {
  .bottom-catnav {
    padding: 3rem 0;
  }
  .bottom-catnav .catnav-tab-btns li {
    padding: 0.2rem 1rem;
    font-size: 1.1rem;
  }
  .bottom-catnav-btns {
    gap: 1rem 0;
  }
  .bottom-catnav-btns a {
    font-size: 1rem;
    padding: 0 1.5rem;
    height: 4rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  RESULTS
--------------------------------------------------------------------------- */
.result-search-form-wrap {
  max-width: 80rem;
  margin: 0 auto;
}
.result-list {
  border-top: 1px solid var(--gray-line);
}
.result-list li {
  border-bottom: 1px solid var(--gray-line);
  padding: 2rem 0;
}
.result-list li a p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 750px) {
  .result-search-form-wrap .search-form input {
    height: 5rem;
    padding: 1rem;
  }
  .result-search-form-wrap .search-form button {
    width: 5rem;
    height: 5rem;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  single
--------------------------------------------------------------------------- */
.common-single h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 6rem 0 1rem;
}
.common-single h3 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 4rem 0 1rem;
}
.common-single h4 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 3rem 0 1rem;
}
.common-single > p {
  margin-bottom: 2rem;
}

.common-single ol {
  counter-reset: li;
}
.common-single ol > li {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.common-single ol > li:before {
  content: counter(li) ".";
  counter-increment: li;
  padding-right: 0.5rem;
}

.common-single ul > li {
  text-indent: -1em;
  padding-left: 1em;
}
.common-single ul > li::before {
  content: "・";
}

.common-single a:not(#toc_container a):not(.wp-block-button a) {
  display: inline-block;
  font-weight: 500;
  padding-bottom: 0.5rem;
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  margin-top: 2rem;
}
.common-single a:not(#toc_container a):not(.wp-block-button a)::before,
.common-single a:not(#toc_container a):not(.wp-block-button a)::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -0.1rem;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--bg3);
  transition: 0.8s var(--ease-out-expo);
}
.common-single a:not(#toc_container a):not(.wp-block-button a)::before {
  transform: scaleX(0);
  transform-origin: left;
}
.common-single a:not(#toc_container a):not(.wp-block-button a)::after {
  transform-origin: right;
  transition-delay: 0.25s;
}
@media screen and (min-width: 751px) {
  .common-single a:not(#toc_container a):not(.wp-block-button a):hover::before {
    transform: scaleX(1);
    transition-delay: 0.25s;
  }
  .common-single a:not(#toc_container a):not(.wp-block-button a):hover::after {
    transform: scaleX(0);
    transition-delay: 0s;
  }
} /* @min751 */

.common-single .wp-block-button .wp-block-button__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  text-align: center;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-width: 24rem;
  max-width: 100%;
  height: 4.4rem;
  border: 2px solid var(--bg4);
  margin-top: 4rem;
  color: var(--bg4);
  background: var(--bg1);
  font-size: 100%;
  padding: 0 2rem;
}
@media screen and (min-width: 751px) {
  .common-single .wp-block-button .wp-block-button__link:hover {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
} /* @min751 */

.common-single .is-content-justification-center .wp-block-button {
  text-align: center;
}
.common-single .is-content-justification-right .wp-block-button {
  text-align: right;
}

.common-single .wp-block-table td,
.common-single .wp-block-table th {
  border: none;
}

.common-single .wp-block-table table {
  width: 100%;
  border-top: 1px solid var(--gray-line);
  margin: 4rem 0;
}
.common-single .wp-block-table table td,
.common-single .wp-block-table table th {
  padding: 2rem 1rem;
  border-bottom: 1px solid var(--gray-line);
}
.common-single .wp-block-table table td:first-child,
.common-single .wp-block-table table th:first-child {
  padding-left: 0;
}
.common-single .wp-block-table table td:last-child,
.common-single .wp-block-table table th:last-child {
  padding-right: 0;
}

.common-single .wp-block-columns {
  display: flex;
  justify-content: space-between;
}
.common-single .wp-block-columns > div {
  width: 48.5%;
}
.common-single .wp-block-column h2:first-child {
  margin-top: 0;
}

.common-single .wp-block-group.line {
  border-top: 1px solid var(--bg4);
  border-bottom: 1px solid var(--bg4);
  padding: 4rem 0;
  margin: 4rem 0;
}
.common-single .wp-block-group.line h2 {
  margin: 0;
}

.common-single #toc_container {
  background: var(--gray-bg);
  padding: 4rem;
  margin: 4rem 0;
}
.common-single #toc_container .toc_title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.common-single #toc_container .toc_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.common-single #toc_container .toc_list li::before {
  content: "・";
}

.common-single .wp-block-code.has-black-background-color {
  background: #20282d;
  padding: 3rem;
  white-space: pre-wrap;
}
.common-single .wp-block-code.has-white-color {
  color: #fff;
}

.common-single .sp-sticky table th,
.common-single .sp-sticky table td strong {
  font-weight: 500;
}

@media screen and (max-width: 750px) {
  .common-single .wp-block-columns {
    flex-flow: column nowrap;
    gap: 2rem;
  }
  .common-single .wp-block-columns > div {
    width: 100%;
  }
  .common-single #toc_container {
    padding: 2rem;
  }
  .common-single .sp-sticky {
    overflow-x: auto;
    padding-bottom: 1rem;
    position: relative;
  }
  .common-single .sp-sticky::-webkit-scrollbar {
    height: 0.8rem;
  }
  .common-single .sp-sticky::-webkit-scrollbar-track {
    background: #e4e4e4;
  }
  .common-single .sp-sticky::-webkit-scrollbar-thumb {
    background: #aaa;
  }
  .common-single .sp-sticky table {
    width: 200%;
  }
  .common-single .sp-sticky table td {
    position: relative;
    border-bottom: none;
  }
  .common-single .sp-sticky table th:first-child,
  .common-single .sp-sticky table td:first-child {
    position: sticky;
    left: 0;
    top: 0;
    width: 25vw;
    background: var(--bg1);
    white-space: normal;
    word-break: break-word;
    border-bottom: none;
    z-index: 1;
  }
  .common-single .sp-sticky table th::after,
  .common-single .sp-sticky table td::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg1);
    border-bottom: 0.1rem solid var(--gray-line);
    z-index: -1;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  pager
--------------------------------------------------------------------------- */
.pager {
  margin-top: 10rem;
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pager .page-numbers {
  width: 3.2rem;
  height: 3.2rem;
  text-align: center;
  background: var(--gray-bg);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager .page-numbers.current {
  color: var(--bg1);
  background: var(--bg4);
}

/* ---------------------------------------------------------------------------
//  arrow
--------------------------------------------------------------------------- */
.arrow {
  width: 0.9em;
  height: 0.9em;
  margin: 0.2em;
  display: inline-block;
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  background: url(../images/common/icon_arrow.svg) no-repeat center / contain;
  transition: background-image 0.3s ease;
}
.arrow.--white {
  background-image: url(../images/common/icon_arrow_w.svg);
}
.arrow.--down {
  margin: 0.2em 0.6em;
  transform: rotate(90deg);
}
.btn-standard:hover .arrow {
  background-image: url(../images/common/icon_arrow_w.svg);
}
.btn-standard:hover .arrow.--white {
  background-image: url(../images/common/icon_arrow.svg);
}

/* ---------------------------------------------------------------------------
// pdf
--------------------------------------------------------------------------- */
.pdf {
  width: 1.5em;
  height: 1.5em;
  margin-left: 0.6em;
  margin-bottom: 0.3em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background: url(../images/common/icon_pdf.svg) no-repeat center / contain;
}

/* ---------------------------------------------------------------------------
// download
--------------------------------------------------------------------------- */
.download {
  display: inline-block;
  background: url(../images/common/icon_download_b.svg) center center / contain no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  margin-left: 0.3rem;
  vertical-align: bottom;
}

/* ---------------------------------------------------------------------------
// external
--------------------------------------------------------------------------- */
.icon-external {
  width: 0.9em;
  height: 0.9em;
  margin: 0.2em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background: url(../images/common/icon_external_b.svg) no-repeat center / contain;
  transition: background-image 0.3s ease;
}
.icon-external.--white {
  background-image: url(../images/common/icon_external_w.svg);
}
.btn-standard:hover .icon-external {
  background-image: url(../images/common/icon_external_w.svg);
}
.btn-standard:hover .icon-external.--white {
  background-image: url(../images/common/icon_external_b.svg);
}

/* ---------------------------------------------------------------------------
//  external
--------------------------------------------------------------------------- */
.icon-down {
  width: 1.2em;
  height: 1.2em;
  margin: 0.2em;
  display: inline-block;
  position: relative;
  z-index: 9999;
  vertical-align: middle;
  background: url(../images/common/icon_down.svg) no-repeat center / contain;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.gnav-product:hover .icon-down,
.gnav-cases:hover .icon-down,
.gnav-company:hover .icon-down,
.gnav-support:hover .icon-down {
  transform: rotate(180deg);
}

@keyframes flipIcon {
  0% {
    opacity: 1;
    transform: rotate(0deg);
  }
  30% {
    opacity: 0;
    transform: rotate(60deg);
  }
  50% {
    opacity: 0;
    transform: rotate(120deg);
  }
  100% {
    opacity: 1;
    transform: rotate(180deg);
  }
}

/* ---------------------------------------------------------------------------
//  top
--------------------------------------------------------------------------- */

.mv-top {
  margin-bottom: 8rem;
}
#top-slide {
  opacity: 0;
  transition: opacity 0.3s linear;
}
#top-slide.slick-initialized {
  opacity: 1;
}
.top-slide-item .anime {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.mv-top01 .top-slide-body {
}
/* .mv-top02 .top-slide-body {
  align-items: flex-end;
  justify-content: flex-end;
} */
.mv-top02 .top-slide-body,
.mv-top03 .top-slide-body {
  justify-content: flex-end;
}
.top-slide-item .bg {
  position: relative;
  z-index: 1;
}
.top-slide-body {
  width: 100%;
  height: 100%;
  padding: 5.5rem 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.mv-top-copy {
  font-family: "aktiv-grotesk", sans-serif;
  font-size: 7rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 2.4rem;
  width: 82.5rem;
}

@media screen and (min-width: 751px) {
  .mv-top02 .top-slide-body,
  .mv-top03 .top-slide-body {
    padding-right: 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .mv-top {
    width: 100%;
    height: calc(100vh - 16rem);
  }
  .top-slide-item .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
} /* @min1025 */

@media screen and (min-width: 751px) and (max-width: 1024px) {
  .mv-top {
    width: 100%;
    height: auto;
  }
  .mv-top-copy {
    font-size: 5.6rem;
    width: 64rem;
  }
  .top-slide-body {
    padding: 5.5rem 4rem;
  }
  .mv-top03 .top-slide-body {
    padding-right: 4rem;
  }
  .mv-top03 .top-slide-body .h18_ja br {
    display: none;
  }
} /* @min751-max1024 */

/*  animation ---------------------------------------------------------------- */

.top-slide-item .bg {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: blur(1.5rem);
  transform: scale(1.06);
}
.top-slide-item .is-anime .bg {
  animation: slideMotion 7.5s linear forwards;
}
@keyframes slideMotion {
  10% {
    filter: blur(0);
  }
  100% {
    transform: scale(1);
    filter: blur(0);
  }
}

/*
.top-slide-item .bg {
  filter: blur(15px);
  transform: scale(1.05);
  transition: 1s ease;
}
.top-slide-item .is-anime .bg {
  transform: scale(1);
  filter: blur(0);
}
*/

.top-line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media screen and (min-width: 751px) {
  .animated-top-line1 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 100% 0%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 100% 0%;
    mask-repeat: no-repeat;
    mask-position: top;
    transition: 0.3s;
  }
  .is-anime .animated-top-line1 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .animated-top-line2 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 100% 0%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 100% 0%;
    mask-repeat: no-repeat;
    mask-position: top;
    transition: 0.3s;
  }
  .is-anime .animated-top-line2 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .animated-top-line3-1 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 100% 0%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: top;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 100% 0%;
    mask-repeat: no-repeat;
    mask-position: top;
    transition: 0.3s;
  }
  .is-anime .animated-top-line3-1 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .animated-top-line3-2 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 100% 0%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: bottom;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 100% 0%;
    mask-repeat: no-repeat;
    mask-position: bottom;
    transition: 0.3s;
    transition-delay: 0.3s;
  }
  .is-anime .animated-top-line3-2 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
} /* @min751 */

.top-slide-body {
  opacity: 0;
  transform: translateY(10%);
  filter: blur(20px);
  transition: 1.5s cubic-bezier(0.85, 0, 0.15, 1);
  transition-delay: 0.3s;
}
.is-anime .top-slide-body {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --------------------------------------------------------------------------- */

.top-topics-wrap .title {
  margin-right: 8%;
  flex-shrink: 0;
}
.top-topics-wrap .topics-list {
  flex-grow: 1;
}
@media screen and (max-width: 900px) {
  .top-topics-wrap {
    flex-flow: column nowrap;
  }
  .top-topics-wrap .title {
    margin-right: 0;
  }
}

.top-rebooter > a {
  display: block;
  height: 72rem;
  padding: 9rem 0 10rem;
  position: relative;
  overflow: hidden;
}
.top-rebooter .parallax-bg {
  transition: 0.3s;
}
.top-rebooter-body {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.top-rebooter .btn-standard {
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .top-rebooter > a:hover {
    opacity: 1;
  }
  .top-rebooter > a:hover .parallax-bg {
    transform: scale(1.03);
  }
  .top-rebooter > a:hover .btn-standard.c-b {
    opacity: 1;
    color: var(--bg1);
    background: var(--bg4);
  }
} /* @min751 */

.top-contact-control > a {
  display: block;
  height: 72rem;
  padding: 9rem 0 10rem;
  position: relative;
  overflow: hidden;
}
.top-contact-control .parallax-bg {
  transition: 0.3s;
}
.top-contact-control-body {
  display: flex;
  justify-content: flex-start;
  height: 100%;
}
.top-contact-control .btn-standard {
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .top-contact-control > a:hover {
    opacity: 1;
  }
  .top-contact-control > a:hover .parallax-bg {
    transform: scale(1.03);
  }
  .top-contact-control > a:hover .btn-standard.c-w {
    opacity: 1;
    color: var(--navy);
    background: var(--bg1);
  }
} /* @min751 */

.top-what-bnr {
  display: flex;
  height: 54rem;
}
.top-what-bnr .image {
  /* width: 54rem; */
  width: 45%;
  overflow: hidden;
}
.top-what-bnr .image img {
  transition: 0.3s;
  transform: scale(1.01);
}

.top-what-bnr .text {
  flex: 1;
  background: url(../images/common/logo_bg2.png) right bottom / contain no-repeat var(--bg4);
  padding: 13rem 5rem;
}
.top-what-bnr .btn-standard {
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .top-what-bnr:hover {
    opacity: 1;
  }
  .top-what-bnr:hover .image img {
    transform: scale(1.05);
  }
  .top-what-bnr:hover .btn-standard.c-w {
    opacity: 1;
    color: var(--navy);
    background: var(--bg1);
  }
} /* @min751 */

.top-parallax-wrapper {
  position: relative;
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  background-color: transparent;
}
.top-parallax-wrapper::after {
  content: "";
  display: block;
  background: url(../images/top/top-partner.webp) center center / cover no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -9;
}
.top-parallax-wrapper > a {
  display: block;
}
.top-parallax-wrapper .btn-standard {
  transition: 0.3s;
}
@media screen and (min-width: 751px) {
  .top-parallax-wrapper > a:hover {
    opacity: 1;
  }
  .top-parallax-wrapper > a:hover .btn-standard.c-w {
    opacity: 1;
    color: var(--navy);
    background: var(--bg1);
  }
} /* @min751 */

.top-parallax-content {
  display: flex;
  align-items: flex-end;
  height: 54rem;
  padding: 6rem 0;
}

@media screen and (max-width: 750px) {
  /*  animation */
  .animated-top-line1 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    mask-position: left;
    transition: 0.3s;
  }
  .is-anime .animated-top-line1 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .animated-top-line2 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    mask-position: left;
    transition: 0.3s;
  }
  .is-anime .animated-top-line2 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .animated-top-line3-1 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    mask-position: left;
    transition: 0.3s;
  }
  .is-anime .animated-top-line3-1 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }
  .animated-top-line3-2 img {
    display: block;
    -webkit-mask-image: linear-gradient(#000 0 0);
    -webkit-mask-size: 0% 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-image: linear-gradient(#000 0 0);
    mask-size: 0% 100%;
    mask-repeat: no-repeat;
    mask-position: right;
    transition: 0.3s;
    transition-delay: 0.3s;
  }
  .is-anime .animated-top-line3-2 img {
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .mv-top {
    height: calc(100svh - 5.8rem);
  }
  .top-slide-item .bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .top-slide-body {
    width: 100%;
    height: 100%;
    padding: 4rem 2.5rem;
  }
  .mv-top-copy {
    /* font-size: 3.3rem; */
    width: 32.5rem;
    margin-bottom: 1rem;
  }
  .mv-top01 .top-slide-body {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .mv-top02 .top-slide-body {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .mv-top03 .top-slide-body {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .mv-top01 .top-slide-body .text {
    padding-top: 0.5rem;
  }
  .mv-top02 .top-slide-body .text {
    /* padding-top: 0.5rem; */
    padding-top: 21rem;
  }
  .mv-top03 .top-slide-body .text {
    /* padding-top: 34.6rem; */
    padding-top: 27.6rem;
  }
  .mv-top03 .top-slide-body .text .mv-top-copy {
    width: 28rem;
  }
  .top-slide-body .text .btn-wrap {
    position: absolute;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    bottom: 1.5rem;
  }
  .top-slide-body .text .btn-wrap .btn-standard {
    background-color: #133884;
  }

  .top-topics-wrap .topics-list {
    width: 100%;
  }
  .top-rebooter > a {
    height: 48rem;
    padding: 3rem 0 6rem;
  }
  .top-contact-control > a {
    height: 48rem;
    padding: 3rem 0 6rem;
  }

  .top-what-bnr {
    display: flex;
    height: auto;
  }
  .top-what-bnr .image {
    width: 100%;
    height: 26rem;
  }
  .top-what-bnr .text {
    width: 100%;
    background: url(../images/common/logo_bg2.png) right bottom / contain no-repeat var(--bg4);
    padding: 4rem 2rem;
  }
  /* .top-contact-control > a {
    height: 48rem;
    padding: 6rem 0;
  } */
  .top-parallax-content {
    height: 44rem;
    padding: 6rem 0;
  }
} /* @max750 */

/* ---------------------------------------------------------------------------
//  add components
--------------------------------------------------------------------------- */

.column_box {
  gap: 1.6rem;
}
.column_box .item {
  width: calc((100% - 1.6rem * 1) / 2);
  padding: 2.8rem 2rem;
}
.column_box .item.--full {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .column_box .item {
    width: 100%;
    padding: 2rem;
  }
} /* @max750 */

.sitemap-group .h24_ja {
  display: block;
  border-bottom: 1px solid #20282d;
  padding-bottom: 20px;
}
.sitemap-group .flex {
  flex-wrap: wrap;
}
.sitemap-group .flex > div {
  width: 47.5%;
}
.sitemap-group.--col321 .flex {
  row-gap: 6rem;
}
.sitemap-group.--col321 .flex > div {
  width: 31%;
}
@media screen and (max-width: 1024px) {
  .sitemap-group.--col321 .flex > div {
    width: 47.5%;
  }
}
@media screen and (max-width: 750px) {
  .sitemap-group .flex > div,
  .sitemap-group.--col321 .flex > div {
    width: 100%;
  }
}

.anchor-link li a .arrow {
  background-image: none;
  background-color: #fff;
  transform: rotate(0);
  width: 0.9rem;
  height: 0.6rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 750px) {
  .anchor-link {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-left: 3rem;
    padding-bottom: 1rem;
    max-width: none !important;
  }
  /* .anchor-link::-webkit-scrollbar {
    height: 0.4rem;
  }
  .anchor-link::-webkit-scrollbar-track {
    background: #e4e4e4;
  }
  .anchor-link::-webkit-scrollbar-thumb {
    background: #aaa;
  } */
  .anchor-link li a {
    white-space: nowrap;
    padding-bottom: 0;
  }
}

.triangle {
  background-image: none;
  background-color: var(--bg4);
  margin: 0.3em;
  width: 1rem;
  height: 0.66rem;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: all 0.3s;
}
.btn-standard:hover .triangle {
  background-color: #fff;
}

/* ---------------------------------------------------------------------------
//  totop
--------------------------------------------------------------------------- */
.totop {
  position: fixed;
  right: 0;
  bottom: 3%;
  width: 56px;
  z-index: 10;
  display: none;
}
.totop button {
  transition: 0.3s;
  cursor: pointer;
  border: none;
}
@media screen and (min-width: 751px) {
  .totop button:hover {
    opacity: 0.7 !important;
  }
}
@media screen and (max-width: 750px) {
  .totop {
    width: 42px;
  }
}

/* dl-list */
.dl-list {
  border-top: 1px solid var(--gray-line);
}
.dl-list dt {
  width: 16rem;
  padding: 2rem 0;
  float: left;
  clear: left;
}
.dl-list dd {
  padding: 2rem 2rem 2rem 16rem;
  border-bottom: 1px solid var(--gray-line);
}
@media screen and (max-width: 750px) {
  .dl-list dt {
    width: 100%;
    padding: 1.5rem 0 0;
    float: none;
    clear: none;
  }
  .dl-list dd {
    padding: 0 0 1.5rem;
    border-bottom: 1px solid var(--gray-line);
  }
}
