@charset "UTF-8";
/*---------------------------
/setting/size参照
---------------------------*/
/* min-width
-------------------------------------------------------------------------- */
/* max-width
-------------------------------------------------------------------------- */
/*黒：font*/
/*グレー：font*/
/*濃紺：font*/
/*鮮やかな青：ベース*/
/*鮮やかな青：ベース*/
/*bg：背景*/
/*bg：背景*/
/*bg：背景*/
/*グラデーション*/
/* ja
-------------------------------------------------------------------------- */
/* en
-------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@3.3.1/dist/css/yakuhanjp.min.css");
#space {
  height: 1300px;
  background-color: blanchedalmond;
}

/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 250ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  transform: translate(0, 50px);
}

.fadeIn-down {
  transform: translate(0, -80px);
}

.fadeIn-left {
  transform: translate(-50px, 0);
}

.fadeIn-right {
  transform: translate(50px, 0);
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  transform: translate(0, 80px);
  opacity: 1;
}

.slideIn-down {
  transform: translate(0, -80px);
  opacity: 1;
}

.slideIn-left {
  transform: translate(-80px, 0);
  opacity: 1;
}

.slideIn-right {
  transform: translate(80px, 0);
  opacity: 1;
}

.scroll-in {
  transform: translate(0);
  opacity: 1;
}

.is-fadein-active {
  visibility: visible !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  line-height: 1.15; /* 1 */
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
  overflow: hidden;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  margin: 0;
  clear: both;
  overflow: visible; /* 2 */
  border-top-width: 1px;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-size: inherit; /* 2 */
  font-family: monospace, monospace; /* 1 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: middle;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit; /* 2 */
  vertical-align: middle;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

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

* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: auto;
}

body {
  -webkit-font-smoothing: antialiased;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}
body.u-scroll-stop {
  overflow: hidden;
}

a {
  outline: none;
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
}

em {
  font-style: initial;
}

