@charset "UTF-8";

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  color: #000000;
  font-weight: 400;
  font-size: 100%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: #f2f2f2;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

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

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

ol,
ul {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  font-size: 1px;
  font-size: 0.0625rem;
  line-height: 1;
  vertical-align: top;
}

svg {
  fill: currentColor;
}

strong {
  font-weight: 700;
}

input,
button,
textarea,
select {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

input::-webkit-input-placeholder {
  padding-top: 0.1em;
}

textarea {
  vertical-align: top;
}

button {
  text-align: center;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

caption,
th,
td {
  text-align: left;
  vertical-align: top;
  font-weight: normal;
}

main {
  display: block;
}

address {
  font-style: normal;
  font-weight: normal;
  line-height: inherit;
}

/*
 * Container style
 */

.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */

.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */

.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

.page-footer-banner {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-footer-banner > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.page-footer-banner > div > p {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4;
  text-align: center;
}

.page-footer-banner > div > p > span {
  display: block;
  margin-bottom: 10px;
  font-size: 26px;
  font-size: 1.625rem;
}

.page-footer-banner > div > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -30px;
}

.page-footer-banner > div > ul > li {
  width: calc(25% - 30px);
  margin-right: 30px;
}

.page-footer-banner > div > ul > li:nth-child(n+5) {
  margin-top: 30px;
}

.page-footer-banner > div > ul > li > a {
  display: block;
  line-height: 1.4;
}

.page-footer-banner > div > ul > li > a > img {
  display: block;
  margin-bottom: 5px;
}

.page-footer-banner > div > ul > li > a > span {
  font-size: 12px;
  font-size: 0.75rem;
}

.page-footer-main {
  position: relative;
  padding: 60px 0;
  background-color: #ffffff;
}

.page-footer-main > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-footer-main__page-top-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #e60023;
}

.page-footer-main__page-top-btn::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -15%) rotate(-45deg);
  -ms-transform: translate(-50%, -15%) rotate(-45deg);
  transform: translate(-50%, -15%) rotate(-45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  content: "";
}

.page-footer-main__title {
  width: 260px;
}

.page-footer-main__nav {
  width: calc(100% - 300px);
}

.page-footer-title > p:nth-of-type(1) {
  height: 28px;
  margin-bottom: 40px;
}

.page-footer-title > p:nth-of-type(1) > a {
  display: block;
  height: 100%;
}

.page-footer-title > p:nth-of-type(1) > a > img {
  width: auto;
  height: 100%;
}

.page-footer-title > p:nth-of-type(2) {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.page-footer-title > p:nth-of-type(3) {
  margin-bottom: 40px;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.page-footer-title > ul:nth-of-type(1) {
  margin-bottom: 40px;
}

.page-footer-title > ul:nth-of-type(1) > li {
  position: relative;
  padding-left: 12px;
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
}

.page-footer-title > ul:nth-of-type(1) > li::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.page-footer-title > ul:nth-of-type(1) > li:not(:last-child) {
  margin-bottom: 8px;
}

.page-footer-title > ul:nth-of-type(2) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.page-footer-title > ul:nth-of-type(2) > li {
  height: 70px;
}

.page-footer-title > ul:nth-of-type(2) > li > img {
  width: auto;
  height: 100%;
}

.page-footer-title > ul:nth-of-type(2) > li:not(:last-child) {
  margin-right: 15px;
}

.page-footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-footer-nav > ul {
  width: 22.5%;
}

.page-footer-nav > ul > li > a,
.page-footer-nav > ul > li > span {
  display: block;
  border-bottom: 1px solid #000000;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.page-footer-nav > ul > li > span {
  padding: 16px 0;
}

.page-footer-nav > ul > li > a {
  position: relative;
  padding: 16px 30px 16px 0;
}

.page-footer-nav > ul > li > a::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
}

.page-footer-nav > ul > li > ul {
  margin-top: 10px;
}

.page-footer-nav > ul > li > ul > li > a {
  display: block;
  padding: 5px 0;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.page-footer-nav > ul > li:not(:last-child) {
  margin-bottom: 25px;
}

.page-footer-sub {
  padding: 20px 0;
  background-color: #000000;
}

.page-footer-sub > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-footer-sub > div > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-footer-sub > div > ul > li {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

.page-footer-sub > div > ul > li > a {
  color: #ffffff;
}

.page-footer-sub > div > ul > li:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #ffffff;
}

.page-footer-sub > div > p {
  color: #ffffff;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4;
}

/* Animate
========================================================================== */

.page-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 76px;
  padding: 0 0 0 20px;
  border-bottom: 1px solid #cccccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
}

.page-header__logo {
  height: 28px;
}

.page-header__logo > a {
  display: block;
  height: 100%;
}

.page-header__logo > a > img {
  width: auto;
  height: 100%;
}

.page-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}

.page-header__menu-btn {
  display: none;
}

.page-header-nav-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  margin-right: 30px;
}

.page-header-nav-main > li {
  position: relative;
  height: 100%;
}

.page-header-nav-main > li > span,
.page-header-nav-main > li > a {
  display: block;
  height: 100%;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 75px;
  letter-spacing: 0.05em;
}

.page-header-nav-main > li > span {
  position: relative;
  padding-right: 18px;
}

.page-header-nav-main > li > span::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-85%) rotate(135deg);
  -ms-transform: translateY(-85%) rotate(135deg);
  transform: translateY(-85%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
}

.page-header-nav-main > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 160px;
  border: 1px solid #cccccc;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f2f2f2;
}

.page-header-nav-main > li > ul > li > a {
  display: block;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.page-header-nav-main > li:not(:last-child) {
  margin-right: 30px;
}

/* Animate
========================================================================== */

.bg-wrapper__bg > img {
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: scale(1.01);
  -ms-transform: scale(1.01);
  transform: scale(1.01);
}

.main {
  margin-top: 76px;
  overflow: hidden;
}

.sec {
  padding: 120px 0;
}

.sec__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec__heading-lv-2 {
  margin-bottom: 80px;
}

.sec__heading-lv-2--reason {
  margin-bottom: 20px;
}

.sec__btn {
  width: 250px;
  margin: 80px auto 0;
}

.sec--bg-white {
  background-color: #ffffff;
}

.sec-2-column {
  padding: 120px 0;
}

.sec-2-column__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sec-2-column__heading-lv-2 {
  width: 250px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.sec-2-column__wrapper {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  width: calc(100% - 310px);
}

.sec-2-column__heading-lv-3 {
  margin-bottom: 60px;
}

.sec-2-column__btn {
  position: absolute;
  top: 120px;
  left: 20px;
  width: 250px;
}

.sec-2-column--bg-white {
  background-color: #ffffff;
}

.conversion-sec {
  padding: 70px 0 80px;
  background-color: #e60023;
}

.conversion-sec__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

.conversion-sec__inner > p {
  color: #ffffff;
  text-align: center;
}

.conversion-sec__inner > p:nth-of-type(1) {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.conversion-sec__inner > p:nth-of-type(2) {
  margin-bottom: 40px;
}

.conversion-sec__inner > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.conversion-sec__inner > ul > li {
  width: calc(50% - 40px);
  margin-right: 40px;
  padding: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
}

.conversion-sec__inner > ul > li:nth-of-type(2) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.conversion-sec__content-order > p {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
}

.conversion-sec__content-order > ul > li:not(:last-child) {
  margin-bottom: 15px;
}

.conversion-sec__content-tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.conversion-sec__content-tel > p {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  text-align: center;
}

.conversion-sec__content-tel > div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.conversion-sec__content-tel > div > div > p:nth-of-type(1) {
  position: relative;
  margin-bottom: 5px;
  padding-left: 44px;
  font-weight: 700;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}

.conversion-sec__content-tel > div > div > p:nth-of-type(1) > svg {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
}

.conversion-sec__content-tel > div > div > p:nth-of-type(2) {
  line-height: 1.4;
  text-align: right;
}

.article-meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 250px;
}

.article-meta > time {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

.article-meta > div {
  width: 140px;
  height: 26px;
  background-color: #e60023;
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 26px;
  letter-spacing: 0.05em;
  text-align: center;
}

.reason-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.reason-list__item:not(:first-child) {
  margin-top: -40px;
}

.reason-list__image {
  width: 50%;
}

.reason-list__image--odd {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.reason-list__content {
  width: 42%;
  padding: 0 5% 0 3%;
}

.reason-list__content > span {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 10px;
  color: #e60023;
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

.reason-list__content > span::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #e60023;
  content: "";
}

.reason-list__content > p:nth-of-type(1) {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}

.reason-list__content--odd {
  padding: 0 3% 0 5%;
}

.reason-list__heading {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.4;
}

.function-intro {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.function-intro__image {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  width: 47.5%;
}

.function-intro__content {
  width: 47.5%;
}

.function-intro__content > p {
  margin-bottom: 40px;
}

.function-intro__heading {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}

.function-local-nav > li:not(:last-child) {
  margin-bottom: 20px;
}

.function-cat-list__item:not(:last-child) {
  margin-bottom: 200px;
}

.function-cat-list__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
  margin-bottom: 140px;
}

.function-cat-list__header::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -10;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 60%;
  height: 130%;
  background-color: #e60023;
  content: "";
}

.function-cat-list__header--odd::before {
  right: auto;
  left: 0;
}

.function-cat-list__header-image {
  width: 54%;
  padding-left: 6%;
}

.function-cat-list__header-image--odd {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  padding-right: 6%;
  padding-left: 0;
}

.function-cat-list__header-content {
  width: 32%;
  padding: 0 4%;
}

.function-cat-list__header-content > div {
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}

.function-cat-list__header-content > div > span {
  margin-right: 5px;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
}

.function-cat-list__header-content > p:nth-of-type(1) {
  margin-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4;
}

.function-cat-list__header-content > p:nth-of-type(2) {
  color: #ffffff;
}

.function-cat-list__heading {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  color: #ffffff;
  font-weight: 700;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.function-cat-list__heading::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #ffffff;
  content: "";
}

.function-cat-list__number {
  position: absolute;
  top: 0;
  right: 60%;
  -webkit-transform: translate(20%, -80%);
  -ms-transform: translate(20%, -80%);
  transform: translate(20%, -80%);
  z-index: -20;
  color: #ffffff;
  font-weight: 600;
  font-size: 160px;
  font-size: 10rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
}

.function-cat-list__number--odd {
  right: auto;
  left: 60%;
  -webkit-transform: translate(-20%, -80%);
  -ms-transform: translate(-20%, -80%);
  transform: translate(-20%, -80%);
}

.function-cat-list__number--gray {
  color: #f2f2f2;
}

.function-cat-list__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.function-list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px 0;
}

.function-list > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.3333% - 40px);
  margin: 0 20px 0;
  padding-bottom: 30px;
  -webkit-box-shadow: 12px 12px 0 0px #dddddd;
  box-shadow: 12px 12px 0 0px #dddddd;
  background-color: #f2f2f2;
}

