@charset "utf-8";
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* *
* * Basic information:
* * - CSS guideline : FLOCSS
* *
* * Order of discription:
* * - Foundation [ reset / base ]
* * - Layout [ header / main / side / footer ]
* * - Object [ component / project / utility ]
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /

/****************************
  base
*****************************/

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

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

:root {
  --paddingSection: 80px;
  --paddingLR: 80px;
  --paddingTB: 40px;
  --color_green: #1DAFAF;
  --color_blue: #09376C;
  --color_yellow: #FFCC00;
  --color_red: #FF3D33;
  --color_gray_bg: #EAE5E5;
  --color_gray_bg02: #676767;
  --color_white: #ffffff;
  --color_white_bg: #ffffff;
  --color_border: #CCCCCC;
  --border_radius: 100px;
}
@media screen and (max-width: 959px) {
  :root {
    --paddingSection: 40px;
    --border_radius: 10px;
  }
}

body {
  background: #F0F8F8;
  font-size: 16px;
  font-family: "Noto Sans JP","游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  color: #000;
  min-width: 1200px;
  padding-top: 100px;
}

ol, ul {
  list-style: none;
}

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

select {
  font-size: 14px;
  background-color: #fff;
  height: 26px;
  box-sizing: border-box;
}

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

a img:hover {
  opacity: .75;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

a:hover, a:active, a:focus {
  text-decoration: inherit;
}

a:hover {
  opacity: 1.0;
}

a[href]:hover {
  opacity: .8;
}

a {
  text-decoration: inherit;
  color: inherit;
}

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

/* skip */
.skip {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #FFFFFF;
  position: absolute;
  left: -3000px;
  z-index: 30000;
}
a.skip {
  background-color: #FFFFFF;
  /* 変更しない */
  text-align: center;
  /* 変更しない */
  padding: 2px 0;
  /* 変更しない */
  top: auto;
  /* 変更しない */
}
a.skip:active {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.6;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}
a.skip:focus {
  display: block;
  width: 99.99%;
  /* 変更しない */
  font-size: 100%;
  /* 変更しない */
  line-height: 1.6;
  /* 変更しない */
  top: 0;
  /* 変更しない */
  left: 0;
  /* 変更しない */
}

.din-bo {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.din-de {
  font-family: "din-2014", sans-serif;
  font-weight: 900;
  font-style: normal;
}
/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

/* Header
---------------------------------------------------------------*/
#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  height: 100px;
  padding: 24px 45px;
  padding-right: 70px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.l-header-inner {
  display: flex;
  align-items: center;
}

.l-header-logo {
  max-width: 222px;
}

.sub-menu {
  margin-left: auto;
  display: flex;
  gap: 0.9375rem;
}

.sub-menu li a {
  width: 150px;
  display: inline-block;
  padding: 8px;
  color: #fff;
  font-size: 0.875rem;
  text-align: center;
  font-weight: 700;
  position: relative;
  border-radius: var(--border_radius);
  overflow: hidden;
  transition: background .4s ease 0s;
}

.sub-menu li.sub-menu-contact a {
  background-color: var(--color_red);
  border: solid 2px var(--color_red);
  z-index: 1;
}

.sub-menu li.sub-menu-trial a {
  background-color: var(--color_green);
  border: solid 2px var(--color_green);
  z-index: 1;
}

.sub-menu li.sub-menu-contact a:before ,
.sub-menu li.sub-menu-trial a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(-101%, 0);
  background: #FFCC00;
  animation: effect1 6s linear 0s infinite;
}

.sub-menu li.sub-menu-contact a:before ,
.sub-menu li.sub-menu-trial a:before {
  background: #FFFFFF;
  animation-name: effect2;
}

@keyframes effect1 { 0% { transform: translate(-101%, 0); }
  40% { transform: translate(-101%, 0); }
  50% { transform: translate(101%, 0); }
  100% { transform: translate(101%, 0); } 
}
@keyframes effect2 { 0% { transform: translate(-101%, 0); }
  50% { transform: translate(-101%, 0); }
  60% { transform: translate(101%, 0); }
  100% { transform: translate(101%, 0); } 
}

/*hamburger menu*/
.menu {
  display: block;
  position: absolute;
  width: 60px;
  z-index: 30;
  height: 60px;
  top: 14px;
  right: 0;
  background: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}
.menu span {
  position: absolute;
  left: 15px;
  width: 25px;
  height: 3px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  background-color: var(--color_green);
}
.menu span:nth-of-type(1) {
  top: 22px;
}
.menu span:nth-of-type(2) {
  top: 30px;
}
.menu span:nth-of-type(3) {
  bottom: 19px;
}
.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
  transform: translateY(3px) rotate(-45deg);
  top: 26px;
}
.menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-21px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
  bottom: 18px;
}
.menu.is-show span {
  background-color: var(--color_green);
}

/*nav*/
.l-header-nav {
  position: fixed;
  top: 100px;
  right: 0px;
  width: 320px; /* メニュー幅 */
  height: calc(100% - 60px);
  background-color: var(--color_green);
  z-index: 1000;
  height: auto;
  border-bottom-left-radius: 10px;
  z-index: 2;
  overflow-y: auto;
  padding: 20px 10px 30px;
  box-sizing: border-box;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);

  /* 初期状態：右に隠す */
  transform: translateX(100%);
  transition: transform 0.3s ease;

  /* 表示制御用 */
  pointer-events: none;
}

