@charset "UTF-8";
<<<<<<< HEAD
<<<<<<< HEAD
/* ================================================================================
   《目次》

       1. プロジェクトのベース（basis/*.scss）
            - リセットCSS
            - フォント設定
            - 文字色

       2. 共通スタイル（common/*.scss）
            .container              :コンテナとbody
            .site-header            :ヘッダ
            .site-footer            :フッタ

       3. ページ固有スタイル（page/*.scss）
            - LPページ

   --------------------------------------------------------------------------------
   《補足》スタイル定義の競合を防ぐために

     - 当目次に記載したクラス名以外のクラス名（便宜上「子クラス」と呼ぶ）は単独で定義しないようにしてください
     - 区別のため子クラス名の先頭には「アンダースコア(_)」を付加します
     - このシンプルなルールによりスタイル定義の競合をかんたんに回避可能です
     - 目次に記載したクラス名はSASSファイル名と対応しているためファイル名を見るだけでクラス名の重複を防げます
   ================================================================================ */
/* ================================================================================
   1. プロジェクトのベース
   ================================================================================ */
/* --------------------------------------------------------------------------------
   リセットCSS
     - マージン、パディング、ボーダーはすべて0
     - フォントサイズは 16px（1.6rem） に揃える
     - 見出し、em、strong、b、th は太字にする
     - テーブルはボーダーあり
     - など
   --------------------------------------------------------------------------------
   ＜補足＞
     - Meyresweb CSS Reset に一部 Normalize.css を足した感じ
     - Meyersweb CSS Reset :https://meyerweb.com/eric/tools/css/reset/
     - Normalize.css:https://necolas.github.io/normalize.css/
   -------------------------------------------------------------------------------- */
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;
}

html {
  font-size: 62.5%; /* rootフォントサイズを10pxにする（16px * 62.55 = 10px） */
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  font-feature-settings: "palt";
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Verdana, sans-serif;
  font-size: 1.6em; /* 16px（body で rem ではなく em を使うのはChromeのバグ対策） */
  line-height: 2;
  -webkit-text-size-adjust: 100%; /* スマホを横向きにしたとき等に文字サイズを自動調整しない（CSSの指定どおり） */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (max-width: 1600px) {
  body {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4em;
  }
}
img {
  max-width: 100%;
  line-height: 0;
  vertical-align: top;
  -webkit-backface-visibility: hidden; /* Chromeで画像がぼやける現象を回避 */
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  font-weight: bold;
}

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

small {
  font-size: 80%;
}

/* sub/sup が行間に影響を及ぼすのを防ぐ (normalize.css) */
sub,
sup {
  position: relative;
  font-size: 77%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  display: block;
  height: 0.1rem;
  margin: 1em 0;
  border-top: 0.1rem solid #ccc;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/* アンカー */
a {
  color: #03c;
  text-decoration: underline;
}

a:visited {
  color: #60a;
  text-decoration: underline;
}

a:hover {
  color: #f00;
  text-decoration: none;
}

a:focus {
  outline: none;
}

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

/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0.5em 0.8em;
  border: 0.1rem solid #ddd;
}

th {
  font-weight: bold;
}

thead th {
  background-color: #e5e5e5;
}

/* フォーム */
label {
  cursor: pointer;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

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

/* Firefox で button 要素に CSS で消せない padding と border がつくのを消す (normalize.css) */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input[type=text],
input[type=email],
textarea {
  width: 100%;
  padding: 0.5rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
  border-radius: 0.3rem;
  border: 0.1rem solid #ddd;
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: #aaa;
}

textarea {
  display: block;
  overflow: auto;
  vertical-align: top;
}

input:invalid,
textarea:invalid {
  background-color: #f0dddd;
}

/* 画像リンクのホバー効果 */
a:hover img {
  opacity: 0.9;
}

a:hover img.noeffect img {
  opacity: inherit;
}

/* PCでは電話番号のリンク無効 */
@media screen and (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* 印刷用 */
@media print {
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 1.2cm;
  }
}
/* HTML5非対応ブラウザ向け */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

audio[controls],
canvas,
video {
  display: inline-block;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  src: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.6.3/webfonts/fa-brands-400.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  src: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.6.3/webfonts/fa-regular-400.woff2") format("woff2"), url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.6.3/webfonts/fa-solid-900.woff2") format("woff2");
  font-display: swap;
}
/* --------------------------------------------------------------------------------
   フォントファミリー
     - -apple-system:MacとiOS用フォント SanFrancisco。ヒラギノに近いが欧文はヒラギノより良い
     - BlinkMacSystemFont:ChromeでSanFrancisoを使いたいときの指定
   -------------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, Helvetica, Arial, sans-serif;
}

body {
  font-size: 1.8em;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 3.5vw;
  }
}
/* Viewport:1600px 以下のときはルートフォントサイズを Viweport の幅に応じて縮小する */
/* その上でスタイル定義の絶対値の単位を px から rem に変更することで */
/* Viewport:1600px 以下の場合は幅に応じてコンテンツ全体を単純縮小できる */
@media only screen and (max-width: 1600px) {
  html {
    /* 0.666vw は Viewport:1600px のとき 10px（10/1600=0.00625=0.625vw） */
    font-size: 0.625vw;
  }
}
/* --------------------------------------------------------------------------------
   文字色
   -------------------------------------------------------------------------------- */
body {
  color: #191919;
}

a:link {
  color: #005aa9;
}

a:visited {
  color: #005aa9;
}

a:hover {
  color: #002443;
}

/* --------------------------------------------------------------------------------
   ユーティリティクラス - その他
     - クリアフィクス
     - display 制御
     - フロート
   -------------------------------------------------------------------------------- */
/* クリアフィクス */
.clearfix {
  *zoom: 1;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* display制御 */
.hide {
  display: none;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

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

@media screen and (max-width: 767px) {
  .sp-hide {
    display: none !important;
  }
  .sp-inline {
    display: inline !important;
  }
  .sp-block {
    display: block !important;
  }
  .sp-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 767px) {
  .pc-hide {
    display: none !important;
  }
  .pc-inline {
    display: inline !important;
  }
  .pc-block {
    display: block !important;
  }
  .pc-inline-block {
    display: inline-block !important;
  }
}
/* フロート */
.float-left,
.float-l {
  float: left;
}

.float-right,
.float-r {
  float: right;
}

/* ================================================================================
   2. 共通スタイル
     - ヘッダ、フッタ、ナビなどのページ共通／画面共通の要素
     - 見出し、リスト、テーブル、ボタン、フォームなどの繰り返し使用するパーツ
     - SASSファイル名は当該要素のクラス名と一致している
       → ファイル名だけでクラス名の重複を防げる
   ================================================================================ */
/* --------------------------------------------------------------------------------
   コンテナとbody / body および .container
   -------------------------------------------------------------------------------- */
body {
  overflow-x: hidden;
  background-color: #f2f2f2;
}

body.page-lp {
  font-size: 1.8em;
  line-height: 2;
}

.container {
  z-index: 2;
  position: relative;
  max-width: 192rem;
  margin: 0 auto;
  padding-top: 10rem;
  background-color: #fff;
}

@media only screen and (max-width: 1600px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.page-lp {
    font-size: 3.5vw;
  }
  .container {
    padding-top: 15vw;
  }
}
/* --------------------------------------------------------------------------------
   ヘッダ / .site-header
   -------------------------------------------------------------------------------- */
.site-header {
  z-index: 1000;
  position: fixed;
  left: calc(50% - 96rem);
  top: 0;
  width: 192rem;
  margin: 0 auto;
  border-bottom: 0.1rem solid #e6e6e6;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.2s linear;
}

.site-header ._inner {
  display: flex;
  align-items: center;
  width: 160rem;
  height: 10rem;
  margin: 0 auto;
  padding: 0 3rem;
  transition: all 0.2s linear;
}

.site-header ._logo {
  margin-right: 8rem;
}

.site-header ._logo img {
  width: 12.8rem;
  transition: all 0.2s linear;
}

.site-header ._nri {
  position: absolute;
  right: 18rem;
  top: 3.8rem;
  transition: all 0.2s linear;
}

.site-header ._nri img {
  height: 2.4rem;
  transition: all 0.2s linear;
}

.site-header ._contact {
  position: absolute;
  right: 0;
  top: 0;
  width: 14rem;
  height: 100%;
  overflow: hidden;
  transition: all 0.2s linear;
}

.site-header ._contact a {
  float: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 100%;
  padding-left: 3rem;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: url(../images/contact-btn-bg.svg) no-repeat right center;
  background-size: auto 100%;
  transition: all 0.2s linear;
}

.site-header ._contact a:hover {
  color: #5fb5f3;
  transform: scale(1.1);
}

.site-header ._contact a::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

@media only screen and (max-width: 1920px) {
  .site-header {
    left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .site-header ._contact a::before {
    font-size: 3.5rem !important;
  }
  .site-header ._contact a span {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .site-header {
    border-bottom: 1px solid #e6e6e6;
  }
  .site-header ._inner {
    width: 100%;
    height: 15vw;
    padding: 0 4vw;
  }
  .site-header ._logo img {
    width: 20vw;
  }
  .site-header ._nri {
    right: 25vw;
    top: 5vw;
  }
  .site-header ._nri img {
    height: 4.5vw;
  }
  .site-header ._contact {
    width: 34rem;
  }
  .site-header ._contact a {
    width: 34rem;
    padding-left: 6rem;
  }
  .site-header ._contact a::before {
    font-size: 9rem !important;
  }
}
/* --------------------------------------------------------------------------------
フッタ / .site-footer
-------------------------------------------------------------------------------- */
.site-footer {
  z-index: 0;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .site-footer {
    margin-top: 0;
  }
}
/* --------------------------------------------------------------------------------
コンテンツ領域 / .content
-------------------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .content {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
/* --------------------------------------------------------------------------------
お問い合わせボックス / .contact
-------------------------------------------------------------------------------- */
.contact {
  visibility: hidden;
  z-index: 1;
  position: static; /* デフォルトでは static としておき js で fixed 切替 */
  left: calc(50% - 96rem);
  bottom: 0;
  width: 192rem;
  margin: 0 auto;
  padding: 8rem 0;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #191919 url(../images/contact-bg.svg) no-repeat 80rem -70rem;
  background-size: 70%;
}

.contact h2 {
  font-size: 4.2rem;
  line-height: 1;
  margin-bottom: 8rem;
}

.contact ._lead {
  font-size: 2.4rem;
  line-height: 1.333;
  margin-bottom: 4rem;
}

.contact ul {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}

.contact ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30rem;
  margin: 0 1rem;
  padding: 1.5rem;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.4rem;
  background-color: #191919;
}

.contact > small {
  display: block;
  margin-top: 5rem;
  font-size: 1.8rem;
  line-height: 1.333;
}

@media only screen and (max-width: 1920px) {
  .contact {
    left: 0;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .contact {
    padding: 12.5vw 5vw;
    background-position: center;
    background-size: 70%;
  }
  .contact h2 {
    font-size: 5vw;
    margin-bottom: 10vw;
  }
  .contact ._lead {
    font-size: 3.5vw;
    margin-bottom: 6vw;
  }
  .contact ul {
    justify-content: space-between;
    margin-bottom: 6vw;
  }
  .contact ul li {
    width: 24.5%;
    margin: 0;
    padding: 3vw 2vw;
    font-size: 10px;
    line-height: 1.7;
    border-radius: 1vw;
  }
  .contact ul li br {
    display: none;
  }
  .contact > small {
    margin-top: 6vw;
    font-size: 3vw;
  }
}
/* --------------------------------------------------------------------------------
ページトップボタン / .pagetop
-------------------------------------------------------------------------------- */
.pagetop {
  z-index: 5;
  position: fixed;
  right: 0;
  bottom: -10rem;
  width: 10rem;
  height: 10rem;
  padding-top: 10rem;
  overflow: hidden;
  outline: 0;
  border: 0;
  background: none;
  background-color: #b3b3b3;
  transition: all 0.2s linear;
}

.pagetop._active {
  bottom: 0;
}

.pagetop::after {
  content: "\f077";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-family: "Font Awesome 5 Free";
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 10rem;
  color: #fff;
}

.pagetop:hover {
  background-color: #191919;
}

@media only screen and (max-width: 767px) {
  .pagetop {
    bottom: -15vw;
    width: 15vw;
    height: 15vw;
    padding-top: 15vw;
  }
  .pagetop::after {
    font-size: 7.5vw;
    line-height: 15vw;
  }
}
/* --------------------------------------------------------------------------------
   トップ - セクション / body.page-lp .top-section
   -------------------------------------------------------------------------------- */
body.page-lp .top-section {
  width: 160rem;
  margin: 8rem auto;
  padding: 0 3rem;
}

body.page-lp .top-section ._btn-top {
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 1600px) {
  body.page-lp .top-section {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.page-lp .top-section {
    width: 100%;
    margin: 0;
    padding: 17vw 0 20vw;
    border-top: 1px solid #ccc;
  }
  body.page-lp .top-section ._btn-top {
    margin-top: 8vw;
    margin-bottom: 2vw;
    font-size: 3.5vw;
  }
}
/* --------------------------------------------------------------------------------
ボタン / .btn
- 以下の４バリエーションを用意しています
1. 通常のボタン → a.btn
2. 大きなボタン → a.btn._large
3. 四角いボタン → a.btn._square
4. 大きくて四角いボタン → a.btn._large._square
-------------------------------------------------------------------------------- */
.btn,
a.btn {
  position: relative;
  display: inline-block;
  min-width: 15rem;
  padding: 0 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 5.4rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  outline: 0;
  border-radius: 0.4rem;
  border: 0.11px solid #191919;
  background-color: #191919;
  transition: all 0.2s linear;
}

.btn:visited,
a.btn:visited {
  text-decoration: none;
  color: #fff;
}

.btn:hover,
.btn:active,
a.btn:hover,
a.btn:active {
  color: #5fb5f3;
  transform: scale(1.1);
}

.btn._small,
a.btn._small {
  min-width: 0;
  padding: 0 2.5rem;
  line-height: 4.4rem;
}

.btn._large,
a.btn._large {
  font-size: 2rem;
  line-height: 8rem;
}

.btn._white,
a.btn._white {
  color: #191919;
  background-color: #fff;
}

.btn._external::after,
a.btn._external::after {
  content: "\f35d";
  margin-left: 0.8rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .btn,
  a.btn {
    padding: 0 5vw;
    font-size: 3.5vw;
    line-height: 12.5vw;
    border-radius: 1.066vw;
  }
  .btn._small,
  a.btn._small {
    padding: 0 3.5vw;
    line-height: 10vw;
  }
  .btn._large,
  a.btn._large {
    font-size: 4vw;
    line-height: 15vw;
  }
}
/* ================================================================================
3. ページ固有スタイル
- 特定のページでしか使われないスタイル
- 最初ここに定義していたものが、共通スタイルに格上げしたり、その逆もありうる
- SASSファイル名先頭にページ別のプリフィクスがつく（例:top-*, hoge-*, ... など）
- プリフィクス以降のSASSファイル名は、共通スタイルと同様、当該要素のクラス名と一致している
→ ファイル名だけでクラス名の重複を防げる
================================================================================ */
/* LPページ */
/* --------------------------------------------------------------------------------
トップ - ビジュアル / body.page-lp .top-visual
-------------------------------------------------------------------------------- */
body.page-lp .lp-section {
  padding: 8rem 0 4rem;
}

body.page-lp .section-inner {
  margin: auto;
  padding: 0 3rem;
}

body.page-lp #main.lp-section {
  background: url(../images/main-bg.png) no-repeat 45vw bottom;
  background-size: 1074px 472px;
}

body.page-lp #main.lp-section header {
  max-width: 1400px;
  margin: auto;
  box-sizing: border-box;
  padding: 0;
}

body.page-lp .main-title {
  font-size: 6rem;
  line-height: 1.3;
  margin: 0 0 3rem;
}

body.page-lp .main-title-color {
  color: #1b5fff;
}

body.page-lp .main-subtitle {
  margin: 0 0 6rem;
  font-size: 2.4rem;
  color: #253858;
  line-height: 1.3;
}

body.page-lp .main-subtitle img {
  max-width: 260px;
  margin: 0 0 0 10px;
  width: 24rem;
}

body.page-lp .main-white {
  width: 68rem;
  border: 3px #e5e5e5 solid;
  border-radius: 0.4rem;
  margin: 0;
  box-sizing: border-box;
  padding: 3rem 4rem;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}

body.page-lp .main-white-left {
  width: 35%;
  box-sizing: border-box;
}

body.page-lp .main-white-right {
  width: 65%;
  box-sizing: border-box;
  padding: 0 0 0 5%;
}

body.page-lp .main-white-tag {
  display: inline-block;
  color: #2684ff;
  border: #2684ff 1px solid;
  line-height: 1;
  padding: 0.5rem 2rem;
  font-size: 1.5rem;
}

body.page-lp .main-white-title {
  font-weight: bold;
  font-size: 2.3rem;
  line-height: 1.5;
  padding: 1rem 0;
  color: #454545;
}

body.page-lp a.main-white-btn {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
  background: #fff;
  color: #fff;
  text-decoration: none;
  padding: 2rem 4rem 2rem 3rem;
  display: block;
  border-radius: 10vw;
  box-shadow: 4px 4px 6px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  background: #31a9ff;
  background: linear-gradient(to right, #31a9ff 0%, #1b5fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#31a9ff", endColorstr="#1b5fff",GradientType=1 );
  max-width: 34rem;
}

body.page-lp a.main-white-btn::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  margin: -0.6rem 0 0 0;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

body.page-lp a.main-white-btn:hover {
  opacity: 0.7;
}

body.page-lp .manage-wrap {
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

body.page-lp #manage.lp-section {
  padding: 12rem 0;
}

body.page-lp #manage.lp-section header {
  width: 30%;
  line-height: 1;
}

body.page-lp .manage-subtitle {
  padding: 0 0 2rem;
  text-align: left;
  color: #999999;
  font-size: 2.7rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-align: left;
}

body.page-lp .manage-title {
  padding: 0 0 4rem;
  position: relative;
  font-size: 5.4rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  text-align: left;
}

body.page-lp .manage-title::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  border-top: 4px solid #2684ff;
  display: block;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}

body.page-lp .manage-area {
  width: 70%;
  padding: 0 0 0 3%;
}

body.page-lp .manage-block {
  font-size: 2rem;
}

body.page-lp .lp-section header {
  padding: 0 0 6rem;
}

body.page-lp .section-title-en {
  color: #999999;
  font-size: 2.8rem;
  text-align: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
}

body.page-lp .section-title {
  font-size: 4.8rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.6;
}

body.page-lp .section-title::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  border-top: 4px solid #2684ff;
  display: block;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}

body.page-lp .section-title-sand {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

body.page-lp .h2_text {
  text-align: center;
  font-size: 2rem;
}

body.page-lp #problem.lp-section {
  background: url(../images/case-bg.png) repeat center;
  background-size: 34px 34px;
}

body.page-lp .problem-area {
  display: flex;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: auto;
}

body.page-lp .problem-block {
  width: 49%;
  background: #fff;
  border-radius: 0.4rem;
  margin: 0 0 2%;
  padding: 4rem;
  box-sizing: border-box;
  display: flex;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.15);
}

body.page-lp .problem-block:nth-child(2n) {
  width: 49%;
  margin: 0 0 2% 2%;
}

body.page-lp .problem-block img {
  width: 100%;
  height: auto;
}

body.page-lp .problem-block-left {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
}

body.page-lp .problem-block-right {
  width: 80%;
  box-sizing: border-box;
  padding: 0 0 0 5%;
}

body.page-lp .problem-block-title {
  font-size: 2rem;
  font-weight: bold;
}

body.page-lp .problem-block-text {
  line-height: 1.8;
}

body.page-lp .jira-block {
  max-width: 1200px;
  border: 3px #e5e5e5 solid;
  border-radius: 0.4rem;
  margin: 0 auto 20px;
  box-sizing: border-box;
  padding: 8rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}

body.page-lp .jira-block-left {
  width: 45%;
  box-sizing: border-box;
  position: relative;
}

body.page-lp .jira-block-right {
  width: 55%;
  padding: 0 0 0 5%;
  box-sizing: border-box;
  position: relative;
}

body.page-lp .jira-block-right img {
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  display: block;
}

body.page-lp .jira-block-full {
  width: 100%;
}

body.page-lp .jira-block-number {
  color: #1b5fff;
  font-size: 2.8rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1;
}

body.page-lp .jira-block-title {
  font-size: 3.2rem;
  padding: 0 0 1rem;
  font-weight: bold;
}

body.page-lp .jira-block-text {
  font-size: 2rem;
}

body.page-lp .jira-block-voice {
  padding: 4rem 0 0;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
}

body.page-lp .jira-block-voice li {
  width: 49%;
  margin: 0 0 2% 0;
  padding: 0 90px 0 0;
  position: relative;
}

body.page-lp .jira-block-voice li::after {
  content: " ";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

body.page-lp .jira-block-voice li:nth-child(2n) {
  width: 49%;
  margin: 0 0 2% 2%;
}

body.page-lp .jira-block-voice li img {
  width: 78px;
  position: absolute;
  bottom: 0;
  right: 0;
}

body.page-lp .jira-block-voice-fuki {
  font-weight: normal;
  background: #e8efff;
  border-radius: 10rem 10rem 0 10rem;
  width: 100%;
  display: block;
  font-size: 1.8rem;
  line-height: 1.8;
  padding: 2.5rem 5rem;
}

body.page-lp .jira-block-color {
  color: #1b5fff;
}

body.page-lp .jira-block-attention {
  color: #666666;
}

body.page-lp .lp-conversion {
  background: url(../images/conversion-bg.png) repeat left;
  background-size: cover;
  overflow: hidden;
}

body.page-lp .conversion-block {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

body.page-lp .conversion-img {
  width: 30%;
  position: relative;
}

body.page-lp .conversion-img img {
  width: 80%;
  max-width: 271px;
  height: auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 22%);
}

body.page-lp .conversion-title {
  width: 40%;
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.5;
  padding: 8rem 0;
}

body.page-lp .conversion-title-tag {
  display: inline-block;
  border: 1px #fff solid;
  padding: 0.75rem 1.5rem;
  line-height: 1;
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
}

body.page-lp .conversion-title-color {
  color: #fff45c;
}

body.page-lp .conversion-btn {
  width: 30%;
  position: relative;
}

body.page-lp .conversion-btn a {
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  background: #fff;
  color: #1b5fff;
  text-decoration: none;
  padding: 2.6rem 4rem 2.6rem 2rem;
  display: block;
  border-radius: 10vw;
  box-shadow: 4px 4px 6px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
}

body.page-lp .conversion-btn a::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  margin: -0.6rem 0 0 0;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #1b5fff;
  border-right: 2px solid #1b5fff;
  transform: rotate(45deg);
}

body.page-lp .conversion-btn a:hover {
  opacity: 0.7;
}

body.page-lp .section-title-small {
  font-size: 3.2rem;
}

body.page-lp .support-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto 8rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

body.page-lp .support-block.support-block-flip {
  flex-direction: row;
}

body.page-lp .support-block-left {
  width: 50%;
  padding: 0 5% 0 0;
}

body.page-lp .support-block.support-block-flip .support-block-left {
  padding: 0 0 0 5%;
}

body.page-lp .support-block-title {
  font-size: 3.2rem;
  padding: 0 0 1rem;
  font-weight: bold;
  line-height: 1.6;
}

body.page-lp .support-block-text {
  font-size: 2rem;
}

body.page-lp .support-block-right {
  width: 50%;
}

body.page-lp #case.lp-section {
  background: url(../images/case-bg.png) repeat center;
  background-size: 34px 34px;
}