.function-list > ul > li:nth-child(n+4) {
  margin-top: 40px;
}

.function-list > ul > li > figure {
  min-height: 0%;
  margin-bottom: 30px;
}

.function-list > ul > li > p {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 30px 30px;
}

.function-list__heading {
  margin: 0 30px 25px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.function-list__tag-list {
  margin: 0 30px;
}

.function-plus-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  margin-top: 120px;
  padding: 40px;
  background-color: #f2f2f2;
}

.function-plus-content::before,
.function-plus-content::after {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #e60023;
  content: "";
}

.function-plus-content::before {
  top: -80px;
  width: 2px;
  height: 40px;
}

.function-plus-content::after {
  top: -61px;
  width: 40px;
  height: 2px;
}

.function-plus-content__heading {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.function-plus-content__heading > span {
  color: #e60023;
}

.function-plus-content__btn {
  max-width: 400px;
  margin-top: 30px;
}

.function-plus-content__link {
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
}

.function-plus-content__link:hover {
  text-decoration: underline;
}

.function-plus-content > figure {
  width: 36%;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.function-plus-content > div {
  width: 64%;
}

.function-plus-content--bg-white {
  background-color: #ffffff;
}

.related-service-list {
  overflow: hidden;
}

.related-service-list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.related-service-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.3333% - 40px);
  margin-right: 40px;
}

.related-service-list__item:nth-child(n+4) {
  margin-top: 40px;
}

.related-service-list__item > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  width: 100%;
  padding: 30px 0 30px;
  background-color: #f2f2f2;
}

.related-service-list__item > a > figure {
  width: 50px;
  min-height: 0%;
  margin: 0 0 30px 30px;
}

.related-service-list__item > a > p {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 30px 30px;
}

.related-service-list__item > a > svg {
  position: absolute;
  top: 10px;
  right: 10px;
}

.related-service-list__item--bg-white > a {
  background-color: #ffffff;
}

.related-service-list__heading {
  margin: 0 30px 25px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.related-service-list__tag-list {
  margin: 0 30px;
}

.flow-list {
  overflow: hidden;
}

.flow-list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -80px;
}

.flow-list > ul > li {
  position: relative;
  width: calc(33.3333% - 80px);
  margin-right: 80px;
  padding: 30px;
  border: 1px solid #e60023;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
}

.flow-list > ul > li > span {
  color: #920122;
  font-weight: 400;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

.flow-list > ul > li > figure {
  margin: 0 auto 20px;
  width: 100px;
}

.flow-list > ul > li > p:nth-of-type(1) {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
}

.flow-list > ul > li > p:nth-of-type(2) > span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  font-size: 0.75rem;
}

.flow-list > ul > li:not(:last-child)::before {
  display: block;
  position: absolute;
  top: 50%;
  right: -55px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 0 17px 21px;
  border-color: transparent transparent transparent #e60023;
  content: "";
}

.price-list__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
}

.price-list__item {
  width: 48%;
  background-color: #f2f2f2;
}

.price-list__item:nth-of-type(1) {
  margin-top: calc(10px + 2.25rem);
}

.price-list__heading {
  padding: 30px 0;
  background-color: #e60023;
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.price-list__trial > h2 {
  background-color: #000000 !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.price-list__trial > h2 > span {
  display: inline-block;
}

.price-list__trial > h2 > span:nth-of-type(1) {
  font-size: 16px;
  font-size: 1rem;
  border-bottom: dotted 5px #fff;
}

.price-list__trial > h2 > span:nth-of-type(2) {
  padding-left: 5px;
}

.price-list__trial > h2::after {
  position: absolute;
  content: "";
  top: -1px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
  width: 0;
  height: 0;
}

.price-list__trial__price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.price-list__trial__box {
  padding: 20px !important;
}

.price-list__trial p {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 1px #dddddd;
}

.price-list__trial p:nth-of-type(2) {
  margin-bottom: 0;
}

.price-list__trial__attention {
  background: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: none;
  margin-bottom: 0px !important;
  padding-bottom: 10px !important;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.price-list__trial__attention::before,
.price-list__trial__attention::after {
  content: "";
  width: 2px;
  height: 25px;
  background-color: #e60023;
}

.price-list__trial__attention::before {
  margin-right: 15px;
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transform: rotate(-35deg);
}

.price-list__trial__attention::after {
  margin-left: 15px;
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
}

.price-list__content {
  padding: 30px;
}

.price-list__content > p {
  margin-bottom: 30px;
  line-height: 1;
}

.price-list__content > p > span:nth-of-type(1) {
  display: block;
  width: 6.5em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.price-list__content > p > span:nth-of-type(2) {
  font-weight: 700;
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
  width: 10%;
}

.price-list__content > dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: solid 1px #dddddd;
  border-bottom: solid 1px #dddddd;
  line-height: 1.4;
}

.price-list__content > dl > dt {
  width: 100px;
  font-weight: 700;
}

.price-list__content > dl > dt:not(:last-of-type) {
  margin-bottom: 10px;
}

.price-list__content > dl > dd {
  width: calc(100% - 100px);
}

.price-list__content > dl > dd:not(:last-of-type) {
  margin-bottom: 10px;
}

.price-list__content__acount {
  font-size: 20px;
  font-size: 1.25rem;
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
}

.price-list__content__triangl {
  position: relative;
  padding: 0 0 0 16px;
  font-size: 20px;
  font-size: 1.25rem;
  text-align: center;
}

.price-list__content__triangl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 15px solid #920122;
}

.price-list__content__bold {
  font-weight: 700;
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.1em;
}

.price-list__option {
  position: relative;
  margin: 80px auto 0;
}

.price-list__option::before,
.price-list__option::after {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000000;
  content: "";
}

.price-list__option::before {
  top: -60px;
  width: 2px;
  height: 40px;
}

.price-list__option::after {
  top: -41px;
  width: 40px;
  height: 2px;
}

.price-list__option > dt {
  padding: 20px 0;
  background-color: #920122;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.price-list__option > dd {
  padding: 30px;
  background-color: #f2f2f2;
}

.price-list__option > dd > a {
  text-decoration: underline;
}

.faq-list > li {
  padding: 30px;
  background-color: #ffffff;
}

.faq-list > li > div > div {
  padding-top: 30px;
}

.faq-list > li > div > div > p {
  padding: 20px;
  background-color: #f2f2f2;
}

.faq-list > li > div > div > p > a {
  text-decoration: underline;
}

.faq-list > li:not(:last-child) {
  margin-bottom: 30px;
}

.faq-list__heading {
  position: relative;
  padding: 0 35px 0 50px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  cursor: pointer;
}

.faq-list__heading::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-85%) rotate(135deg);
  -ms-transform: translateY(-85%) rotate(135deg);
  transform: translateY(-85%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
}

.faq-list__heading > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e60023;
}

.faq-list__heading > span > span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}

.faq-list--bg-gray > li {
  background-color: #f2f2f2;
}