/*各html要素*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

main {
  padding-top: 12rem;
}

.l-container--p0, .l-container {
  width: 1540px;
  max-width: 100%;
  margin: 0 auto;
}

.l-container {
  padding: 0 4rem;
}
.l-container--p0 {
  padding: 0 0 2.0833333333vw;
}
.l-container--s {
  width: 1190px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.l-container.l-container-servicelist {
  padding-top: 0 !important;
}

.l_footer {
  z-index: 99;
  bottom: 0;
  width: 100%;
  background: #fff;
  transition: 0.5s;
}

.l-header {
  z-index: 99;
  position: fixed;
  top: 0;
  width: 100%;
  height: 12rem;
  background: #fff;
  transition: 0.5s;
}

.c-arrow--center-bottom {
  width: 0;
  height: 0;
  margin: 4rem auto 0;
  border-width: 7rem 10rem 0 10rem;
  border-style: solid;
  border-color: #ccc transparent transparent transparent;
}

.c-consultation-bnr {
  padding: 0 5%;
  text-align: center;
}

.c-breadcrumb {
  display: flex;
  position: absolute;
  bottom: 1rem;
  justify-content: flex-start;
  margin-left: 2rem;
}
.c-breadcrumb li {
  display: flex;
  margin-top: 1rem;
  font-size: 1.4rem;
}
.c-breadcrumb li::after {
  display: flex;
  margin: 0 1rem;
  content: "｜";
}
.c-breadcrumb li a {
  padding-bottom: 0.5rem;
  color: #333;
}
.c-breadcrumb li:last-child::after {
  content: none;
}

.c-btn__double {
  display: flex;
  gap: 1.5rem;
}
.c-btn__double li a {
  width: 19rem;
  font-size: clamp(13px, 0.78vw, 15px);
}
.c-btn__double li a.c-btn--white {
  width: 23rem!important;
}
.c-btn--white {
  display: inline-block;
  position: relative;
  padding: 20px 0;
  border: 2px solid #49A0C8;
  border-radius: 50px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  color: #637CCF;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.c-btn--white img {
  margin-right: 0.6rem;
}
.c-btn--white span {
  position: relative;
}
.c-btn--white:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: #fff;
  content: "";
  transition: all 0.3s ease-out;
}
.c-btn--white:hover {
  color: #fff;
  opacity: 1;
}
.c-btn--white:hover::before {
  opacity: 0;
}
.c-btn--white.u-selected {
  display: inline-block;
  position: relative;
  padding: 20px 0;
  border: 2px solid #49A0C8;
  border-radius: 50px;
  outline-offset: -2px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.c-btn--white.u-selected img {
  margin-right: 0.6rem;
}
.c-btn--white.u-selected span {
  position: relative;
}
.c-btn--white.u-selected:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  content: "";
  transition: all 0.3s ease-out;
}
.c-btn--white.u-selected:hover {
  color: #637CCF;
  opacity: 1;
}
.c-btn--white.u-selected:hover::before {
  opacity: 0;
}
.c-btn--grad {
  display: inline-block;
  position: relative;
  padding: 20px 0;
  border: 2px solid #49A0C8;
  border-radius: 50px;
  outline-offset: -2px;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.c-btn--grad img {
  margin-right: 0.6rem;
}
.c-btn--grad span {
  position: relative;
}
.c-btn--grad:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  content: "";
  transition: all 0.3s ease-out;
}
.c-btn--grad:hover,
.c-btn--grad:hover button span {
  color: #637CCF;
  opacity: 1;
}
.c-btn--grad:hover::before {
  opacity: 0;
}
.c-btn--line {
  display: inline-flex;
  position: relative;
  align-items: center;
  padding: 0 1rem 2rem;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  white-space: nowrap;
}
.c-btn--line::before {
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(90deg, #637CCF 65%, #d1d4db 65%);
  background-position: right bottom;
  background-size: 200% 2px;
  content: "";
  transition: 0.3s;
}
.c-btn--line:hover {
  opacity: 1;
}
.c-btn--line:hover::before {
  background-position: left bottom;
}
.c-btn--line img {
  position: relative;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 0 0 5rem !important;
}
.c-btn--request,
.c-btn--request span {
  width: 19rem;
  font-size: clamp(13px, 0.78vw, 15px)!important;
  padding: 0;
}
.c-btn--white.c-btn--request,
.c-btn--white.c-btn--request span {
  color: #637CCF;
}
.c-btn--request button {
  position: relative;
  width: 100%;
  padding: 20px 0;
}
.c-btn--request button span {
  position: relative;
  padding-left: 20px;
}
.c-btn--white.c-btn--request button:hover span {
  color: #fff;
}
.c-btn--request button:hover span::before {
  filter: brightness(0) saturate(100%) invert(51%) sepia(28%) saturate(1007%) hue-rotate(189deg) brightness(90%) contrast(85%);
}
.c-btn--white.c-btn--request button span::before {
  filter: brightness(0) saturate(100%) invert(51%) sepia(28%) saturate(1007%) hue-rotate(189deg) brightness(90%) contrast(85%);
}
.c-btn--white.c-btn--request button:hover span::before {
  filter: none;
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

.c-category--white {
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 1px solid #49A0C8;
  border-radius: 50px;
  background-color: #fff;
  color: #637CCF;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
}
.c-category--grad {
  display: inline-block;
  width: 8.6rem;
  padding: 0.1rem 0;
  border-radius: 50px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.c-list--disc li {
  padding-left: 1em;
  line-height: 1.6;
  text-indent: -1em;
}
.c-list--disc li::before {
  padding-right: 1rem;
  content: "・";
}
.c-list--disc li + li {
  margin-top: 0.5em;
}
.c-list--indent li {
  padding-left: 2em;
  font-size: clamp(13px, 0.78vw, 15px);
  text-indent: -2em;
}
.c-list--indent li + li {
  margin-top: 0.5em;
}

.c-page-top {
  display: block;
  z-index: 50;
  position: fixed;
  right: 5rem;
  bottom: 9rem;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
}
.c-page-top:hover {
  opacity: 0.7;
}
.c-page-top__inner {
  font-family: "Oswald", sans-serif;
  text-decoration: none;
  transition: 0.3s all;
}
.c-page-top__inner img {
  margin-left: 1.5rem;
}

.c-section-title--en {
  color: #637CCF;
  font-weight: 400;
  font-size: 12rem;
  line-height: 1.48;
  font-family: "Oswald", sans-serif;
}
.c-section-title--ja {
  color: #4A536E;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.46;
}

.c-text {
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.875;
}

.c-title--ja {
  color: #4A536E;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.4;
}
.c-title--en {
  color: #637CCF;
  font-weight: 400;
  font-size: 6rem;
  font-family: "Oswald", sans-serif;
}

.c-under-mv {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  height: 35rem;
  text-align: center;
}
.c-under-mv::before {
  z-index: 0;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.c-under-mv__en {
  color: #efefef;
  font-size: 9rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.c-under-mv__en.small {
  font-size: 8rem;
}
.c-under-mv__title {
  margin-top: 1rem;
  color: #4A536E;
  font-size: 2.8rem;
  line-height: 1.4;
}
.c-under-mv__title span {
  font-weight: 700;
  font-size: 1.6rem;
}
.c-under-mv__text {
  margin-top: 1rem;
  color: #4A536E;
  font-weight: 700;
  font-size: 2rem;
}
.c-under-mv.contact {
  height: 20rem;
}

.p-about {
  position: relative;
  padding: 20rem 0 23rem;
  background-color: #F2F2F2;
}
.p-about::before {
  position: absolute;
  top: -17rem;
  left: -9rem;
  width: 43%;
  height: 46%;
  background-image: url(../img/feature/deco_01.png);
  background-repeat: no-repeat;
  content: "";
}
.p-about__wrap {
  text-align: center;
}
.p-about__img {
  z-index: 10;
  position: relative;
  width: 90%;
  margin: 0 auto;
  border-radius: 15px;
}
.p-about__textbox {
  position: relative;
  width: 50%;
  margin-top: 16rem;
  padding: 9rem 12rem;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  text-align: left;
}
.p-about__textbox::after {
  display: block;
  position: absolute;
  top: -14%;
  left: 94%;
  aspect-ratio: 20/17;
  width: 100%;
  height: auto;
  border-radius: 15px;
  background-image: url(../img/feature/about.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-about__title {
  margin-bottom: 5rem;
  color: #333;
  font-weight: 700;
  font-size: 2.2rem;
}

.p-casestudy {
  padding: 12rem 0 18rem;
  background-color: #F7F7F7;
}
.p-casestudy__wrap ul {
  justify-content: center;
}
.p-casestudy__text {
  color: #4A536E;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
.p-casestudy__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 12rem;
  gap: 2.8rem;
}
.p-casestudy__item {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 23.25%;
  margin-bottom: 4rem;
  border-radius: 15px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}
.p-casestudy__item-category {
  position: absolute;
  width: 37.9%;
  padding: 0.7rem 0;
  border: 1px solid #49A0C8;
  border-radius: 15px 0 15px 0;
  background-color: #fff;
  color: #637CCF;
  font-weight: 700;
  text-align: center;
}
.p-casestudy__item img {
  border-radius: 15px 15px 0 0;
}
.p-casestudy__item-textbox {
  height: 100%;
  padding: 3rem;
  border-radius: 0 0 15px 15px;
  background-color: #fff;
}
.p-casestudy__item-titlewrap {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #7e7e7e;
}
.p-casestudy__item-titlewrap img {
  width: 2rem !important;
  margin-left: 1rem;
  border-radius: 0;
}
.p-casestudy__item-title {
  color: #333;
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 1.45;
}
.p-casestudy__item-text {
  color: #333;
  font-weight: 500;
  line-height: 1.75;
}

.p-column {
  margin: 23rem 0;
}
.p-column__swiper-container {
  width: 100%;
  overflow: hidden;
}
.p-column__swiper {
  position: relative;
  width: 100%;
  margin-top: 7rem;
  overflow: visible;
}
.p-column__swiper-item {
  width: 23.5%;
  transition: 0.3s;
}
.p-column__swiper-item__category-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-column__swiper-item__category-wrap img {
  width: 2rem !important;
  height: 2rem !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.p-column__swiper-item__text {
  font-weight: 700;
}
.p-column__swiper-item img {
  -o-object-fit: cover;
  aspect-ratio: 353/266;
  margin-bottom: 3rem;
     object-fit: cover;
  border-radius: 15px;
}
.p-column__btn {
  text-align: right;
}

.p-column__swiper .swiper-button-prev {
  top: -5rem;
  right: 7.5rem;
  left: auto;
}
.p-column__swiper .swiper-button-prev::after {
  position: absolute;
  background-image: url(../img/common/arrow_b_l.svg);
}
.p-column__swiper .swiper-button-prev:hover:after {
  background-image: url(../img/common/arrow_bl_l.svg);
}

.p-column__swiper .swiper-button-next {
  top: -5rem;
  right: 0;
}
.p-column__swiper .swiper-button-next::after {
  background-image: url(../img/common/arrow_b_r.svg);
}
.p-column__swiper .swiper-button-next:hover:after {
  background-image: url(../img/common/arrow_bl_r.svg);
}

.p-company {
  position: relative;
  padding: 23rem 0;
}
.p-company::after {
  z-index: -1;
  position: absolute;
  top: 17rem;
  left: -34rem;
  transform: rotate(90deg);
  content: "About us";
  color: #F2F2F2;
  font-size: 30rem;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
}
.p-company__wrap {
  display: flex;
  z-index: 10;
  position: relative;
  align-items: center;
  margin-bottom: 7rem;
}
.p-company__wrap img {
  -o-object-fit: cover;
  aspect-ratio: 765/519;
  width: 51%;
     object-fit: cover;
  border-radius: 15px;
}
.p-company__textbox {
  margin-left: 6rem;
}
.p-company__title {
  margin-bottom: 4rem;
  color: #4A536E;
  font-weight: 700;
  font-size: 5rem;
}
.p-company__btn a img {
  max-width: 1.8rem;
}
.p-company .p-achievement__wrap {
  z-index: 10;
  position: relative;
  padding: 4rem 7rem 5rem;
  border-radius: 15px;
  background-color: #F2F2F2;
  text-align: center;
}
.p-company .p-achievement__title {
  margin-bottom: 4rem;
  color: #333;
  font-weight: 700;
  font-size: 2.4rem;
}
.p-company .p-achievement__items {
  display: flex;
  justify-content: space-between;
}
.p-company .p-achievement__item {
  width: 33%;
  max-width: 30rem;
  margin-right: 5.5rem;
  padding: 1.5rem;
  border: 2px solid #49A0C8;
  border-radius: 15px;
  background-color: #fff;
  text-align: center;
}
.p-company .p-achievement__item:last-child {
  margin-right: 0;
}
.p-company .p-achievement__item-text {
  color: #637CCF;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
.p-company .p-achievement__item-text span {
  padding: 0 0.5rem;
  font-size: 4rem;
}

.p-consultation__theme {
  list-style-type: disc;
}
.p-consultation__outline {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #333;
}
.p-consultation__outline dt, .p-consultation__outline dd {
  padding: 2rem 0;
  border-bottom: 1px solid #333;
}
.p-consultation__outline dt {
  width: 15%;
}
.p-consultation__outline dd {
  width: 85%;
}

.p-contact {
  margin: 0 auto;
  padding: 10rem 0 1rem;
  background-color: #F7F7F7;
}
.p-contact__textbox {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}
.p-contact__title {
  color: #4A536E;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
}
.p-contact__text {
  display: inline-block;
  margin: 0 auto;
}
.p-contact__form:nth-child(1) {
  margin-bottom: 23rem;
}
.p-contact__form-title {
  margin-bottom: 6rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #637CCF;
  color: #637CCF;
  font-weight: 700;
  font-size: 3.6rem;
}
.p-contact__form-item {
  display: flex;
  margin-bottom: 3rem;
}
.p-contact__form-item__title {
  width: 22%;
  margin-top: 1.5rem;
  color: #333;
  font-weight: 500;
}
.p-contact__form-item__title.mt0 {
  margin-top: 0;
}
.p-contact__form-item__input input[type=radio] {
  margin-right: 0.7rem;
  margin-left: 1rem;
}
.p-contact__form-item__input input[type=radio]:checked {
  color: #333333;
}
.p-contact__form-item__input input[type=text],
.p-contact__form-item__input input[type=tel],
.p-contact__form-item__input textarea,
.p-contact__form-item__input select {
  width: 100%;
  margin-left: 1rem;
  padding: 1.5rem 2rem;
  border: 1px solid #A7A7A7;
  border-radius: 15px;
  background-color: #fff;
}
.p-contact__form-item__input input[type=text],
.p-contact__form-item__input input[type=tel],
.p-contact__form-item__input select {
  height: 6rem;
}
.p-contact__form-item__input textarea {
  height: 24rem;
}
.p-contact__form-item__input input[type=text]::-moz-placeholder, .p-contact__form-item__input input[type=tel]::-moz-placeholder, .p-contact__form-item__input textarea::-moz-placeholder {
  color: #e2e2e2;
}
.p-contact__form-item__input input[type=text]::placeholder,
.p-contact__form-item__input input[type=tel]::placeholder,
.p-contact__form-item__input textarea::placeholder {
  color: #e2e2e2;
}
.p-contact__form-item__input label {
  display: inline-flex;
  position: relative;
  align-items: center;
  width: 50%;
  margin-bottom: 1.5rem;
}
.p-contact__form-item__input label::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
  content: url(../img/contact/contact_arrow_gr.svg);
  pointer-events: none;
}
.p-contact__form-item__input label select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #333333;
  cursor: pointer;
}
.p-contact__form-item__input.--radio {
  margin-bottom: 3rem;
  color: #333;
  font-weight: 500;
  line-height: 2.3;
}
.p-contact__form-item__input.half {
  display: flex;
  justify-content: space-between;
  width: 78%;
}
.p-contact__form-item__input:not(.half) {
  width: 77%;
}
.p-contact__attention {
  margin-bottom: 18rem;
}
.p-contact__btn {
  text-align: center;
}
.p-contact__btn button a {
  position: relative;
  width: 30rem;
  margin: 0;
}
.p-contact__btn button a::before {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
  content: url(../img/contact/contact_arrow.svg);
}
.p-contact__pagelink {
  margin-top: 5rem;
  text-align: center;
}
.p-contact__pagelink a {
  width: 30rem;
}

.mktoForm {
  width: 100% !important;
  font-size: 1.6rem !important;
}

.mktoHtmlText {
  width: 100%;
}
.mktoHtmlText h3 {
  margin-bottom: 6rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #637CCF;
  color: #637CCF;
  font-weight: 700;
  font-size: 3.6rem;
}

.mktoForm .mktoFormCol {
  width: 100%;
  float: none;
}

.mktoForm .mktoFieldWrap {
  display: flex;
  align-items: baseline;
  width: 100% !important;
  margin-bottom: 1rem;
  float: none !important;
}

.mktoForm .mktoLabel {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 30% !important;
  float: none !important;
}

.mktoForm .mktoRadioList > label {
  width: 100% !important;
}

.mktoForm .mktoRadioList,
.mktoForm .mktoCheckboxList {
  width: 100% !important;
}

.mktoRadioList input {
  margin-top: 1rem;
}

.mktoForm .mktoLabel {
  font-weight: 500 !important;
}

#LblLastName .mktoAsterix {
  display: none;
}

#FirstName {
  width: 50%;
}

.mktoHtmlText {
  width: 100% !important;
}

.mktoHtmlText .policy-link {
  margin: 4rem 0 10rem;
}

.mktoForm button.mktoButton {
  display: inline-block;
  position: relative;
  left: 50%;
  width: 30rem;
  margin: 0 auto !important;
  padding: 20px 0;
  transform: translateX(-50%);
  border-radius: 50px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: 0.3s;
}
.mktoForm button.mktoButton:hover {
  opacity: 0.7;
}

.mktoButtonRow {
  width: 100%;
}

.mktoButtonWrap {
  margin: 0 auto !important;
}

input[type=radio] {
  margin-right: 0.7rem;
  margin-left: 1rem;
}

input[type=radio]:checked {
  color: #333333;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=url],
input[type=date],
input[type=number],
textarea,
select {
  width: 100% !important;
  height: 6rem;
  margin-left: 1rem;
  padding: 1.5rem 2rem !important;
  border: 1px solid #A7A7A7;
  border-radius: 15px;
  background-color: #fff;
}

textarea {
  height: 24rem;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #e2e2e2;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=date]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #e2e2e2;
}

label {
  display: inline-flex;
  position: relative;
  align-items: center;
  width: 50%;
  margin-bottom: 1.5rem;
}
label select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #333333;
  cursor: pointer;
}

input[type=radio] {
  margin-bottom: 3rem;
  color: #333;
  font-weight: 500;
  line-height: 2.3;
}

.p-download {
  padding: 26rem 0 6rem;
  background-color: #F7F7F7;
}
.p-download__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-download__item {
  position: relative;
  width: 31%;
  margin: 0 1rem 16rem;
  padding: 12rem 3rem 4rem;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
}
.p-download__item img {
  position: absolute;
  top: -14rem;
  left: 0;
}
.p-download__item-textbox {
  display: flex;
  flex-direction: column;
}
.p-download__item-titlewrap {
  display: flex;
  align-items: end;
  margin-bottom: 2.5rem;
}
.p-download__item-titlewrap img {
  position: relative;
  top: 0 !important;
  margin-left: 0.5rem;
  border-radius: 0;
}
.p-download__item-title {
  min-height: 10.5rem;
  color: #333;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.45;
}
.p-download__item-title span {
  font-size: 1.6rem;
}
.p-download__item-text {
  margin-top: auto;
  padding-top: 2.5rem;
  border-top: 1px solid #7e7e7e;
}

.p-embodiment {
  position: relative;
  margin-top: -10rem;
  padding: 0 0 23rem;
}
.p-embodiment__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-embodiment__title-wrap img {
  width: 38vw;
  margin: 0 calc(50% - 51vw);
}
.p-embodiment__title {
  margin-top: 22rem;
  margin-bottom: 5rem;
}
.p-embodiment__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 18rem;
}
.p-embodiment__item img {
  -o-object-fit: cover;
  aspect-ratio: 76/50;
  width: 50%;
  margin-right: 4rem;
     object-fit: cover;
  border-radius: 15px;
}
.p-embodiment__item__textbox {
  width: 50%;
}
.p-embodiment__item__title {
  margin-bottom: 3rem;
  color: #4A536E;
  font-weight: 700;
  font-size: 4rem;
}
.p-embodiment__item__text {
  line-height: 1.5;
}
.p-embodiment__item__text span {
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
}
.p-embodiment__item.reverse {
  flex-direction: row-reverse;
}
.p-embodiment__item.reverse img {
  margin-right: 0;
  margin-left: 4rem;
}

.p-faq {
  padding: 12rem 0 16rem;
  background-color: #F2F2F2;
}
.p-faq__wrap {
  text-align: center;
}
.p-faq-list {
  margin-bottom: 4rem;
  border-radius: 15px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
  color: #333;
  font-weight: 500;
  text-align: left;
}
.p-faq-list dt {
  display: flex;
  position: relative;
  align-items: center;
  padding: 2rem 6rem 2.5rem 4rem;
  border-radius: 15px;
  background-color: #fff;
  font-weight: 500;
  transition: 0.3s;
}
.p-faq-list dt i {
  margin-right: 2.4rem;
  color: #637CCF;
  font-style: normal;
  font-weight: 500;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
}
.p-faq-list dt.change {
  border-radius: 15px 15px 0 0;
  background-color: #DDEBF5;
}
.p-faq-list dd {
  display: flex;
  align-items: center;
  padding: 2rem 4rem 2.5rem;
  border-radius: 0 0 15px 15px;
  background-color: #fff;
  font-weight: 500;
}
.p-faq-list dd i {
  margin-right: 2.4rem;
  color: #637CCF;
  font-style: normal;
  font-weight: 500;
  font-size: 4rem;
  font-family: "Oswald", sans-serif;
}
.p-faq__icon {
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
}
.p-faq__icon.open .p-faq__bar2 {
  top: -7px;
  transform: rotate(90deg);
}
.p-faq__bar1 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 20px;
  background: #707070;
}
.p-faq__bar2 {
  position: absolute;
  top: 50%;
  left: -8px;
  width: 2px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 20px;
  background: #707070;
  transition: all 0.3s ease 0s;
}

.p-feature {
  position: relative;
  padding: 8.4rem 0 23rem;
}
.p-feature::before {
  position: absolute;
  top: -8.5rem;
  right: 0;
  width: 19%;
  height: 55%;
  background-image: url(../img/top/deco_01.png);
  background-repeat: no-repeat;
  content: "";
}
.p-feature h2 {
  margin-bottom: 4.5rem;
  white-space: nowrap;
}
.p-feature__items {
  display: flex;
  z-index: 10;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-feature__item {
  display: flex;
  align-items: center;
  width: 49.5%;
  margin-bottom: 2rem;
  padding: 4rem;
  background-color: #F2F2F2;
}
.p-feature__item img {
  width: 8rem;
  margin-right: 3rem;
}

.p-footer-cta__wrap {
  display: flex;
  justify-content: space-between;
}
.p-footer-cta__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 49%;
  padding: 0 13rem 0 2rem;
  background: linear-gradient(180deg, transparent 0%, transparent 18%, #DDEBF5 18%, #DDEBF5 100%);
}
.p-footer-cta__left .cta-img {
  width: 70%;
  max-width: 37.8rem;
}
.p-footer-cta__textbox {
  padding-top: 6rem;
}
.p-footer-cta__lead {
  margin-bottom: 0.8rem;
  color: #4A536E;
  font-weight: 700;
  white-space: nowrap;
}
.p-footer-cta__title {
  color: #4A536E;
  font-weight: 700;
  font-size: 4rem;
  white-space: nowrap;
}
.p-footer-cta__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 49%;
  padding: 0 9rem 0 13rem;
  background: linear-gradient(180deg, transparent 0%, transparent 18%, #dbdde3 18%, #dbdde3 100%);
}
.p-footer-cta__right .cta-img {
  width: 70%;
  max-width: 37.8rem;
}

.p-footer {
  padding: 16rem 5rem 11.5rem;
}
.p-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-footer__wrap nav ul {
  display: flex;
}
.p-footer__wrap nav ul li {
  margin-left: 4rem;
  color: #333;
}
.p-footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.p-footer__logo img:nth-child(1) {
  max-width: 30rem;
  margin-right: 3.5rem;
}
.p-footer__logo-jpx {
  width: 4.6rem;
}
.p-footer__logo__img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}
.p-footer__logo--tcg {
  width: 16.4rem;
}
.p-footer__copyright {
  padding: 1.4rem 0;
  background-color: #535353;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  text-align: center;
}

.p-header {
  visibility: hidden;
  transform: translateY(3rem);
  opacity: 0;
  transition: 1s;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 12rem;
}
.p-header__logo {
  z-index: 999;
  margin-left: 2rem;
  font-size: 1.1rem;
  line-height: 1;
}
.p-header__logo a img {
  display: block;
  width: 164px;
  margin-bottom: 2rem;
}
.p-header__btnwrap li a {
  color: #637CCF;
  font-weight: 700;
}
.p-header__btnwrap .c-btn--white {
  margin: 0.4rem 0;
  padding: 2px 16px;
  box-shadow: none;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-header__btnwrap .c-btn--white span {
  position: relative;
  padding-left: 2.2rem;
}
.p-header__btnwrap .c-btn--white.seminar span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 2rem;
  margin-top: 0.3rem;
  transform: translateY(-50%);
  background-image: url(../img/common/seminar.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: 0.3s;
}
.p-header__btnwrap .c-btn--white.seminar:hover span::before {
  background-image: url(../img/common/seminar_h.svg);
}
.p-header__btnwrap .c-btn--white.download span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 2rem;
  margin-top: 0.3rem;
  transform: translateY(-50%);
  background-image: url(../img/common/download.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.p-header__btnwrap .c-btn--white.download:hover span::before {
  background-image: url(../img/common/download_h.svg);
}
.p-header__menu-form .c-btn--grad {
  display: inline-block;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
}
.p-header__menu-form .c-btn--grad span {
  display: inline-flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  margin-right: 0;
  padding: 5.5rem 1rem 2rem;
  border-radius: 0;
  line-height: 1.4;
  text-align: center;
}
.p-header__menu-form .c-btn--grad span:before {
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 4rem;
  height: 4rem;
  margin-top: 0.3rem;
  transform: translateX(-50%);
  background-image: url(../img/common/cta.svg);
  content: "";
  transition: 0.3s;
}
.p-header__menu-form .c-btn--grad:before {
  border-radius: 0;
}
.p-header__menu-form .c-btn--grad:hover span::before {
  background-image: url(../img/common/cta_h.svg);
}
.p-header__hamburger {
  display: none;
}
.p-header__toggle:hover .p-header__toggle-menu {
  max-height: 100vh;
  transition: max-height 0.3s ease-in;
}
.p-header__toggle-menu {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  background-color: #19192b;
  text-align: center;
  transition: max-height 0.3s ease-out;
}
.p-header__toggle-menu ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  height: inherit;
  gap: 0;
}
.p-header__menu:nth-of-type(1) {
  height: 100%;
}
.p-header__toggle-menu {
  display: flex;
  left: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100vw;
  padding: 0 4rem;
  background: #F2F2F2;
}
.p-header__toggle-item {
  width: 30%;
  margin: 4rem 0;
  color: #fff;
}
.p-header__toggle-item figure {
  max-height: 5vw;
  margin-bottom: 1rem;
  overflow: hidden;
}
.p-header__toggle-item img {
  transition: 0.3s;
}
.p-header__toggle-item img:hover {
  transform: scale(1.05);
}
.p-header__category {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-align: left;
}
.p-header__toggle-item ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.p-header__toggle-item ul li {
  width: 48%;
}
.p-header__toggle-item ul li a {
  position: relative;
  font-size: clamp(12px, 0.729vw, 14px);
}
.p-header__toggle-item ul li a:hover {
  text-decoration: underline;
}
.p-header__toggle-item ul li a span {
  position: relative;
  padding-left: 1.5rem;
  text-align: left;
}
.p-header__toggle-item ul li a span:after {
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: 1.1rem;
  left: 0;
  width: 8px;
  height: 8px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  border-color: rgba(255, 255, 255, 0.9);
  content: "";
  vertical-align: middle;
}
.p-header__nav .p-header__toggle-item ul:nth-of-type(1) li + li {
  margin: 0;
}
.p-header__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  height: 100%;
}
.p-header__contact li a {
  display: flex;
  position: relative;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 10vw;
  max-width: 12rem;
  height: 100%;
  padding: 2.4rem 0;
  color: #fff;
  font-size: clamp(10px, 0.677vw, 13px);
  text-align: center;
}
.p-header__contact li a img {
  width: -moz-fit-content;
  width: fit-content;
  height: 16px;
}
.p-header__contact li:nth-of-type(1) a {
  background-color: #111;
}
.p-header__contact li:nth-of-type(2) a {
  background-color: #07183f;
}
.p-header__contact li:nth-of-type(3) a {
  background-color: #153378;
}

.p-home-mv {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  background-color: #4A536E;
}
.p-home-mv::after {
  position: absolute;
  bottom: 0;
  content: "TANABE CONSULTING";
  color: #3a4157;
  font-size: 7vw;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.p-home-mv__wrap {
  z-index: 10;
  width: 50%;
  margin-left: 7vw;
  color: #fff;
  font-weight: 700;
}
.p-home-mv__wrap ul li .c-btn--grad span {
  position: relative;
  padding-left: 3.1rem;
}
.p-home-mv__wrap ul li .c-btn--grad span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0rem;
  background-image: url(../img/common/mail.svg);
  content: "";
  transition: 0.3s;
}
.c-btn--white.c-btn--request span::before {
  content: '';
  position: absolute;
  top: 0;
  left: -11px;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0rem;
  background-image: url(/hr/engagement/assets/img/common/ico-request.png)!important;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.p-home-mv__wrap ul li .c-btn--grad:hover span::before {
  background-image: url(../img/common/mail_h.svg);
}
.p-home-mv__wrap ul li .c-btn--white span {
  position: relative;
  padding-left: 2.6rem;
}
.p-home-mv__wrap ul li .c-btn--white span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0rem;
  background-image: url(../img/common/download.svg);
  content: "";
  transition: 0.3s;
}
.p-home-mv__wrap ul li .c-btn--white:hover span::before {
  background-image: url(../img/common/download_h.svg);
}
.p-home-mv__movie {
  display: flex;
  position: relative;
  align-items: center;
  width: 50%;
}
.p-home-mv__movie video {
  width: auto;
  height: 100%;
}
.p-home-mv__movie::before {
  display: block;
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 37rem;
  background-image: url("/hr/engagement/assets/img/top/main_catch.png");
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
  content: "";
}
.p-home-mv__movie::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
}
.p-home-mv__lead {
  font-size: 1.8rem;
}
.p-home-mv__title {
  font-size: 5rem;
  line-height: 1.4;
}
.p-home-mv__text {
  margin-bottom: 5rem;
  font-size: 1.6rem;
}
.p-home-mv__img img {
  -o-object-fit: cover;
  width: 50vw;
  max-height: 50rem;
     object-fit: cover;
}

.p-price {
  padding: 23rem 0 20rem;
}
.p-price__textbox {
  position: relative;
  margin-top: 12rem;
}
.p-price__textbox::before {
  z-index: 2;
  position: absolute;
  top: -3rem;
  right: -27rem;
  width: 68%;
  max-width: 112.4rem;
  height: 138%;
  overflow: hidden;
  background-image: url(../img/feature/price.png);
  background-repeat: no-repeat;
  content: "";
}
.p-price__price {
  z-index: 1;
  position: relative;
  margin-top: 8rem;
  color: #fff;
  font-weight: 700;
  font-size: 2.7rem;
}
.p-price__price span {
  font-size: 8.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.p-price__price::before {
  z-index: -1;
  position: absolute;
  top: 50%;
  width: 100vw;
  height: 14rem;
  margin: 0 calc(50% - 50vw);
  transform: translateY(-50%);
  background-color: #637CCF;
  content: "";
}
.p-price__attention {
  margin-top: 7rem;
  color: #4A536E;
  font-size: 1.4rem;
}

.p-reason {
  padding: 9rem 0 23rem;
}
.p-reason__wrap ul {
  justify-content: center;
}
.p-reason__wrap ul li .c-btn--grad span {
  position: relative;
  padding-left: 3.1rem;
}
.p-reason__wrap ul li .c-btn--grad span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0rem;
  background-image: url(../img/common/mail.svg);
  content: "";
  transition: 0.3s;
}
.p-reason__wrap ul li .c-btn--grad:hover span::before {
  background-image: url(../img/common/mail_h.svg);
}
.p-reason__wrap ul li .c-btn--white span {
  position: relative;
  padding-left: 2.6rem;
}
.p-reason__wrap ul li .c-btn--white span::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0rem;
  background-image: url(../img/common/download.svg);
  content: "";
  transition: 0.3s;
}
.p-reason__wrap ul li .c-btn--white:hover span::before {
  background-image: url(../img/common/download_h.svg);
}
.p-reason__item {
  display: flex;
  margin-top: 12rem;
  margin-bottom: 18rem;
}
.p-reason__item img {
  -o-object-fit: cover;
  aspect-ratio: 76/50;
  width: 50%;
  margin-right: 4rem;
     object-fit: cover;
  border-radius: 15px;
}
.p-reason__num {
  color: #49A0C8;
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
}
.p-reason__title {
  margin-bottom: 4rem;
  color: #4A536E;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.45;
}
.p-reason__text {
  line-height: 1.875;
}
.p-reason__text span {
  color: #637CCF;
}
.p-reason__text ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.p-reason__item.reverse {
  flex-direction: row-reverse;
}
.p-reason__item.reverse img {
  margin-right: 0;
  margin-left: 4rem;
}

.p-service-detail {
  padding: 23rem 0;
  background-color: #F2F2F2;
}
.p-service-detail__title-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 12rem;
}
.p-service-detail__title {
  white-space: nowrap;
}
.p-service-detail__text {
  width: 46%;
}
.p-service-detail__img-2 {
  display: none;
}

.p-service-lead {
  margin-top: -16rem;
  padding: 23rem 0 23rem;
  background-color: #F2F2F2;
  text-align: center;
}
.p-service-lead h2 {
  margin-bottom: 11rem;
}
.p-service-lead__wrap {
  display: flex;
  justify-content: space-between;
}
.p-service-lead__wrap img {
  -o-object-fit: cover;
  aspect-ratio: 521/461;
  width: 45.3%;
  max-width: 52.1rem;
     object-fit: cover;
  border-radius: 15px;
}
.p-service-lead__textbox {
  width: 49.6%;
  text-align: left;
}

.p-service {
  position: relative;
  padding: 23rem 0 10rem;
}
.p-service::before {
  position: absolute;
  top: -17.5rem;
  right: 0;
  width: 27%;
  height: 17%;
  background-image: url(../img/top/deco_03.png);
  background-repeat: no-repeat;
  content: "";
}
.p-service::after {
  z-index: -1;
  position: absolute;
  top: 105rem;
  left: -107rem;
  transform: rotate(90deg);
  content: "TCG Engagement survey";
  color: #F2F2F2;
  font-size: 30rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.p-service__title {
  margin-bottom: 2.2rem;
  color: #637CCF;
  font-weight: 600;
  font-size: 4.5rem;
  line-height: 1.4;
  text-align: center;
}
.p-service__subtitle {
  margin-bottom: 2rem;
  color: #4A536E;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.75;
  text-align: center;
}
.p-service__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.p-service__item {
  display: flex;
  flex-direction: column;
  width: 43.3%;
  min-height: 91.5rem;
  margin: 4rem;
  padding: 4rem;
  border-radius: 15px;
  background-color: #F2F2F2;
}
.p-service__item--title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 7rem;
  margin-bottom: 4rem;
  color: #637CCF;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
}
.p-service__item--img img {
  -o-object-fit: cover;
  aspect-ratio: 59/35;
  width: 100%;
  margin-bottom: 4rem;
     object-fit: cover;
  border-radius: 15px;
}
.p-service__btn {
  display: block;
  margin-top: auto;
  text-align: right;
}
.p-service__pagelink {
  text-align: center;
}
.p-service__pagelink .c-btn--grad {
  padding: 20px 30px;
}

.p-service.p-under-service::before {
  background-image: none;
}

.p-solution {
  position: relative;
  padding: 19rem 0 22rem;
  background-image: url(../img/feature/solution_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.p-solution::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 67px solid #4A536E;
  border-right: 75px solid transparent;
  border-bottom: 0;
  border-left: 75px solid transparent;
  border-style: solid;
  content: "";
}
.p-solution__wrap {
  text-align: center;
}
.p-solution__wrap p {
  line-height: 1.66;
}

.p-support-service {
  margin-top: 7rem;
  padding-top: 12rem;
}
.p-support-service__item {
  padding: 5rem;
  border-radius: 15px;
  background: #fff;
}
.p-support-service__item h3 {
  color: #637CCF;
  font-weight: 700;
  font-size: clamp(24px, 1.562vw, 30px);
}
.p-support-service__item h3 span {
  font-size: clamp(18px, 1.046vw, 20px);
}
.p-support-service__item + .p-support-service__item {
  margin-top: 4rem;
}
.p-support-service__textbox {
  display: flex;
  margin-top: 2rem;
  gap: 4rem;
}
.p-support-service__img {
  width: 36%;
}
.p-support-service__text {
  width: calc(64% - 4rem);
}
.p-support-service__point {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid #ccc;
}
.p-support-service__point ul {
  margin-top: 1rem;
}
.p-support-service__point li {
  margin-left: 1rem;
  text-indent: -1rem;
}
.p-support-service__btn {
  margin-top: 3rem;
}
.p-support-service__btn a {
  min-width: 18rem;
  padding: 10px 15px;
}

.p-spport {
  position: relative;
  padding: 16rem 0;
  background-color: #F2F2F2;
}
.p-spport::before {
  position: absolute;
  top: -13rem;
  right: -3rem;
  width: 39%;
  height: 32%;
  background-image: url(../img/feature/deco_02.png);
  background-repeat: no-repeat;
  content: "";
}
.p-spport__item {
  padding-top: 36rem;
}
.p-spport__item--right {
  position: relative;
  margin-bottom: 20rem;
  padding-top: 36rem;
  padding-right: 10vw;
}
.p-spport__item--right img {
  position: relative;
  width: 85%;
  margin-top: -4rem;
  border-radius: 0 15px 15px 0;
}
.p-spport__item--right::before {
  -o-object-fit: cover;
  z-index: 10;
  position: absolute;
  bottom: 6rem;
  left: 0;
  aspect-ratio: 800/495;
  width: 41%;
  height: auto;
     object-fit: cover;
  border-radius: 0 15px 15px 0;
  background-image: url(../img/feature/support_01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-spport__item--left {
  position: relative;
  padding-left: 10vw;
}
.p-spport__item--left img {
  position: relative;
  right: 0;
  width: 85%;
  margin-top: -4rem;
  border-radius: 15px 0 0 15px;
}
.p-spport__item--left::before {
  -o-object-fit: cover;
  z-index: 10;
  position: absolute;
  right: 0;
  bottom: 16rem;
  aspect-ratio: 800/495;
  width: 41%;
  height: auto;
     object-fit: cover;
  border-radius: 15px 0 0 15px;
  background-image: url(../img/feature/support_02.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-spport__item__textbox--right {
  position: relative;
  width: 76%;
  max-width: 115rem;
  margin-left: auto;
  padding: 6rem 17.5rem 6rem 41.5rem;
  border-radius: 15px;
  background-color: #fff;
}
.p-spport__item__textbox--right::before {
  position: absolute;
  top: -14rem;
  right: 0;
  content: "Presentation";
  color: #fff;
  font-size: 12.9rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.p-spport__item__textbox--left {
  position: relative;
  width: 76%;
  max-width: 115rem;
  margin-right: auto;
  padding: 6rem 41.5rem 6rem 17.5rem;
  border-radius: 15px;
  background-color: #fff;
}
.p-spport__item__textbox--left::before {
  position: absolute;
  top: -14rem;
  left: 0;
  content: "Improvement";
  color: #fff;
  font-size: 12.9rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
}
.p-spport__item__textbox--left ul {
  margin-top: 3.5rem;
  padding: 3rem 0;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
.p-spport__item__textbox--left ul li {
  padding-left: 1em;
  font-size: 1.4rem;
  line-height: 2.14;
  text-indent: -1em;
}
.p-spport__item__title {
  color: #4A536E;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.45;
}

.p-top-webinar {
  position: relative;
  margin-bottom: 23rem;
}
.p-top-webinar::before {
  z-index: -1;
  position: absolute;
  top: -9rem;
  right: 0;
  width: 27%;
  height: 51%;
  background-image: url(../img/top/deco_04.png);
  background-repeat: no-repeat;
  content: "";
}
.p-top-webinar__wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 7rem;
}
.p-top-webinar__l {
  position: relative;
  width: 49%;
}
.p-top-webinar__l .p-webinar__item-img img {
  aspect-ratio: 1/1;
}
.p-top-webinar__l .p-webinar__item-title {
  position: relative;
  padding: 0 0 1rem;
  color: #333;
  font-size: 2rem;
}
.p-top-webinar--img {
  position: relative;
}
.p-top-webinar--img::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  content: "";
}
.p-top-webinar--img img {
  -o-object-fit: cover;
  aspect-ratio: 360/330;
  width: 100%;
     object-fit: cover;
  border-radius: 15px;
}
.p-top-webinar__textbox {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 2rem;
  padding: 3rem 4rem;
}
.p-top-webinar--title {
  margin-bottom: 1rem;
  color: #fff;
  font-weight: 600;
}
.p-top-webinar__detail-wrap {
  display: flex;
}
.p-top-webinar__detail {
  display: flex;
  align-items: center;
  margin-right: 3rem;
  color: #fff;
  font-weight: 600;
}
.p-top-webinar__detail p {
  margin-left: 1rem;
}
.p-top-webinar__s {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 6rem;
  gap: 30px;
}
.p-top-webinar__s__link {
  position: relative;
  width: 50%;
  padding-bottom: 4rem;
  padding-left: 2rem;
}
.p-top-webinar__s .p-webinar__item {
  position: relative;
  margin-top: 0;
  background-position: center;
  background-size: cover;
}
.p-top-webinar__s .p-webinar__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
}
.p-top-webinar__s .p-webinar__item-textbox {
  position: relative;
}
.p-top-webinar__s .p-webinar__item-textbox .p-webinar__item-title {
  position: relative;
  padding: 0 0 1rem;
  color: #333;
  color: #fff;
  font-size: 2rem;
}
.p-top-webinar__s .p-webinar__item-textbox p {
  color: #fff;
}
.p-top-webinar__s .p-webinar__item {
  width: 100%;
}
.p-top-webinar__s .p-webinar__item-detail {
  margin-right: 1rem;
}
.p-top-webinar__s .p-webinar__item-detail p {
  color: #fff;
}
.p-top-webinar__btn {
  text-align: right;
}

.p-top-download {
  position: relative;
  padding: 23rem 0;
  background-image: url(../img/top/download_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-top-download::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  content: "";
}
.p-top-download__title {
  margin-bottom: 4rem;
  color: #fff;
  font-weight: 700;
  font-size: 4rem;
  text-align: center;
}
.p-top-download__items {
  display: flex;
  gap: 3rem;
}
.p-top-download__item {
  width: calc((100% - 9rem) / 4);
}
.p-top-download__item img {
  margin-bottom: 3rem;
  border-radius: 15px;
}
.p-top-download__item__text {
  color: #fff;
  font-weight: 500;
}
.p-top-download__item__content {
  margin-top: 2rem;
  color: #fff;
  font-size: 14px;
}
.p-top-download__btn {
  text-align: right;
}
.p-top-download__btn a {
  color: #fff;
}

.p-top-solution {
  position: relative;
  padding: 23rem 0 10rem;
  background: linear-gradient(180deg, #DDEBF5 0%, #DDEBF5 50%, transparent 80%, transparent 100%);
}
.p-top-solution::before {
  z-index: 10;
  position: absolute;
  top: -17rem;
  left: -7rem;
  width: 54%;
  height: 35%;
  background-image: url(../img/top/deco_02.png);
  background-repeat: no-repeat;
  content: "";
}
.p-top-solution::after {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-top: 100px solid #fff;
  border-right: 112px solid transparent;
  border-bottom: 0;
  border-left: 112px solid transparent;
  border-style: solid;
  content: "";
}
.p-top-solution__wrap h2 {
  z-index: 50;
  position: relative;
  margin-bottom: 6rem;
  text-align: center;
}
.p-top-solution__items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 19.5rem;
}
.p-top-solution__item {
  width: 26%;
  text-align: center;
}
.p-top-solution__item-num {
  color: #637CCF;
  font-weight: 600;
  font-size: 3.6rem;
  font-family: "Oswald", sans-serif;
}
.p-top-solution__item-title {
  margin-bottom: 1.5rem;
  color: #637CCF;
  font-weight: 700;
  font-size: 2.6rem;
  white-space: nowrap;
}
.p-top-solution__item-text {
  margin-bottom: 3rem;
  color: #333;
  font-weight: 400;
  font-size: 1.6rem;
}
.p-top-solution__item-img {
  margin-bottom: 2rem;
}
.p-top-solution__item-example {
  font-weight: 400;
  font-size: 1.6rem;
  white-space: nowrap;
}
.p-top-solution__img {
  width: 50%;
  max-width: 96.9rem;
  margin-left: 10rem;
}

.c-under-mv::before {
  z-index: 1;
  background-size: contain;
}

.c-under-mv.feature::before {
  right: -17rem;
  bottom: -13rem;
  width: 39%;
  height: 75%;
  background-image: url(../img/feature/main.png);
}

.c-under-mv.casestudy::before {
  right: -4rem;
  bottom: -13rem;
  width: 20%;
  height: 74%;
  background-image: url(../img/casestudy/main.png);
}

.c-under-mv.webinar::before {
  right: -8rem;
  bottom: -20rem;
  width: 27%;
  height: 98%;
  background-image: url(../img/webinar/main.png);
}

.c-under-mv.download::before {
  right: -3rem;
  bottom: -17rem;
  width: 24.2%;
  height: 98%;
  background-image: url(../img/download/main.png);
}

.c-under-mv.contact::before {
  right: -9rem;
  bottom: -21rem;
  width: 30.5%;
  height: 108%;
  background-image: url(../img/contact/main.png);
}

.c-under-mv.consultation::before {
  right: -5rem;
  bottom: -17rem;
  width: 30.5%;
  height: 108%;
  background-image: url(../img/consultation/main.png);
}

.p-webinar {
  padding: 12rem 0 18rem;
  background-color: #F7F7F7;
}
.p-webinar__wrap ul {
  justify-content: center;
}
.p-webinar__text {
  color: #4A536E;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
}
.p-webinar__live {
  margin-top: 12rem;
}
.p-webinar__ondemand {
  margin-top: 20rem;
}
.p-webinar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-webinar__items--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0;
  color: #4A536E;
  font-weight: bold;
  font-size: 3rem;
}
.p-webinar__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45.7%;
  margin-top: 6rem;
  border-radius: 15px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
}
.p-webinar__item-img {
  position: relative;
}
.p-webinar__item-img img {
  -o-object-fit: cover;
  aspect-ratio: 686/398;
  width: 100%;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.p-webinar__item-title {
  bottom: 0;
  left: 0;
  padding-bottom: 2.5rem;
  color: #333;
  font-weight: 700;
  font-size: 2.4rem;
}
.p-webinar__item-textbox {
  height: 100%;
  padding: 2rem 3rem 3rem;
  border-radius: 15px;
  background-position: center center;
  background-size: cover;
}
.p-webinar__item-detail-wrap {
  display: flex;
  margin-bottom: 1.5rem;
}
.p-webinar__item-detail {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}
.p-webinar__item-detail p {
  margin-left: 1rem;
  color: #333;
  font-weight: 700;
}

.p-works {
  position: relative;
  background-image: url(../img/common/works_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.p-works::after {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%);
  content: "";
}
.p-works__wrap {
  display: flex;
  margin-left: 5vw;
  padding: 23rem 0;
}
.p-works__title-wrap {
  margin-right: 6rem;
  text-align: right;
}
.p-works__title-wrap a {
  color: #fff;
}
.p-works__title {
  margin-bottom: 4rem;
  color: #fff;
  font-weight: 700;
  font-size: 5rem;
  white-space: nowrap;
}
.p-works__swiper {
  position: relative;
  width: 100vw;
  overflow: visible;
}
.p-works__swiper-item {
  border-radius: 15px;
  background-color: #fff;
  transition: 0.3s;
}
.p-works__swiper-item img {
  -o-object-fit: cover;
  aspect-ratio: 353/266;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}
.p-works__swiper-title {
  margin: 2rem 3rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #7E7E7E;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
}
.p-works__swiper-text {
  padding: 1.5rem 3rem 4rem;
}
.p-works__swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.p-works__swiper .swiper-button-prev {
  top: 23vw;
  left: -18.5rem;
}
.p-works__swiper .swiper-button-prev::after {
  position: absolute !important;
  background-image: url(../img/common/arrow_w_l.svg);
  background-size: 80%;
}
.p-works__swiper .swiper-button-prev:hover:after {
  background-image: url(../img/common/arrow_b_l.svg);
  opacity: 1 !important;
}

.p-works__swiper .swiper-button-next {
  top: 23vw;
  left: -11rem;
}
.p-works__swiper .swiper-button-next::after {
  background-image: url(../img/common/arrow_w_r.svg);
  background-size: 80%;
}
.p-works__swiper .swiper-button-next:hover:after {
  background-image: url(../img/common/arrow_b_r.svg);
  opacity: 1 !important;
}

.p-worry {
  position: relative;
  padding: 20rem 0 13rem;
  background-image: url(../img/feature/worry_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.p-worry::after {
  position: absolute;
  top: 19rem;
  left: -21rem;
  transform: rotate(90deg);
  content: "Worry";
  color: rgba(242, 242, 242, 0.3);
  font-size: 30rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
}
.p-worry h2 {
  margin-bottom: 6rem;
  color: #fff;
  text-align: center;
}
.p-worry__items {
  display: flex;
  z-index: 10;
  position: relative;
  margin: 0 10.5rem 3rem;
}
.p-worry__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 31%;
  margin: 0 1.5rem;
  padding: 5rem 5rem 6rem;
  background-color: #F2F2F2;
  color: #333;
  text-align: center;
}
.p-worry__item-img {
  max-width: 25rem;
  margin: 0 auto 2.5rem;
}
.p-worry__item-text {
  font-weight: 700;
}
.p-worry__answer {
  margin: 0 12rem;
  padding: 9rem 0;
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  text-align: center;
}

.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

/* 導入事例 */
.swiper-button-prev,
.swiper-button-next {
  width: 5rem;
  height: 5rem;
  transition: 0.3s !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 5rem;
  height: 5rem;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transition: 0.3s;
}