body.page-lp .case-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  max-width: 1200px;
  margin: 0 auto 8rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
}

body.page-lp .case-block.case-block-flip {
  flex-direction: row;
}

body.page-lp .case-block-left {
  width: 50%;
  padding: 0 5% 0 0;
}

body.page-lp .case-block.case-block-flip .case-block-left {
  padding: 0 0 0 5%;
}

body.page-lp .case-block-tag {
  color: #1b5fff;
  font-size: 2.8rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1;
  padding: 1rem 0;
}

body.page-lp .case-block-title {
  font-size: 3.2rem;
  padding: 0 0 1rem;
  font-weight: bold;
  line-height: 1.6;
}

body.page-lp .case-block-text {
  font-size: 2rem;
}

body.page-lp .case-block-right {
  width: 50%;
}

body.page-lp .section-title-en img {
  margin: 0 auto 3rem;
}

body.page-lp .solution-block {
  text-align: center;
  max-width: 1200px;
  border: 3px #e5e5e5 solid;
  border-radius: 0.4rem;
  margin: auto;
  padding: 8rem;
}

body.page-lp #contact.lp-contact {
  display: block;
  background: #1ba2a7;
  margin: 0;
}

body.page-lp .contact-block {
  padding: 3vw 0;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

body.page-lp .contact-title {
  font-size: 2vw;
  color: #fff;
  width: 50%;
  text-align: right;
  box-sizing: border-box;
  padding: 0 6rem 0 0;
  line-height: 3;
}

body.page-lp .contact-btn-wrap {
  width: 30%;
  text-align: left;
  box-sizing: border-box;
}

body.page-lp a.contact-btn {
  cursor: pointer;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  border: 3px #fff solid;
  text-decoration: none;
  padding: 2rem 4rem 2rem 2rem;
  display: block;
  border-radius: 10vw;
  text-align: center;
  max-width: 360px;
}

body.page-lp a.contact-btn::after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  right: 3rem;
  margin: -0.6rem 0 0 0;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

body.page-lp a.contact-btn:hover {
  opacity: 0.7;
}

body.page-lp .lp-footer {
  background: #fff;
  text-align: center;
}

body.page-lp .lp-footer-copy {
  padding: 3rem 0;
  font-size: 1.8rem;
}

body.page-lp #plan.lp-section {
  background: url(../images/case-bg.png) repeat center;
  background-size: 34px 34px;
}

body.page-lp .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12rem 0 14rem 0;
}

body.page-lp .text {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 4.5rem;
}

body.page-lp .com01 {
  background: #fff;
  border-radius: 5px;
  margin-top: 3.5rem;
  padding-bottom: 4.3rem;
}

body.page-lp .com01 .c_logo {
  text-align: center;
  max-width: 606px;
  margin: 0 auto;
  padding: 2.5rem 0;
}

body.page-lp .item_box {
  border-top: solid 1px #ddd;
  box-sizing: border-box;
  display: flex;
  width: 92%;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: space-between;
}