/* 開いた状態 */
.l-header-nav.active {
  transform: translateX(0);
  pointer-events: auto;
}

.l-header-nav__items {
  position: relative;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  width: 92.5%;
  margin: 0 auto 2px;
}

.l-header-nav__items a {
  padding: 15px 0px;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
  position: relative;
  border-bottom: 1px dashed var(--color_white);
}

.l-header-nav__items a:before {
  content: '';
  position: absolute;
  right: 0;
  top: 47%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color_white);;
  border-right: 2px solid var(--color_white);;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#contentTtl01,
#contentTtl02,
#contentTtl03,
#contentTtl04,
#contentTtl05 {
  padding-top: 60px;
  margin-top: -60px;
}

/* Main
---------------------------------------------------------------*/
.l-wrapper {
  overflow: hidden;
  width: 100%;
}


/* Footer
---------------------------------------------------------------*/
.l-footer {
  background-color: #333333;
}

.l-footer-nav {
  width: 892px;
  height: 92px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  margin: 0 auto;
  padding: 52px 0;
}

.l-footer-nav li {
  margin-right: 0;
  width: 297px;
}

.l-footer-nav li a {
  color: #fff;
  font-size: 1rem;
  line-height: 45px;
  display: block;
}

.copyright {
  background-color: #5C5C5C;
  text-align: center;
  padding: 18px 0;
}

.copyright p {
  color: var(--color_white);
  text-align: center;
  font-size: 0.75rem;
}

/*fixed banner*/

.fixed-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  width: 324px;
  display: none; /* 最初は非表示 */
}

.fixed-banner a {
  display: block;
  margin-top: 10px;
}

/*pagetop*/

.l-footer-top {
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 80px;
  height: 80px;
  z-index: 10;
}
/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
.content-head {
  position: relative;
  background-color: var(--color_white);
  padding: 35px 0;
}

.content-head:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #DDF2EC;
  clip-path: polygon(0px 0px, 100% 0%, 100% calc(40% - 50px), 0 100%);
}

/* mv */
.mv {
  max-width: 1400px;
  border-radius: 20px;
  margin: 0 auto 53px;
  position: relative;
  background: url(../images/mv-bg.webp) no-repeat right bottom;
  background-color: var(--color_white);
}

.mv-inner {
  padding: 85px 70px 127px;
  background: url(../images/mv-thum.svg) no-repeat 98% 100%;
} 

.mv-inner .tag-wrap {
  margin-bottom: 27px;
}

.mv-inner .tag-wrap span {
  display: inline-block;
  font-size: 1.375rem;
  color: #fff;
  background-color: var(--color_green);
  padding: 6px 30px;
  border-radius: var(--border_radius);
}

.u-color-main {
  color: var(--color_green);
}

.mv-inner .catch {
  font-size: 2.6875rem;
  font-weight: 900;
  line-height: 1.4;
  display: inline-block;
  position: relative;
  letter-spacing: -0.02rem;
  line-height: 1.45em; /* ← 重要 */
  display: block;
}

.mv-inner .catch .txt01 {
  font-size: 2.4375rem;
}

.mv-inner .catch .txt02 {
  font-size: 1.6875rem;
  font-weight: 400;
  font-style: italic;
  position: absolute;
  left: 495px;
  bottom: 50px;
  color: var(--color_green);
}

.mv-inner .p-base {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 30px;
}

.mv-inner .button a {
  display: inline-block;
  color: #fff;
  border-radius: 200px;
  width: 100%;
  max-width: 398px;
  padding: 6px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  overflow: hidden;
  position: relative;
  background-color: var(--color_red);
  border: 2px solid var(--color_red);
}

.mv-inner .button a span {
  display: block;
  font-size: 0.875rem;
  color: var(--color_yellow);
}

.mv-inner .button a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(-101%, 0);
  background: #FFCC00;
  animation: effect1 6s linear 0s infinite;
}

.mv-inner .button a:before {
  background: #FFFFFF;
  animation-name: effect2;
}

/*可変幅*/
@media screen and (max-width: 1360px){
  .mv {
    width: 98%;
  }
  .mv-inner {
    background: url(../images/mv-thum.svg) no-repeat 95% 100%;
    background-size: 38%;
  }
  .mv-inner .catch {
    font-size: 2.375rem;
  }
  .mv-inner .catch .txt01 {
    font-size: 2.125rem;
  }
  .mv-inner .p-base {
    font-size: 1rem;
  }
  .mv-inner .catch .txt02 {
    left: 435px;
    bottom: 44px;
  }
}

/*microsoft*/
.logos {
  display: flex;
  align-items: center;
  gap: 6.25rem;
  margin-bottom: 53px;
  justify-content: center;
  position: relative;
}

.logos li:nth-child(1) {
  width: 282px;
}

/*slides*/

.slides {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color_white);
  padding: var(--paddingTB);
}

.slides img {
  width: auto;
  max-height: 210px;
  object-fit: contain;
  padding: 0 20px;
}

.fw-case {
  margin-bottom: 40px;
}

.fw-case h2 ,
.market-recruit h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 56px;
}