.swiper-button-prev::after {
  position: absolute;
  bottom: 0;
  left: 0;
}

.swiper-button-next::after {
  position: absolute;
  bottom: 0;
  left: 0;
}

.swiper-button-prev::after:hover,
.swiper-button-next::after:hover {
  opacity: 0.7;
}

.swiper-slide img {
  width: 100%;
  height: auto;
}

.u-flex__center {
  display: flex;
  justify-content: center;
}

.u-mt--10 {
  margin-top: 1rem;
}

.u-mb--10 {
  margin-bottom: 1rem;
}

.u-mr--10 {
  margin-right: 1rem;
}

.u-ml--10 {
  margin-left: 1rem;
}

.u-mt--20 {
  margin-top: 2rem;
}

.u-mb--20 {
  margin-bottom: 2rem;
}

.u-mr--20 {
  margin-right: 2rem;
}

.u-ml--20 {
  margin-left: 2rem;
}

.u-mt--30 {
  margin-top: 3rem;
}

.u-mb--30 {
  margin-bottom: 3rem;
}

.u-mr--30 {
  margin-right: 3rem;
}

.u-ml--30 {
  margin-left: 3rem;
}

.u-mt--40 {
  margin-top: 4rem;
}

.u-mb--40 {
  margin-bottom: 4rem;
}