.news-list {
  border-top: 1px solid #dddddd;
}

.news-list > li {
  border-bottom: 1px solid #dddddd;
}

.news-list > li > a,
.news-list > li > .blank-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 30px 0;
}

.news-list > li > a > p,
.news-list > li > .blank-block > p {
  width: calc(100% - 290px);
}

.column-list {
  border-top: 1px solid #dddddd;
}

.column-list > li {
  border-bottom: 1px solid #dddddd;
}

.column-list > li > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 40px 0;
}

.column-list > li > a > figure {
  width: 36%;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.column-list > li > a > div {
  width: 64%;
}

.column-list__heading {
  margin: 25px 0;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.download-list {
  overflow: hidden;
}

.download-list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.download-list > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: calc(33.3333% - 40px);
  margin-right: 40px;
  padding-bottom: 30px;
  border: solid 1px #e60023;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
}

.download-list > ul > li:nth-child(n+4) {
  margin-top: 40px;
}

.download-list > ul > li > figure {
  min-height: 0%;
}

.download-list > ul > li > p {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 30px 30px;
}

.download-list__heading {
  margin: 30px 30px 25px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.download-list__btn {
  margin: 0 30px;
}

.download-list-large {
  border-top: 1px solid #dddddd;
}

.download-list-large > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid #dddddd;
}

.download-list-large > li > figure {
  width: 36%;
  padding-right: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.download-list-large > li > div {
  width: 64%;
}

.download-list-large__heading {
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.download-list-large__btn {
  max-width: 400px;
  margin-top: 30px;
}

.demo-list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

.demo-list > ul > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.3333% - 40px);
  margin: 0 20px;
}

.demo-list > ul > li:nth-child(n+4) {
  margin-top: 40px;
}

.demo-list > ul > li > a {
  display: block;
  padding-bottom: 25px;
  -webkit-box-shadow: 12px 12px 0 0 #dddddd;
  box-shadow: 12px 12px 0 0 #dddddd;
  background-color: #f2f2f2;
}

.demo-list > ul > li > a > figure {
  margin-bottom: 25px;
}

.demo-list__heading {
  margin: 0 25px;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
}

.article {
  padding: 120px 0;
  background-color: #ffffff;
}

.article__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.article__header {
  margin-bottom: 80px;
}

.article__lead {
  margin-bottom: 80px;
}

.article__lead > p:not(:last-child) {
  margin-bottom: 20px;
}

.article__lead--small {
  margin: 0 auto 60px;
  max-width: 800px;
}

.article__lead-copy {
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.article__client-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 80px;
  padding: 50px;
  background-color: #f2f2f2;
}

.article__client-info > figure {
  width: 150px;
}

.article__client-info > div {
  width: calc(100% - 190px);
}

.article__client-info > div > dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1.4;
}

.article__client-info > div > dl > dt {
  width: 140px;
  font-weight: 700;
}

.article__client-info > div > dl > dt:not(:last-of-type) {
  margin-bottom: 10px;
}

.article__client-info > div > dl > dd {
  width: calc(100% - 140px);
}

.article__client-info > div > dl > dd:not(:last-of-type) {
  margin-bottom: 10px;
}

.article__client-info > div > dl:not(:last-child) {
  margin-bottom: 20px;
}

.article__content {
  margin: 0 auto;
  max-width: 800px;
}

.article__content > div > p:not(:last-child),
.article__content > div > ul:not(:last-child) {
  margin-bottom: 20px;
}

.article__content > div > dl:not(:last-child) {
  margin-bottom: 20px;
}

.article__content > div > dl > dd:not(:last-child) {
  margin-bottom: 10px;
}

.article__content > div:not(:last-child) {
  margin-bottom: 60px;
}

.article__heading {
  margin-top: 10px;
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.4;
}

.article__heading-lv-2 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
  font-weight: 700;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
}

.article__heading-lv-2::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #e60023;
  content: "";
}

.article__heading-lv-3 {
  margin-bottom: 20px;
  color: #e60023;
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4;
}

.article__heading-lv-4 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
}

.article__caption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
}

.article__image-has-caption {
  margin-bottom: 8px !important;
}

.article__link {
  text-decoration: underline;
}

.article__link:hover {
  text-decoration: underline;
}

.article__list > li {
  position: relative;
  padding-left: 20px;
}

.article__list > li > span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.tag-list {
  overflow: hidden;
}

.tag-list > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -6px;
}

.tag-list__item {
  margin: 6px;
  padding: 8px 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
}

.tag-list__item--individual {
  background-color: #e60023;
}

.tag-list__item--organization {
  background-color: #920122;
}

.tag-list__item--independence {
  background-color: #149cd5;
}

.tag-list__item--leadership {
  background-color: #e43761;
}

.tag-list__item--support {
  background-color: #f36627;
}

.breadcrumb {
  padding: 10px 20px;
}

.breadcrumb > ul {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  font-size: 0.75rem;
}

.breadcrumb > ul > li {
  display: inline;
  line-height: 1.4;
}

.breadcrumb > ul > li:not(:last-child) {
  margin-right: 12px;
}

.breadcrumb > ul > li:not(:last-child)::after {
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  display: inline-block;
  -webkit-transform: translateX(-35%) rotate(45deg);
  -ms-transform: translateX(-35%) rotate(45deg);
  transform: translateX(-35%) rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 12px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
}

.heading {
  position: relative;
  margin: 40px 0;
  padding-bottom: 30px;
  font-weight: 500;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}

.heading::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #e60023;
  content: "";
}

.heading-lv-2 {
  position: relative;
  padding: 5px 0 5px 30px;
  font-weight: 500;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.heading-lv-2::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: #e60023;
  content: "";
}

.heading-lv-3 {
  position: relative;
  padding-bottom: 20px;
  color: #e60023;
  font-weight: 500;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.heading-lv-3::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: #e60023;
  content: "";
}

.heading-lv-4 {
  font-weight: 700;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4;
}

.btn {
  display: block;
  height: 60px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 58px;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn-conversion {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff !important;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.btn-conversion::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  content: "";
}

.btn-conversion > div {
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-conversion > div > svg {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
}

.btn-conversion--download {
  height: 70px;
  background-color: #e60023;
  font-size: 18px;
  font-size: 1.125rem;
}

.btn-conversion--download > div {
  padding-left: 33px;
}

.btn-conversion--download > div > svg {
  width: 23px;
  height: 23px;
}

.btn-conversion--order {
  height: 70px;
  background-color: #920122;
  font-size: 18px;
  font-size: 1.125rem;
}

.btn-conversion--order > div {
  padding-left: 33px;
}

.btn-conversion--order > div > svg {
  width: 23px;
  height: 23px;
}

.btn-conversion--download-small {
  height: 60px;
  background-color: #e60023;
  font-size: 16px;
  font-size: 1rem;
}

.btn-conversion--download-small > div {
  padding-left: 26px;
}

.btn-conversion--download-small > div > svg {
  width: 18px;
  height: 18px;
}

.btn-local-nav {
  display: block;
  position: relative;
  height: 60px;
  border: 1px solid #000000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 58px;
  letter-spacing: 0.1em;
  text-align: center;
}

.btn-local-nav::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-85%) rotate(135deg);
  -ms-transform: translateY(-85%) rotate(135deg);
  transform: translateY(-85%) rotate(135deg);
  width: 8px;
  height: 8px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  content: "";
}

.btn-local-nav--function > span {
  margin-right: 5px;
  color: #888888;
  font-family: "Outfit", sans-serif;
}

.icon-blank {
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  display: inline-block;
  width: 12px;
  height: 10px;
  margin-left: 8px;
  color: #000000;
}

.icon-blank--white {
  color: #ffffff;
}

.icon-blank--inline {
  margin-left: 2px;
  margin-right: 2px;
}

.icon-blank--margin-none {
  position: static;
  top: auto;
  vertical-align: baseline;
  margin-left: 0;
}

.icon-pdf {
  position: relative;
  top: -0.1em;
  vertical-align: middle;
  display: inline-block;
  width: 10px;
  height: 12px;
  margin-left: 8px;
  color: #000000;
}

.icon-pdf--white {
  color: #ffffff;
}

.back-btn {
  display: block;
  width: 250px;
  height: 60px;
  margin: 80px auto 0;
  border-radius: 30px;
  border: solid 1px #000000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 58px;
  text-align: center;
}