.market-recruit h2 {
  margin-bottom: 15px;
}

.fw-case h2 p {
  display: inline-block;
  padding-left: 68px;
  background: url(../images/ico-case-ttl.svg) no-repeat left center;
  background-size: 58px auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.fw-case h2 p span ,
.market-recruit h2 p span {
  font-size: 2.25rem;
}

.market-recruit h2 p {
  display: inline-block;
  padding-left: 68px;
  background: url(../images/ico-recruit-ttl.svg) no-repeat left center;
  background-size: 58px auto;
  padding-top: 5px;
  padding-bottom: 5px;
}

.fw-case-list {
  display: flex;
  justify-content: center;
  gap: 3.125rem;
  margin-bottom: 30px;
}

.fw-case-list li {
  width: 289px;
  min-height: 214px;
  text-align: center;
  position: relative;
  background: url(../images/case-bg.svg) no-repeat top center;
}

.fw-case-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  padding-top: 40px;
  position: relative;
}

.fw-case-head .txt01 {
  font-size: 6.3125rem;
  font-weight: 900;
  line-height: 1;
}

.fw-case-head .txt02 {
  font-size: 2.0625rem;
  font-weight: 900;
  line-height: 1.7;
}

.fw-case-head .txt03 {
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.3;
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  text-align: center;
}

.fw-case-btm {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  width: 100%;
  display: block;
}

.fw-case-btm .txt04 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.fw-case-head .txt05 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.3rem;
}

.fw-case-head .txt06 {
  font-size: 1.8125rem;
  font-weight: 900;
  line-height: 1.3;
}

.fw-case-head .txt07 {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.3;
}

.fw-case-list li:nth-child(3) .fw-case-head {
  align-items: center;
  padding-top: 50px;
}