.u-mr--40 {
  margin-right: 4rem;
}

.u-ml--40 {
  margin-left: 4rem;
}

.u-mt--50 {
  margin-top: 5rem;
}

.u-mb--50 {
  margin-bottom: 5rem;
}

.u-mr--50 {
  margin-right: 5rem;
}

.u-ml--50 {
  margin-left: 5rem;
}

.u-mt--60 {
  margin-top: 6rem;
}

.u-mb--60 {
  margin-bottom: 6rem;
}

.u-mr--60 {
  margin-right: 6rem;
}

.u-ml--60 {
  margin-left: 6rem;
}

.u-mt--70 {
  margin-top: 7rem;
}

.u-mb--70 {
  margin-bottom: 7rem;
}

.u-mr--70 {
  margin-right: 7rem;
}

.u-ml--70 {
  margin-left: 7rem;
}

.u-mt--80 {
  margin-top: 8rem;
}

.u-mb--80 {
  margin-bottom: 8rem;
}

.u-mr--80 {
  margin-right: 8rem;
}

.u-ml--80 {
  margin-left: 8rem;
}

.u-mt--90 {
  margin-top: 9rem;
}

.u-mb--90 {
  margin-bottom: 9rem;
}

.u-mr--90 {
  margin-right: 9rem;
}