body.page-lp .item {
  border-right: solid 1px #ddd;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

body.page-lp .item01 {
  width: 32%;
}

body.page-lp .item02 {
  width: 36%;
}

body.page-lp .item03 {
  width: 32%;
}

body.page-lp .item:last-child {
  border-right: none;
}

body.page-lp .item01 .item_inner {
  padding-right: 3.3rem;
}

body.page-lp .item02 .item_inner {
  padding-right: 3.3rem;
  padding-left: 3.3rem;
}

body.page-lp .item03 .item_inner {
  padding-left: 3.3rem;
}

body.page-lp .item01 .item_ttl_box {
  border-bottom: solid 1px #2684ff;
  box-sizing: border-box;
}

body.page-lp .item02 .item_ttl_box {
  border-bottom: solid 1px #2684ff;
  box-sizing: border-box;
}

body.page-lp .item03 .item_ttl_box {
  border-bottom: solid 1px #2684ff;
  box-sizing: border-box;
}

body.page-lp .item .item_ttl {
  position: relative;
  font-weight: bold;
  font-size: 3.3rem;
  float: left;
  line-height: inherit;
  padding-left: 12%;
  top: 0.7rem;
  width: 65%;
}

body.page-lp .item .item_ttl:before {
  content: "";
  position: absolute;
  background: url("../images/sec04-img02.png") 0 center no-repeat;
  background-size: 100% auto;
  width: 15%;
  height: 100%;
  display: block;
  left: 0;
  margin-top: -2%;
}

body.page-lp .item .txt {
  margin-top: 1.5rem;
}

body.page-lp .item .itme_tag {
  float: right;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 2.4rem;
  padding: 0 1rem;
}

body.page-lp .item01 .itme_tag {
  background: #2684ff;
}

body.page-lp .item02 .itme_tag {
  background: #2684ff;
}

body.page-lp .item03 .itme_tag {
  background: #2684ff;
}

body.page-lp .l_txt {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 3rem;
}

body.page-lp .link a {
  background: #2684ff;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  display: block;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
  padding: 2.8rem 0;
  box-shadow: 0px 6px 6px 0 #999;
  position: relative;
  max-width: 492px;
  border-radius: 8px;
  margin: 0 auto;
  margin-top: 2rem;
}

body.page-lp .link a:after {
  content: "";
  position: absolute;
  top: 45%;
  right: 3rem;
  width: 0.8vw;
  height: 0.8vw;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
}

body.page-lp .price-table th {
  width: 33.333% !important;
  padding: 1rem !important;
  font-size: 1.6rem !important;
  text-align: center;
  vertical-align: middle !important;
  border: 1px solid #ddd !important;
}

body.page-lp .price-table td {
  width: 33.333% !important;
  padding: 1rem !important;
  font-size: 1.6rem !important;
  text-align: center;
  vertical-align: middle !important;
  border: 1px solid #ddd !important;
}

body.page-lp span.del {
  text-decoration-line: line-through;
  text-decoration-style: double;
  text-decoration-color: red;
}

body.page-lp .plan-price-tag {
  color: #000000;
  font-size: 2.8rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin: 0 auto;
  padding: 2.5rem 0;
}

@media only screen and (max-width: 767px) {
  body.page-lp .lp-section {
    padding: 8vw 0;
  }
  body.page-lp .section-inner {
    margin: auto;
    padding: 0;
  }
  body.page-lp #main.lp-section {
    background: none;
    margin: 0 -5vw;
    padding: 8vw 0 0;
  }
  body.page-lp #main.lp-section header {
    padding: 0;
  }
  body.page-lp .main-title {
    font-size: 7.5vw;
    line-height: 1.3;
    margin: 0 0 4vw;
    padding: 0 5vw;
  }
  body.page-lp .main-title-color {
    color: #1b5fff;
  }
  body.page-lp .main-subtitle {
    margin: 0;
    font-size: 4.2vw;
    padding: 0 5vw 50vw;
    background: url(../images/main-bg.png) no-repeat center bottom;
    background-size: 100% auto;
  }
  body.page-lp .main-subtitle img {
    margin: 3vw 0 0 0;
    width: 45vw;
    display: block;
  }
  body.page-lp .main-white {
    width: auto;
    border: 2px #e5e5e5 solid;
    padding: 5vw 5vw 22vw;
    position: relative;
    top: -5vw;
    margin: 0 5vw;
  }
  body.page-lp .main-white-left {
    width: 40%;
  }
  body.page-lp .main-white-right {
    width: 60%;
  }
  body.page-lp .main-white-tag {
    padding: 1.5vw 2vw;
    line-height: 1;
    font-size: 2.5vw;
    margin: 0 0 2vw;
  }
  body.page-lp .main-white-title {
    font-size: 4.2vw;
    padding: 0;
  }
  body.page-lp a.main-white-btn {
    position: absolute;
    bottom: 5vw;
    left: 3vw;
    width: calc(100% - 6vw);
    max-width: none;
    font-size: 4vw;
    padding: 2vw;
    line-height: 2;
  }
  body.page-lp a.main-white-btn:after {
    right: 10vw;
    margin: -1vw 0 0 0;
    width: 2.5vw;
    height: 2.5vw;
  }
  body.page-lp #manage.lp-section {
    padding: 8vw 0;
  }
  body.page-lp #manage.lp-section header {
    width: 100%;
    padding: 0;
  }
  body.page-lp .manage-subtitle {
    font-size: 4vw;
    padding: 0;
    text-align: center;
    line-height: 2;
  }
  body.page-lp .manage-title {
    font-size: 8vw;
    line-height: 1.5;
    margin-bottom: 6vw;
    text-align: center;
    padding: 0 0 6rem;
  }
  body.page-lp .manage-title::after {
    border-top: 2px solid #2684ff;
    right: 0;
  }
  body.page-lp .manage-area {
    width: 100%;
    padding: 0;
  }
  body.page-lp .manage-block {
    font-size: 3.5vw;
  }
  body.page-lp .lp-section header {
    padding: 0 0 6vw;
  }
  body.page-lp .section-title-en {
    font-size: 4vw;
  }
  body.page-lp .section-title {
    font-size: 5vw;
    line-height: 1.5;
    margin-bottom: 6vw;
  }
  body.page-lp .section-title::after {
    border-top: 2px solid #2684ff;
  }
  body.page-lp .h2_text {
    text-align: left;
    font-size: 3.5vw;
  }
  body.page-lp #problem.lp-section {
    background: url(../images/case-bg.png) repeat center;
    background-size: 17px 17px;
    margin: 0 -5vw;
  }
  body.page-lp #problem.lp-section .section-inner {
    padding: 0 5vw;
  }
  body.page-lp .problem-block {
    width: 100%;
    margin: 0 0 10px;
    padding: 5vw;
  }
  body.page-lp .problem-block:nth-child(2n) {
    width: 100%;
    margin: 0 0 10px;
  }
  body.page-lp .problem-block-title {
    font-size: 4.5vw;
  }
  body.page-lp .jira-block {
    border: 2px #e5e5e5 solid;
    margin: 0 auto 5vw;
    padding: 7vw 5vw;
  }
  body.page-lp .jira-block-left {
    width: 100%;
  }
  body.page-lp .jira-block-right {
    width: 100%;
    padding: 0;
  }
  body.page-lp .jira-block-right img {
    top: auto;
    transform: none;
  }
  body.page-lp .jira-block-full {
    width: 100%;
  }
  body.page-lp .jira-block-number {
    font-size: 5vw;
    padding: 0 0 2vw;
    text-align: center;
  }
  body.page-lp .jira-block-title {
    font-size: 5vw;
    padding: 0 0 1vw;
    text-align: center;
    line-height: 1.5;
  }
  body.page-lp .jira-block-text {
    font-size: 3.5vw;
  }
  body.page-lp .jira-block-voice {
    padding: 4vw 0 0;
  }
  body.page-lp .jira-block-voice li {
    width: 100%;
    margin: 0 0 2vw 0;
    padding: 0 16vw 0 0;
  }
  body.page-lp .jira-block-voice li:nth-child(2n) {
    width: 100%;
    margin: 0 0 2vw 0;
  }
  body.page-lp .jira-block-voice li img {
    width: 15vw;
  }
  body.page-lp .jira-block-voice-fuki {
    border-radius: 10vw 10vw 0 10vw;
    font-size: 3vw;
    padding: 2.5vw 5vw;
  }
  body.page-lp .jira-block-img-sp {
    width: 100%;
    height: auto;
    margin: 2vw auto 3vw;
  }
  body.page-lp .lp-conversion {
    margin: 0 -5vw;
  }
  body.page-lp .conversion-block {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    padding: 8vw 5vw;
  }
  body.page-lp .conversion-img {
    width: 40%;
  }
  body.page-lp .conversion-img img {
    width: 90%;
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
  }
  body.page-lp .conversion-title {
    width: 60%;
    font-size: 5vw;
    padding: 0 0 4vw;
  }
  body.page-lp .conversion-title-tag {
    padding: 1.5vw 2vw;
    line-height: 1;
    font-size: 2.5vw;
    margin: 0 0 2vw;
  }
  body.page-lp .conversion-title-color {
    color: #fff45c;
  }
  body.page-lp .conversion-btn {
    width: 100%;
  }
  body.page-lp .conversion-btn a {
    position: relative;
    top: auto;
    transform: none;
    font-size: 4vw;
    padding: 2vw;
    border-radius: 10vw;
    line-height: 2;
    max-width: none;
  }
  body.page-lp .conversion-btn a::after {
    right: 10vw;
    margin: -1vw 0 0 0;
    width: 2.5vw;
    height: 2.5vw;
  }
  body.page-lp .section-title-small {
    font-size: 4vw;
  }
  body.page-lp .support-block {
    margin: -6vw auto 12vw;
  }
  body.page-lp .support-block.support-block-flip {
    margin: 0 auto 8vw;
  }
  body.page-lp .support-block-left {
    width: 100%;
    padding: 0;
  }
  body.page-lp .support-block.support-block-flip .support-block-left {
    padding: 0;
  }
  body.page-lp .support-block-title {
    font-size: 5vw;
    padding: 6vw 0 3vw;
    text-align: center;
  }
  body.page-lp .support-block-text {
    font-size: 3.5vw;
    padding: 0;
  }
  body.page-lp .support-block-right {
    width: 100%;
  }
  body.page-lp #case.lp-section {
    background: url(../images/case-bg.png) repeat center;
    background-size: 17px 17px;
    margin: 0 -5vw;
  }
  body.page-lp #case.lp-section .section-inner {
    padding: 0 5vw;
  }
  body.page-lp .case-block {
    margin: -6vw auto 12vw;
  }
  body.page-lp .case-block.case-block-flip {
    margin: 0 auto 8vw;
  }
  body.page-lp .case-block-left {
    width: 100%;
    padding: 0;
  }
  body.page-lp .case-block.case-block-flip .case-block-left {
    padding: 0;
  }
  body.page-lp .case-block-tag {
    font-size: 4vw;
    padding: 6vw 0 0;
    text-align: center;
  }
  body.page-lp .case-block-title {
    font-size: 5vw;
    padding: 2vw 0 3vw;
    text-align: center;
  }
  body.page-lp .case-block-text {
    font-size: 3.5vw;
    padding: 0;
  }
  body.page-lp .case-block-right {
    width: 100%;
  }
  body.page-lp .section-title-en img {
    width: 90%;
  }
  body.page-lp .solution-block {
    border: 2px #e5e5e5 solid;
    padding: 5vw;
  }
  body.page-lp #contact.lp-contact {
    display: block;
    background: #1ba2a7;
    margin: 0 -5vw;
  }
  body.page-lp .contact-block {
    padding: 8vw 5vw;
    text-align: center;
  }
  body.page-lp .contact-title {
    font-size: 4vw;
    color: #fff;
    padding: 0 0 4vw;
    width: 100%;
    line-height: 1;
    text-align: center;
  }
  body.page-lp .contact-btn-wrap {
    width: 100%;
  }
  body.page-lp a.contact-btn {
    max-width: none;
    font-size: 4vw;
    border: 2px #fff solid;
    color: #fff;
    text-decoration: none;
    padding: 2vw;
    display: block;
    border-radius: 10vw;
    line-height: 2;
  }
  body.page-lp a.contact-btn::after {
    right: 10vw;
    margin: -1vw 0 0 0;
    width: 2.5vw;
    height: 2.5vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  body.page-lp .lp-footer-copy {
    padding: 5vw;
    font-size: 2.4vw;
  }
  body.page-lp #plan.lp-section {
    background: url(../images/case-bg.png) repeat center;
    background-size: 17px 17px;
    margin: 0 -5vw;
  }
  body.page-lp .inner {
    max-width: 100%;
    margin: 0 auto;
    padding: 20rem 0 26rem 0;
  }
  body.page-lp .com01 {
    background: #fff;
    border-radius: 5px;
    margin: auto;
    margin-top: 8rem;
    width: 90%;
    padding-bottom: 10rem;
  }
  body.page-lp .com01 .c_logo {
    text-align: center;
    max-width: 50%;
    margin: 0 auto;
    padding: 8rem 0 6rem 0;
  }
  body.page-lp .item_box {
    border-top: solid 1px #ddd;
    box-sizing: border-box;
    display: block;
    width: 86%;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  body.page-lp .item {
    border-right: none;
    margin-top: 5rem;
  }
  body.page-lp .item01 {
    width: 100%;
  }
  body.page-lp .item02 {
    width: 100%;
  }
  body.page-lp .item03 {
    width: 100%;
  }
  body.page-lp .item:last-child {
    border-right: none;
    border-bottom: none;
  }
  body.page-lp .item01 .item_inner {
    padding-right: 0;
  }
  body.page-lp .item02 .item_inner {
    padding-right: 0;
    padding-left: 0;
  }
  body.page-lp .item03 .item_inner {
    padding-left: 0;
  }
  body.page-lp .item01 .item_ttl_box {
    border-bottom: solid 1px #1b5fff;
    box-sizing: border-box;
  }
  body.page-lp .item02 .item_ttl_box {
    border-bottom: solid 1px #1b5fff;
    box-sizing: border-box;
  }
  body.page-lp .item03 .item_ttl_box {
    border-bottom: solid 1px #1b5fff;
    box-sizing: border-box;
  }
  body.page-lp .item .item_ttl {
    position: relative;
    font-weight: bold;
    font-size: 5vw;
    float: left;
    line-height: inherit;
    padding-left: 8%;
    top: 0.7rem;
    width: 65%;
  }
  body.page-lp .item .item_ttl:before {
    content: "";
    position: absolute;
    background: url("../images/sec04-img02.png") 0 center no-repeat;
    background-size: 100% auto;
    width: 9%;
    height: 100%;
    display: block;
    left: 0;
    margin-top: -1.4%;
  }
  body.page-lp .item .txt {
    margin-top: 3rem;
  }
  body.page-lp .item .itme_tag {
    float: right;
    color: #fff;
    font-weight: bold;
    font-size: 2.7vw;
    margin-top: 3rem;
    padding: 0 2.5rem;
  }
  body.page-lp .item01 .itme_tag {
    background: #1b5fff;
  }
  body.page-lp .item02 .itme_tag {
    background: #1b5fff;
  }
  body.page-lp .item03 .itme_tag {
    background: #1b5fff;
  }
  body.page-lp .l_txt {
    font-size: 3.5vw;
    font-weight: bold;
    text-align: center;
    margin-top: 7rem;
    line-height: 1.6;
  }
  body.page-lp .link a {
    background: #1b5fff;
    color: #fff;
    font-size: 3.3vw;
    font-weight: bold;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 1.4;
    padding: 8rem 0;
    box-shadow: 0px 6px 6px 0 #999;
    position: relative;
    max-width: 80%;
    border-radius: 8px;
    margin: 0 auto;
    margin-top: 5rem;
  }
  body.page-lp .link a:after {
    content: "";
    position: absolute;
    top: 45%;
    right: 6rem;
    width: 2.2vw;
    height: 2.2vw;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(45deg);
  }
  body.page-lp .price-table th {
    width: 33.333% !important;
    padding: 1rem !important;
    font-size: 1.4rem !important;
    text-align: center;
    vertical-align: middle !important;
    border: 1px solid #ddd !important;
  }
  body.page-lp .price-table td {
    width: 33.333% !important;
    padding: 1rem !important;
    font-size: 1.4rem !important;
    text-align: center;
    vertical-align: middle !important;
    border: 1px solid #ddd !important;
  }
}
.related .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 10rem 0;
}
.related_title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .related_title {
    margin-bottom: 20px;
  }
}
.related_title:after {
  content: "";
  width: 100px;
  height: 1px;
  position: absolute;
  border-top: 2px solid #00c58c;
  display: block;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.related_lead {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 20px;
  padding: 0 20px;
}
.related_list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .related_list {
    display: block;
  }
}
.related_list_item {
  width: 33.333%;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .related_list_item {
    width: 100%;
  }
  .related_list_item + li {
    margin-top: 0;
  }
}
.related_list_item_link {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 30px;
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}
.related_list_item_link:hover {
  opacity: 0.8;
}
.related_list_item_link_image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 16/9;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.related_list_item_link_title {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #000;
  margin-top: 20px;
}
.related_list_item_link_btn {
  width: 150px;
  margin: auto auto 0;
  color: #fff;
  background-color: #000;
  min-width: 0;
  padding: 0 15px;
  line-height: 44px;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
}
.related_btn {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .related_btn {
    margin-top: 30px;
  }
}
.related_btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  width: 480px;
  height: 80px;
  font-size: 20px;
  max-width: 90%;
  transition: 0.3s ease;
}
.related_btn a:hover {
  transform: scale(1.1);
}