.market-cacth {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.market-cacth .txt01 {
  font-size: 1.0625rem;
}

.market-cacth .txt02 {
  font-size: 1.8125rem;
}

.market-recruit .txt16 + .txt16 {
  margin-top: 25px;
}

.market-recruit-figure {
  margin-bottom: 25px;
}

/*実績パターン２*/

.fw-case-type02 {
  margin-bottom: 40px;
}
.fw-case-type02 .c-center {
  display: flex;
  padding: 40px;
}

.fw-case-type02 .c-center .inner {
  border-right: 1px dashed #CCCCCC;
  width: 33.333%;
  padding: 0 20px;
  box-sizing: border-box;
}

.fw-case-type02 .title-head {
  text-align: center;
  margin-bottom: 30px;
}

.fw-case-type02 .title-head-ttl {
  font-size: 1.375rem;
  font-weight: 700;
}

.fw-case-type02 .title-head-ttl span {
  font-size: 1.25rem;
  font-weight: 700;
}

.fw-case-type02 .title-head.type02-ttl01 {
  padding-top: 55px;
  background: url(../images/ico-case-ttl.svg) no-repeat top center;
  background-size: 40px auto;
}

.fw-case-type02 .title-head.type02-ttl02 {
  padding-top: 55px;
  background: url(../images/ico-recruit-ttl.svg) no-repeat top center;
  background-size: 40px auto;
}

.fw-case-type02 .title-head.type02-ttl03 {
  padding-top: 55px;
  background: url(../images/ico-share.svg) no-repeat top center;
  background-size: 45px auto;
}

.fw-case-type02 .c-center .inner:last-child {
  border: none;
}

.fw-case-type02 .fw-case-list {
  flex-wrap: wrap;
  gap:12px;
}

.fw-case-type02 .fw-case-list li {
  width: 173px;
  min-height: 129px;
  background-size: 100%;
}

.fw-case-type02 .fw-case-list li:nth-child(1) {
  width: 174px;
}

.fw-case-type02 .fw-case-list .fw-case-head {
  padding-top: 24px;
}

.fw-case-type02 .fw-case-list li:nth-child(3) .fw-case-head {
  padding-top: 26px;
}

.fw-case-type02 .fw-case-list .fw-case-btm {
  bottom: 15px;
}

.fw-case-type02 .fw-case-list .fw-case-head .txt01 {
  font-size: 3.6875rem;
}

.fw-case-type02 .fw-case-list .fw-case-head .txt02 {
  font-size: 1.1875rem;
}

.fw-case-type02 .fw-case-list .fw-case-head .txt03 {
  font-size: 0.625rem;
  bottom: -8px;
}

.fw-case-type02 .fw-case-list .fw-case-btm .txt04 {
  font-size: 0.8125rem;
}

.fw-case-type02 .fw-case-list .fw-case-head .txt05 {
  font-size: 2.5625rem;
}
.fw-case-type02 .fw-case-list .fw-case-head .txt06 {
  font-size: 1rem;
}

.fw-case-type02 .fw-case-list .fw-case-head .txt07 {
  font-size: 0.8125rem;
}

.fw-case-type02 .scroll {
  height: 100px;
  overflow: auto;
}

.fw-case-type02 .scroll p {
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.fw-case-type02 .u-ta-r {
  font-size: 0.875rem;
}

.fw-case-type02 .market-cacth {
  font-size: 0.75rem;
  line-height: 1.4;
  text-align: left;
}

.fw-case-type02 .market-cacth .txt01 ,
.fw-case-type02 .market-cacth .txt02 {
  font-size: 0.75rem;
  line-height: 1.4;
}

/* スライドの高さズレ防止 */
.slides .slick-slide {
  display: flex;
  align-items: center;
}

/*CTA*/
.cv {
  background-color: var(--color_blue);
}

.cv-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 44px 0 42px;
  background: url(../images/cv-pd.png) no-repeat 100% 30%,
  url(../images/cv-bg.svg) no-repeat left bottom;
  background-size: 318px,333px;
  box-sizing: border-box;
}

// .cv-inner:before {
//   content: '';
//   position: absolute;
//   left: -220px;
//   bottom: 0;
//   width: 338px;
//   height: 239px;
//   background: url(../images/cv-bg.svg);
//   background-repeat: no-repeat;
//   background-size: 100%;
// }

.cv-inner {
  text-align: center;
}

.cv-inner .inner {
  width: 47%;
  margin: 0 auto;
}

.cv-inner .ttl {
  color: #fff;
  font-size: 1.3125rem;
  font-weight: 700;
  margin-bottom: 42px;
  text-align: center;
  display: inline-block;
}

.cv-inner .c-btn {
}

.lead {
  background-color: #149F9F;
  text-align: center;
  padding: 50px 0 137px;
}

.lead h2 {
  font-size: 2.375rem;
  font-weight: 700;
  color: var(--color_white);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

.lead h2 span {
  display: inline-block;
  position: relative;
  font-size: 0.9375rem;
  padding-left: 34px;
  padding-right: 34px;
  color: var(--color_yellow);
}

.lead h2 span:before {
  content: '';
  position: absolute;
  left: -50px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: var(--color_yellow);
}

.lead h2 span:after {
  content: '';
  position: absolute;
  right: -50px;
  top: 50%;
  width: 50px;
  height: 1px;
  background-color: var(--color_yellow);
}

.lead .txt {
  color: var(--color_white);
  display: block;
  text-align: center;
}

.c-center.mt-ver {
  margin-top: -100px;
}

.security,
.benefit,
.about {
  margin-bottom: 120px;
}

.secutiry-list {
  margin-bottom: 60px;
  display: flex;
}

.secutiry-list .title {
  width: 247px;
  border-right: 1px solid #707070;
}

.secutiry-list .title .num {
  font-size: 4.375rem;
  line-height: 1;
  color: var(--color_green);
  font-weight: 700;
  display: block;
}

.secutiry-list .title p {
  font-size: 1.25rem;
  font-weight: 700;
}

.secutiry-list .info {
  width: calc(100% - 247px);
  margin-left: auto;
  padding-left: 35px;
  box-sizing: border-box;
}

.secutiry-list .info ul {
  padding-left: 16.625em;
  background: url(../images/security-img01.webp) no-repeat left center;
  background-size: 15rem;
}
.secutiry-list .info ul li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  margin-bottom: 7px;
}

.h3-ttl {
  font-size: 1.625rem;
  color: var(--color_green);
  font-weight: 700;
  border-bottom: 1px dashed #707070;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.m-table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
  overflow: hidden;
}

.m-table thead tr > th {
  font-size: 1rem;
  vertical-align: middle;
  padding: 8px 0;
  font-weight: bold;
  color: #FFFFFF;
  box-sizing: border-box;
  border: 1px solid var(--color_border);
}

.m-table tbody tr td {
  border: 1px solid var(--color_border);
  vertical-align: middle;
  text-align: center;
}

.m-table thead tr > th:nth-child(1) {
  width: 20.26%;
  background: #676767;
}

.m-table thead tr > th:nth-child(2) {
  background: #1DAFAF;
  width: 15.5%;
}

.m-table thead tr > th:nth-child(3) ,
.m-table thead tr > th:nth-child(4) {
  background: #F8B548;
  width: 12.5%;
}

.m-table thead tr > th:nth-child(5) {
  background: #F8B548;
  width: 15.1%;
}

.m-table thead tr > th:nth-child(6) {
  color: #333;
  width: 23.8%;
}

.m-table tbody tr td:nth-child(2) {
  background: #E1F0F0;
}

.m-table tbody tr td:nth-child(3) ,
.m-table tbody tr td:nth-child(4) ,
.m-table tbody tr td:nth-child(5) {
  background: #FFECCC;
}

.m-table tbody tr th {
  background-color: #EAE5E5;
  padding: 12px;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.4;
  border: 1px solid var(--color_border);
}

.m-table tbody tr th span {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
}

.m-table tbody tr th span {
  font-size: 1.125rem;
  line-height: 27px;
}

.m-table tbody tr td:nth-child(6) {
  font-size: 14px;
  text-align: left;
  padding: 13px 16px;
  line-height: 1.5;
}

.m-table colgroup {
  border: none;
}

.m-table colgroup:nth-child(2) {
  border: 6px solid var(--color_green);
  min-width: 170px;
}

.m-table tbody tr td span {
  display: inline-block;
  margin-left: 4px;
  font-weight: 700;
}

.one-point {
  margin-top: 52px;
  background: url(../images/security-img02.svg) no-repeat 90% 105%;
  background-size: 267px auto;
  background-color: #33465C;
  padding: 25px 50px;
  border-radius: 10px;
  color: var(--color_white);
}

.one-point .ttl {
  margin-bottom: 25px;
  font-weight: 700;
}

.one-point .ttl span {
  background-color: #F8B548;
  position: relative;
  padding: 6px 22px;
  border-radius: 4px;
}

.one-point .ttl span:before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 23%;
  border-style: solid;
  border-width: 13px 16px 0 0;
  border-color: #f8b548 transparent transparent;
  translate: calc(-50% - 0.6px) 100%;
}