.u-ml--90 {
  margin-left: 9rem;
}

.u-mt--100 {
  margin-top: 10rem;
}

.u-mb--100 {
  margin-bottom: 10rem;
}

.u-mr--100 {
  margin-right: 10rem;
}

.u-ml--100 {
  margin-left: 10rem;
}

.u-mt--110 {
  margin-top: 11rem;
}

.u-mb--110 {
  margin-bottom: 11rem;
}

.u-mr--110 {
  margin-right: 11rem;
}

.u-ml--110 {
  margin-left: 11rem;
}

.u-mt--120 {
  margin-top: 12rem;
}

.u-mb--120 {
  margin-bottom: 12rem;
}

.u-mr--120 {
  margin-right: 12rem;
}

.u-ml--120 {
  margin-left: 12rem;
}

.u-margin--auto {
  margin-right: auto;
  margin-left: auto;
}

.u-pt--10 {
  padding-top: 1rem;
}

.u-pb--10 {
  padding-bottom: 1rem;
}

.u-pr--10 {
  padding-right: 1rem;
}

.u-pl--10 {
  padding-left: 1rem;
}

.u-pt--20 {
  padding-top: 2rem;
}

.u-pb--20 {
  padding-bottom: 2rem;
}

.u-pr--20 {
  padding-right: 2rem;
}

.u-pl--20 {
  padding-left: 2rem;
}

.u-pt--30 {
  padding-top: 3rem;
}

.u-pb--30 {
  padding-bottom: 3rem;
}

.u-pr--30 {
  padding-right: 3rem;
}

.u-pl--30 {
  padding-left: 3rem;
}

.u-pt--40 {
  padding-top: 4rem;
}

.u-pb--40 {
  padding-bottom: 4rem;
}

.u-pr--40 {
  padding-right: 4rem;
}

.u-pl--40 {
  padding-left: 4rem;
}

.u-pt--50 {
  padding-top: 5rem;
}

.u-pb--50 {
  padding-bottom: 5rem;
}

.u-pr--50 {
  padding-right: 5rem;
}

.u-pl--50 {
  padding-left: 5rem;
}

.u-pt--60 {
  padding-top: 6rem;
}

.u-pb--60 {
  padding-bottom: 6rem;
}

.u-pr--60 {
  padding-right: 6rem;
}

.u-pl--60 {
  padding-left: 6rem;
}

.u-pt--70 {
  padding-top: 7rem;
}

.u-pb--70 {
  padding-bottom: 7rem;
}

.u-pr--70 {
  padding-right: 7rem;
}

.u-pl--70 {
  padding-left: 7rem;
}

.u-pt--80 {
  padding-top: 8rem;
}

.u-pb--80 {
  padding-bottom: 8rem;
}

.u-pr--80 {
  padding-right: 8rem;
}

.u-pl--80 {
  padding-left: 8rem;
}

.u-pt--90 {
  padding-top: 9rem;
}

.u-pb--90 {
  padding-bottom: 9rem;
}

.u-pr--90 {
  padding-right: 9rem;
}

.u-pl--90 {
  padding-left: 9rem;
}

.u-pt--100 {
  padding-top: 10rem;
}

.u-pb--100 {
  padding-bottom: 10rem;
}

.u-pr--100 {
  padding-right: 10rem;
}

.u-pl--100 {
  padding-left: 10rem;
}

.u-pt--110 {
  padding-top: 11rem;
}

.u-pb--110 {
  padding-bottom: 11rem;
}

.u-pr--110 {
  padding-right: 11rem;
}

.u-pl--110 {
  padding-left: 11rem;
}

.u-pt--120 {
  padding-top: 12rem;
}

.u-pb--120 {
  padding-bottom: 12rem;
}

.u-pr--120 {
  padding-right: 12rem;
}

.u-pl--120 {
  padding-left: 12rem;
}

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

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

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

.u-sp {
  display: none;
}
.u-sp-m {
  display: none;
}

.u-tab {
  display: none;
}
.u-768 {
  display: block;
}
.u-sp {
  display: none;
}
/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none !important;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  outline: none !important;
  text-align: center;
}

.lity-wrap:before {
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  content: "";
  vertical-align: middle;
}

.lity-loader {
  z-index: 9991;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -0.8em;
  color: #fff;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  display: inline-block;
  z-index: 9992;
  position: relative;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content, .lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: "";
}

.lity-close {
  -webkit-appearance: none;
  z-index: 9994;
  position: fixed;
  top: 0;
  right: 0;
  width: 35px;
  height: 35px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  line-height: 35px;
  font-family: Arial, Baskerville, monospace;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.lity-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  box-shadow: none;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  line-height: 35px;
  font-family: Arial, Baskerville, monospace;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  display: block;
  max-width: 100%;
  border: 0;
  line-height: 0;
}

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  transform: translateZ(0);
  pointer-events: auto;
}

.lity-iframe-container iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-hide {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-style: normal;
  font-weight: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/../../img/slick.woff") format("woff"), url("./fonts/../../img/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-family: "slick";
}
/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}
.slick-prev:before,
.slick-next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  font-size: 20px;
  line-height: 1;
  font-family: "slick";
  opacity: 1;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  /*margin-bottom: 30px;*/
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0px;
  line-height: 0px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  color: black;
  font-size: 6px;
  line-height: 20px;
  font-family: "slick";
  text-align: center;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 1;
}