/*20230515-add-link-start*/
.page-lp .container .product-catch {
  width: 500px;
  display: grid;
  margin: auto;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  margin-top: -24px !important;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-catch {
    display: block;
    margin: 0;
    padding: 0;
    max-height: 100%;
    width: 100%;
  }
}
.page-lp .container .product-catch.-line {
  border-bottom: 1px solid #dddddd;
  padding-bottom: 24px;
}
.page-lp .container .product-catch-left {
  text-align: center;
}
.page-lp .container .product-catch-left iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.page-lp .container .product-catch-right {
  padding-left: 20px !important;
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-catch-right {
    padding: 0 !important;
    margin: 35px -10px 0 !important;
  }
}
.page-lp .container .product-cta-title {
  text-align: center;
  font-size: 2.3rem !important;
  font-weight: bold !important;
  line-height: 1.5;
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-cta-title {
    font-size: 3.5vw !important;
  }
}
.page-lp .container .product-cta-block {
  background: #000 !important;
  padding: 24px !important;
}
.page-lp .container .product-cta-block-text {
  text-align: center;
  font-size: 1.5rem !important;
  font-weight: bold !important;
  line-height: 1.6;
  color: white !important;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-cta-block-text {
    font-size: 2.6vw;
  }
}
.page-lp .container .product-cta-block-text-pc_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-cta-block-text-pc_none {
    display: inline;
  }
}
.page-lp .container .product-cta-block-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: black;
  width: 100%;
  height: 55px;
  border-radius: 100vh;
  font-size: 2.3rem;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-cta-block-btn a {
    font-size: 2.8vw;
  }
}
.page-lp .container .product-cta-block-btn a svg {
  width: 9px;
  margin-left: 23px;
  transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-cta-block-btn a svg {
    margin-left: 12px;
  }
}
.page-lp .container .product-cta-block-btn a svg path {
  stroke: black;
}
.page-lp .container .product-cta-block.-water {
  background: #00a2e9 !important;
}
.page-lp .container .product-cta-block.-water .product-cta-block-btn a {
  color: #00a2e9;
}
.page-lp .container .product-cta-block.-water .product-cta-block-btn a svg path {
  stroke: #00a2e9;
}
.page-lp .container .product-cta-block.-blue {
  background: #0052cc !important;
}
.page-lp .container .product-cta-block.-blue .product-cta-block-btn a {
  color: #0052cc;
}
.page-lp .container .product-cta-block.-blue .product-cta-block-btn a svg path {
  stroke: #0052cc;
}
.page-lp .container .product-cta-block.-green {
  background: #6abf4b !important;
}
.page-lp .container .product-cta-block.-green .product-cta-block-btn a {
  color: #6abf4b;
}
.page-lp .container .product-cta-block.-green .product-cta-block-btn a svg path {
  stroke: #6abf4b;
}
.page-lp .container .product-cta-block.-leaf {
  background: #00BFB3 !important;
}
.page-lp .container .product-cta-block.-leaf .product-cta-block-btn a {
  color: #00BFB3;
}
.page-lp .container .product-cta-block.-leaf .product-cta-block-btn a svg path {
  stroke: #00BFB3;
}
.page-lp .container .product-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #228166;
  color: white;
  width: 100%;
  height: 103px;
  border-radius: 100vh;
  font-size: 2.3rem;
  font-weight: bold;
  text-decoration: none;
}
.page-lp .container .product-cta-btn svg {
  width: 9px;
  margin-left: 23px;
  transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .page-lp .container .product-cta-btn svg {
    margin-left: 12px;
  }
}
.page-lp .container .product-cta-btn svg path {
  stroke: white;
}

/*20230515-add-link-end*/
=======
=======
>>>>>>> 22de4e35040beb2f39be54aba2ff89638c037d6b
/* --------------------------------------------------------------------------------
   main-view / .mainview
   -------------------------------------------------------------------------------- */
@font-face {
  font-family: "Noto-Sans-JP-google";
  src: url("./../font/NotoSansJP-VariableFont_wght.ttf");
}
*, *::before, *::after {
  font-feature-settings: "liga" 0;
}

html.is-old-page, html.is-old-page body {
  color: #1A1A1A;
}

@media screen and (max-width: 389px) {
  html.is-old-page {
    font-size: 60%;
  }
}
@media screen and (max-width: 370px) {
  html.is-old-page {
    font-size: 58%;
  }
}
main.page-lp {
  font-family: "Noto-Sans-JP-google", "Noto Sans JP", sans-serif;
}
main.page-lp h2, main.page-lp h3, main.page-lp h4, main.page-lp p, main.page-lp span, main.page-lp li, main.page-lp a, main.page-lp p, main.page-lp small {
  font-weight: bold;
  line-height: 2;
}
main.page-lp .main-title-big {
  font-size: 5.7rem;
  font-weight: 900;
}
main.page-lp .main-title-middle {
  font-size: 3.2rem;
  font-weight: 900;
}
main.page-lp .main-title-middle .title-middle-first {
  letter-spacing: -3px;
  font-weight: 900;
}
main.page-lp .main-title-color-purple {
  color: #6d4acb;
}
main.page-lp .main-title-color-yellow {
  color: #FDFF4E;
}
main.page-lp .main-title-color-org {
  color: #FC6D26;
}
main.page-lp .main-title-color-aqua {
  color: #0F99EF;
}
main.page-lp .bg-color-purple {
  background: #6d4acb;
}
main.page-lp .mb-1rem {
  margin-bottom: 1rem;
}
main.page-lp .mb-2rem {
  margin-bottom: 2rem;
  line-height: 1.4375;
}
main.page-lp .mb-05rem {
  margin-bottom: 0.5rem;
}
main.page-lp .font-weight-bold {
  font-weight: bold;
}
main.page-lp .small-note {
  font-size: 12px;
  font-weight: 900;
}
main.page-lp .sp_only {
  display: none !important;
}
main.page-lp .section-area-1 {
  max-width: 1200px;
  margin: 0 auto;
}
main.page-lp .section-area-2 {
  max-width: 1040px;
  margin: 0 auto;
}
main.page-lp small {
  font-size: 2.6rem;
  font-weight: 900;
}
main.page-lp small.small-2 {
  font-size: 3.5rem;
  font-weight: 900;
}
main.page-lp .under_line_yellow {
  background: linear-gradient(transparent 50%, #FDFF4E 0%);
}
main.page-lp .lp-section {
  overflow-x: hidden;
  padding-top: 10rem;
}
main.page-lp .lp-section header {
  width: 100%;
  margin: auto;
  box-sizing: border-box;
  padding: 0;
  display: table;
}
main.page-lp .lp-section header .header-left {
  width: 50%;
  display: table-cell;
  position: relative;
}
main.page-lp .lp-section header .header-left .main-note {
  display: block;
  text-align: right;
  font-size: 10px;
  position: relative;
  right: 6%;
  top: -0.8rem;
}
main.page-lp .lp-section header .header-right {
  width: 50%;
  display: table-cell;
}
main.page-lp .lp-section header .header-right .main-right-subtitle {
  display: block;
  width: 100%;
  height: auto;
  text-align: right;
}
main.page-lp .lp-section header .header-right .main-right-subtitle .main-hexagon {
  display: inline-block;
  width: 58%;
  position: relative;
  top: -8.5rem;
  right: -80px;
}
@media screen and (max-width: 1359px) {
  main.page-lp .lp-section header .header-right .main-right-subtitle .main-hexagon {
    top: -9rem;
    right: 0px;
  }
}
main.page-lp .lp-section header .header-right .main_contact {
  text-align: center;
  position: relative;
  top: -8rem;
  left: -1.8rem;
}
main.page-lp .lp-section header .header-right .main_contact a {
  display: inline-block;
  text-align: center;
  width: 83.4%;
  text-decoration: none;
  background: #FC6D26;
  border-radius: 10px;
  color: #FFFFFF;
  padding: 1.85rem 0 1.85rem 4rem;
  font-size: 2rem;
  margin: 0.8rem;
  position: relative;
  vertical-align: middle;
  line-height: 1;
}
main.page-lp .lp-section header .header-right .main_contact a:after {
  content: url(./../images/pseudo2.png);
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
  left: 14%;
  position: relative;
  transform: scale(0.5);
}
main.page-lp .section-title {
  font-size: 4.1rem;
  position: relative;
  padding-bottom: 2.3rem;
  margin-bottom: 3.2rem;
  text-align: center;
  line-height: 1.5122;
}
main.page-lp .section-title::after {
  content: "";
  width: 74px;
  height: 1px;
  position: absolute;
  border-top: 3px solid #2479F1;
  display: block;
  bottom: 0rem;
  right: 0px;
  left: 0;
  margin: 0 auto;
}
main.page-lp #section-1 {
  background: url(../images/main-bg.png) no-repeat 34vw bottom;
  background-size: auto 100%;
  background-position: bottom right;
  padding: 8.7rem 0rem 11.5rem 0rem;
  overflow-x: hidden;
}
main.page-lp #section-1 header {
  font-size: 0;
}
main.page-lp #section-1 header h1 {
  font-weight: 900;
  font-size: 3.4rem;
}
main.page-lp #section-1 header h1 small {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.3;
}
main.page-lp #section-1 header h1 span {
  font-weight: 900;
  line-height: 1.3;
}
main.page-lp #section-1 .main-title {
  font-size: 3.4rem;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  font-weight: 900;
}
main.page-lp #section-1 .main-title-color {
  color: #1299ef;
  font-size: 1.6em;
}
main.page-lp #section-1 .main-title-color-org {
  color: #FC6D26;
}
main.page-lp #section-1 .main-title-color-aura {
  color: #0F99EF;
}
main.page-lp #section-1 .main-confluence-logo {
  width: 70.9%;
}
main.page-lp #section-1 .main-subtitle {
  font-weight: 900;
  margin: 0 0 0.8em;
  font-size: 2rem;
  color: #1A1A1A;
  line-height: 1.3;
}
main.page-lp #section-1 .main-subtitle img {
  margin: 20px 0 0 0px;
  width: 88%;
}
main.page-lp #section-1 .section-inner {
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-1 .section-inner {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-1 .main-subresult {
  margin-top: 3.3rem;
}
main.page-lp #section-1 .main-subresult ul {
  position: relative;
  left: 0rem;
  display: block;
  list-style: none;
  width: 80%;
  font-size: 0;
  border-spacing: 1rem;
  border-collapse: separate;
}
main.page-lp #section-1 .main-subresult ul li {
  list-style: none;
  width: 28.2%;
  display: inline-block;
  margin-right: 1rem;
}
main.page-lp #section-1 .main-subresult ul li p {
  aspect-ratio: 1;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  font-weight: 900;
}
main.page-lp #section-5 {
  background: url(../images/section-5-img-bg.png) no-repeat;
  background-size: 100% auto;
  background-color: #f7f7f7;
}
main.page-lp #section-5 .problem-list {
  margin: 0 auto;
  margin-top: 0rem;
  padding: 0 2rem;
}
main.page-lp #section-5 .problem-list ul {
  display: block;
  margin: 0 auto;
  width: 100%;
  list-style: none;
  font-size: 0;
  vertical-align: text-top;
}
main.page-lp #section-5 .problem-list ul li {
  vertical-align: text-top;
  display: inline-block;
  list-style: none;
  font-size: 10px;
  width: calc(50% - 2rem);
  background: #fff;
  text-align: center;
  margin-bottom: 4rem;
  padding-bottom: 0rem;
}
main.page-lp #section-5 .problem-list ul li:nth-child(even) {
  margin-left: 2rem;
  margin-right: 0rem;
}
main.page-lp #section-5 .problem-list ul li:nth-child(odd) {
  margin-right: 2rem;
  margin-left: 0rem;
}
main.page-lp #section-5 .problem-list ul li img {
  width: 31.7%;
  margin: 0 auto;
  text-align: center;
}
main.page-lp #section-5 .problem-list ul li p.s5-title {
  background: #f4f4f4;
  display: inline-block;
  text-align: center;
  margin: 3.4rem auto 1.6rem auto;
  width: 86%;
  padding: 0.4rem;
  font-size: 2rem;
  line-height: 1.8;
}
main.page-lp #section-5 .problem-list ul li p.s5-text {
  text-align: left;
  width: 87%;
  margin: 2.2rem auto 2.4rem auto;
  font-size: 14px;
  line-height: 2.07;
  font-weight: 500;
}
main.page-lp #section-5 .problem-solve {
  background-color: #f7f7f787;
  margin-top: 1.1rem;
  text-align: center;
}
main.page-lp #section-5 .problem-solve .ps-title {
  font-size: 4rem;
  line-height: 1.55;
  margin-bottom: 0rem;
  font-weight: 900;
}
main.page-lp #section-5 .problem-solve .ps-title span {
  line-height: 1.55;
  font-weight: 900;
}
main.page-lp #section-5 .problem-solve .ps-text {
  background: url(../images/section-5-img-5.png) no-repeat;
  background-size: auto 87%;
  background-position: 50% 0%;
  padding-bottom: 8rem;
  font-size: 1.6rem;
  padding-top: 4.3rem;
  font-weight: 500;
}
main.page-lp #section-5 .problem-solve .ps-text .h_space {
  font-size: 0;
  padding: 1.4rem 0;
  display: block;
  font-weight: 500;
}
main.page-lp #section-5 .problem-solve .ps-support {
  font-size: 4.5rem;
  line-height: 1.6;
}
main.page-lp #section-13 {
  background: #ADE3FF;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