.one-point ul li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  margin-bottom: 5px;
}

.benefit .txt16 ,
.about .txt16 {
  margin-bottom: 35px;
}

.about-figure {
  margin-bottom: 55px;
  margin-top: 40px;
}

/*比較表*/
.m-table-box table {
  table-layout: fixed;
  width: 100%;
}

.m-table-box table th {
  background-color: var(--color_green);
  border: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-align: center;
  padding: 11px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.m-table-box table td {
  background-color: #F0F3F7;
  border: 1px solid #ccc;
  text-align: center;
  padding: 6px 10px 6px;
  color: #333;
  font-size: 0.875rem;
  font-weight: 700;
}

.m-table-box table td span {
  font-size: 1rem;
  font-weight: 700;
}

.m-table-box table th:nth-child(1) {
  background-color: #676767;
}

.m-table-box table td.bg01 {
  background-color: var(--color_gray_bg);
  text-align: left;
  padding-left: 100px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px;
  text-align: left;
}

.m-table-box th:nth-child(4), 
.m-table-box td:nth-child(4n) {
  width: 45.1%;
  text-align: center;
  vertical-align: middle;
}

.m-table-box th:nth-child(2), 
.m-table-box th:nth-child(3), 
.m-table-box td:nth-child(2n), 
.m-table-box td:nth-child(3n) {
  width: 17%;
  vertical-align: middle;
}

.m-table-box td .txt02 {
  font-size: 0.875rem;
}

.m-table-box tr td:nth-child(4) .txt02 {
  text-align: left;
}

.m-table-box table td.bg01 span {
  display: block;
  font-size: 0.8125rem;
}

.ttl-type01 {
  font-weight: 700;
  margin: 30px 0 8px;
  font-size: 1.125rem;
}

.lead.lead-type02 {
  background-color: inherit;
  padding: 0;
  padding-top: 50px;
}

.voice {
  background-color: var(--color_green);
}

.voice .c-center {
  background-color: inherit;
  box-shadow: inherit;
}

.voice-slider {
  overflow: visible; /* 重要：はみ出し表示 */
}

.voice-slider .slick-list {
  overflow: visible; /* 重要 */
  padding: 0 7.8%!important;
}

.voice-slider .slick-slide {
  opacity: 0.4;
  margin: 0 50px!important;
  transition: opacity .3s ease;
}

.voice-slider .slick-center {
  opacity: 1;
}

.voice-slider-items {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  position: relative;
  text-decoration: none;
  transition: box-shadow .3s
}

.voice-slider-items .inner {
  display: flex;
  gap: 30px;
}

.voice-slider-items .inner .thum {
  flex: 1 0 auto;
  height: 248px;
  overflow: hidden;
  width: 375px;
}

.voice-slider-items .inner .thum img {
  object-fit: cover;
  transition: transform .3s;
  vertical-align: bottom;
  width: 100%;
}

.voice-slider-items .inner .info .name {
  font-size: 1.25rem;
  color: var(--color_green);
  font-weight: 700;
  margin-bottom: 12px;
}

.voice-slider-items .inner .info .ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.voice-slider-items .inner .info .txt14 {
  font-size: 0.875rem;
  font-weight: 500;
}

.c-btn02 {
  text-align: center;
  margin-top: 86px;
}

.c-btn02 a {
  display: inline-block;
  text-align: center;
  background: url(../images/ico-arw-green.svg) no-repeat 95% 50%;
  background-size: 9px auto;
  background-color: var(--color_white);
  border-radius: 200px;
  color: var(--color_green);
  font-weight: 700;
  padding: 16px;
  min-width: 400px;
  box-shadow: 0 3px 6px rbga(0,0,0,.16);
}

.feature {
  padding-top: 53px;
}

.feature-ttl {
  color: #F8B548;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 13px;
}

.feature-ttl + .txt16 {
  max-width: 90%;
  color: var(--color_white);
}

.feature-inner {
  background-color: rgba(255,255,255,.9);
  border-radius: 10px;
  padding: 27px 40px;
  margin-top: 28px;
}

.feature-inner ul {
  margin-top: 6px;
}

.feature-inner ul li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  margin-bottom: 5px;
}

.faq {
  padding: 20px 0 var(--paddingSection);
}

.faq h2 {
  color: #333;
}

.faq-list {
  margin-bottom: 20px;
}

.faq-list dt {
  background-color: #F5F5F5;
  position: relative;
  border-radius: 5px;
  padding: 15px 40px;
  padding-right: 58px;
  display: flex;
  align-items: flex-start;
}