.btn--arrow:before {
  display: inline-block;
  position: relative;
  right: 1em;
  border-bottom: solid 2px #000;
  border-left: solid 2px #000;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}

/* Animate
========================================================================== */

.faq-list > li > div {
  display: none;
}

.faq-list__heading.is-open::before {
  -webkit-transform: translateY(-15%) rotate(-45deg);
  -ms-transform: translateY(-15%) rotate(-45deg);
  transform: translateY(-15%) rotate(-45deg);
}

.pagination {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 5px;
  margin-top: 30px;
}

.pagination > li {
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

.pagination a {
  display: block;
  text-decoration: none;
  color: #e60023;
  padding: 7px 0;
  width: 2.35em;
  line-height: 1.35;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.pagination ahover {
  background-color: #e60023;
  color: #fff;
}

.pagination .page {
  border: 1px solid #e60023;
}

.pagination .active {
  background-color: #e60023;
  cursor: auto;
}

.pagination .active > a {
  color: #fff;
}

.pagination .disabled {
  opacity: 0.5;
  cursor: auto;
}

.pagination .prev > a,
.pagination .next > a {
  padding-right: 0;
  padding-left: 0;
  min-width: 3.5em;
  width: auto;
}

.index-page {
  /* Layout */
}

.index-page .kv {
  position: relative;
}

.index-page .kv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
}

.index-page .kv__content > h1 > span:nth-of-type(1) {
  display: block;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(1),
.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(2),
.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(3),
.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(4) {
  position: relative;
  color: #e60023;
}

.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(1)::before,
.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(2)::before,
.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(3)::before,
.index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(4)::before {
  display: block;
  position: absolute;
  top: -20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #e60023;
  content: "";
}

.index-page .kv__content > h1 > span:nth-of-type(2),
.index-page .kv__content > h1 > span:nth-of-type(3) {
  display: block;
}

.index-page .kv__content > h1 > span:nth-of-type(2) > span,
.index-page .kv__content > h1 > span:nth-of-type(3) > span {
  display: inline-block;
  padding: 4px 8px 9px;
  background-color: #ffffff;
  font-size: 60px;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: 0.1em;
}

.index-page .kv__content > h1 > span:nth-of-type(2) {
  margin-bottom: 15px;
}

.index-page .kv__content > h1 > span:nth-of-type(2) > span {
  font-weight: 700;
}

.index-page .kv__content > h1 > span:nth-of-type(3) {
  margin-bottom: 40px;
}

.index-page .kv__content > h1 > span:nth-of-type(3) > span {
  font-weight: 500;
}

.index-page .kv__content > p {
  margin-bottom: 40px;
  font-weight: 500;
}

.index-page .kv__image {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(6%, -45%);
  -ms-transform: translate(6%, -45%);
  transform: translate(6%, -45%);
  width: 55%;
}

.index-page .kv__btn {
  width: 400px;
}

.index-page .intro-content > h2 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}

.index-page .intro-content > h2 > span {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 28px;
  font-size: 1.75rem;
}

.index-page .intro-content > p {
  margin: 0 auto 60px;
  max-width: 800px;
}

.index-page .intro-content > figure {
  width: 85%;
  margin: 0 auto;
}

.index-page .main-function-content__intro {
  max-width: 1200px;
  margin: 0 auto 200px;
  padding: 0 20px;
}

.index-page .main {
  margin-top: 0;
}

/* Animate
========================================================================== */

.index-page {
  /* Header */
}

.index-page .page-header {
  border-bottom-color: transparent;
  background-color: transparent;
  -webkit-transition: border-bottom-color 0.2s, background-color 0.2s;
  transition: border-bottom-color 0.2s, background-color 0.2s;
}

.index-page .page-header.is-animated {
  border-bottom-color: #cccccc;
  background-color: #ffffff;
}

/* Header */

.contact-page .content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-page .content > iframe {
  display: block;
  width: 100%;
  height: 1400px;
}

.contact-thanks-page .content > h1 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4;
  text-align: center;
}

.contact-thanks-page .content > div {
  margin: 0 auto;
  max-width: 800px;
}

.contact-thanks-page .content > div > p:nth-of-type(1) {
  margin-bottom: 20px;
}

.contact-thanks-page .content > div > p:nth-of-type(2) {
  margin-bottom: 40px;
  line-height: 1.4;
}

.contact-thanks-page .content > div > p:nth-of-type(2) > a {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
}

.contact-thanks-page .content > div > p:nth-of-type(3) {
  line-height: 1.4;
}

.demo-page .content__heading-lv-3 {
  margin-bottom: 60px;
}

.demo-page .content__heading-lv-4 {
  margin-bottom: 40px;
}

.demo-page .content__list:not(:last-child) {
  margin-bottom: 60px;
}

.demo-page .content > section:not(:last-child) {
  margin-bottom: 80px;
}

.download-page .content__local-nav {
  margin-bottom: 80px;
  overflow: hidden;
}

.download-page .content__local-nav > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -40px;
}

.download-page .content__local-nav > ul > li {
  width: calc(33.3333% - 40px);
  margin-right: 40px;
}

.download-page .content__heading {
  margin-bottom: 60px;
}

.download-page .content > section:not(:last-child) {
  margin-bottom: 80px;
}

.download-thanks-page .content > h1 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4;
  text-align: center;
}

.download-thanks-page .content > div {
  margin: 0 auto;
  max-width: 800px;
}

.error-page .content > h1 {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4;
  text-align: center;
}

.error-page .content > div {
  margin: 0 auto;
  max-width: 800px;
}

.feature-page .reason-content__other {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 80px;
}

.feature-page .reason-content__other-heading {
  margin-bottom: 60px;
}

.function-page .main-function-content__intro {
  max-width: 1200px;
  margin: 0 auto 200px;
  padding: 0 20px;
}

.function-page .function-detail-list {
  width: 100%;
  border-top: 2px solid #e60023;
  border-right: 2px solid #e60023;
  border-collapse: separate;
}

.function-page .function-detail-list__heading {
  width: 200px;
  padding: 30px 20px;
  border-bottom: 2px solid #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e60023;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.4;
}

.function-page .function-detail-list__heading--bottom {
  border-bottom: 2px solid #e60023;
}

.function-page .function-detail-list__heading-lv-2 {
  width: 280px;
  padding: 30px 20px;
  border-bottom: 1px solid #e60023;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #f2f2f2;
  color: #e60023;
  font-weight: 700;
  line-height: 1.4;
}

.function-page .function-detail-list__heading-lv-2--bottom {
  border-bottom: 2px solid #e60023;
}

.function-page .function-detail-list__content {
  padding: 30px 20px;
  border-bottom: 1px solid #e60023;
  background-color: #ffffff;
}

.function-page .function-detail-list__content--bottom {
  border-bottom: 2px solid #e60023;
}

.security-page .content__heading {
  margin-bottom: 60px;
}

.security-page .content > div:nth-of-type(1) {
  margin-bottom: 80px;
}

.security-page .content > div:nth-of-type(1) > h2 {
  margin-bottom: 80px;
  color: #e60023;
  font-weight: 700;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
}

.security-page .content > div:nth-of-type(1) > p:not(:last-child) {
  margin-bottom: 20px;
}

.security-page .content > div:nth-of-type(2) {
  margin-bottom: 80px;
}

.security-page .content > div:nth-of-type(2) > p > a {
  text-decoration: underline;
}

.security-page .content > p {
  text-align: right;
}