main.page-lp #section-13 header {
  padding-bottom: 0rem;
}
main.page-lp #section-13 header .section-title {
  width: 38%;
  padding-bottom: 4rem;
}
main.page-lp #section-13 header .section-title:after {
  margin: 0;
  padding: 0;
  border: none;
  content: "";
}
main.page-lp #section-13 .section-img {
  max-width: 800px;
  display: block;
  text-align: center;
}
main.page-lp #section-13 h3 {
  text-align: center;
  font-size: 3.2rem;
  padding: 4rem 0 3.1rem;
  line-height: 1.4375;
  color: #1A1A1A;
  font-weight: bold;
}
main.page-lp #section-13 h3 span {
  line-height: 1.4375;
}
main.page-lp #section-13 .section-title {
  display: block;
  margin: 0 auto;
}
main.page-lp #section-13 .text {
  font-size: 16px;
  text-align: center;
  color: #1A1A1A;
  padding: 0 3.4rem;
  font-weight: 500;
}
main.page-lp #section-13 .text .h_space {
  display: block;
  line-height: 2;
  padding: 1.345rem;
  font-weight: 500;
}
main.page-lp #section-14 {
  background-color: #fff;
  text-align: center;
  padding-bottom: 0rem;
}
main.page-lp #section-14 h3 {
  text-align: center;
  font-size: 4rem;
  line-height: 1.6;
  font-weight: 900;
}
main.page-lp #section-14 .light-section {
  background: url(../images/section-14-img-bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center top;
  margin-top: 4rem;
  padding-bottom: 11.1rem;
  padding-top: 11.1rem;
}
main.page-lp #section-14 .text-1 {
  font-size: 3.2rem;
  padding-top: 0rem;
  position: relative;
  top: 0rem;
  line-height: 1.4375;
}
main.page-lp #section-14 .text-1 span {
  font-size: 4.1rem;
  line-height: 1.5122;
}
main.page-lp #section-14 .text-2 {
  font-size: 3.2rem;
  position: relative;
  font-weight: 900;
  line-height: 1.475;
  padding-bottom: 10rem;
  padding-top: 4rem;
}
main.page-lp #section-14 .text-2 span {
  font-weight: 900;
  line-height: 1.475;
}
main.page-lp #section-15 {
  background: url(../images/section-15-img-bg.png) no-repeat;
  background-size: auto 100%;
  background-position: center top;
  padding: 10rem 0 9.2rem 0;
}
main.page-lp #section-15 h3 {
  text-align: center;
  line-height: 1.55;
  padding-bottom: 3rem;
  color: #1A1A1A;
  font-size: 4rem;
  font-weight: bold;
}
main.page-lp #section-15 h3 span {
  font-size: 4.8rem;
  line-height: 1.2917;
  font-weight: 900;
}
main.page-lp #section-15 .text-1 {
  text-align: center;
  line-height: 1.4375;
  color: #1A1A1A;
  font-size: 3.2rem;
}
main.page-lp #section-15 .text-1 span {
  font-size: 4rem;
  line-height: 1.15;
}
main.page-lp #section-15 .text-1 span small {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4375;
}
main.page-lp #section-15 .text-2 {
  text-align: left;
  color: #1A1A1A;
  --line-height-width: 2;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-15 .text-2 {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-15 .text-2:after {
  content: " ";
  color: #fff;
  margin-top: calc((1 - var(--line-height-width)) * 0.5em);
}
main.page-lp #section-15 table {
  border: none;
  background: #fff;
  margin: 3.2rem auto 4rem auto;
  padding: 2rem 2rem;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-15 table {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-15 table td {
  border: none;
}
main.page-lp #section-15 table td:first-child {
  vertical-align: middle;
  width: 35%;
  padding: 3rem;
}
main.page-lp #section-15 table td:last-child {
  vertical-align: middle;
  width: 65%;
  padding: 0;
}
main.page-lp #section-15 table td:last-child p {
  font-size: 1.6rem;
  padding-right: 2rem;
  padding-right: 2rem;
  font-weight: 500;
}
main.page-lp #section-7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
main.page-lp #section-7 h2 {
  font-size: 4.3rem;
}
main.page-lp #section-7 h2 span {
  display: block;
  font-size: 2rem;
}
main.page-lp #section-7 .text-1 {
  text-align: center;
  padding-top: 0rem;
  line-height: 1.6;
  font-size: 4.1rem;
  line-height: 1.5122;
  font-weight: 900;
}
main.page-lp #section-7 .text-1 span {
  font-weight: 900;
  line-height: 1.5122;
  font-weight: 900;
}
main.page-lp #section-7 .text-2 {
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  padding: 4rem 0px 2.4rem 0;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-7 .text-content {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-7 .text-content ul {
  display: block;
  font-size: 0;
  background: #F8F8F8;
}
main.page-lp #section-7 .text-content ul li {
  display: inline-block;
  vertical-align: text-top;
}
main.page-lp #section-7 .text-content ul li:first-child {
  width: 41.67%;
}
main.page-lp #section-7 .text-content ul li:last-child {
  width: 58.33%;
  padding: 4rem;
}
main.page-lp #section-7 .text-content ul li:last-child .title {
  font-size: 3.2rem;
  line-height: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 4px solid #ADD0FF;
  color: #0F99EF;
}
main.page-lp #section-7 .text-content ul li:last-child .text {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
  font-weight: 500;
}
main.page-lp #section-7 .text-content ul li:last-child a {
  padding: 2.4rem 10rem;
  display: block;
  position: relative;
  font-size: 1.8rem;
  text-decoration: none;
  line-height: 1.01;
  padding-bottom: 2rem 2rem;
  background: #0F99EF;
  color: #fff;
  font-weight: bold;
  display: inline-block;
}
main.page-lp #section-7 .text-content ul li:last-child a:after {
  content: url(./../images/pseudo2.png);
  position: absolute;
  transform: scale(0.5);
  top: 0;
  bottom: 0;
  right: 1%;
  transform: translateY(5%) scale(0.3);
}
main.page-lp #section-7 .section-area-2 {
  display: block;
  margin: 3.4rem auto 7.1rem auto;
  padding: 0;
  font-size: 0;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-7 .section-area-2 {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-7 .section-area-2 > li {
  font-size: 2rem;
  display: inline-block;
  width: 30%;
  padding: 0;
}
main.page-lp #section-7 .section-area-2 > li:first-child {
  margin-right: 3.3%;
}
main.page-lp #section-7 .section-area-2 > li:nth-child(2) {
  margin: 0 1.7%;
}
main.page-lp #section-7 .section-area-2 > li:last-child {
  margin-left: 3.3%;
}
main.page-lp #section-7 .section-text {
  font-size: 3.4rem;
  text-align: center;
  font-weight: bold;
}
main.page-lp #section-7 .section-text span {
  font-weight: bold;
}
main.page-lp #section-7 .sub-parter-text-note {
  text-align: center;
  line-height: 1;
}
main.page-lp #section-7 .exp-area {
  margin: 0 auto;
  margin-top: 5.6rem;
}
main.page-lp #section-7 .exp-area .exp {
  line-height: 2;
  text-align: center;
  display: block;
  font-size: 3.2rem;
  border-bottom: 0.4rem solid #ADD0FF;
  font-weight: bold;
}
main.page-lp #section-7 .exp-area ul {
  width: 100%;
  border: none;
  margin: 3.2rem auto 5.8rem auto;
  max-width: 100%;
}
main.page-lp #section-7 .exp-area ul li {
  border: none;
  vertical-align: middle;
  display: table-cell;
}
main.page-lp #section-7 .exp-area ul li.way {
  width: 42%;
  text-align: center;
  background: linear-gradient(to right, #00a9ff, #005cff);
  color: #fff;
  padding: 6rem 0 5.8rem 0;
}
main.page-lp #section-7 .exp-area ul li.way p {
  font-size: 1.6rem;
  --line-height-width: 2;
  line-height: var(--line-height-width);
}
main.page-lp #section-7 .exp-area ul li.way p.way-text {
  vertical-align: baseline;
}
main.page-lp #section-7 .exp-area ul li.way .way-title {
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 2.4rem;
  line-height: 1;
}
main.page-lp #section-7 .exp-area ul li.effect {
  background: url(../images/section-7-img-5.png) no-repeat;
  background-size: 90% 100%;
  width: 12%;
  vertical-align: middle;
  text-align: left;
  overflow: hidden;
  padding: 0;
}
main.page-lp #section-7 .exp-area ul li.effect p {
  width: 3rem;
  font-size: 3.4rem;
  line-height: 0.9167;
  padding-left: 2rem;
  color: #216fdd;
  font-weight: bold;
}
main.page-lp #section-7 .exp-area ul li.effect:after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ddebff;
}
main.page-lp #section-7 .exp-area ul li.text {
  line-height: 2;
  position: relative;
  background: url(../images/section-7-img-4.png) no-repeat;
  background-size: auto 27rem;
  background-position: center center;
  width: 48%;
  font-size: 1.6rem;
  padding-left: 3rem;
  font-weight: 500;
}
main.page-lp #section-7 .ps_support {
  text-align: center;
  font-weight: 900;
  font-size: 3.2rem;
  padding-top: 2.2rem;
  line-height: 1.4375;
}
main.page-lp #section-7 .ps_support span {
  line-height: 1.4375;
  font-weight: 900;
}
main.page-lp #section-16 {
  position: relative;
  background: url(../images/section-16-img-bg.png) no-repeat;
  background-size: 100% 100%;
  padding-top: 10.2rem;
  padding-bottom: 10rem;
}
main.page-lp #section-16 header h2 {
  text-align: center;
  font-size: 4rem;
  line-height: 1.55;
  font-weight: 900;
}
main.page-lp #section-16 p {
  font-size: 16px;
  text-align: center;
  padding-top: 4rem;
  font-weight: 500;
}
main.page-lp #section-16 table {
  margin: 4rem auto 0 auto;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-16 table {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-16 table td {
  vertical-align: top;
  width: 50%;
  border: none;
  background: #fff;
  padding: 0;
}
main.page-lp #section-16 table td:first-child {
  width: 51%;
  padding: 4rem;
  padding-right: 4.3rem;
}
main.page-lp #section-16 table td:last-child {
  width: 49%;
}
main.page-lp #section-16 table td h3 {
  font-size: 2.6rem;
  line-height: 1.4;
  padding-bottom: 2.5rem;
}
main.page-lp #section-16 table td p {
  padding-left: 0rem;
  padding-right: 0rem;
  font-size: 1.6rem;
  line-height: 2;
  padding-top: 0;
  text-align: left;
}
main.page-lp #section-16 .sp_width > h3 {
  font-size: 3.2rem;
  padding-top: 6.4rem;
  text-align: center;
  line-height: 1.4675;
}
main.page-lp .sec-contact-1 {
  position: relative;
  background: url(../images/section-ask-img-bg.png) no-repeat;
  background-size: cover;
  padding-top: 6.5rem;
  padding-bottom: 3.4rem;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact {
  margin: auto;
  margin-top: 0rem;
  margin-bottom: 0rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1240px) {
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .devops-ask-img {
  position: absolute;
  top: -2.5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 18.6rem;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-title {
  margin: 0 auto;
  padding-top: 6.6rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.444;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type {
  margin-top: 0;
  padding: 1.8rem 0 2.2rem 0;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn {
  list-style: none;
  display: block;
  width: 81%;
  font-size: 0;
  margin: 0 auto;
  padding: 0;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li {
  list-style: none;
  display: inline-block;
  position: relative;
  width: 47%;
  margin: 0 1.5%;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li a {
  border-radius: 10px;
  padding: 2.5rem 3.5rem 2.5rem 2.2rem;
  font-size: 2rem;
  margin: 0 auto;
  display: block;
  text-align: left;
  line-height: 1.4;
  color: #fff;
  text-decoration: none;
  background: #FC6D26;
}
main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li:after {
  content: url(./../images/pseudo.png);
  right: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 0rem;
  vertical-align: middle;
  left: 16%;
  position: relative;
  font-size: 0rem;
  position: absolute;
  transform: scale(0.3);
  left: 85%;
  top: 11%;
  bottom: 0;
}
main.page-lp #section-17 {
  padding-bottom: 10rem;
}
main.page-lp #section-17 header h2 {
  text-align: center;
  display: block;
  width: 28.35%;
  margin: 0 auto 4rem auto;
}
main.page-lp #section-17 .text {
  text-align: center;
  display: block;
  font-size: 16px;
  padding-bottom: 4rem;
  font-weight: 500;
}
main.page-lp #section-17 .plan-ul {
  display: block;
  font-size: 0;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-17 .plan-ul {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-17 .plan-ul li {
  border-radius: 5px;
  font-size: 2rem;
  display: inline-block;
  width: calc(50% - 2rem);
  background: #f6f6f6;
  margin: 0 2.5%;
  vertical-align: text-top;
  margin-bottom: 3.5rem;
  padding-bottom: 0rem;
}
main.page-lp #section-17 .plan-ul li:nth-child(odd) {
  margin: 0;
  margin-right: 2rem;
  margin-bottom: 5.1rem;
}
main.page-lp #section-17 .plan-ul li:nth-child(even) {
  margin: 0;
  margin-left: 2rem;
  margin-bottom: 5.1rem;
}
main.page-lp #section-17 .plan-ul li h3 {
  border-radius: 5px 5px 0 0;
  font-weight: 500;
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  background: #0F99EF;
  border-left: 15px solid #FC6D26;
  line-height: 1.9375;
  padding: 0.9rem 0;
}
main.page-lp #section-17 .plan-ul li h3 span {
  font-size: 2rem;
  line-height: 2;
  font-weight: 500;
}
main.page-lp #section-17 .plan-ul li img {
  text-align: center;
  display: block;
  margin: 3.2rem auto;
  max-height: 7rem;
}
main.page-lp #section-17 .plan-ul li .merito {
  background: #fff;
  padding: 0 2rem;
  margin: 0 2rem;
  margin-bottom: 2rem;
}
main.page-lp #section-17 .plan-ul li .merito .m_title {
  padding: 2rem 0;
  color: #0F99EF;
  font-size: 2rem;
  line-height: 1;
}
main.page-lp #section-17 .plan-ul li .merito .m_text {
  font-size: 1.4rem;
  line-height: 2.07;
  padding: 0 0 1.6rem 0;
}
main.page-lp #section-17 .plan-ul li .demerito {
  background: #fff;
  padding: 0 2rem;
  margin: 0 2rem;
}
main.page-lp #section-17 .plan-ul li .demerito .m_title {
  padding: 2rem 0;
  color: #0F99EF;
  font-size: 2rem;
  line-height: 1;
}
main.page-lp #section-17 .plan-ul li .demerito .m_text {
  font-size: 1.4rem;
  line-height: 2.07;
  padding: 0 0 1.6rem 0;
}
main.page-lp #section-17 .plan-ul li .text-2 {
  font-size: 1.4rem;
  text-align: left;
  padding: 2rem 3rem 3rem 3rem;
  line-height: 2.071;
  font-weight: 500;
}
main.page-lp #section-17 .plan-ul li .text-3 {
  font-size: 2.6rem;
  text-align: center;
  line-height: 1.4;
  padding: 2.6rem 3.2rem 3.2rem 3.2rem;
}
main.page-lp #section-17 .sec-aslead-devops {
  display: block;
  position: relative;
  margin: 5rem auto 3.2rem auto;
  background: #58BFFF;
  padding: 1.8rem 0;
  overflow: hidden;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-17 .sec-aslead-devops {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-17 .sec-aslead-devops:before {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  content: "";
  transform: translateX(-60%) translateY(0%) rotate(135deg);
  background: #0083D5;
}
main.page-lp #section-17 .sec-aslead-devops:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transform: translateX(60%) translateY(0%) rotate(135deg);
  background: #0083D5;
}
main.page-lp #section-17 .sec-aslead-devops img {
  width: 100%;
  margin: 0 auto;
}
main.page-lp #section-17 .sec-aslead-devops p {
  margin: 0 auto;
  display: block;
}
main.page-lp #section-17 .sec-aslead-devops p.section-17-sub-1 {
  top: 10%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.5;
}
main.page-lp #section-17 .sec-aslead-devops p.section-17-sub-2 {
  top: 50%;
  text-align: center;
  left: 0;
  right: 0;
  font-size: 4rem;
  margin-top: 0rem;
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
}
main.page-lp #section-17 .text-4 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
}
main.page-lp #section-17 .text-5 {
  margin-top: 3.4rem;
  font-size: 1.4rem;
  text-align: center;
  display: block;
  font-weight: 500;
  line-height: 2.2857;
}
main.page-lp #section-17 .candj {
  margin: 0 auto;
  width: 32.7%;
  padding-top: 8rem;
}
main.page-lp #section-18 {
  background: url(../images/section-5-img-bg.png) no-repeat;
  background-size: 100% auto;
  background-color: #f7f7f7;
  padding-bottom: 8rem;
}
main.page-lp #section-18 .problem-list-big {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
main.page-lp #section-18 .problem-list-big ul {
  background: #fff;
  width: calc(100% - 4rem);
  margin: 0 auto;
}
main.page-lp #section-18 .problem-list-big ul li {
  width: calc(100% - 64px);
  margin: 0 auto;
}
main.page-lp #section-18 .problem-list-big ul li h3 {
  width: 100%;
}
main.page-lp #section-18 .problem-list-big ul li h3.s5-title {
  background: #f4f4f4;
  display: inline-block;
  text-align: center;
  margin: 3.2rem auto 1.6rem auto;
  padding: 0.8rem;
  font-size: 2rem;
  line-height: 1.4;
}
main.page-lp #section-18 .problem-list-big .s5-text {
  padding-top: 2rem;
  padding-bottom: 3.6rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
}
main.page-lp #section-18 .problem-list {
  margin: 0 auto;
  margin-top: 0rem;
}
main.page-lp #section-18 .problem-list ul {
  display: block;
  margin: 0 auto;
  width: calc(100% - 4rem);
  list-style: none;
  font-size: 0;
  vertical-align: text-top;
}
main.page-lp #section-18 .problem-list ul li {
  vertical-align: text-top;
  display: inline-block;
  list-style: none;
  font-size: 10px;
  width: calc( 50% - 2rem);
  background: #fff;
  text-align: center;
  margin-bottom: 3.6%;
  padding-bottom: 1.2rem;
}
main.page-lp #section-18 .problem-list ul li:nth-child(even) {
  margin-left: 2rem;
  margin-right: 0%;
}
main.page-lp #section-18 .problem-list ul li:nth-child(odd) {
  margin-right: 2rem;
  margin-left: 0%;
}
main.page-lp #section-18 .problem-list ul li img {
  width: calc( 100% - 6.4rem);
  margin: 0 auto;
  text-align: center;
}
main.page-lp #section-18 .problem-list ul li h3.s5-title {
  background: #f4f4f4;
  display: inline-block;
  text-align: center;
  margin: 3.2rem auto 1.6rem auto;
  width: calc( 100% - 6.4rem);
  padding: 0.8rem 0;
  font-size: 2rem;
  line-height: 1.4;
}
main.page-lp #section-18 .problem-list ul li p.s5-text {
  text-align: left;
  width: calc( 100% - 6.4rem);
  margin: 1.6rem auto 1.4rem auto;
  font-size: 14px;
  line-height: 2.0172;
  font-weight: 500;
}
main.page-lp #section-18 .text-1 {
  text-align: center;
  font-weight: 500;
  font-size: 1.6rem;
  padding-bottom: 4rem;
}
main.page-lp #section-21 {
  background: #f7f7f7;
  padding-top: 0;
}
main.page-lp #section-21 ul {
  padding-top: 3.9rem;
  display: block;
  font-size: 0;
}
main.page-lp #section-21 ul li {
  display: inline-block;
  width: 25%;
  vertical-align: top;
}
main.page-lp #section-21 ul li img {
  width: 43.4%;
  margin: 0 auto;
  display: block;
}
main.page-lp #section-21 ul li .text {
  text-align: center;
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
  padding-top: 1.6rem;
}
main.page-lp #section-21 ul li .text span {
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: bold;
}
main.page-lp #section-21 ul li .note {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.4285;
}
main.page-lp #section-21 .text-2 {
  font-size: 4.1rem;
  text-align: center;
  padding-top: 7rem;
  padding-bottom: 10rem;
  line-height: 1.51219;
}
main.page-lp #section-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: #f2f6f9;
}
main.page-lp #section-10 header p {
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
main.page-lp #section-10 .customer-list {
  display: block;
  position: relative;
  padding-top: 2.6rem;
}
main.page-lp #section-10 .customer-list .customer-voice {
  display: block;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
}
main.page-lp #section-10 .customer-list .customer-voice > li {
  width: calc((100% - 12rem)/3);
  display: inline-block;
  font-size: 2rem;
  margin: 2rem;
  margin-bottom: 0;
  background: #fff;
}
main.page-lp #section-10 .customer-list .customer-voice > li img {
  display: block;
  width: 34.1%;
  text-align: center;
  margin: 3.1rem auto;
}
main.page-lp #section-10 .customer-list .customer-voice > li p {
  margin: 3rem;
  background: #f2f6f9;
  padding: 2rem;
  font-size: 1.4rem;
  position: relative;
  margin-top: 0;
}
main.page-lp #section-10 .customer-list .customer-voice > li p:after {
  content: "";
  width: 0%;
  height: 0;
  border-style: solid;
  border-width: 0 2.5rem 2.5rem 2.5rem;
  border-color: transparent transparent #f2f6f9 transparent;
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin: auto;
}
main.page-lp #section-10 .customer-list .customer-icon {
  position: absolute;
  /* left: 100%; */
  top: -9rem;
  right: 8.5vw;
  width: 13%;
}
@media screen and (max-width: 1200px) {
  main.page-lp #section-10 .customer-list .customer-icon {
    right: 0;
  }
}
main.page-lp #section-11 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
main.page-lp #section-11 .section-title {
  margin-bottom: 5.5rem;
}
main.page-lp #section-11 .section-area-2 {
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-11 .section-area-2 {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-11 .qanda {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 1.4rem;
  border: 4px solid #f2f6f9;
}
main.page-lp #section-11 .qanda > li {
  display: inline-block;
  font-size: 2rem;
  width: 100%;
  background: #fff;
  position: relative;
}
main.page-lp #section-11 .qanda > li.question {
  cursor: pointer;
}
main.page-lp #section-11 .qanda > li.question ul {
  display: table;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
  background: #f2f6f9;
  width: 100%;
}
main.page-lp #section-11 .qanda > li.question ul li {
  display: table-cell;
  font-size: 2rem;
  margin: 0;
}
main.page-lp #section-11 .qanda > li.question ul li:first-child {
  width: 7.75%;
  height: auto;
  padding: 0;
}
main.page-lp #section-11 .qanda > li.question ul li:last-child {
  width: 92.25%;
  height: auto;
  text-align: left;
  padding: 0 2rem;
  vertical-align: middle;
  font-size: 2.4rem;
}
main.page-lp #section-11 .qanda > li.question ul li:last-child p {
  font-weight: bold;
}
main.page-lp #section-11 .qanda > li.question:after {
  content: "＋";
  position: absolute;
  right: 2.5%;
  top: 8px;
  bottom: 0;
  margin: 0;
  vertical-align: middle;
  font-size: 3rem;
  color: #5ea1fd;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