.faq-list dt:after {
  content: '';
  position: absolute;
  right: 20px;
  top: 11px;
  width: 38px;
  height: 38px;
  background: url(../images/faq-arw.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: .3s;
}

.faq-list dt.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-list dt span {
  display: inline-block;
  position: relative;
  padding-right: 30px;
}

.faq-list dt:hover {
  cursor: pointer;
}

.faq-list dt span:after {
  content: '';
  position: absolute;
  right: 0;
  width: 2px;
  height: 19px;
  top: 5px;
  background: var(--color_green);
}

.faq-list dt h3 {
  font-size: 1.25rem;
  width: 93%;
  padding-left: 30px;
  box-sizing: border-box;
}

.faq-list dt h3 p {
  color: var(--color_green);
  font-size: 0.875rem;
  margin-left: 10px;
  display: inline-block;
}

.faq-list dd  {
  display: none;
}

.faq-list dd .grid {
  display: flex;
  padding-left: 70px;
  margin-top: 20px;
}

.faq-list dd span {
  margin-right: 20px;
}

.faq-list dd .grid p {
  width: 90%;
}

/*inquiry*/
.inquiry {
  background-color: var(--color_blue);
}

.inquiry-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 33px;
  position: relative;
  padding-bottom: 50px;
}

.inquiry-title {
  text-align: center;
}

.inquiry-title .tag {
  position: absolute;
  left: 50%;
  margin: 0 auto;
  display: block;
  top: -59px;
  margin-left: -205px;
  background-color: #F8B548;
  color: var(--color_blue);
  font-size: 1.25rem;
  font-weight: 700;
  padding: 9px 0;
  border: 3px solid #09376c;
  width: 413px;
  border-radius: 100px;
}

.inquiry-title .tag::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #09376c transparent transparent;
  translate: -50% 100%;
}

.inquiry-title .tag::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 13.3px 6.6px 0 6.6px;
  border-color: #f8b548 transparent transparent;
  translate: -50% 100%;
}

.inquiry-title h2 {
  color: #fff;
  font-size: 2.375rem;
  font-weight: 900;
  margin-bottom: 20px;
  padding-top: 20px;
}

.inquiry-title p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 36px;
}

.c-btn.inquiry-btn a {
  width: 589px;
  padding: 19px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.c-btn.inquiry-btn a span {
  background-size: 40px;
  padding-left: 60px;
  font-size: 1.5rem;
}

.inquiry-cv {
  display: flex;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--color_white);
  position: relative;
}