/* Slider */
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  height: 100%;
  min-height: 1px;
  float: left;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.js-slide {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.js-slide.slick-initialized {
  opacity: 1;
}

@media screen and (max-width: 900px) {
  body {
    font-size: 1.4rem;
  }
  main {
    padding-top: 8rem;
  }
  .c-btn__double li a {
    width: 24rem;
    margin-bottom: 2rem;
  }
  .c-btn--white {
    padding: 14px 0;
  }
  .c-btn--white.u-selected {
    padding: 14px 0;
  }
  .c-page-top {
    right: 5%;
    bottom: 4rem !important;
  }
  .c-section-title--en {
    font-size: 8rem;
  }
  .c-section-title--ja {
    font-size: 2.4rem;
  }
  .c-text {
    font-size: 1.4rem;
  }
  .c-title--ja {
    font-size: 2rem;
  }
  .c-title--en {
    font-size: 4.6rem;
  }
  .p-about {
    padding: 0 !important;
  }
  .p-about::before {
    content: none;
  }
  .p-casestudy {
    padding: 8rem 0 0;
  }
  .p-casestudy__wrap ul {
    align-items: center;
  }
  .p-casestudy__wrap ul li a {
    margin: 0 0.5rem;
  }
  .p-casestudy__items {
    flex-direction: column;
    align-items: center;
    margin-top: 8rem;
  }
  .p-casestudy__item {
    width: 94% !important;
  }
  .p-column__swiper {
    margin-top: 4rem;
  }
  .p-company::after {
    top: 14rem;
    left: -26rem;
    font-size: 20rem;
  }
  .p-company__wrap {
    display: block;
  }
  .p-company__wrap img {
    width: 100%;
    margin-bottom: 4rem;
  }
  .p-company__textbox {
    margin-left: 0rem;
  }
  .p-company .p-achievement {
    padding: 0 !important;
  }
  .p-company .p-achievement__wrap {
    padding: 3rem;
  }
  .p-company .p-achievement__items {
    display: block;
  }
  .p-company .p-achievement__item {
    width: 100%;
    max-width: 100%;
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
  .p-contact {
    padding: 13rem 0 1rem;
  }
  .p-contact__form:nth-child(1) {
    margin-bottom: 12rem;
  }
  .p-contact__form-item {
    flex-direction: column;
  }
  .p-contact__form-item__title {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .p-contact__form-item__input input[type=text],
  .p-contact__form-item__input input[type=tel],
  .p-contact__form-item__input textarea,
  .p-contact__form-item__input select {
    margin-left: 0;
  }
  .p-contact__form-item__input.half input:nth-child(2) {
    margin-left: 1rem;
  }
  .p-contact__form-item__input.half {
    width: 100%;
  }
  .p-contact__form-item__input:not(.half) {
    width: 100%;
  }
  .p-contact__attention {
    margin-bottom: 6rem;
  }
  .mktoHtmlText h3 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
  .mktoForm .mktoFormRow .mktoField:not(.mktoRadioList .mktoField) {
    height: 6rem;
  }
  .mktoForm .mktoFieldWrap {
    flex-direction: column;
  }
  .mktoForm .mktoLabel {
    width: 100% !important;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=url],
  input[type=date],
  input[type=number],
  textarea,
  select {
    margin-left: 0;
  }
  #contact_free {
    height: 20rem !important;
  }
  .p-download {
    padding: 16rem 0 2rem;
  }
  .p-download__items {
    flex-direction: column;
    align-items: center;
  }
  .p-download__item {
    width: 90%;
    margin-bottom: 8rem;
    padding: 0 3rem 4rem;
  }
  .p-download__item img {
    display: flex;
    position: relative;
    top: -2rem !important;
    width: 90%;
    margin: 0 auto;
  }
  .p-download__item-titlewrap {
    justify-content: space-between;
  }
  .p-download__item-titlewrap img {
    top: 0 !important;
    width: 2rem;
    margin: 0 0 0 2rem !important;
  }
  .p-download__item-title {
    min-height: auto;
  }
  .p-embodiment__title-wrap {
    display: block;
  }
  .p-embodiment__title-wrap img {
    position: relative;
    left: 50%;
    width: 60%;
    margin: 0 auto 6rem;
    transform: translateX(-50%);
  }
  .p-embodiment__title-wrap img {
    width: 90% !important;
    margin: 0 auto 2rem !important;
  }
  .p-embodiment__title {
    margin-top: 16rem;
  }
  .p-embodiment__item {
    flex-direction: column;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .p-embodiment__item img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .p-embodiment__item__textbox {
    width: 100%;
  }
  .p-embodiment__item__title {
    font-size: 3rem;
  }
  .p-embodiment__item.reverse {
    flex-direction: column;
  }
  .p-embodiment__item.reverse img {
    width: 100%;
    margin-left: 0;
  }
  .p-faq-list dt {
    padding: 1rem 6rem 1.5rem 2rem;
  }
  .p-feature {
    padding: 4rem 0 0 !important;
  }
  .p-feature::before {
    content: none;
  }
  .p-feature h2 {
    margin-bottom: 2rem;
  }
  .p-feature__items {
    display: block;
  }
  .p-feature__item {
    width: 100%;
    padding: 2rem;
  }
  .p-footer-cta__left {
    padding: 0 10rem 0 2rem !important;
  }
  .p-footer-cta__left .cta-img {
    width: 62% !important;
  }
  .p-header__contact li:nth-of-type(2) a {
    background: transparent;
  }
  .p-header__contact li:nth-of-type(3) a {
    background: transparent;
  }
  .p-home-mv {
    flex-direction: column-reverse;
  }
  .p-home-mv::after {
    right: 0;
    font-size: 10vw;
  }
  .p-home-mv__wrap {
    margin: 4rem auto 4rem 7vw;
  }
  .p-home-mv__movie {
    width: 100%;
  }
  .p-home-mv__movie video {
    width: 100%;
  }
  .p-home-mv__title {
    font-size: 2.8rem !important;
  }
  .p-home-mv__img img {
    width: 100vw;
  }
  .p-price {
    padding: 0 !important;
  }
  .p-price__textbox::before {
    top: -33rem !important;
    right: -10rem;
    margin-top: 6rem;
  }
  .p-price__price {
    z-index: 2;
  }
  .p-price__price span {
    font-size: 6rem;
  }
  .p-reason__item {
    flex-direction: column;
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
  .p-reason__item img {
    width: 100%;
    margin: 0 0 2rem 0;
  }
  .p-reason__title {
    font-size: 3rem;
  }
  .p-reason__item.reverse {
    flex-direction: column;
  }
  .p-reason__item.reverse img {
    margin-left: 0;
  }
  .p-service-lead {
    position: relative;
    margin-top: -12rem;
    padding: 12rem 0 12rem;
  }
  .p-service-lead h2 {
    margin-bottom: 6rem;
  }
  .p-service-lead__wrap {
    display: block;
  }
  .p-service-lead__wrap img {
    width: 100%;
  }
  .p-service-lead__textbox {
    width: 100%;
    margin-top: 4rem;
  }
  .p-service {
    padding: 0 !important;
  }
  .p-service::before {
    content: none;
  }
  .p-service::after {
    top: 69rem;
    left: -72rem;
    font-size: 20rem;
  }
  .p-service__title {
    font-size: 2.4rem;
  }
  .p-service__subtitle {
    font-size: 1.6rem;
  }
  .p-service__item {
    width: 100%;
    margin: 2rem 0 !important;
  }
  .p-solution {
    padding: 8rem 0 4rem !important;
  }
  .p-spport::before {
    top: -14rem !important;
    right: -5rem !important;
    height: 15%;
  }
  .p-spport__item--right {
    margin-bottom: 14rem;
    padding-top: 6rem !important;
  }
  .p-spport__item__textbox--right::before {
    top: -7rem;
    font-size: 8rem;
  }
  .p-spport__item__textbox--left::before {
    top: -7rem;
    font-size: 8rem;
  }
  .p-spport__item__title {
    font-size: 3rem;
  }
  .p-top-webinar__cover {
    padding-top: 0 !important;
  }
  .p-top-webinar__l {
    margin-bottom: 0rem !important;
  }
  .p-top-webinar__s__link {
    width: 100%;
    padding: 2rem 0 !important;
  }
  .p-top-download {
    background-image: url(../img/top/download_bg_sp.jpg);
  }
  .p-top-download__title {
    font-size: 3rem;
  }
  .p-top-solution {
    padding: 12rem 0 4rem !important;
    background-color: #DDEBF5;
  }
  .p-top-solution::before {
    content: none;
  }
  .p-top-solution::after {
    border-top: 50px solid #fff;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
  }
  .p-top-solution__wrap h2 {
    margin-bottom: 4rem;
  }
  .p-top-solution__items {
    display: block;
    margin-bottom: 14rem;
  }
  .p-top-solution__item {
    width: 100% !important;
    margin-bottom: 6rem;
  }
  .p-top-solution__item-img {
    width: 60%;
    margin: 0 auto;
  }
  .p-top-solution__img {
    z-index: 50;
    position: relative;
    width: 80%;
    margin-left: 6rem;
  }
  .c-under-mv.feature::before {
    bottom: -27rem !important;
    width: 55%;
  }
  .c-under-mv.casestudy::before {
    right: -5rem !important;
  }
  .c-under-mv.webinar::before {
    right: -3rem !important;
    bottom: -29rem !important;
  }
  .c-under-mv.download::before {
    bottom: -24rem !important;
    width: 40% !important;
  }
  .c-under-mv.contact::before {
    right: -9rem !important;
  }
  .c-under-mv.consultation::before {
    right: -9rem !important;
    width: 48% !important;
    height: 82% !important;
    top: 34rem !important;
  }
  .p-webinar {
    padding: 6rem 0 2rem;
  }
  .p-webinar__wrap ul {
    align-items: center;
  }
  .p-webinar__wrap ul li a {
    margin: 0 0.5rem;
  }
  .p-webinar__live {
    margin-top: 8rem;
  }
  .p-webinar__ondemand {
    margin-top: 10rem;
  }
  .p-webinar__item {
    width: 100% !important;
  }
  .p-works__wrap {
    padding: 8rem 0 4rem !important;
  }
  .p-works__title {
    font-size: 4rem;
  }
  .p-works__swiper .swiper-button-prev {
    position: relative;
    top: 0 !important;
    margin-top: 1rem;
  }
  .p-works__swiper .swiper-button-next {
    position: relative;
    top: -2.8rem !important;
  }
  .p-worry {
    background-image: url(../img/feature/worry_bg_sp.jpg);
  }
  .p-worry::after {
    top: 12rem;
    left: -14rem;
    font-size: 20rem;
  }
  .p-worry__items {
    flex-direction: column;
  }
  .p-worry__item {
    width: 100%;
    margin: 0 0 4rem 0;
  }
  .p-worry__answer {
    margin: 0 !important;
    padding: 4rem;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  br.u-sp {
    display: inline;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  br.u-sp {
    display: inline;
  }
}

@media screen and (min-width: 901px) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

@media screen and (max-width: 1280px) {
  main {
    padding-top: 10rem;
  }
  .l-container {
    box-sizing: border-box;
    padding: 7rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--p0 {
    box-sizing: border-box;
    padding: 3rem 5vw;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container--s {
    box-sizing: border-box;
    padding-right: 5%;
    padding-left: 5%;
  }
  .l-container.l-container-servicelist {
    padding-top: 3vw !important;
  }
  .l-header {
    height: 10rem;
  }
  .c-title--ja {
    font-size: 3.2rem;
  }
  .p-about {
    padding: 8rem 0;
  }
  .p-about__textbox {
    width: 65%;
    margin-top: 10rem;
    padding: 4rem 7rem 4rem 6rem;
  }
  .p-about__textbox::after {
    top: -12%;
    left: 95%;
    width: 60%;
  }
  .p-about__title {
    margin-bottom: 3rem;
  }
  .p-casestudy__item {
    width: 46.7%;
    margin-bottom: 2rem;
  }
  .p-column {
    margin: 6rem 0 0;
  }
  .p-column__swiper .swiper-button-prev {
    top: -10rem;
  }
  .p-column__swiper .swiper-button-next {
    top: -10rem;
  }
  .p-company {
    padding: 2rem 0;
  }
  .p-company__title {
    margin-bottom: 2rem;
    font-size: clamp(2.6rem, 2.8vw, 3.5rem) !important;
  }
  .p-download__item img {
    top: -10rem;
  }
  .p-embodiment {
    padding: 0 0 6rem;
  }
  .p-embodiment {
    margin-top: -15rem;
  }
  .p-embodiment__title {
    margin-bottom: 8rem;
  }
  .p-faq {
    padding: 14rem 0;
  }
  .p-faq-list {
    margin-bottom: 2rem;
  }
  .p-feature {
    padding: 0 0 12rem;
  }
  .p-feature::before {
    top: -5.5rem;
    right: -10rem !important;
    background-size: 85%;
  }
  .p-footer-cta__left {
    padding: 0 15rem 0 0rem !important;
    background: linear-gradient(180deg, transparent 0%, transparent 5%, #DDEBF5 5%, #DDEBF5 100%);
  }
  .p-footer-cta__textbox {
    padding-top: 1rem;
  }
  .p-footer-cta__lead {
    margin-bottom: 0;
    font-size: 1.4rem;
  }
  .p-footer-cta__title {
    font-size: 2.2rem;
  }
  .p-footer-cta__right {
    background: linear-gradient(180deg, transparent 0%, transparent 5%, #dbdde3 5%, #dbdde3 100%);
  }
  .p-footer__wrap {
    flex-direction: column;
  }
  .p-footer__wrap nav ul li {
    margin: 0 2rem;
  }
  .p-footer__logo {
    margin-bottom: 6rem;
  }
  .p-header__inner {
    height: 10rem;
  }
  .p-header__btnwrap .c-btn--white {
    padding: 2px 1vw;
  }
  .p-header__btnwrap .c-btn--white.seminar span::before {
    margin-top: 0;
  }
  .p-header__btnwrap .c-btn--white.download span::before {
    margin-top: 0;
  }
  .p-header__menu-form .c-btn--grad span {
    padding: 5.1rem 1rem 1rem;
    font-size: clamp(12px, 0.729vw, 14px);
  }
  .p-header__menu-form .c-btn--grad {
    font-size: 1.4rem;
  }
  .p-header__nav.is-active {
    display: block;
    z-index: 99;
  }
  .p-header__nav.is-active nav {
    display: block !important;
    height: auto;
  }
  .p-header__nav.is-active ul:nth-of-type(2) li a:after, .p-header__nav.is-active ul:nth-of-type(2) li a:before {
    content: none;
  }
  .p-header__nav.is-active li {
    margin: 0 !important;
  }
  .p-header__nav.is-active ul li a {
    color: #4A536E;
    font-weight: 600;
    font-size: 18px !important;
  }
  .c-btn--request {
    width: 13rem;
  }
  .p-home-mv__wrap ul li a,
  .c-btn--request button {
    width: auto;
    font-size: 1.4rem;
  }
  .p-home-mv__wrap ul li a,
  .c-btn--request button {
    padding: 1rem 2rem;
  }
  .p-home-mv__lead {
    font-size: 1.6rem;
  }
  .p-home-mv__title {
    font-size: 3.4rem !important;
  }
  .p-home-mv__text {
    font-size: 1.4rem;
  }
  .p-price {
    padding: 8rem 0 18rem;
  }
  .p-price__textbox::before {
    top: 3rem;
    background-size: 90%;
  }
  .p-reason {
    margin-top: -8rem;
    padding: 0;
  }
  .p-service-detail {
    padding: 0 0 2rem;
  }
  .p-service-detail__title-box {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 6rem;
  }
  .p-service-detail__text {
    width: 100%;
    margin-top: 4rem;
  }
  .p-service {
    padding: 8rem 0;
  }
  .p-service::before {
    top: -21rem;
    right: -10rem;
    width: 50%;
    background-size: 90%;
  }
  .p-service__title {
    font-size: 3.2rem;
  }
  .p-service__item {
    min-height: 82rem;
    margin: 2rem;
  }
  .p-solution {
    padding: 8rem 0 14rem;
  }
  .p-spport {
    padding: 6rem 0 8rem !important;
  }
  .p-spport::before {
    top: -26rem;
    right: -17rem;
    width: 50%;
    background-size: 90%;
  }
  .p-spport__item--right::before {
    content: none;
  }
  .p-spport__item--left {
    display: flex;
    flex-direction: column;
    align-items: end;
  }
  .p-spport__item--left::before {
    content: none;
  }
  .p-spport__item__textbox--right {
    width: 85%;
    padding: 6rem 6rem 10rem !important;
  }
  .p-spport__item__textbox--left {
    width: 85%;
    padding: 6rem 6rem 10rem !important;
  }
  .p-top-webinar::before {
    top: 4rem;
    right: -4rem;
    height: 19%;
    background-size: 95%;
  }
  .p-top-webinar__wrap {
    margin-top: 0;
  }
  .p-top-download {
    padding: 6rem 0;
  }
  .p-top-solution {
    padding: 18rem 0 5rem;
  }
  .p-top-solution::before {
    top: -22rem !important;
    left: -10rem !important;
    background-size: 60%;
  }
  .p-top-solution__item {
    width: 30%;
  }
  .c-under-mv.feature::before {
    right: -12rem;
    bottom: -24rem;
    background-size: 90%;
  }
  .c-under-mv.casestudy::before {
    right: 0;
    bottom: -17rem;
    width: 28%;
  }
  .c-under-mv.webinar::before {
    right: -6rem;
  }
  .c-under-mv.download::before {
    right: -11rem;
    bottom: -12rem !important;
    width: 30%;
    height: 70%;
  }
  .c-under-mv.contact::before {
    right: -8rem !important;
    bottom: -11rem !important;
  }
  .c-under-mv.consultation::before {
    right: -8rem !important;
    bottom: -19rem !important;
    height: 73%;
  }
  .p-webinar__item {
    width: 48%;
  }
  .p-webinar__item-title {
    padding-bottom: 1rem;
    font-size: 2rem;
  }
  .p-works__wrap {
    padding: 16rem 0;
  }
  .p-worry {
    padding: 10rem 0;
  }
  .p-worry__items {
    margin: 0 0 3rem;
  }
  .p-worry__answer {
    margin: 0 1.5rem;
  }
  .u-sp-m {
    display: block;
  }
  .u-tab {
    display: block;
  }
}

@media screen and (max-width: 1100px) {
  .c-account-btn {
    padding: 8px 10px!important;
  }
  .l-header {
    height: auto;
  }
  .p-header__logo {
    margin-right: 0;
    margin-left: 5vw;
    padding: 20px 30px 20px 0;
  }
  .p-header__hamburger {
    display: block;
    z-index: 999;
    position: fixed;
    top: 3rem;
    right: 3vw;
    width: 4.2rem;
    height: 4.2rem;
    text-align: center;
    cursor: pointer;
  }
  .p-header__hamburger span {
    display: block;
    position: absolute;
    left: 0.6rem;
    width: 3rem;
    height: 0.2rem;
    background: #555;
    transition: 0.3s ease-in-out;
  }
  .p-header__hamburger span:nth-child(1) {
    top: 1rem;
  }
  .p-header__hamburger span:nth-child(2) {
    top: 2rem;
  }
  .p-header__hamburger span:nth-child(3) {
    top: 3rem;
  }
  .p-header__hamburger.is-active span:nth-child(1) {
    top: 1.6rem;
    left: 0.6rem;
    transform: rotate(-45deg);
    background: #000;
  }
  .p-header__hamburger.is-active span:nth-child(2), .p-header__hamburger.is-active span:nth-child(3) {
    top: 16px;
    transform: rotate(45deg);
    background: #000;
  }
  .p-header__nav {
    visibility: hidden;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F2F2F2;
    color: #000;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .p-header__nav.is-active {
    display: inline-flex;
    visibility: visible;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow-y: scroll;
    opacity: 1;
  }
  .p-header__nav.is-active nav {
    display: block;
    height: auto !important;
  }
  .p-header__nav.is-active ul {
    display: block;
    margin: 0 auto !important;
  }
  .p-header__nav.is-active ul li {
    display: block;
    margin: 0 auto 3rem !important;
    text-align: center;
  }
  .p-header__nav.is-active ul li a {
    display: inline;
    font-size: clamp(18px, 1.146vw, 22px);
  }
  .p-header__nav.is-active ul:nth-of-type(2) li a {
    display: inline-block;
    width: 100%;
    padding: 0;
    background: transparent;
    font-size: clamp(24px, 1.562vw, 30px);
  }
  .p-header__menu {
    padding-top: 16rem;
  }
  .p-header__menu-form .c-btn--grad {
    padding: 1rem 2rem !important;
    border-radius: 50px;
    background: linear-gradient(to right, #3BB4C4 0%, #7168D3 100%) !important;
    color: #fff !important;
  }
  .p-header__menu-form .c-btn--grad span {
    padding: 0 0 0 4rem;
  }
  .p-header__menu-form .c-btn--grad span:before {
    top: -0.5rem;
    left: 1.2rem;
    margin-top: 0;
  }
  .p-header__btnwrap {
    margin-right: 0;
  }
  .p-header__btnwrap li a {
    color: #637CCF !important;
  }
  .p-header__contact li a {
    max-width: none;
  }
  .p-header__contact li a img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .u-768 {
    display: none;
  }
  .u-tab {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .c-btn__double {
   flex-wrap:wrap;
  }
  .c-btn__double li{
    width: 100%;
}
  .c-btn__double li a {
    width: 100%;
    margin: 0 0.5rem 2rem;
  }
  .c-btn--line {
    padding: 0 1rem 1.5rem;
    font-size: 1.4rem;
  }
  .c-category--white {
    padding: 0.3rem 1rem;
    font-size: 1.2rem;
  }
  .c-category--grad {
    width: 6rem;
    padding: 0.3rem 0.5rem;
    font-size: 1.2rem;
  }
  .c-page-top__inner img {
    width: 40%;
  }
  .c-section-title--en {
    font-size: 6rem;
  }
  .c-section-title--ja {
    font-size: 2rem;
  }
  .c-under-mv {
    height: 25rem;
    padding-bottom: 4rem;
  }
  .c-under-mv__en {
    font-size: 7rem;
  }
  .c-under-mv__en.small {
    font-size: 5rem;
  }
  .c-under-mv__title {
    font-size: 2rem;
  }
  .c-under-mv__text {
    margin-bottom: 6rem;
    font-size: 1.2rem;
  }
  .p-about__textbox {
    padding: 9rem 3rem 4rem !important;
  }
  .p-about__title {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .p-casestudy__item-textbox {
    padding: 2rem;
  }
  .p-casestudy__item-titlewrap {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .p-casestudy__item-title {
    font-size: 1.8rem;
  }
  .p-casestudy .p-casestudy .p-casestudy__item {
    width: 100% !important;
  }
  .p-column__swiper-item img {
    margin-bottom: 1rem;
  }
  .p-column__swiper .swiper-button-prev {
    top: -6rem !important;
    right: 6rem;
  }
  .p-column__swiper .swiper-button-prev::after {
    background-size: 85%;
  }
  .p-column__swiper .swiper-button-next {
    top: -6rem !important;
  }
  .p-column__swiper .swiper-button-next::after {
    background-size: 85%;
  }
  .p-company__title {
    margin-bottom: 1rem;
    font-size: 2.4rem !important;
  }
  .p-company__btn {
    text-align: right;
  }
  .p-company .p-achievement__title {
    margin-bottom: 2rem;
    font-size: 2.2rem;
  }
  .p-company .p-achievement__item-text {
    font-size: 1.8rem;
  }
  .p-company .p-achievement__item-text span {
    font-size: 3rem;
  }
  .p-contact {
    padding: 18rem 0 1rem;
  }
  .p-contact__textbox {
    margin-bottom: 2rem;
  }
  .mktoHtmlText .policy-link {
    margin: 4rem 0 2rem;
  }
  .p-download {
    padding: 18rem 0 8rem !important;
  }
  .p-download__item {
    margin-bottom: 4rem !important;
    padding: 0 3rem 3rem !important;
  }
  .p-download__item img {
    top: -1rem !important;
    width: 100% !important;
  }
  .p-download__item-titlewrap {
    margin-bottom: 2rem;
  }
  .p-download__item-titlewrap img {
    width: 2rem !important;
  }
  .p-download__item-title {
    font-size: 2rem;
  }
  .p-download__item-text {
    padding-top: 2rem;
  }
  .p-embodiment__title-wrap img {
    width: 100% !important;
  }
  .p-embodiment__item__title {
    margin-bottom: 1rem;
    font-size: 2.4rem !important;
  }
  .p-faq {
    padding: 6rem 0 !important;
  }
  .p-faq-list {
    margin-bottom: 1.5rem;
  }
  .p-faq-list dt {
    padding: 1rem 3.4rem 1rem 2rem !important;
    line-height: 1.5;
  }
  .p-faq-list dt i {
    margin-right: 2rem;
    font-size: 2.4rem;
  }
  .p-faq-list dd {
    padding: 1rem 3.4rem 1rem 2rem;
    line-height: 1.5;
  }
  .p-faq-list dd i {
    margin-right: 2rem;
    font-size: 2.4rem;
  }
  .p-faq__icon {
    right: 2rem;
  }
  .p-footer-cta__left {
    justify-content: flex-start;
    margin-bottom: 4rem;
    padding: 0 2rem !important;
    background-color: #DDEBF5;
  }
  .p-footer-cta__left .cta-img {
    width: 0 !important;
  }
  .p-footer-cta__textbox {
    padding: 4rem 0;
  }
  .p-footer-cta__title {
    font-size: 2.6rem !important;
  }
  .p-footer-cta__right {
    justify-content: flex-start;
    padding: 0 2rem !important;
    background-color: #dbdde3;
  }
  .p-footer-cta__right .cta-img {
    width: 0 !important;
  }
  .p-footer {
    padding: 12rem 2rem 11.5rem;
  }
  .p-footer__wrap nav ul li {
    margin: 0 1rem !important;
  }
  .p-footer__logo img:nth-child(1) {
    max-width: 22rem;
    margin-right: 1rem;
  }
  .p-footer__logo-jpx {
    width: 20%;
  }
  .p-home-mv__text {
    margin-bottom: 4rem;
  }
  .p-price__textbox {
    margin-top: 8rem;
  }
  .p-price__textbox::before {
    top: -25rem !important;
    width: 82%;
  }
  .p-price__price {
    margin-top: 4rem;
    font-size: 2.2rem;
  }
  .p-price__price span {
    font-size: 4rem !important;
  }
  .p-price__price::before {
    height: 10rem;
  }
  .p-price__attention {
    margin-top: 5rem;
  }
  .p-reason__title {
    margin-bottom: 2rem;
    font-size: 2.4rem !important;
  }
  .p-service-detail__title {
    white-space: normal;
  }
  .p-service-lead__btn {
    text-align: right;
  }
  .p-service::after {
    top: 76rem !important;
    left: -78rem !important;
  }
  .p-service__item {
    min-height: auto !important;
    padding: 3rem;
  }
  .p-service__item--title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  .p-service__btn {
    margin-top: 4rem;
  }
  .p-solution {
    padding: 2rem 0 0 !important;
  }
  .p-solution::after {
    border-top: 50px solid #4A536E;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
  }
  .p-support-service {
    margin-top: 4rem;
  }
  .p-support-service__item {
    padding: 1.5rem;
  }
  .p-support-service__textbox {
    display: block;
  }
  .p-support-service__img {
    width: 100%;
  }
  .p-support-service__text {
    width: 100%;
    margin-top: 1.5rem;
  }
  .p-spport__title-wrap {
    padding-bottom: 4rem;
  }
  .p-spport::before {
    top: -16rem;
    width: 75%;
  }
  .p-spport__item__textbox--right {
    width: 95% !important;
    padding: 4rem 3rem 10rem !important;
  }
  .p-spport__item__textbox--right::before {
    font-size: 7rem !important;
  }
  .p-spport__item__textbox--left {
    width: 95% !important;
    padding: 4rem 3rem 10rem !important;
  }
  .p-spport__item__textbox--left::before {
    font-size: 7rem !important;
  }
  .p-spport__item__textbox--left ul li {
    line-height: 2;
  }
  .p-spport__item__title {
    font-size: 2.4rem;
  }
  .p-top-webinar__textbox {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  .p-top-webinar__detail-wrap {
    flex-direction: column;
  }
  .p-top-webinar__s .p-webinar__item {
    margin-top: 4rem;
  }
  .p-top-download__items {
    flex-direction: column;
  }
  .p-top-download__item {
    width: 100% !important;
  }
  .c-under-mv.feature::before {
    right: -9rem;
    bottom: -20rem !important;
    width: 70% !important;
    height: 80%;
  }
  .c-under-mv.casestudy::before {
    right: -3rem !important;
    bottom: -18rem !important;
    width: 36% !important;
    height: 80% !important;
  }
  .c-under-mv.webinar::before {
    bottom: -22rem !important;
    width: 35% !important;
  }
  .c-under-mv.download::before {
    right: -3rem !important;
    bottom: -20rem !important;
    width: 36% !important;
    height: 85% !important;
  }
  .c-under-mv.contact::before {
    right: -6rem !important;
    bottom: -17rem !important;
    width: 60% !important;
    height: 102% !important;
  }
  .c-under-mv.consultation::before {
    right: -10rem !important;
    bottom: -18rem !important;
    width: 70% !important;
    top: 24rem!important;
  }
  .p-webinar__item {
    margin-top: 4rem;
  }
  .p-webinar__item-title {
    font-size: 1.6rem !important;
  }
  .p-webinar__item-textbox {
    padding: 2rem;
  }
  .p-webinar__item-detail p {
    font-size: 1.2rem;
  }
  .p-webinar__deco-img {
    display: none;
  }
  .p-works__title-wrap {
    margin-right: 5vw;
  }
  .p-works__title {
    font-size: 3rem;
  }
  .p-works__swiper {
    padding: 2rem;
  }
  .p-works__swiper .swiper-button-prev {
    position: absolute;
    top: 22rem !important;
    left: 0% !important;
    margin-top: 0 !important;
  }
  .p-works__swiper .swiper-button-next {
    position: absolute !important;
    top: 24rem !important;
    right: 2.5rem;
    left: auto !important;
  }
  .p-worry {
    padding: 10rem 0 4rem !important;
  }
  .p-worry::after {
    top: 7rem !important;
    left: -9rem !important;
    font-size: 14rem !important;
  }
  .p-worry h2 {
    margin-bottom: 4rem;
  }
  .p-worry__item {
    margin: 0 0 2rem 0 !important;
    padding: 4rem;
  }
}

@media screen and (max-width: 1540px) {
  .p-about::before {
    top: -21rem;
    left: -6rem;
    background-size: 90%;
  }
  .p-company__title {
    font-size: 3.8rem;
  }
  .p-feature::before {
    right: -2rem;
    width: 33%;
  }
  .p-footer-cta__left .cta-img {
    width: 52%;
  }
  .p-footer-cta__right {
    padding: 0 2rem 0 6rem;
  }
  .p-footer-cta__right .cta-img {
    width: 42%;
  }
  .p-home-mv__wrap {
    margin-left: 4vw;
  }
  .p-home-mv__title {
    font-size: 4.4rem;
  }
  .p-home-mv__text {
    margin-bottom: 1rem;
  }
  .p-spport__item--right {
    padding-top: 16rem;
    padding-right: 6vw;
  }
  .p-spport__item--left {
    padding-left: 6vw;
  }
  .p-spport__item__textbox--right {
    padding: 6rem 6rem 6rem 34rem;
  }
  .p-spport__item__textbox--left {
    padding: 6rem 34rem 6rem 6rem;
  }
  .p-top-solution::before {
    top: -27rem;
    left: -17rem;
  }
  .c-under-mv.contact::before {
    right: -142px;
    bottom: -16rem;
  }
  .c-under-mv.consultation::before {
    right: 0;
    bottom: -29rem;
    width: 34.5%;
  }
}

@media screen and (min-width: 1001px) {
  .p-about__img {
    display: none;
  }
  .p-top-webinar__s .p-webinar__item-detail-wrap {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .p-about__textbox {
    width: 100% !important;
    margin-top: -4rem !important;
    padding: 9rem 4rem 6rem !important;
  }
  .p-about__textbox::after {
    content: none;
  }
  .p-footer-cta__wrap {
    display: block;
  }
  .p-footer-cta__left {
    justify-content: center;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 18%, #DDEBF5 18%, #DDEBF5 100%);
  }
  .p-footer-cta__right {
    justify-content: center;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, transparent 18%, #dbdde3 18%, #dbdde3 100%);
  }
  .p-top-webinar {
    margin-bottom: 8rem;
  }
  .p-top-webinar::before {
    content: none;
  }
  .p-top-webinar__wrap {
    flex-direction: column;
  }
  .p-top-webinar__l {
    width: 100%;
  }
  .p-top-webinar__l .p-webinar__item-img img {
    aspect-ratio: 686/398;
  }
  .p-top-webinar__l.p-webinar__item {
    width: 100%;
  }
  .p-top-webinar__s {
    flex-direction: column;
    width: 100%;
  }
  .p-top-webinar__s__link {
    padding: 2rem;
  }
  .p-top-webinar__s .p-webinar__item {
    width: 100%;
  }
  .p-top-download__items {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .p-top-download__item {
    width: calc((100% - 2rem) / 2);
  }
  .p-works__wrap {
    display: block;
  }
  .p-works__title-wrap {
    display: flex;
    justify-content: space-between;
  }
  .p-works__title-wrap a {
    margin-top: 2rem;
  }
  .p-works__swiper .swiper-button-prev {
    top: 74vw;
    left: 35%;
  }
  .p-works__swiper .swiper-button-next {
    top: 74vw;
    left: 50%;
  }
}

@media screen and (min-width: 769px) {
  .p-header__nav {
    height: 100%;
  }
  .p-header__nav nav {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2rem;
  }
  .p-header__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .p-header__menu li {
    line-height: 1.3;
  }
  .p-header__menu li a {
    font-size: clamp(14px, 0.8333vw, 16px);
    white-space: nowrap;
  }
  .p-header__menu-form {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .p-header__menu-form__item01 {
    margin-right: 2rem;
  }
  .p-header__menu-form__item02 {
    height: 100%;
  }
  .p-header__menu-form__item02 a {
    text-align: center;
  }
  .p-header__menu-form__item03 {
    height: 100%;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {
  .p-header__nav nav {
    gap: 1vw;
  }
  .p-header__menu {
    gap: 1vw;
  }
  .p-header__menu li a {
    font-size: 1.3vw;
    white-space: normal;
  }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
  .p-header__menu-form__item01 {
    margin-right: 1vw;
  }
}

@media screen and (max-width: 768px) and (max-width: 1280px) {
  .p-header__nav.is-active nav {
    flex-direction: column;
    align-items: center;
    height: 90vh; /* justify-content: center; */
  }
}

@media screen and (max-width: 768px) and (max-width: 1280px) and (max-width: 1280px) {
  .p-header__nav.is-active nav a {
    color: #4A536E;
    font-size: 20px !important;
  }
}

@media screen and (max-width: 768px) and (max-width: 900px) {
  .p-header__nav.is-active ul:nth-of-type(2) li a {
    background: transparent;
  }
}

@media screen and (max-width: 600px) {
  .p-home-mv__wrap {
    width: 100%;
    margin: 0;
    padding: 4rem 5vw;
  }
  .p-home-mv__wrap ul {
    display: block;
  }
  .p-home-mv__wrap ul li a,
  .c-btn__double li a.c-btn--white,
  .p-home-mv__wrap ul li form {
    width: 100%!important;
    margin: 0 0 2rem;
  }
  .c-btn--request button {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-service-detail__img-1 {
    display: none;
  }
  .p-service-detail__img-2 {
    display: block;
  }
}

@media screen and (min-width: 1281px) {
  .p-spport__item--right img {
    display: none;
  }
  .p-spport__item--left img {
    display: none;
  }
}

.bnr-manegy.manegy-type03 {/*type03*/
  margin: 9rem auto 0 auto;
  padding: 0 4rem;
  max-width: calc(1160px + 8rem);
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: #FFF;
  gap: 20px;
  cursor: pointer;
  transition: .3s;
  border-radius: 15px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.07);
 border: 2px solid #49A0C8;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner:hover {
  opacity: 0.7;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 15px;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_cont .bnr-manegy_head {
  font-size: 26px;
  font-weight: bold;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_cont .bnr-manegy_head span {
  display: block;
  font-size: 20px;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_cont p {
  font-size: 16px;
  font-weight: normal;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_link {
  margin-top: auto;
  margin-bottom: -15px;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_link a {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  border-bottom: 2px solid #CCC;
  padding: 0 50px 20px 10px;
  position: relative;
  background: url("/hr/img/icon_bml.jpg") no-repeat right 7px ;
}
.bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_link a:before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 50px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background: #637ccf;
}
@media all and (max-width: 768px) {
  .bnr-manegy.manegy-type03 {/*type03*/
    padding: 0 5vw 7rem 5vw;
    margin: 0;
  }
  .bnr-manegy.manegy-type03 .bnr-manegy_inner {
    flex-direction: column;
    padding: 20px;
    gap: 10px;
  }
  .bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_cont .bnr-manegy_head {
    font-size: 18px;
    font-weight: bold;
  }
  .bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_cont .bnr-manegy_head span {
    display: inline;
    font-size: 18px;
    font-weight: bold;
  }
  .bnr-manegy.manegy-type03 .bnr-manegy_inner .bnr-manegy_link {
    margin-left: auto;
    margin: 15px 0 0 auto;
  }
}

.p-price__price > p, .p-price__price > form {
    display: inline-block;
    vertical-align: middle;
}
.p-price__price > form {
    margin-left: 50px;
}

@media all and (max-width: 768px) {
    .p-price__price::before {
        height: 17rem;
    }
    .p-price__price > p, .p-price__price > form {
        display: block;
    }
    .p-price__price > p {
        text-align: center;
    }
    .p-price__price > form {
        margin: 10px auto 0;
        width: 90%;
        max-width: 350px;
        padding: 0;
    }
    .c-btn--white.c-btn--request,
    .c-btn--white.c-btn--request span {
        font-size: inherit!important;
    }
}

.p-header__menu-form__item04 {
  padding: 0 20px;
}
.p-header__menu-form__item04 ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-header__menu-form__item04 .c-account-btn {
  max-width: 170px;
  width: 100%;
}
.c-account-btn {
  color: #fff!important;
  background: #3a4157!important;
  border-radius: 10000px;
  display: inline-block;
  padding: 8px 22px 8px 45px;
  font-size: clamp(12px, 0.729vw, 14px);
  font-weight: bold;
  position: relative;
}
.c-account-btn.c-ico-account::before {
  position: absolute;
  content: url(/hr/engagement/assets/img/common/ico-account.png);
  left: 22px;
  top: 11px;
}
.c-account-btn.c-ico-cart::before {
  content: url(/hr/engagement/assets/img/common/ico-cart.png);
  position: absolute;
  left: 19px;
  top: 12px;
}

@media screen and (max-width: 1540px) {
  .p-header__contact li a {
    width: 8vw;
  }
  .p-header__menu-form__item04 {
    padding: 0 15px;
  }
  .c-account-btn {
    padding: 8px 10px 8px 34px;
  }
  .c-account-btn.c-ico-account::before {
    left: 14px;
  }
  .c-account-btn.c-ico-cart::before {
    left: 12px;
  }
}

@media screen and (max-width: 768px) {
  .p-header__menu-form__item04 {
    padding: 0;
  }
}
.p-header__contact li:nth-of-type(4) a {
  background-color: #4a536e;
}


.p-webinar__item-textbox {
    display: flex;
    flex-wrap: wrap;
gap:4%;
}
.p-webinar__item-textbox img {
    width: 40%;
}
.p-top-webinar__s .p-webinar__item-textbox > div {
    width: 56%;
}
.p-webinar__item-textbox {
    justify-content: space-between;
    align-items: center;
}

.p-top-webinar__s .p-webinar__item:nth-child(n+5) {
    display: none;
}
.p-top-webinar__s .p-webinar__item:nth-child(1) {
        background-image: url(../img/webinar/img_detail91.png);
}
.p-top-webinar__s .p-webinar__item:nth-child(2) {
        background-image: url(../img/webinar/img_detail38.png);
}
.p-top-webinar__s .p-webinar__item:nth-child(3) {
        background-image: url(../img/webinar/img_detail64.png);
}
.p-top-webinar__s .p-webinar__item:nth-child(4) {
        background-image: url(../img/webinar/img_detail48.png);
}

@media screen and (max-width: 768px) {
.p-top-webinar__s {
  grid-template-columns: repeat(1, 1fr);
}
.p-webinar__item-textbox img {
    width: 100%;
}
.p-top-webinar__s .p-webinar__item-textbox > div {
    width: 100%;
}
}