main.page-lp #section-11 .qanda > li.question.is_open:after {
  content: "－";
}
main.page-lp #section-11 .qanda > li.answer {
  overflow: hidden;
  height: 0;
  transition-duration: 500ms;
  transition-property: height;
}
main.page-lp #section-11 .qanda > li.answer ul {
  display: table;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
  width: 100%;
  border: none;
}
main.page-lp #section-11 .qanda > li.answer ul li {
  display: table-cell;
  font-size: 2rem;
  background: #fff;
  vertical-align: text-top;
  padding: 2rem 0.5rem 2rem 2rem;
}
main.page-lp #section-11 .qanda > li.answer ul li:first-child {
  width: 7.75%;
}
main.page-lp #section-11 .qanda > li.answer ul li:first-child p {
  font-size: 3.2rem;
  line-height: 1;
  vertical-align: top;
  font-weight: 900;
}
main.page-lp #section-11 .qanda > li.answer ul li:last-child {
  width: 92.25%;
  padding: 2rem 2rem 1.6rem 0.4rem;
  vertical-align: bottom;
}
main.page-lp #section-11 .qanda > li.answer ul li:last-child p {
  text-align: left;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
}
main.page-lp #section-11 .ps-support {
  font-size: 4.1rem;
  line-height: 1.51;
  text-align: center;
  margin-top: 8.5rem;
  font-weight: bold;
}
main.page-lp #section-19 {
  padding-top: 11rem;
  padding-bottom: 9rem;
  background: #f2f6f9;
}
main.page-lp #section-19 header p {
  text-align: center;
  font-weight: 500;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
}
main.page-lp #section-19 .customer-list {
  display: block;
  position: relative;
  padding-top: 9.6rem;
}
@media screen and (max-width: 1240px) {
  main.page-lp #section-19 .customer-list {
    width: calc(100% - 4rem);
    margin-left: auto;
    margin-right: auto;
  }
}
main.page-lp #section-19 .customer-list .customer-voice-2 {
  display: block;
  margin: 0 auto;
  padding: 0;
  font-size: 0;
}
main.page-lp #section-19 .customer-list .customer-voice-2 > li {
  width: calc( 50% - 2rem);
  display: inline-block;
  font-size: 2rem;
  background: #fff;
  padding-bottom: 4rem;
  vertical-align: top;
}
main.page-lp #section-19 .customer-list .customer-voice-2 > li:first-child {
  margin-right: 2rem;
}
main.page-lp #section-19 .customer-list .customer-voice-2 > li:last-child {
  margin-left: 2rem;
}
main.page-lp #section-19 .customer-list .customer-voice-2 > li img {
  display: block;
  width: 4rem;
  height: auto;
  text-align: center;
  margin: 4rem auto 0.8rem auto;
}
main.page-lp #section-19 .customer-list .customer-voice-2 > li h3 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
main.page-lp #section-19 .customer-list .customer-voice-2 > li p {
  text-align: center;
  margin: 2rem auto 4rem auto;
  font-size: 1.6rem;
  position: relative;
  margin: auto 4rem;
  margin-top: 1.6rem;
  font-weight: 500;
  line-height: 1.76;
}
main.page-lp #section-19 .customer-list .customer-voice {
  display: block;
  margin: 0 auto;
  padding: 4rem 0 0 0;
  font-size: 0;
}
main.page-lp #section-19 .customer-list .customer-voice > li {
  width: 30.66666%;
  vertical-align: text-top;
  display: inline-block;
  font-size: 2rem;
  margin: 0;
  margin-top: 0;
  background: #fff;
  padding-bottom: 4rem;
}
main.page-lp #section-19 .customer-list .customer-voice > li:first-child {
  width: calc(33.3% - 2.6rem);
  margin-right: 1.3rem;
}
main.page-lp #section-19 .customer-list .customer-voice > li:nth-child(2) {
  width: calc(33.4% - 2.8rem);
  margin: 0 1.4rem;
}
main.page-lp #section-19 .customer-list .customer-voice > li:last-child {
  width: calc(33.3% - 2.6rem);
  margin-left: 1.3rem;
}
main.page-lp #section-19 .customer-list .customer-voice > li img {
  display: block;
  width: 4rem;
  height: auto;
  text-align: center;
  margin: 4rem auto 1rem auto;
}
main.page-lp #section-19 .customer-list .customer-voice > li h3 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4;
}
main.page-lp #section-19 .customer-list .customer-voice > li p {
  text-align: center;
  margin: 2rem auto 4rem auto;
  font-size: 1.6rem;
  position: relative;
  margin: auto 3.75rem;
  margin-top: 1.3rem;
  font-weight: 500;
  line-height: 2;
}
main.page-lp #section-19 .customer-list .customer-voice > li:first-child {
  margin-right: 2.65rem;
}
main.page-lp #section-19 .customer-list .customer-voice > li:nth-child(2) {
  margin: 0 1.35rem;
}
main.page-lp #section-19 .customer-list .customer-voice > li:last-child {
  margin-left: 2.65rem;
}
main.page-lp #section-19 .customer-list .customer-icon {
  position: absolute;
  /* left: 100%; */
  top: -10rem;
  right: 2.5vw;
  width: 13%;
}
main.page-lp #section-19 .ps-support {
  font-size: 4rem;
  line-height: 1.55;
  text-align: center;
  margin-top: 8.5rem;
}
main.page-lp #section-12 {
  padding-top: 0;
}
main.page-lp #section-20 {
  padding-top: 0rem;
  padding-bottom: 0rem;
}
main.page-lp #section-20 footer {
  background: #1A1A1A;
  text-align: center;
  color: #fff;
}
main.page-lp #section-20 footer .inner {
  padding: 1rem;
}
main.page-lp #section-20 footer .inner p {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  main.page-lp {
    padding: 15vw 0 0 0;
  }
  main.page-lp .sp_width {
    padding: 0 20px 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
  main.page-lp .sp_only {
    display: inherit !important;
  }
  main.page-lp .pc_only {
    display: none !important;
  }
  main.page-lp .lp-section .section-area-1-sp {
    width: 100%;
    padding: 4rem 2rem 0 2rem;
  }
  main.page-lp header .section-title {
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
  main.page-lp header .section-title:after {
    border-color: #0153cd;
    bottom: 0px;
    width: 6rem;
  }
  main.page-lp small {
    font-size: 8rem;
  }
  main.page-lp .lp-section {
    padding-top: 4.5rem;
  }
  main.page-lp #section-1 {
    padding: 0 20px 0 20px;
    overflow-x: visible;
    background: url(../images/main-bg-sp.png) no-repeat 34vw bottom;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
  }
  main.page-lp #section-1 .main-confluence-logo {
    width: 86%;
    margin-bottom: 0rem;
  }
  main.page-lp #section-1 .section-inner {
    padding: 1rem 0 0 0;
    width: 100%;
  }
  main.page-lp #section-1 .main-title {
    font-size: 2.8rem;
    margin-bottom: 0;
  }
  main.page-lp #section-1 .main-title small {
    font-size: 2rem;
  }
  main.page-lp #section-1 .main-title small.small-2 {
    margin-left: 0rem;
    font-size: 2.6rem;
  }
  main.page-lp #section-1 .main-title-big {
    font-size: 4.6rem;
  }
  main.page-lp #section-1 .main-title-middle {
    font-size: 2.6rem;
    margin-bottom: 2.2rem;
    line-height: 1.423;
    width: calc(100% + 2rem);
  }
  main.page-lp #section-1 .main-subresult ul {
    width: 100%;
    left: 0;
  }
  main.page-lp #section-1 .main-subresult ul li {
    margin-right: 2%;
    width: 32%;
  }
  main.page-lp #section-1 .main-subresult ul li:last-child {
    margin-right: 0;
  }
  main.page-lp #section-1 .main-subresult {
    margin-top: 2rem;
  }
  main.page-lp #section-1 .header-left {
    display: block;
    width: 100%;
  }
  main.page-lp #section-1 .header-left .main-note {
    width: 100%;
    top: 0;
    right: 2%;
  }
  main.page-lp #section-1 .header-right {
    display: block;
    width: 100%;
  }
  main.page-lp #section-1 .header-right .main_contact {
    top: 0;
    margin-top: 2rem;
    padding-bottom: 12rem;
    left: 0;
  }
  main.page-lp #section-1 .header-right .main_contact a {
    left: 0;
    width: 95%;
    margin: 0;
    margin-bottom: 1.5rem;
    padding: 0.95rem 0 0.95rem 2rem;
    font-size: 1.8rem;
    border-radius: 5px;
    line-height: 1.0556;
  }
  main.page-lp #section-1 .header-right .main_contact a:after {
    transform: scale(0.4);
    left: 6%;
  }
  main.page-lp #section-1 .header-right .main-right-subtitle {
    position: relative;
  }
  main.page-lp #section-1 .header-right .main-right-subtitle .main-hexagon {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70%;
    left: -2rem;
    bottom: -7rem;
    max-width: 26rem;
  }
  main.page-lp #section-1 .header-right .main-right-subtitle .main-hexagon img {
    bottom: 5rem;
    position: absolute;
    left: 0;
    z-index: 2;
  }
  main.page-lp #section-5 .problem-list ul li {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
  }
  main.page-lp #section-5 .problem-list ul li p.s5-title {
    width: 89%;
    margin: 2rem auto 1.5rem auto;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 0.5rem 0;
  }
  main.page-lp #section-5 .problem-list ul li p.s5-text {
    margin-bottom: 0;
    width: 89%;
    font-weight: 500;
    margin-top: 1.3rem;
  }
  main.page-lp #section-5 .problem-list ul li img {
    width: 40.6%;
  }
  main.page-lp #section-5 .problem-list ul li:last-child {
    margin-bottom: 0;
  }
  main.page-lp #section-5 .problem-list ul li:nth-child(odd), main.page-lp #section-5 .problem-list ul li:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0.5rem;
  }
  main.page-lp #section-5 .problem-solve {
    background-size: 90% auto;
    margin-top: 4rem;
  }
  main.page-lp #section-5 .problem-solve .ps-title {
    font-size: 2.3rem;
    margin-bottom: 0rem;
    font-weight: bold;
    color: #FC6D26;
  }
  main.page-lp #section-5 .problem-solve .ps-title span {
    font-weight: bold;
    width: calc(100% + 2rem);
    display: inline-block;
    color: #FC6D26;
  }
  main.page-lp #section-5 .problem-solve .ps-text {
    line-height: 2;
    margin-bottom: 0rem;
    background-size: auto 84%;
    padding-top: 3.2rem;
    font-weight: 500;
    padding-bottom: 4rem;
    background-position: 50% -15%;
  }
  main.page-lp #section-13 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  main.page-lp #section-13 header .section-title {
    width: 87.5%;
    padding-bottom: 4.1rem;
  }
  main.page-lp #section-13 h3 {
    font-size: 2.4rem;
    padding-bottom: 3.2rem;
    padding-top: 4rem;
  }
  main.page-lp #section-13 .text {
    padding: 0;
    text-align: left;
    font-weight: 500;
    width: 100%;
  }
  main.page-lp #section-14 {
    padding-top: 4rem;
    background-color: #fff;
  }
  main.page-lp #section-14 .light-section {
    background-size: 90% auto;
    margin-top: 2.4rem;
    padding-bottom: 7.1rem;
    padding-top: 7.2rem;
  }
  main.page-lp #section-14 h3 {
    font-size: 2.8rem;
    line-height: 1.46428;
  }
  main.page-lp #section-14 .text-1 {
    font-size: 2rem;
    color: #1A1A1A;
    top: 0rem;
  }
  main.page-lp #section-14 .text-1 span {
    font-size: 2.8rem;
    font-weight: 900;
  }
  main.page-lp #section-14 .text-2 {
    top: 0rem;
    font-size: 2.4rem;
    padding-bottom: 7.4rem;
    padding-top: 2.4rem;
  }
  main.page-lp #section-14 .text-2 span {
    font-weight: 900;
  }
  main.page-lp #section-15 {
    padding: 2.7rem 0 4rem 0;
    background: url(../images/section-15-img-bg-sp.png) no-repeat;
    background-size: 100% 100%;
    background-position: center top;
  }
  main.page-lp #section-15 h3 {
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.36666;
    padding-bottom: 2.4rem;
  }
  main.page-lp #section-15 h3 span {
    font-weight: 900;
    font-size: 3.6rem;
    line-height: 1.1388888;
  }
  main.page-lp #section-15 .text-1 {
    font-size: 2rem;
    line-height: 2.05;
    text-align: center;
    font-weight: 900;
  }
  main.page-lp #section-15 .text-1 span {
    font-size: 2rem;
    line-height: 2.05;
    font-weight: 900;
  }
  main.page-lp #section-15 .text-1 span small {
    font-size: 2rem;
    line-height: 2.05;
    font-weight: 900;
  }
  main.page-lp #section-15 table {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
    width: 100%;
  }
  main.page-lp #section-15 table td {
    display: contents;
    width: 100%;
  }
  main.page-lp #section-15 table td img {
    padding: 4rem 2rem 3.2rem 2rem;
  }
  main.page-lp #section-15 table td p {
    font-weight: normal;
    line-height: 2;
    padding: 0 2rem 2rem 2rem;
    font-weight: 500;
  }
  main.page-lp #section-15 .text-2 {
    line-height: 2;
    font-size: 1.6rem;
    font-weight: 500;
    width: 100%;
  }
  main.page-lp #section-7 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  main.page-lp #section-7 h2 {
    font-size: 2.4rem;
    line-height: 1.166666;
  }
  main.page-lp #section-7 h2 span {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
  }
  main.page-lp #section-7 .section-area-2 {
    margin: 1rem auto 3rem auto;
    text-align: center;
    width: 100%;
  }
  main.page-lp #section-7 .section-area-2 > li {
    width: 50%;
    padding: 0.5rem;
    margin: 0;
  }
  main.page-lp #section-7 .section-area-2 > li:first-child {
    padding-left: 0;
    margin: 0;
  }
  main.page-lp #section-7 .section-area-2 > li:nth-child(2) {
    padding: 0.5rem;
    padding-right: 0;
    margin: 0;
  }
  main.page-lp #section-7 .section-area-2 > li:last-child {
    padding: 0.5rem 0.25rem 0 0.25rem;
    margin: 0;
  }
  main.page-lp #section-7 .text-1 {
    font-size: 2.8rem;
    font-weight: 900;
  }
  main.page-lp #section-7 .text-2 {
    padding-top: 3rem;
    font-weight: bold;
    padding-bottom: 0;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 2;
  }
  main.page-lp #section-7 .text-content {
    width: 100%;
  }
  main.page-lp #section-7 .text-content ul {
    display: block;
  }
  main.page-lp #section-7 .text-content ul li {
    display: block;
    width: 100%;
  }
  main.page-lp #section-7 .text-content ul li:first-child {
    width: 100%;
  }
  main.page-lp #section-7 .text-content ul li:last-child {
    width: 100%;
    padding: 2.5rem 2rem 2rem 2rem;
  }
  main.page-lp #section-7 .text-content ul li:last-child .title {
    font-size: 2rem;
  }
  main.page-lp #section-7 .text-content ul li:last-child .text {
    font-weight: 500;
  }
  main.page-lp #section-7 .text-content ul li:last-child a {
    width: 100%;
    padding: 2.1rem;
    text-align: center;
  }
  main.page-lp #section-7 .exp-area {
    margin-top: 4rem;
  }
  main.page-lp #section-7 .exp-area .exp {
    font-size: 2rem;
  }
  main.page-lp #section-7 .exp-area .exp-area-zone-1 .exp {
    line-height: 2;
    padding-bottom: 0.3rem;
  }
  main.page-lp #section-7 .exp-area .exp-area-zone-2 .exp {
    padding-bottom: 0.8rem;
    line-height: 1.45;
  }
  main.page-lp #section-7 .exp-area .exp-area-zone-2 ul .text {
    padding-top: 4.5rem;
  }
  main.page-lp #section-7 .exp-area ul {
    margin-top: 1.6rem;
    margin-bottom: 0rem;
  }
  main.page-lp #section-7 .exp-area ul li {
    display: block;
    width: 100%;
  }
  main.page-lp #section-7 .exp-area ul li.way {
    width: 100%;
    padding: 4rem 0;
  }
  main.page-lp #section-7 .exp-area ul li.way p {
    padding: 0 2rem;
  }
  main.page-lp #section-7 .exp-area ul li.way .way-title {
    padding-bottom: 2.4rem;
    font-size: 2.4rem;
  }
  main.page-lp #section-7 .exp-area ul li.effect {
    background: url(../images/section-7-img-5-sp.png) no-repeat;
    background-size: 100% 85%;
    width: 100%;
  }
  main.page-lp #section-7 .exp-area ul li.effect p {
    font-size: 2.4rem;
    padding: 1.6rem 0 6rem 0;
    text-align: center;
    width: 100%;
    font-weight: 900;
  }
  main.page-lp #section-7 .exp-area ul li.text {
    width: 100.1%;
    font-weight: 500;
    padding: 0rem 0 6rem 0;
    background-size: auto 27rem;
  }
  main.page-lp #section-7 .ps_support {
    font-size: 2.4rem;
    padding-top: 0;
    font-weight: 900;
    line-height: 1.45833;
  }
  main.page-lp #section-16 {
    background: #fff;
    background: url(../images/section-16-img-bg-sp.png) no-repeat;
    background-size: auto 100%;
    padding-top: 0rem;
    padding-bottom: 4rem;
    padding-bottom: 6.5rem;
  }
  main.page-lp #section-16 header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    padding-bottom: 2.4rem;
  }
  main.page-lp #section-16 .sp_img_bg {
    padding-top: 4rem;
    padding-bottom: 2.4rem;
  }
  main.page-lp #section-16 p {
    font-size: 1.6rem;
    line-height: 2;
    padding-top: 0;
    text-align: left;
    font-weight: 500;
  }
  main.page-lp #section-16 table {
    margin-top: 2.4rem;
    width: 100%;
  }
  main.page-lp #section-16 table tr {
    display: grid;
  }
  main.page-lp #section-16 table tr td:first-child {
    padding: 2rem 1.6rem 4.6rem 1.6rem;
    order: 2;
    width: 100%;
  }
  main.page-lp #section-16 table tr td:first-child h3 {
    font-size: 2rem;
    text-align: left;
    padding: 0 0 1.2rem 0;
  }
  main.page-lp #section-16 table tr td:last-child {
    order: 1;
    width: 100%;
    font-weight: 500;
  }
  main.page-lp #section-16 .sp_width > h3 {
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.458333;
    padding-top: 0.8rem;
  }
  main.page-lp .sec-contact-1 {
    background: url(../images/section-ask-img-bg-sp.png) no-repeat;
    background-size: cover;
    margin-top: 0rem;
    padding-top: 9.6rem;
    padding-bottom: 2.4rem;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact {
    width: 100%;
    padding-bottom: 2.4rem;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .devops-ask-img {
    top: -12rem;
    width: 23rem;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-title {
    padding-top: 2.4rem;
    font-size: 1.5rem;
    padding-bottom: 2rem;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type {
    padding-bottom: 0rem;
    padding-top: 0;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn {
    width: 94%;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li {
    display: block;
    width: 100%;
    margin: 0 auto 1.4rem auto;
    box-shadow: 0px 7px 5px 0px #eee;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li a {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1;
    padding: 2.1rem 3.5rem 2.1rem 2.2rem;
    border-radius: 5px;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li:after {
    content: url(./../images/pseudo3.png);
    transform: scale(0.5);
    left: 90%;
    top: 20%;
    bottom: 0;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li:last-child {
    margin-bottom: 0;
  }
  main.page-lp #section-17 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  main.page-lp #section-17 header h2 {
    width: 81%;
  }
  main.page-lp #section-17 .text {
    font-weight: 500;
    padding: 0 1.5rem 4rem 1.5rem;
  }
  main.page-lp #section-17 .plan-ul {
    width: 100%;
  }
  main.page-lp #section-17 .plan-ul li {
    width: 100%;
    display: block;
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
  main.page-lp #section-17 .plan-ul li img {
    max-height: 7.02rem;
  }
  main.page-lp #section-17 .plan-ul li h3 {
    padding: 1.92rem 0;
    line-height: 1;
    border-color: #FDFF4E;
  }
  main.page-lp #section-17 .plan-ul li .text-2 {
    font-weight: 500;
    padding: 1.6rem 2rem 1.6rem 2rem;
  }
  main.page-lp #section-17 .plan-ul li .text-3 {
    font-size: 2rem;
    padding: 2.6rem 2rem 0rem 2rem;
  }
  main.page-lp #section-17 .plan-ul li:nth-child(even), main.page-lp #section-17 .plan-ul li:nth-child(odd) {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2.2rem;
  }
  main.page-lp #section-17 .plan-ul li .merito .m_text,