.inquiry-cv:after {
  content: '';
  position: absolute;
  right: 0;
  top: -183px;
  width: 204px;
  height: 195px;
  background: url(../images/ft-illust01.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.inquiry-cv .inquiry-cv-thum {
  order: 2;
  width: 320px;
  margin-left: auto;
  padding-right: 20px;
}

.inquiry-cv .inquiry-cv-info {
  order: 1;
  width: calc(100% - 320px);
}

.inquiry-cv-info__ttl {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 26px;
  margin-left: 40px;
  padding-top: 40px;
}

.inquiry-cv .inquiry-cv-info .grid {
  display: flex;
  gap: 30px;
}

.inquiry-cv-info .grid a {
  display: inline-block;
  color: #fff;
  width: 360px;
  font-size: 1.625rem;
  padding: 14px 0;
  position: relative;
  overflow: hidden;
  font-weight: 700;
  text-align: center;
  border-radius: 200px;
  background: url(../images/ico-arw-white.svg) no-repeat 95% 50%;
  background-size: 12px auto;
}

.inquiry-cv-info .grid a.c-btn-contact {
  background-color: var(--color_red);
  border: 2px solid var(--color_red);
}

.inquiry-cv-info .grid a.c-btn-trial {
  background-color: var(--color_green);
  border: 2px solid var(--color_green);
}

.inquiry-cv-info .grid a.c-btn-contact span {
  padding-left: 52px;
  background: url(../images/ico-mail-white.svg) no-repeat left center;
  background-size: 30px auto;
}

.inquiry-cv-info .grid a.c-btn-trial span{
  background: url(../images/ico-flie-white.svg) no-repeat left center;
  background-size: 24px auto;
  padding-left: 42px;
}

.inquiry-cv-info .grid a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(-101%, 0);
  background: #FFCC00;
  animation: effect1 6s linear 0s infinite;
}

.inquiry-cv-info .grid a:before {
  background: #FFFFFF;
  animation-name: effect2;
}

/* ==========================================================================
Component [ button / form / grid... ]
========================================================================== */
/*
filter: drop-shadow(0 3px 6px rgba(0, 55, 51, 0.1));
font-size: clamp(0.75rem, 1.25vw, 1rem);
aspect-ratio: 1 / 2;
background: center/contain url("../images/aaa.svg") no-repeat;
*/

.c-center {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background-color: var(--color_white);
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(29, 175, 175, 0.2);
  padding: var(--paddingSection) var(--paddingLR);
  box-sizing: border-box;
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.flex-top {
  align-items: flex-start;
}

.flex-middle {
  align-items: center;
}

.flex-bottom {
  align-items: flex-end;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content:space-around;
}

.flex-left {
  justify-content:flex-start;
}

.flex-center {
  justify-content:center;
}

.flex-right {
  justify-content:flex-end;
}


/* column */
.col-1 { width: 8.33333333%; }
.col-2 { width: 16.66666667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.33333333%; }
.col-5 { width: 41.66666667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.33333333%; }
.col-8 { width: 66.66666667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.33333333%; }
.col-11 { width: 91.66666667%; }
.col-12 { width: 100%; }

/*==========
ボタン
==========*/

.c-btn {
  display: inline-block;
}

.c-btn a {
  display: inline-block;
  color: #fff;
  width: 594px;
  font-size: 1.625rem;
  padding: 14px 0;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 200px;
  background: url(../images/ico-arw-white.svg) no-repeat 95% 50%;
  background-size: 12px auto;
  background-color: var(--color_red);
  border: 2px solid var(--color_red);
}

.c-btn a span {
  display: inline-block;
  padding-left: 51px;
  background: url(../images/ico-mail-white.svg) no-repeat left center;
}

.c-btn a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(-101%, 0);
  background: #FFCC00;
  animation: effect1 6s linear 0s infinite;
}

.c-btn a:before {
  background: #FFFFFF;
  animation-name: effect2;
}

/*==========
タイトル
==========*/




/*==========
Effect
==========*/

.rotate {
  -webkit-transform: rotateY(90deg);
          transform: rotateY(90deg);
  opacity: 0;
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.rotate.trigger {
  -webkit-animation-name: rotate;
          animation-name: rotate;
}

@-webkit-keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes rotate {
  0% {
    opacity: 0;
    -webkit-transform: rotateY(90deg);
            transform: rotateY(90deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}
.fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeIn.trigger {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUp.trigger {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

.fadeUpList > * {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.fadeUpList.trigger > * {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.popUp {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUp.trigger {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

.popUpList > * {
  opacity: 0;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  will-change: transform, opacity;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.popUpList.trigger > * {
  -webkit-animation-name: popUp;
          animation-name: popUp;
}

@-webkit-keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes popUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.125);
            transform: scale(1.125);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.slideLeft {
  will-change: transform, opacity;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideLeft.trigger {
  -webkit-animation-name: slideLeft;
          animation-name: slideLeft;
}

@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.slideRight {
  will-change: transform, opacity;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.slideRight.trigger {
  -webkit-animation-name: slideRight;
          animation-name: slideRight;
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* ==========================================================================
Utility [ display / margin / padding / device... ]
========================================================================== */

/* device - utility
--------------------------------------------------------- */
.u-pc {
  display: block !important;
}
.u-sp {
  display: none !important;
}

/* vertical-align - utility
--------------------------------------------------------- */
.u-va-t{
  vertical-align: top !important;
}
.u-va-m{
  vertical-align: middle !important;
}
.u-va-b{
  vertical-align: bottom !important;
}

/* border - utility
--------------------------------------------------------- */
/* border-radius */
.u-br-4{
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -ms-border-radius: 4px;
}
.u-br-8{
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -ms-border-radius: 8px;
}
.u-br-12{
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  -ms-border-radius: 12px;
}
.u-br-16{
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  -ms-border-radius: 16px;
}

/* border-none */
.u-br-0{
  border: none;
}
.u-br-t-0{
  border-top: none;
}
.u-br-r-0{
  border-right: none;
}
.u-br-b-0{
  border-bottom: none;
}
.u-br-l-0{
  border-left: none;
}

/* clearfix - utility
--------------------------------------------------------- */
.u-cf{
  *zoom: 1;
}
.u-cf:after{
  display: table;
  clear: both;
  content: '';
}

/* display - utility
--------------------------------------------------------- */
.u-d-tb{
  display: table !important;
}
.u-d-tbc{
  display: table-cell !important;
}
.u-d-b{
  display: block !important;
}
.u-d-ib{
  display: inline-block !important;
}
.u-d-n{
  display: none !important;
}

/* float - utility
--------------------------------------------------------- */
.u-fl-l{
  float: left !important;
}
.u-fl-r{
  float: right !important;
}

/* font-size - utility
--------------------------------------------------------- */
.u-fz-10{
  font-size: 10px !important;
}
.u-fz-12{
  font-size: 12px !important;
}
.u-fz-14{
  font-size: 14px !important;
}
.u-fz-16{
  font-size: 16px !important;
}
.u-fz-18{
  font-size: 18px !important;
}
.u-fz-20{
  font-size: 20px !important;
}
.u-fz-22{
  font-size: 22px !important;
}
.u-fz-24{
  font-size: 24px !important;
}
.u-fz-26{
  font-size: 26px !important;
}
.u-mini {
  font-size: 80%;
}

/* line-clamp - utility
--------------------------------------------------------- */
.u-lc{
  display:         box;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* margin - utility
--------------------------------------------------------- */
/* auto margin */
.u-m-c{
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Top margin */
.u-mt-0{
  margin-top: 0 !important;
}
.u-mt-8{
  margin-top: 8px !important;
}
.u-mt-16{
  margin-top: 16px !important;
}
.u-mt-24{
  margin-top: 24px !important;
}
.u-mt-32{
  margin-top: 32px !important;
}
.u-mt-40{
  margin-top: 40px !important;
}
.u-mt-48{
  margin-top: 48px !important;
}
.u-mt-56{
  margin-top: 56px !important;
}
.u-mt-64{
  margin-top: 64px !important;
}

/* Right margin */
.u-mr-0{
  margin-right: 0 !important;
}
.u-mr-8{
  margin-right: 8px !important;
}
.u-mr-16{
  margin-right: 16px !important;
}
.u-mr-24{
  margin-right: 24px !important;
}
.u-mr-32{
  margin-right: 32px !important;
}
.u-mr-40{
  margin-right: 40px !important;
}
.u-mr-48{
  margin-right: 48px !important;
}
.u-mr-56{
  margin-right: 56px !important;
}
.u-mr-64{
  margin-right: 64px !important;
}

/* Bottom margin */
.u-mb-0{
  margin-bottom: 0 !important;
}
.u-mb-8{
  margin-bottom: 8px !important;
}
.u-mb-16{
  margin-bottom: 16px !important;
}
.u-mb-24{
  margin-bottom: 24px !important;
}
.u-mb-32{
  margin-bottom: 32px !important;
}
.u-mb-40{
  margin-bottom: 40px !important;
}
.u-mb-48{
  margin-bottom: 48px !important;
}
.u-mb-56{
  margin-bottom: 56px !important;
}
.u-mb-64{
  margin-bottom: 64px !important;
}

/* Left margin */
.u-ml-0{
  margin-left: 0 !important;
}
.u-ml-8{
  margin-left: 8px !important;
}
.u-ml-16{
  margin-left: 16px !important;
}
.u-ml-24{
  margin-left: 24px !important;
}
.u-ml-32{
  margin-left: 32px !important;
}
.u-ml-40{
  margin-left: 40px !important;
}
.u-ml-48{
  margin-left: 48px !important;
}
.u-ml-56{
  margin-left: 56px !important;
}
.u-ml-64{
  margin-left: 64px !important;
}

/* misc - utility
--------------------------------------------------------- */
.u-ws-nowrap{
  white-space: nowrap;
}
.u-mx-img{
  max-width: 100%;
}
.u-tx-inside{
  margin-left: 1em;
  text-indent: -1em;
}

/* padding - utility
--------------------------------------------------------- */
/* Top padding */
.u-pt-0{
  margin-top: 0 !important;
}
.u-pt-8{
  margin-top: 8px !important;
}
.u-pt-16{
  margin-top: 16px !important;
}
.u-pt-24{
  margin-top: 24px !important;
}
.u-pt-32{
  margin-top: 32px !important;
}
.u-pt-40{
  margin-top: 40px !important;
}
.u-pt-48{
  margin-top: 48px !important;
}
.u-pt-56{
  margin-top: 56px !important;
}
.u-pt-64{
  margin-top: 64px !important;
}

/* Right padding */
.u-pr-0{
  padding-right: 0 !important;
}
.u-pr-8{
  padding-right: 8px !important;
}
.u-pr-16{
  padding-right: 16px !important;
}
.u-pr-24{
  padding-right: 24px !important;
}
.u-pr-32{
  padding-right: 32px !important;
}
.u-pr-40{
  padding-right: 40px !important;
}
.u-pr-48{
  padding-right: 48px !important;
}
.u-pr-56{
  padding-right: 56px !important;
}
.u-pr-64{
  padding-right: 64px !important;
}

/* Bottom padding */
.u-pb-0{
  padding-bottom: 0 !important;
}
.u-pb-8{
  padding-bottom: 8px !important;
}
.u-pb-16{
  padding-bottom: 16px !important;
}
.u-pb-24{
  padding-bottom: 24px !important;
}
.u-pb-32{
  padding-bottom: 32px !important;
}
.u-pb-40{
  padding-bottom: 40px !important;
}
.u-pb-48{
  padding-bottom: 48px !important;
}
.u-pb-56{
  padding-bottom: 56px !important;
}
.u-pb-64{
  padding-bottom: 64px !important;
}

/* Left padding */
.u-pl-0{
  padding-left: 0 !important;
}
.u-pl-8{
  padding-left: 8px !important;
}
.u-pl-16{
  padding-left: 16px !important;
}
.u-pl-24{
  padding-left: 24px !important;
}
.u-pl-32{
  padding-left: 32px !important;
}
.u-pl-40{
  padding-left: 40px !important;
}
.u-pl-48{
  padding-left: 48px !important;
}
.u-pl-56{
  padding-left: 56px !important;
}
.u-pl-64{
  padding-left: 64px !important;
}

/* position - utility
--------------------------------------------------------- */
.u-pos-a{
  position: absolute !important;
}
.u-pos-r{
  position: relative !important;
}

/* text-align - utility
--------------------------------------------------------- */
.u-ta-l{
  text-align: left !important;
}
.u-ta-c{
  text-align: center !important;
}
.u-ta-r{
  text-align: right !important;
}

/* text-decoration - utility
--------------------------------------------------------- */
.u-fw-r{
  font-weight: 400 !important;
}
.u-fw-n{
  font-weight: 500 !important;
}
.u-fw-b{
  font-weight: 700 !important;
}
.u-td-u{
  text-decoration: underline !important;
}

/* text-truncate - utility
--------------------------------------------------------- */
.u-tt{
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  /* for IE 8/9 */
}

/* width - utility
--------------------------------------------------------- */
.u-w-auto{
  width: auto !important;
}
.u-maw-full{
  max-width: 100% !important;
}
.u-maw-half{
  max-width: 50% !important;
}

/*可変幅*/
@media screen and (max-width: 1260px){
    .cv-inner .inner {
      width: 55%;
    }
  .cv-inner {
    background-size: 298px,303px;
  }
}