@media (min-width: 769px) {
  .only-medium-down {
    display: none !important;
  }

  .page-footer-banner > div > ul > li > a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .page-footer-banner > div > ul > li > a:hover {
    opacity: 0.7;
  }

  .page-footer-main__page-top-btn {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }

  .page-footer-main__page-top-btn:hover {
    background-color: #ed4c65;
  }

  .page-footer-title > p:nth-of-type(1) > a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .page-footer-title > p:nth-of-type(1) > a:hover {
    opacity: 0.7;
  }

  .page-footer-nav > ul > li > a {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .page-footer-nav > ul > li > a::before {
    -webkit-transition: border-top-color 0.2s, border-right-color 0.2s;
    transition: border-top-color 0.2s, border-right-color 0.2s;
  }

  .page-footer-nav > ul > li > a:hover {
    color: #e60023;
  }

  .page-footer-nav > ul > li > a:hover::before {
    border-top-color: #e60023;
    border-right-color: #e60023;
  }

  .page-footer-nav > ul > li > ul > li > a {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .page-footer-nav > ul > li > ul > li > a:hover {
    color: #e60023;
  }

  .page-footer-sub > div > ul > li > a:hover {
    text-decoration: underline;
  }

  .page-header__logo > a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .page-header__logo > a:hover {
    opacity: 0.7;
  }

  .page-header-nav-main > li > a {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .page-header-nav-main > li > a:hover {
    color: #e60023;
  }

  .page-header-nav-main > li > ul > li > a {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .page-header-nav-main > li > ul > li > a:hover {
    color: #e60023;
  }

  .page-header-nav-conversion__download > a {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }

  .page-header-nav-conversion__download > a:hover {
    background-color: #ed4c65;
  }

  .page-header-nav-conversion__order > a {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }

  .page-header-nav-conversion__order > a:hover {
    background-color: #b34d64;
  }

  .page-header-nav-conversion__contact > a {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }

  .page-header-nav-conversion__contact > a:hover {
    background-color: #4c4c4c;
  }

  .function-plus-content__link:hover {
    text-decoration: none;
  }

  .related-service-list__item > a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .related-service-list__item > a:hover {
    opacity: 0.7;
  }

  .price-list__option > dd > a:hover {
    text-decoration: none;
  }

  .faq-list > li > div > div > p > a:hover {
    text-decoration: none;
  }

  .faq-list__heading {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .faq-list__heading:hover {
    color: #e60023;
  }

  .news-list > li > a,
  .news-list > li > .blank-block {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .news-list > li > a:hover {
    opacity: 0.7;
  }

  .column-list > li > a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .column-list > li > a:hover {
    opacity: 0.7;
  }

  .demo-list > ul > li > a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .demo-list > ul > li > a:hover {
    opacity: 0.7;
  }

  .article__link:hover {
    text-decoration: none;
  }

  .breadcrumb > ul > li > a:hover {
    text-decoration: underline;
  }

  .btn {
    -webkit-transition: border-color 0.2s, color 0.2s;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn:hover {
    border-color: #e60023;
    color: #e60023;
  }

  .btn-conversion {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }

  .btn-conversion--download:hover,
  .btn-conversion--download-small:hover {
    background-color: #ed4c65;
  }

  .btn-conversion--order:hover {
    background-color: #b34d64;
  }

  .btn-local-nav {
    -webkit-transition: border-color 0.2s, color 0.2s;
    transition: border-color 0.2s, color 0.2s;
  }

  .btn-local-nav::before {
    -webkit-transition: border-top-color 0.2s, border-right-color 0.2s;
    transition: border-top-color 0.2s, border-right-color 0.2s;
  }

  .btn-local-nav:hover {
    border-color: #e60023;
    color: #e60023;
  }

  .btn-local-nav:hover::before {
    border-top-color: #e60023;
    border-right-color: #e60023;
  }

  .btn-local-nav--function > span {
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }

  .btn-local-nav--function:hover > span {
    color: #e60023;
  }

  .security-page .content > div:nth-of-type(2) > p > a:hover {
    text-decoration: none;
  }
}

@media (min-width: 1001px) {
  .only-large-down {
    display: none !important;
  }

  .page-footer-nav > ul > li > span {
    pointer-events: none;
  }

  .page-header-nav-conversion {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 100%;
  }

  .page-header-nav-conversion__order {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 10;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page-header-nav-conversion__order > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 85px;
    height: 110px;
    border: 1px solid #cccccc;
    border-right: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #920122;
    color: #ffffff;
    font-weight: 500;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .page-header-nav-conversion__order > a > div {
    position: relative;
    width: 100%;
    padding-top: 31px;
  }

  .page-header-nav-conversion__order > a > div > svg {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 23px;
    height: 23px;
    color: #ffffff;
  }

  .page-header-nav-conversion__download,
  .page-header-nav-conversion__contact {
    height: 100%;
  }

  .page-header-nav-conversion__download > a,
  .page-header-nav-conversion__contact > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 110px;
    height: 100%;
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-align: center;
  }

  .page-header-nav-conversion__download > a > div,
  .page-header-nav-conversion__contact > a > div {
    position: relative;
    width: 100%;
    padding-top: 29px;
  }

  .page-header-nav-conversion__download > a > div > svg,
  .page-header-nav-conversion__contact > a > div > svg {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 23px;
    height: 23px;
    color: #ffffff;
  }

  .page-header-nav-conversion__download {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  .page-header-nav-conversion__download > a {
    background-color: #e60023;
  }

  .page-header-nav-conversion__contact > a {
    background-color: #000000;
  }

  .page-header-nav-main > li > span {
    pointer-events: none;
  }

  .page-header-nav-main > li > ul {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s, visibility 0s 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s;
  }

  .page-header-nav-main > li:hover > ul {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  .index-page .page-header-nav-conversion__order {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s, visibility 0s 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s;
  }

  .index-page .page-header-nav-conversion__order.is-animated {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
}

@media (max-width: 1200px) {
  .page-header-nav-main {
    margin-right: 20px;
  }

  .page-header-nav-main > li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 1000px) {
  .only-large-up {
    display: none !important;
  }

  .page-footer-main {
    padding: 40px 0;
  }

  .page-footer-main > div {
    max-width: none;
    padding: 0;
  }

  .page-footer-main__page-top-btn {
    width: 40px;
    height: 40px;
  }

  .page-footer-main__title {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .page-footer-main__nav {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    margin-bottom: 40px;
  }

  .page-footer-title > p:nth-of-type(1) {
    height: 21px;
    margin-bottom: 30px;
  }

  .page-footer-title > p:nth-of-type(3) {
    margin-bottom: 30px;
  }

  .page-footer-title > ul:nth-of-type(1) {
    margin-bottom: 30px;
  }

  .page-footer-title > ul:nth-of-type(1) > li:not(:last-child) {
    margin-bottom: 6px;
  }

  .page-footer-title > ul:nth-of-type(2) > li {
    height: 60px;
  }

  .page-footer-title > ul:nth-of-type(2) > li:not(:last-child) {
    margin-right: 10px;
  }

  .page-footer-nav {
    border-top: 1px solid #cccccc;
  }

  .page-footer-nav > ul {
    width: 100%;
  }

  .page-footer-nav > ul > li {
    border-bottom: 1px solid #cccccc;
  }

  .page-footer-nav > ul > li > a,
  .page-footer-nav > ul > li > span {
    padding: 16px 30px 16px 15px;
    border-bottom: none;
  }

  .page-footer-nav > ul > li > span {
    position: relative;
    cursor: pointer;
  }

  .page-footer-nav > ul > li > span::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-85%) rotate(135deg);
    -ms-transform: translateY(-85%) rotate(135deg);
    transform: translateY(-85%) rotate(135deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    content: "";
  }

  .page-footer-nav > ul > li > a::before {
    right: 15px;
  }

  .page-footer-nav > ul > li > ul {
    margin-top: 0;
    border-top: 1px solid #cccccc;
    background-color: #f2f2f2;
  }

  .page-footer-nav > ul > li > ul > li > a {
    padding: 16px 15px 16px 30px;
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .page-footer-nav > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid #cccccc;
  }

  .page-footer-nav > ul > li:not(:last-child) {
    margin-bottom: 0;
  }

  .page-footer-sub > div {
    max-width: none;
    padding: 0 15px;
  }

  .page-footer-sub > div > ul {
    width: 100%;
    margin-bottom: 15px;
  }

  .page-footer-sub > div > ul > li {
    width: 100%;
  }

  .page-footer-sub > div > ul > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 5px;
    padding-right: 0;
    border-right: none;
  }

  .page-footer-sub > div > p {
    width: 100%;
  }

  .page-footer-nav > ul > li > span.is-open::before {
    -webkit-transform: translateY(-15%) rotate(-45deg);
    -ms-transform: translateY(-15%) rotate(-45deg);
    transform: translateY(-15%) rotate(-45deg);
  }

  .page-footer-nav > ul > li > ul {
    display: none;
  }

  .page-header {
    height: 61px;
    padding: 0 0 0 15px;
  }

  .page-header__logo {
    height: 21px;
  }

  .page-header__nav {
    position: fixed;
    top: 61px;
    left: 0;
    width: 100%;
    height: auto;
    overflow-y: auto;
    background-color: #ffffff;
  }

  .page-header__menu-btn {
    display: block;
    position: relative;
    width: 54px;
    height: 60px;
    cursor: pointer;
  }

  .page-header__menu-btn > span {
    display: block;
    position: absolute;
    top: 29px;
    left: 15px;
    width: 24px;
    height: 2px;
    background-color: #000000;
  }

  .page-header__menu-btn > span:nth-of-type(1) {
    margin-top: -8px;
  }

  .page-header__menu-btn > span:nth-of-type(3) {
    margin-top: 8px;
  }

  .page-header-nav-main {
    width: 100%;
    height: auto;
    margin-right: 0;
    border-top: 1px solid #cccccc;
  }

  .page-header-nav-main > li {
    position: static;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-bottom: 1px solid #cccccc;
  }

  .page-header-nav-main > li > span,
  .page-header-nav-main > li > a {
    height: auto;
    padding: 16px 30px 16px 15px;
    line-height: 1.4;
  }

  .page-header-nav-main > li > span {
    cursor: pointer;
  }

  .page-header-nav-main > li > span::before {
    right: 15px;
  }

  .page-header-nav-main > li > a {
    position: relative;
  }

  .page-header-nav-main > li > a::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #000000;
    border-right: 1px solid #000000;
    content: "";
  }

  .page-header-nav-main > li > ul {
    position: static;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: auto;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }

  .page-header-nav-main > li > ul > li > a {
    padding: 16px 15px 16px 30px;
    white-space: normal;
  }

  .page-header-nav-main > li > ul > li:not(:last-child) {
    border-bottom: 1px solid #cccccc;
  }

  .page-header-nav-main > li:not(:last-child) {
    margin-right: 0;
  }

  .page-header-nav-conversion {
    width: 100%;
    padding: 30px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .page-header-nav-conversion__download > a,
  .page-header-nav-conversion__order > a,
  .page-header-nav-conversion__contact > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 60px;
    padding-left: 15px;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }

  .page-header-nav-conversion__download > a::before,
  .page-header-nav-conversion__order > a::before,
  .page-header-nav-conversion__contact > a::before {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    content: "";
  }

  .page-header-nav-conversion__download > a > div,
  .page-header-nav-conversion__order > a > div,
  .page-header-nav-conversion__contact > a > div {
    position: relative;
    width: 100%;
    padding-left: 26px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .page-header-nav-conversion__download > a > div > svg,
  .page-header-nav-conversion__order > a > div > svg,
  .page-header-nav-conversion__contact > a > div > svg {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #ffffff;
  }

  .page-header-nav-conversion__download {
    margin-bottom: 15px;
  }

  .page-header-nav-conversion__download > a {
    background-color: #e60023;
  }

  .page-header-nav-conversion__order {
    margin-bottom: 15px;
  }

  .page-header-nav-conversion__order > a {
    background-color: #920122;
  }

  .page-header-nav-conversion__contact > a {
    background-color: #000000;
  }

  .page-header__nav {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s, visibility 0s 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s;
  }

  html.is-menu-open {
    overflow: hidden;
    height: 100%;
  }

  html.is-menu-open body {
    overflow: hidden;
    max-height: 100%;
  }

  html.is-menu-open .page-header__nav {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }

  html.is-menu-open .page-header__menu-btn > span:nth-of-type(1) {
    margin-top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  html.is-menu-open .page-header__menu-btn > span:nth-of-type(2) {
    display: none;
  }

  html.is-menu-open .page-header__menu-btn > span:nth-of-type(3) {
    margin-top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .page-header-nav-main > li > span.is-open::before {
    -webkit-transform: translateY(-15%) rotate(-45deg);
    -ms-transform: translateY(-15%) rotate(-45deg);
    transform: translateY(-15%) rotate(-45deg);
  }

  .page-header-nav-main > li > ul {
    display: none;
  }

  .main {
    margin-top: 61px;
  }

  .sec-2-column {
    padding: 80px 0;
  }

  .sec-2-column__inner {
    position: static;
    max-width: none;
    padding: 0 15px;
  }

  .sec-2-column__heading-lv-2 {
    width: 100%;
    margin-bottom: 60px;
  }

  .sec-2-column__wrapper {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
  }

  .sec-2-column__heading-lv-3 {
    margin-bottom: 40px;
  }

  .sec-2-column__btn {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    margin-top: 60px;
  }

  .conversion-sec {
    padding: 50px 0 60px;
  }

  .conversion-sec__inner {
    max-width: none;
    padding: 0 15px;
    overflow: visible;
  }

  .conversion-sec__inner > p:nth-of-type(1) {
    margin-bottom: 20px;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .conversion-sec__inner > p:nth-of-type(2) {
    margin-bottom: 30px;
  }

  .conversion-sec__inner > ul {
    margin-right: 0;
  }

  .conversion-sec__inner > ul > li {
    width: 100%;
    margin-right: 0;
    padding: 20px;
  }

  .conversion-sec__inner > ul > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .reason-list__content > span {
    font-size: 50px;
    font-size: 3.125rem;
  }

  .reason-list__content > p:nth-of-type(1) {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .reason-list__heading {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .function-list > ul > li {
    width: calc(50% - 40px);
  }

  .function-list > ul > li:nth-child(n+3) {
    margin-top: 40px;
  }

  .related-service-list__item {
    width: calc(50% - 40px);
  }

  .related-service-list__item:nth-child(n+3) {
    margin-top: 40px;
  }

  .price-list__trial__attention {
    padding-top: 20px;
    font-size: 16px !important;
  }

  .price-list__trial__attention::before,
  .price-list__trial__attention::after {
    content: "";
    width: 2px;
    height: 15px;
    background-color: #e60023;
  }

  .price-list__content__acount {
    font-size: 16px;
    font-size: 1rem;
  }

  .price-list__content__bold {
    font-size: 2.25rem;
  }

  .price-list__content > p > span:nth-of-type(2) {
    font-size: 2.25rem;
    width: 8%;
  }

  .price-list__content__triangl::before {
    left: 35%;
  }

  .price-list__item:nth-of-type(1) {
    margin-top: 58px;
  }

  .download-list > ul > li {
    width: calc(50% - 40px);
  }

  .download-list > ul > li:nth-child(n+3) {
    margin-top: 40px;
  }

  .demo-list > ul > li {
    width: calc(50% - 40px);
  }

  .demo-list > ul > li:nth-child(n+3) {
    margin-top: 40px;
  }

  .pagination > li {
    margin: 3px;
    cursor: pointer;
  }

  .pagination a {
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .index-page .kv__content > h1 > span:nth-of-type(2) > span,
  .index-page .kv__content > h1 > span:nth-of-type(3) > span {
    font-size: 45px;
    font-size: 2.8125rem;
  }

  .index-page .kv__image {
    -webkit-transform: translate(10%, -45%);
    -ms-transform: translate(10%, -45%);
    transform: translate(10%, -45%);
    width: 60%;
  }

  html.is-menu-open .index-page .page-header {
    border-bottom-color: #cccccc;
    background-color: #ffffff;
  }

  .download-page .content__local-nav > ul > li {
    width: calc(50% - 40px);
  }

  .download-page .content__local-nav > ul > li:nth-child(n+3) {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .only-medium-up {
    display: none !important;
  }

  .page-footer-banner {
    padding: 40px 0;
  }

  .page-footer-banner > div {
    max-width: none;
    padding: 0 15px;
  }

  .page-footer-banner > div > p {
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .page-footer-banner > div > p > span {
    margin-bottom: 6px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .page-footer-banner > div > ul {
    margin-right: -15px;
  }

  .page-footer-banner > div > ul > li {
    width: calc(50% - 15px);
    margin-right: 15px;
  }

  .page-footer-banner > div > ul > li > a > img {
    margin-bottom: 3px;
  }

  .page-footer-banner > div > ul > li:nth-child(n+3) {
    margin-top: 15px;
  }

  .sec {
    padding: 80px 0;
  }

  .sec__inner {
    max-width: none;
    padding: 0 15px;
  }

  .sec__heading-lv-2 {
    margin-bottom: 60px;
  }

  .sec__btn {
    width: 100%;
    margin: 60px auto 0;
  }

  .conversion-sec__content-order > p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }

  .conversion-sec__content-tel > p {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
  }

  .conversion-sec__content-tel > div > div > p:nth-of-type(1) {
    margin-bottom: 4px;
    padding-left: 32px;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .conversion-sec__content-tel > div > div > p:nth-of-type(1) > svg {
    width: 24px;
    height: 24px;
  }

  .article-meta {
    width: 230px;
  }

  .article-meta > time {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .article-meta > div {
    width: 130px;
    height: 24px;
    font-size: 11px;
    font-size: 0.6875rem;
    line-height: 24px;
  }

  .reason-list__item:not(:first-child) {
    margin-top: 0;
  }

  .reason-list__item:not(:last-child) {
    margin-bottom: 60px;
  }

  .reason-list__image {
    width: 100%;
    margin-bottom: 40px;
  }

  .reason-list__image--odd {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }

  .reason-list__content {
    width: 100%;
    padding: 0 15px 0 15px;
  }

  .reason-list__content > span {
    margin-bottom: 20px;
    padding-bottom: 8px;
    font-size: 40px;
    font-size: 2.5rem;
  }

  .reason-list__content > span::before {
    height: 3px;
  }

  .reason-list__content > p:nth-of-type(1) {
    margin-bottom: 4px;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .reason-list__heading {
    margin-bottom: 20px;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .function-intro__image {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    width: 100%;
    margin-bottom: 40px;
  }

  .function-intro__content {
    width: 100%;
  }

  .function-intro__content > p {
    margin-bottom: 30px;
  }

  .function-intro__heading {
    margin-bottom: 30px;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .function-local-nav > li:not(:last-child) {
    margin-bottom: 15px;
  }

  .function-cat-list__item:not(:last-child) {
    margin-bottom: 120px;
  }

  .function-cat-list__header {
    margin-bottom: 40px;
  }

  .function-cat-list__header::before {
    top: auto;
    bottom: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    width: 100%;
    height: 80%;
  }

  .function-cat-list__header-image {
    width: 90%;
    padding-left: 10%;
  }

  .function-cat-list__header-image--odd {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    padding-right: 10%;
    padding-left: 0;
  }

  .function-cat-list__header-content {
    width: 100%;
    padding: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .function-cat-list__header-content > div {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .function-cat-list__header-content > div > span {
    margin-right: 4px;
    font-size: 11px;
    font-size: 0.6875rem;
  }

  .function-cat-list__header-content > p:nth-of-type(1) {
    margin-bottom: 30px;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .function-cat-list__heading {
    margin-bottom: 30px;
    padding-bottom: 30px;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .function-cat-list__heading::before {
    width: 40px;
  }

  .function-cat-list__number {
    right: auto;
    left: 0;
    -webkit-transform: translate(0, -65%);
    -ms-transform: translate(0, -65%);
    transform: translate(0, -65%);
    font-size: 100px;
    font-size: 6.25rem;
  }

  .function-cat-list__number--odd {
    right: 0;
    left: auto;
  }

  .function-cat-list__inner {
    max-width: none;
    padding: 0 15px;
  }

  .function-list > ul {
    margin: 0;
  }

  .function-list > ul > li {
    width: 100%;
    margin: 0;
    padding-bottom: 25px;
    -webkit-box-shadow: 8px 8px 0 0px #dddddd;
    box-shadow: 8px 8px 0 0px #dddddd;
  }

  .function-list > ul > li:nth-child(n+3) {
    margin-top: 0;
  }

  .function-list > ul > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .function-list > ul > li > figure {
    margin-bottom: 25px;
  }

  .function-list > ul > li > p {
    margin: 0 25px 25px;
  }

  .function-list__heading {
    margin: 0 25px 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .function-list__tag-list {
    margin: 0 25px;
  }

  .function-plus-content {
    margin-top: 80px;
    padding: 25px;
  }

  .function-plus-content::before {
    top: -55px;
    height: 30px;
  }

  .function-plus-content::after {
    top: -41px;
    width: 30px;
  }

  .function-plus-content__heading {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .function-plus-content__btn {
    max-width: none;
    margin-top: 25px;
  }

  .function-plus-content__link {
    margin-top: 15px;
  }

  .function-plus-content > figure {
    width: 100%;
    margin-bottom: 25px;
    padding-right: 0;
  }

  .function-plus-content > div {
    width: 100%;
  }

  .related-service-list {
    overflow: visible;
  }

  .related-service-list > ul {
    margin-right: 0;
  }

  .related-service-list__item {
    width: 100%;
    margin-right: 0;
  }

  .related-service-list__item:nth-child(n+3) {
    margin-top: 0;
  }

  .related-service-list__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .related-service-list__item > a {
    padding: 25px 0 25px;
  }

  .related-service-list__item > a > figure {
    width: 40px;
    margin: 0 0 25px 25px;
  }

  .related-service-list__item > a > p {
    margin: 0 25px 25px;
  }

  .related-service-list__heading {
    margin: 0 25px 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .related-service-list__tag-list {
    margin: 0 25px;
  }

  .flow-list {
    overflow: visible;
  }

  .flow-list > ul {
    margin-right: 0;
  }

  .flow-list > ul > li {
    width: 100%;
    margin-right: 0;
    padding: 20px;
  }

  .flow-list > ul > li > span {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .flow-list > ul > li > figure {
    margin: 0 auto 15px;
    width: 80px;
  }

  .flow-list > ul > li > p:nth-of-type(1) {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .flow-list > ul > li:not(:last-child) {
    margin-bottom: 60px;
  }

  .flow-list > ul > li:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -44px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-width: 21px 17px 0 17px;
    border-color: #e60023 transparent transparent transparent;
  }

  .price-list__main {
    max-width: none;
  }

  .price-list__item {
    width: 100%;
  }

  .price-list__heading {
    padding: 20px 0;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .price-list__trial__attention {
    padding-top: 20px;
    font-size: 16px !important;
  }

  .price-list__trial__attention::before,
  .price-list__trial__attention::after {
    content: "";
    width: 2px;
    height: 15px;
    background-color: #e60023;
  }

  .price-list__content {
    padding: 20px;
  }

  .price-list__content > p {
    margin-bottom: 20px;
  }

  .price-list__content > p > span:nth-of-type(1) {
    margin-bottom: 6px;
  }

  .price-list__content > p > span:nth-of-type(2) {
    font-size: 36px;
    font-size: 2.25rem;
  }

  .price-list__content > dl {
    padding: 15px 0;
  }

  .price-list__content > dl > dt {
    width: 100%;
  }

  .price-list__content > dl > dt:not(:last-of-type) {
    margin-bottom: 0;
  }

  .price-list__content > dl > dd {
    width: 100%;
  }

  .price-list__content > dl > dd:not(:last-of-type) {
    margin-bottom: 0;
  }

  .price-list__content > dl > dd:not(:last-child) {
    margin-bottom: 10px;
  }

  .price-list__content__triangl::before {
    content: none;
  }

  .price-list__content__acount {
    font-size: 16px;
    font-size: 1rem;
  }

  .price-list__option {
    max-width: none;
    margin: 60px auto 0;
  }

  .price-list__option::before {
    top: -45px;
    height: 30px;
  }

  .price-list__option::after {
    top: -31px;
    width: 30px;
  }

  .price-list__option > dt {
    padding: 15px 0;
    font-size: 16px;
    font-size: 1rem;
  }

  .price-list__option > dd {
    padding: 20px;
  }

  .price-list__item:nth-of-type(1) {
    margin-top: 0;
  }

  .faq-list > li {
    padding: 20px;
  }

  .faq-list > li > div > div {
    padding-top: 20px;
  }

  .faq-list > li > div > div > p {
    padding: 15px;
  }

  .faq-list > li:not(:last-child) {
    margin-bottom: 20px;
  }

  .faq-list__heading {
    padding: 0 25px 0 40px;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .faq-list__heading > span {
    width: 25px;
    height: 25px;
  }

  .faq-list__heading > span > span {
    font-size: 14px;
    font-size: 0.875rem;
  }

  .news-list > li > a,
  .news-list > li > .blank-block {
    padding: 25px 0;
  }

  .news-list > li > a > p,
  .news-list > li > .blank-block > p {
    width: 100%;
    margin-top: 15px;
  }

  .column-list > li > a {
    padding: 30px 0;
  }

  .column-list > li > a > figure {
    width: 100%;
    margin-bottom: 25px;
    padding-right: 0;
  }

  .column-list > li > a > div {
    width: 100%;
  }

  .column-list__heading {
    margin: 20px 0;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .download-list {
    overflow: visible;
  }

  .download-list > ul {
    margin-right: 0;
  }

  .download-list > ul > li {
    width: 100%;
    margin-right: 0;
    padding-bottom: 25px;
  }

  .download-list > ul > li:nth-child(n+3) {
    margin-top: 0;
  }

  .download-list > ul > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .download-list > ul > li > p {
    margin: 0 25px 25px;
  }

  .download-list__heading {
    margin: 25px 25px 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .download-list__btn {
    margin: 0 25px;
  }

  .download-list-large > li {
    padding: 30px 0;
  }

  .download-list-large > li > figure {
    width: 100%;
    margin-bottom: 25px;
    padding-right: 0;
  }

  .download-list-large > li > div {
    width: 100%;
  }

  .download-list-large__heading {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .download-list-large__btn {
    max-width: none;
    margin-top: 25px;
  }

  .demo-list > ul {
    margin: 0;
  }

  .demo-list > ul > li {
    width: 100%;
    margin: 0;
  }

  .demo-list > ul > li:nth-child(n+3) {
    margin-top: 0;
  }

  .demo-list > ul > li:not(:last-child) {
    margin-bottom: 30px;
  }

  .demo-list > ul > li > a {
    padding-bottom: 20px;
    -webkit-box-shadow: 8px 8px 0 0px #dddddd;
    box-shadow: 8px 8px 0 0px #dddddd;
  }

  .demo-list > ul > li > a > figure {
    margin-bottom: 20px;
  }

  .demo-list__heading {
    margin: 0 20px;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .article {
    padding: 80px 0;
  }

  .article__inner {
    max-width: none;
    padding: 0 15px;
  }

  .article__header {
    margin-bottom: 60px;
  }

  .article__lead {
    margin-bottom: 60px;
  }

  .article__lead > p:not(:last-child) {
    margin-bottom: 15px;
  }

  .article__lead--small {
    margin: 0 auto 40px;
    max-width: none;
  }

  .article__lead-copy {
    font-size: 18px;
    font-size: 1.125rem;
  }

  .article__client-info {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 60px;
    padding: 25px 20px;
  }

  .article__client-info > figure {
    width: 60%;
    margin-bottom: 20px;
  }

  .article__client-info > div {
    width: 100%;
  }

  .article__client-info > div > dl > dt {
    width: 100%;
  }

  .article__client-info > div > dl > dt:not(:last-of-type) {
    margin-bottom: 0;
  }

  .article__client-info > div > dl > dd {
    width: 100%;
  }

  .article__client-info > div > dl > dd:not(:last-of-type) {
    margin-bottom: 0;
  }

  .article__client-info > div > dl > dd:not(:last-child) {
    margin-bottom: 10px;
  }

  .article__client-info > div > dl:not(:last-child) {
    margin-bottom: 15px;
  }

  .article__content {
    max-width: none;
  }

  .article__content > div > p:not(:last-child),
  .article__content > div > ul:not(:last-child) {
    margin-bottom: 15px;
  }

  .article__content > div > dl:not(:last-child) {
    margin-bottom: 15px;
  }

  .article__content > div:not(:last-child) {
    margin-bottom: 40px;
  }

  .article__heading {
    margin-top: 8px;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .article__heading-lv-2 {
    margin-bottom: 15px;
    padding-left: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .article__heading-lv-2::before {
    width: 3px;
  }

  .article__heading-lv-3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-size: 1rem;
  }

  .article__heading-lv-4 {
    margin-bottom: 15px;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .article__caption {
    font-size: 12px;
    font-size: 0.75rem;
  }

  .tag-list > ul {
    margin: -5px;
  }

  .tag-list__item {
    margin: 5px;
    padding: 6px 15px;
    font-size: 11px;
    font-size: 0.6875rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .breadcrumb > ul {
    font-size: 11px;
    font-size: 0.6875rem;
  }

  .breadcrumb > ul > li:not(:last-child) {
    margin-right: 10px;
  }

  .breadcrumb > ul > li:not(:last-child)::after {
    margin-left: 10px;
  }

  .heading {
    padding-bottom: 25px;
    font-size: 28px;
    font-size: 1.75rem;
  }

  .heading::before {
    width: 40px;
    height: 3px;
  }

  .heading-lv-2 {
    padding: 3px 0 3px 20px;
    font-size: 26px;
    font-size: 1.625rem;
  }

  .heading-lv-2::before {
    width: 3px;
  }

  .heading-lv-3 {
    padding-bottom: 15px;
    font-size: 22px;
    font-size: 1.375rem;
  }

  .heading-lv-3::before {
    width: 45px;
  }

  .heading-lv-4 {
    font-size: 16px;
    font-size: 1rem;
  }

  .btn {
    height: 50px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 48px;
  }

  .btn-conversion {
    padding-left: 15px;
  }

  .btn-conversion::before {
    right: 15px;
  }

  .btn-conversion--download {
    height: 60px;
    font-size: 16px;
    font-size: 1rem;
  }

  .btn-conversion--download > div {
    padding-left: 26px;
  }

  .btn-conversion--download > div > svg {
    width: 18px;
    height: 18px;
  }

  .btn-conversion--order {
    height: 60px;
    font-size: 16px;
    font-size: 1rem;
  }

  .btn-conversion--order > div {
    padding-left: 26px;
  }

  .btn-conversion--order > div > svg {
    width: 18px;
    height: 18px;
  }

  .btn-conversion--download-small {
    height: 50px;
    font-size: 14px;
    font-size: 0.875rem;
  }

  .btn-conversion--download-small > div {
    padding-left: 24px;
  }

  .btn-conversion--download-small > div > svg {
    width: 16px;
    height: 16px;
  }

  .btn-local-nav {
    height: 50px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 48px;
  }

  .btn-local-nav::before {
    right: 15px;
  }

  .btn-local-nav--function > span {
    margin-right: 4px;
  }

  .back-btn {
    width: 100%;
    height: 50px;
    margin: 60px auto 0;
    border-radius: 25px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 48px;
  }

  .btn--arrow:before {
    right: 6em;
    width: 8px;
    height: 8px;
  }

  .index-page .kv__inner {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-width: none;
    padding: 0 15px;
  }

  .index-page .kv__content {
    width: 100%;
    padding-bottom: 20px;
  }

  .index-page .kv__content > h1 > span:nth-of-type(1) {
    margin-bottom: 15px;
    font-size: 18px;
    font-size: 1.125rem;
  }

  .index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(1)::before,
  .index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(2)::before,
  .index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(3)::before,
  .index-page .kv__content > h1 > span:nth-of-type(1) > span:nth-of-type(4)::before {
    width: 4px;
    height: 4px;
  }

  .index-page .kv__content > h1 > span:nth-of-type(2) > span,
  .index-page .kv__content > h1 > span:nth-of-type(3) > span {
    padding: 3px 6px 7px;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .index-page .kv__content > h1 > span:nth-of-type(2) {
    margin-bottom: 10px;
  }

  .index-page .kv__content > h1 > span:nth-of-type(3) {
    margin-bottom: 25px;
  }

  .index-page .kv__content > p {
    margin-bottom: 25px;
  }

  .index-page .kv__image {
    top: 2%;
    -webkit-transform: translate(6%, 0);
    -ms-transform: translate(6%, 0);
    transform: translate(6%, 0);
    width: 75%;
  }

  .index-page .kv__btn {
    width: auto;
  }

  .index-page .intro-content > h2 {
    margin-bottom: 40px;
    font-size: 30px;
    font-size: 1.875rem;
  }

  .index-page .intro-content > h2 > span {
    margin-bottom: 4px;
    font-size: 20px;
    font-size: 1.25rem;
  }

  .index-page .intro-content > p {
    margin: 0 auto 40px;
    max-width: none;
  }

  .index-page .intro-content > figure {
    width: 100%;
  }

  .index-page .main-function-content__intro {
    max-width: none;
    margin: 0 auto 120px;
    padding: 0 15px;
  }

  .contact-page .content {
    max-width: none;
    padding: 0 0;
  }

  .contact-page .content > iframe {
    height: 1800px;
  }

  .contact-thanks-page .content > h1 {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .contact-thanks-page .content > div {
    max-width: none;
  }

  .contact-thanks-page .content > div > p:nth-of-type(1) {
    margin-bottom: 15px;
  }

  .contact-thanks-page .content > div > p:nth-of-type(2) {
    margin-bottom: 30px;
  }

  .contact-thanks-page .content > div > p:nth-of-type(2) > a {
    font-size: 22px;
    font-size: 1.375rem;
  }

  .demo-page .content__heading-lv-3 {
    margin-bottom: 40px;
  }

  .demo-page .content__heading-lv-4 {
    margin-bottom: 30px;
  }

  .demo-page .content__list:not(:last-child) {
    margin-bottom: 40px;
  }

  .demo-page .content > section:not(:last-child) {
    margin-bottom: 60px;
  }

  .download-page .content__local-nav {
    margin-bottom: 60px;
    overflow: visible;
  }

  .download-page .content__local-nav > ul {
    margin-right: 0;
  }

  .download-page .content__local-nav > ul > li {
    width: 100%;
    margin-right: 0;
  }

  .download-page .content__local-nav > ul > li:nth-child(n+3) {
    margin-top: 0;
  }

  .download-page .content__local-nav > ul > li:not(:last-child) {
    margin-bottom: 15px;
  }

  .download-page .content__heading {
    margin-bottom: 40px;
  }

  .download-page .content > section:not(:last-child) {
    margin-bottom: 60px;
  }

  .download-thanks-page .content > h1 {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .download-thanks-page .content > div {
    max-width: none;
  }

  .error-page .content > h1 {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }

  .error-page .content > div {
    max-width: none;
  }

  .feature-page .reason-content__other {
    max-width: none;
    padding: 0 15px;
    margin-top: 60px;
  }

  .feature-page .reason-content__other-heading {
    margin-bottom: 40px;
  }

  .function-page .main-function-content__intro {
    max-width: none;
    margin: 0 auto 120px;
    padding: 0 15px;
  }

  .function-page .function-detail-list {
    display: block;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #e60023;
  }

  .function-page .function-detail-list > tbody {
    display: block;
    width: 100%;
  }

  .function-page .function-detail-list > tbody > tr {
    display: block;
    width: 100%;
  }

  .function-page .function-detail-list__heading {
    display: block;
    width: 100%;
    padding: 20px 15px;
    border-bottom: none;
  }

  .function-page .function-detail-list__heading--bottom {
    border-bottom: none;
  }

  .function-page .function-detail-list__heading-lv-2 {
    display: block;
    width: 100%;
    padding: 20px 0 15px;
    border-bottom: none;
    background-color: transparent;
  }

  .function-page .function-detail-list__heading-lv-2--bottom {
    border-bottom: none;
  }

  .function-page .function-detail-list__content {
    display: block;
    width: 100%;
    padding: 0 0 20px;
    background-color: transparent;
  }

  .function-page .function-detail-list__content--bottom {
    border-bottom: none;
  }

  .security-page .content__heading {
    margin-bottom: 40px;
  }

  .security-page .content > div:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .security-page .content > div:nth-of-type(1) > h2 {
    margin-bottom: 60px;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0;
  }

  .security-page .content > div:nth-of-type(1) > p:not(:last-child) {
    margin-bottom: 15px;
  }

  .security-page .content > div:nth-of-type(2) {
    margin-bottom: 60px;
  }
}

@media (max-width: 1000px) and (min-width: 769px) {
  .page-header-nav-main > li > a::before {
    -webkit-transition: border-top-color 0.2s, border-right-color 0.2s;
    transition: border-top-color 0.2s, border-right-color 0.2s;
  }

  .page-header-nav-main > li > a:hover::before {
    border-top-color: #e60023;
    border-right-color: #e60023;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}