main.page-lp #section-17 .plan-ul li .demerito .m_text {
    width: calc(100% + 1rem);
  }
  main.page-lp #section-17 .sec-aslead-devops {
    width: 100%;
    padding: 1.6rem 2rem;
    margin-bottom: 2.4rem;
    margin-top: 5.6rem;
  }
  main.page-lp #section-17 .sec-aslead-devops:before {
    transform: translateX(-76%) translateY(0%) rotate(130deg);
  }
  main.page-lp #section-17 .sec-aslead-devops:after {
    transform: translateX(76%) translateY(0%) rotate(130deg);
  }
  main.page-lp #section-17 .sec-aslead-devops p {
    display: block;
    position: relative;
    z-index: 2;
  }
  main.page-lp #section-17 .sec-aslead-devops p.section-17-sub-1 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
  }
  main.page-lp #section-17 .sec-aslead-devops p.section-17-sub-2 {
    font-size: 1.8rem;
    line-height: 1.333333;
    z-index: 2;
    width: 90%;
  }
  main.page-lp #section-17 .candj {
    margin: 0 auto;
    width: 100%;
    padding-top: 0rem;
  }
  main.page-lp #section-17 .text-4 {
    line-height: 2;
    margin-bottom: 3.5rem;
    font-weight: 500;
  }
  main.page-lp #section-17 .text-5 {
    margin-top: 4rem;
    line-height: 2;
  }
  main.page-lp #section-18 {
    padding-top: 4rem;
    padding-bottom: 4.4rem;
  }
  main.page-lp #section-18 .text-1 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2;
    padding-bottom: 3.2rem;
  }
  main.page-lp #section-18 .problem-list-big {
    margin-bottom: 2rem;
    margin-top: 3.2rem;
  }
  main.page-lp #section-18 .problem-list-big ul {
    width: 100%;
  }
  main.page-lp #section-18 .problem-list-big ul li {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  main.page-lp #section-18 .problem-list-big ul li h3.s5-title {
    margin: 2rem auto 2rem auto;
    width: 88%;
  }
  main.page-lp #section-18 .problem-list-big ul li img {
    width: 88%;
  }
  main.page-lp #section-18 .problem-list-big ul li p.s5-text {
    width: 88%;
    margin: 0 auto;
    display: block;
    text-align: left;
    font-weight: 500;
  }
  main.page-lp #section-18 .problem-list ul {
    width: 100%;
  }
  main.page-lp #section-18 .problem-list ul li {
    width: 100%;
    display: block;
  }
  main.page-lp #section-18 .problem-list ul li:nth-child(odd), main.page-lp #section-18 .problem-list ul li:nth-child(even) {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  main.page-lp #section-18 .problem-list ul li h3.s5-title {
    margin: 2rem auto 2rem auto;
    width: 88%;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 0.5rem 1.8rem;
  }
  main.page-lp #section-18 .problem-list ul li img {
    width: 88%;
  }
  main.page-lp #section-18 .problem-list ul li p.s5-text {
    width: 88%;
    font-weight: 500;
  }
  main.page-lp #section-18 .text-2 {
    font-size: 2.4rem;
    line-height: 1.6;
  }
  main.page-lp #section-21 ul {
    padding-top: 0;
  }
  main.page-lp #section-21 ul li {
    width: 50%;
    margin-bottom: 2.5rem;
    vertical-align: text-top;
  }
  main.page-lp #section-21 ul li img {
    width: 66%;
    margin-bottom: 0.5rem;
  }
  main.page-lp #section-21 ul li p.text {
    line-height: 1.4;
    font-size: 1.8rem;
  }
  main.page-lp #section-21 ul li p.text span {
    line-height: 1.4;
    font-size: 1.8rem;
  }
  main.page-lp #section-21 .text-2 {
    padding: 0;
    font-size: 2.8rem;
    line-height: 1.46248;
    font-weight: 900;
  }
  main.page-lp #section-21 .note {
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
  }
  main.page-lp #section-ask-2 {
    padding-top: 6rem;
    background: #f7f7f7;
  }
  main.page-lp #section-ask-2 .sec-contact-1 {
    margin-top: 0;
    padding-bottom: 0rem;
    background-color: #ffff;
  }
  main.page-lp #section-ask-2 .sec-contact-1 .sec-aslead-devops-contact {
    width: 100%;
    background-color: #fff0;
  }
  main.page-lp #section-ask-2 .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-sp {
    background-color: #fff;
    padding: 0 1.2rem 2rem 1.2rem;
  }
  main.page-lp #section-ask-2 .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-sp .sec-aslead-devops-contact-title {
    padding-bottom: 1.6rem;
    line-height: 1.4666;
    font-size: 1.5rem;
  }
  main.page-lp #section-ask-2 .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-sp .sec-aslead-devops-contact-type {
    width: 100%;
  }
  main.page-lp #section-10 {
    overflow-x: hidden;
    padding-bottom: 0;
    padding-top: 0;
  }
  main.page-lp #section-10 header p {
    font-size: 1.6rem;
    padding-top: 0;
    line-height: 2;
  }
  main.page-lp #section-10 .section-area-1-sp {
    padding-bottom: 1rem;
  }
  main.page-lp #section-10 .customer-list {
    margin-top: 0rem;
    padding-top: 4rem;
  }
  main.page-lp #section-10 .customer-list .customer-voice {
    width: 100%;
    margin: 0rem auto;
    padding-bottom: 0.1rem;
  }
  main.page-lp #section-10 .customer-list .customer-voice > li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 1rem 0;
    margin-bottom: 2.4rem;
  }
  main.page-lp #section-10 .customer-list .customer-voice > li img {
    width: 35%;
    margin: 0 auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  main.page-lp #section-10 .customer-list .customer-voice > li p {
    padding: 2rem 2rem;
    font-size: 1.4rem;
    margin: 0% 5% 0.8rem 5%;
    font-weight: 500;
  }
  main.page-lp #section-10 .customer-list .customer-voice > li p:after {
    border-width: 0 2rem 2rem 2rem;
    top: -2rem;
  }
  main.page-lp #section-10 .customer-list .customer-icon {
    top: 0%;
    right: -2rem;
    width: 40%;
  }
  main.page-lp #section-11 {
    padding-top: 0;
    padding-bottom: 0;
  }
  main.page-lp #section-11 header .section-title {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  main.page-lp #section-11 header p {
    font-size: 6.6rem;
    padding-top: 12rem;
  }
  main.page-lp #section-11 .ps-support {
    font-size: 2.8rem;
    margin: 0rem auto;
    font-weight: 900;
  }
  main.page-lp #section-11 .question-section {
    margin: 1rem auto 4rem auto;
    width: 100%;
  }
  main.page-lp #section-11 .qanda > li.question ul li:first-child {
    width: 11%;
    padding: 1px 0 1px 1px;
  }
  main.page-lp #section-11 .qanda > li.question ul li:last-child {
    width: 89%;
    padding-left: 1rem;
  }
  main.page-lp #section-11 .qanda > li.question ul li:last-child p {
    font-size: 1.8rem;
    line-height: 1.4;
    width: 88%;
  }
  main.page-lp #section-11 .qanda > li.question:after {
    font-size: 2.4rem;
    right: 4.5%;
    bottom: auto;
  }
  main.page-lp #section-11 .qanda > li.answer ul {
    border: none;
  }
  main.page-lp #section-11 .qanda > li.answer ul li:first-child {
    width: 11%;
    padding-right: 0;
  }
  main.page-lp #section-11 .qanda > li.answer ul li:first-child p {
    font-size: 2rem;
  }
  main.page-lp #section-11 .qanda > li.answer ul li:last-child {
    width: 89%;
    padding: 1.4rem 1.5rem 1rem 1rem;
  }
  main.page-lp #section-11 .qanda > li.answer ul li:last-child p {
    font-size: 1.6rem;
    font-weight: 500;
  }
  main.page-lp #section-19 {
    padding-top: 0rem;
    padding-bottom: 4.4rem;
  }
  main.page-lp #section-19 header p {
    font-weight: 500;
  }
  main.page-lp #section-19 .customer-list {
    padding-top: 4rem;
    width: 100%;
  }
  main.page-lp #section-19 .customer-list .customer-voice-2 > li:first-child {
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 2.4rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice-2 > li:first-child img {
    margin-top: 2.4rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice-2 > li:first-child p {
    font-weight: 500;
    margin: auto 1.8rem;
    margin-top: 1.6rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice-2 > li:last-child {
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 2.4rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice-2 > li:last-child img {
    margin-top: 2.4rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice-2 > li:last-child p {
    font-weight: 500;
    margin: auto 1.8rem;
    margin-top: 1.6rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice {
    padding-top: 0;
  }
  main.page-lp #section-19 .customer-list .customer-voice li {
    width: 100%;
    margin: 0;
    margin-bottom: 2rem;
    padding-bottom: 2.4rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice li img {
    margin-top: 2.4rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice li p {
    font-weight: 500;
    margin: auto 2rem;
    margin-top: 1.6rem;
  }
  main.page-lp #section-19 .customer-list .customer-voice li:first-child {
    margin: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
  main.page-lp #section-19 .customer-list .customer-voice li:nth-child(2) {
    margin: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
  main.page-lp #section-19 .customer-list .customer-voice li:last-child {
    margin: 0;
    margin-bottom: 2rem;
    width: 100%;
  }
  main.page-lp #section-19 .ps-support {
    line-height: 1.464285;
    font-size: 2.8rem;
    font-weight: 900;
    margin-top: 2rem;
  }
  main.page-lp #section-12 {
    background-color: #f2f6f9;
  }
  main.page-lp #section-12 .sec-contact-1 {
    margin-top: 2rem;
    padding-bottom: 0rem;
    background-color: #ffff;
  }
  main.page-lp #section-12 .sec-contact-1 .sec-aslead-devops-contact {
    width: 100%;
    background-color: #fff0;
  }
  main.page-lp #section-12 .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-sp {
    background-color: #fff;
    padding: 0 1.2rem 2rem 1.2rem;
  }
  main.page-lp #section-12 .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-sp .sec-aslead-devops-contact-title {
    padding-bottom: 1.6rem;
    line-height: 1.4666;
    font-size: 1.5rem;
  }
  main.page-lp #section-12 .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-sp .sec-aslead-devops-contact-type {
    width: 100%;
  }
  main.page-lp #section-20 footer .inner p {
    line-height: 1;
    font-size: 1rem;
  }
}
@media screen and (min-width: 1440px) {
  main.page-lp .lp-section header .header-left .main-note {
    font-size: 12px;
  }
  main.page-lp .lp-section header .header-right .main_contact a {
    font-size: 20px;
  }
  main.page-lp .section-title {
    font-size: 41px;
  }
  main.page-lp #section-1 .main-title {
    font-size: 34px;
  }
  main.page-lp #section-1 .main-title small {
    font-size: 24px;
  }
  main.page-lp #section-1 .main-title small.small-2 {
    font-size: 32px;
  }
  main.page-lp #section-1 .main-title .main-title-big {
    font-size: 57px;
  }
  main.page-lp #section-1 .main-title .main-title-middle {
    font-size: 32px;
  }
  main.page-lp #section-1 .main-title .main-subresult ul li {
    font-size: 20px;
  }
  main.page-lp #section-1 .main-title-middle {
    font-size: 32px;
  }
  main.page-lp #section-2 .problem-area ul li p {
    font-size: 20px;
  }
  main.page-lp #section-2 .problem-solve-title {
    font-size: 41px;
  }
  main.page-lp #section-2 .problem-solve-title span {
    font-size: 41px;
  }
  main.page-lp #section-2 .problem-solve-title span {
    font-size: 40px;
  }
  main.page-lp #section-3 ul.s3-l2 li:last-child p {
    font-size: 16px;
  }
  main.page-lp #section-4 .sec-aslead-devops p.section-4-sub-1 {
    font-size: 28px;
  }
  main.page-lp #section-4 .sec-aslead-devops p.section-4-sub-2 {
    font-size: 40px;
  }
  main.page-lp #section-4 .sec-aslead-devops-3 .devops-title {
    font-size: 28px;
  }
  main.page-lp #section-4 .sec-aslead-devops-3 .devops-title span {
    font-size: 40px;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-title {
    font-size: 18px;
  }
  main.page-lp .sec-contact-1 .sec-aslead-devops-contact .sec-aslead-devops-contact-type .contact-btn li a {
    font-size: 20px;
  }
  main.page-lp #section-5 .problem-list ul li p.s5-title {
    font-size: 20px;
  }
  main.page-lp #section-5 .problem-solve .ps-title {
    font-size: 40px;
  }
  main.page-lp #section-5 .problem-solve .ps-text {
    font-size: 16px;
  }
  main.page-lp #section-5 .problem-solve .ps-support {
    font-size: 41px;
  }
  main.page-lp #section-5 .problem-solve .ps-support span {
    font-size: 41px;
  }
  main.page-lp #section-6 .section-title {
    font-size: 43px;
  }
  main.page-lp #section-6 .section-sub {
    font-size: 28px;
  }
  main.page-lp #section-6 .reason-list li.reason-text .reason-tag {
    font-size: 24px;
  }
  main.page-lp #section-6 .reason-list li.reason-text .reason-tag span {
    font-size: 40px;
  }
  main.page-lp #section-6 .reason-list li h3 {
    font-size: 24px;
  }
  main.page-lp #section-6 .sub-parter .sub-text {
    font-size: 32px;
  }
  main.page-lp #section-6 .sub-parter ul li.parter-text p {
    font-size: 24px;
  }
  main.page-lp #section-6 .sub-parter ul li.parter-text .sub-parter-text-big {
    font-size: 32px;
  }
  main.page-lp #section-6 .ps-support {
    font-size: 32px;
  }
  main.page-lp #section-7 header .section-title {
    font-size: 43px;
  }
  main.page-lp #section-7 .section-text {
    font-size: 32px;
  }
  main.page-lp #section-9 header .section-title {
    font-size: 43px;
  }
  main.page-lp #section-9 .reason-list li h3 {
    font-size: 24px;
  }
}

/*# sourceMappingURL=style.css.map */
<<<<<<< HEAD
>>>>>>> 6d86e6de (Jira SoftwareのLPページをリニューアル)
=======
>>>>>>> 22de4e35040beb2f39be54aba2ff89638c037d6b
