@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-black: #1F1D1D;
  --color-main: #D11924;
  --color-main2: #818181;
  --color-bg: #F7F7F7;
  --color-bg2: #FDF7F7;
  --color-bg3: #FFFAFA;
  --color-placeholder: rgba(0, 0, 0, 0.3);
  --color-error: red;
  --color-border: #DDDDDD;
  --color-form: #F8F8F8;
}

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

body {
  line-height: 1;
}

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

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

* {
  box-sizing: border-box !important;
  font-size: 1.4rem;
}

html {
  font-size: 62.5%;
}
html.is-open {
  overflow: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}
body * {
  letter-spacing: 0.05em;
}

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

a {
  color: var(--color-black);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

picture {
  display: block;
}

input[type=submit],
input[type=button],
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=reset],
select,
button,
textarea {
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=text]::-webkit-search-decoration,
input[type=number]::-webkit-search-decoration,
input[type=email]::-webkit-search-decoration,
input[type=tel]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration,
textarea::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=reset]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: -2px;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
.is-pc--inline {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .is-pc--inline {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}
.is-sp--inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp--inline {
    display: inline-block;
  }
}

.swiper-container {
  padding-bottom: 10px;
  padding-top: 120px;
}
@media screen and (max-width: 1199px) {
  .swiper-container {
    padding-bottom: calc(10 / 1152 * 100vw);
    padding-top: calc(120 / 1152 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container {
    padding-bottom: calc(0 / 375 * 100vw);
    padding-top: 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  height: 54px;
  top: 27px;
  width: 54px;
  z-index: 10;
}
@media screen and (max-width: 1199px) {
  .swiper-button-prev,
.swiper-button-next {
    height: calc(54 / 1152 * 100vw);
    top: calc(27 / 1152 * 100vw);
    width: calc(54 / 1152 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
.swiper-button-next {
    bottom: calc(0 / 375 * 100vw);
    height: calc(48 / 375 * 100vw);
    top: auto;
    width: calc(48 / 375 * 100vw);
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}

.swiper-button-prev {
  left: auto;
  right: 97px;
}
@media screen and (max-width: 1199px) {
  .swiper-button-prev {
    right: calc(97 / 1152 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    right: calc(10 / 375 * 100vw);
  }
}
.swiper-button-prev:after {
  background-image: url(../images/icon_prev.svg);
}
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-prev.swiper-button-disabled:after {
  background-image: url(../images/icon_prev_disabled.svg);
}

.swiper-button-next {
  right: 27px;
}
@media screen and (max-width: 1199px) {
  .swiper-button-next {
    right: calc(27 / 1152 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: calc(10 / 375 * 100vw);
  }
}
.swiper-button-next:after {
  background-image: url(../images/icon_next.svg);
}
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
}
.swiper-button-next.swiper-button-disabled:after {
  background-image: url(../images/icon_next_disabled.svg);
}

.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  background: var(--color-white);
  height: 14px;
  margin: 0 5px;
  opacity: 1;
  width: 14px;
}
@media screen and (max-width: 1199px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(14 / 1152 * 100vw);
    margin: 0 calc(5 / 1152 * 100vw);
    width: calc(14 / 1152 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(14 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--color-main);
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1199px) {
      transform: translateY(calc(10 / 1152 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1199px) {
      transform: translateY(calc(10 / 1152 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(7px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(7px);
  }
}
.lity-close,
.lity-close:hover {
  display: none !important;
}

/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v52-japanese_latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v52-japanese_latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v52-japanese_latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/raleway-v29-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-600 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/raleway-v29-latin-600.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* raleway-800 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/raleway-v29-latin-800.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.l-container {
  margin: 0 auto;
  width: 1152px;
  overflow-x:visible;
}
@media screen and (max-width: 1439px) {
  .l-container {
    width: calc(1152 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(10 / 375 * 100vw);
    padding-right: calc(10 / 375 * 100vw);
    width: 100%;
  }
}
.l-container--full {
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 1440px;
}
@media screen and (max-width: 1439px) {
  .l-container--full {
    padding-left: calc(10 / 1440 * 100vw);
    padding-right: calc(10 / 1440 * 100vw);
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-container--full {
    padding-left: calc(10 / 375 * 100vw);
    padding-right: calc(10 / 375 * 100vw);
  }
}
.l-container.is-complete {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .l-container.is-complete {
    padding-left: calc(40 / 375 * 100vw);
    padding-right: calc(40 / 375 * 100vw);
  }
}

.c-function {
  background-color: var(--color-white);
  border-radius: 20px;
  position: relative;
  width: 912px;
}
@media screen and (max-width: 1439px) {
  .c-function {
    border-radius: calc(20 / 1440 * 100vw);
    width: calc(912 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function {
    border-radius: calc(20 / 375 * 100vw);
    width: calc(355 / 375 * 100vw);
  }
}
.c-function__inner {
  -ms-overflow-style: none;
  max-height: 77vh !important;
  overflow: scroll;
  padding: 40px;
  scrollbar-width: none;
}
@media screen and (max-width: 1439px) {
  .c-function__inner {
    padding: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__inner {
    padding: calc(20 / 375 * 100vw) calc(10 / 375 * 100vw) calc(35 / 375 * 100vw);
  }
}
.c-function__inner::-webkit-scrollbar {
  display: none;
}
.c-function__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 356px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1439px) {
  .c-function__thumbnail {
    height: calc(356 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__thumbnail {
    height: calc(208 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.c-function__textBox__mainTextBox__title {
  display: flex;
  font-size: 21px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__mainTextBox__title {
    font-size: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__mainTextBox__title {
    font-size: calc(17 / 375 * 100vw);
  }
}
.c-function__textBox__mainTextBox__title::before {
  background-color: var(--color-main);
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 6px;
  margin-right: 6px;
  transform: translateY(8px);
  width: 6px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__mainTextBox__title::before {
    height: calc(6 / 1440 * 100vw);
    margin-right: calc(6 / 1440 * 100vw);
    transform: translateY(calc(8 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__mainTextBox__title::before {
    height: calc(5 / 375 * 100vw);
    margin-right: calc(5 / 375 * 100vw);
    transform: translateY(calc(6 / 375 * 100vw));
    width: calc(5 / 375 * 100vw);
  }
}
.c-function__textBox__mainTextBox__text {
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__mainTextBox__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__mainTextBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.c-function__textBox__subTextBox {
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__subTextBox {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__subTextBox {
    display: block;
    margin-top: calc(20 / 375 * 100vw);
  }
}
.c-function__textBox__subTextBox__block__title {
  display: flex;
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__subTextBox__block__title {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__subTextBox__block__title {
    font-size: calc(17 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
  }
}
.c-function__textBox__subTextBox__block__title::before {
  background-image: url(../images/onayami_icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 6px;
  transform: translateY(6px);
  width: 16px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__subTextBox__block__title::before {
    height: calc(16 / 1440 * 100vw);
    margin-right: calc(6 / 1440 * 100vw);
    transform: translateY(calc(6 / 1440 * 100vw));
    width: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__subTextBox__block__title::before {
    height: calc(14 / 375 * 100vw);
    margin-right: calc(5 / 375 * 100vw);
    transform: translateY(calc(7 / 375 * 100vw));
    width: calc(14 / 375 * 100vw);
  }
}
.c-function__textBox__subTextBox__block__textList {
  margin-top: 5px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__subTextBox__block__textList {
    margin-top: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__subTextBox__block__textList {
    margin-top: calc(5 / 375 * 100vw);
  }
}
.c-function__textBox__subTextBox__block__textList__text {
  display: flex;
  font-size: 16px;
  line-height: 26px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__subTextBox__block__textList__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(26 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__subTextBox__block__textList__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.c-function__textBox__subTextBox__block__textList__text::before {
  content: "・";
  display: block;
  width: 1em;
}
.c-function__textBox__subTextBox__block + .c-function__textBox__subTextBox__block {
  margin-left: 60px;
}
@media screen and (max-width: 1439px) {
  .c-function__textBox__subTextBox__block + .c-function__textBox__subTextBox__block {
    margin-left: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function__textBox__subTextBox__block + .c-function__textBox__subTextBox__block {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}
.c-function button {
  background-color: transparent;
  background-image: url(../images/icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  cursor: pointer;
  display: block;
  height: 60px;
  position: absolute;
  right: -30px;
  top: -30px;
  width: 60px;
}
@media screen and (max-width: 1439px) {
  .c-function button {
    height: calc(60 / 1440 * 100vw);
    right: calc(-30 / 1440 * 100vw);
    top: calc(-30 / 1440 * 100vw);
    width: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-function button {
    height: calc(51 / 375 * 100vw);
    right: calc(0 / 375 * 100vw);
    top: calc(-40 / 375 * 100vw);
    width: calc(51 / 375 * 100vw);
  }
}
.c-function--function1 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_1.png);
}
@media screen and (max-width: 767px) {
  .c-function--function1 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_1_sp.png);
  }
}
.c-function--function2 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_2.png);
}
@media screen and (max-width: 767px) {
  .c-function--function2 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_2_sp.png);
  }
}
.c-function--function3 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_3.png);
}
@media screen and (max-width: 767px) {
  .c-function--function3 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_3_sp.png);
  }
}
.c-function--function4 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_4.png);
}
@media screen and (max-width: 767px) {
  .c-function--function4 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_4_sp.png);
  }
}
.c-function--function5 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_5.png);
}
@media screen and (max-width: 767px) {
  .c-function--function5 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_5_sp.png);
  }
}
.c-function--function6 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_6.png);
}
@media screen and (max-width: 767px) {
  .c-function--function6 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_6_sp.png);
  }
}
.c-function--function7 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_7.png);
}
@media screen and (max-width: 767px) {
  .c-function--function7 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_7_sp.png);
  }
}
.c-function--function8 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_8.png);
}
@media screen and (max-width: 767px) {
  .c-function--function8 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_8_sp.png);
  }
}
.c-function--function9 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_9.png);
}
@media screen and (max-width: 767px) {
  .c-function--function9 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_9_sp.png);
  }
}
.c-function--function10 .c-function__thumbnail {
  background-image: url(../images/function_thumbnail_lity_10.png);
}
@media screen and (max-width: 767px) {
  .c-function--function10 .c-function__thumbnail {
    background-image: url(../images/function_thumbnail_lity_10_sp.png);
  }
}

.c-case {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  height: 375px;
  justify-content: space-between;
  margin: 0 10px;
  padding: 45px 50px;
  width: 912px;
}
@media screen and (max-width: 1439px) {
  .c-case {
    border-radius: calc(10 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(14 / 1440 * 100vw) rgba(0, 0, 0, 0.08);
    height: calc(375 / 1440 * 100vw);
    margin: 0 calc(10 / 1440 * 100vw);
    padding: calc(45 / 1440 * 100vw) calc(50 / 1440 * 100vw);
    width: calc(912 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case {
    border-radius: calc(10 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(14 / 375 * 100vw) rgba(0, 0, 0, 0.08);
    display: block;
    height: calc(516 / 375 * 100vw);
    margin: 0 calc(10 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.c-case__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 256px;
  width: 340px;
}
@media screen and (max-width: 1439px) {
  .c-case__thumbnail {
    height: calc(256 / 1440 * 100vw);
    width: calc(340 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__thumbnail {
    height: calc(163 / 375 * 100vw);
    width: 100%;
  }
}
.c-case__textBox {
  width: 440px;
}
@media screen and (max-width: 1439px) {
  .c-case__textBox {
    width: calc(440 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__textBox {
    margin-top: calc(15 / 375 * 100vw);
    width: 100%;
  }
}
.c-case__textBox__company {
  color: #808080;
  font-size: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  .c-case__textBox__company {
    font-size: calc(15 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__textBox__company {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.c-case__textBox__company span.sama {
  font-size: 13px;
  margin-left: 2px;
}
@media screen and (max-width: 1439px) {
  .c-case__textBox__company span.sama {
    font-size: calc(13 / 1440 * 100vw);
    margin-left: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__textBox__company span.sama {
    font-size: calc(11 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.c-case__textBox__title {
  color: var(--color-main);
  font-size: 21px;
  font-weight: bold;
  line-height: 29px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  .c-case__textBox__title {
    font-size: calc(21 / 1440 * 100vw);
    line-height: calc(29 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__textBox__title {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    margin-bottom: calc(5 / 375 * 100vw);
  }
}
.c-case__textBox__text {
  font-size: 16px;
  line-height: 30px;
}
@media screen and (max-width: 1439px) {
  .c-case__textBox__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-case__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.c-case--case1 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_1.png);
}
@media screen and (max-width: 767px) {
  .c-case--case1 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_1_sp.png);
  }
}
.c-case--case2 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_2.png);
}
@media screen and (max-width: 767px) {
  .c-case--case2 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_2_sp.png);
  }
}
.c-case--case3 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_3.png);
}
@media screen and (max-width: 767px) {
  .c-case--case3 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_3_sp.png);
  }
}
.c-case--case4 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_4.png);
}
@media screen and (max-width: 767px) {
  .c-case--case4 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_4_sp.png);
  }
}
.c-case--case5 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_5.png);
}
@media screen and (max-width: 767px) {
  .c-case--case5 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_5_sp.png);
  }
}
.c-case--case6 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_6.png);
}
@media screen and (max-width: 767px) {
  .c-case--case6 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_6_sp.png);
  }
}
.c-case--case7 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_7.png);
}
@media screen and (max-width: 767px) {
  .c-case--case7 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_7_sp.png);
  }
}
.c-case--case8 .c-case__thumbnail {
  background-image: url(../images/case_thumbnail_8.png);
}
@media screen and (max-width: 767px) {
  .c-case--case8 .c-case__thumbnail {
    background-image: url(../images/case_thumbnail_8_sp.png);
  }
}

.p-header {
  height: 104px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  width: calc(100% - 310px);
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .p-header {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-header {
    height: calc(104 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: calc(64 / 375 * 100vw);
  }
}
.p-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding-left: 40px;
  padding-right: 35px;
}
@media screen and (max-width: 1439px) {
  .p-header__inner {
    padding-left: calc(40 / 1440 * 100vw);
    padding-right: calc(35 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: calc(15 / 375 * 100vw);
    padding-right: calc(30 / 375 * 100vw);
  }
}
.p-header__logoBox a {
  display: block;
}
.p-header__logoBox__logo {
  background-image: url(../images/logo_quidmonitor.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 44px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 147px;
}
@media screen and (max-width: 1439px) {
  .p-header__logoBox__logo {
    height: calc(44 / 1440 * 100vw);
    width: calc(147 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logoBox__logo {
    height: calc(33 / 375 * 100vw);
    width: calc(114 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__navList {
    display: none;
  }
}
.p-header__navList > ul {
  display: flex;
}
.p-header__navList > ul > li + li {
  margin-left: 30px;
}
@media screen and (max-width: 1439px) {
  .p-header__navList > ul > li + li {
    margin-left: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__navList > ul > li + li {
    margin-left: calc(30 / 375 * 100vw);
  }
}
.p-header__navList > ul a {
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-header__navList > ul a {
    font-size: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__navList > ul a {
    font-size: calc(15 / 375 * 100vw);
  }
}
.p-header__navList > ul a::after {
  background: var(--color-main);
  bottom: -5px;
  content: "";
  height: 1px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-header__navList > ul a::after {
    bottom: calc(-5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__navList > ul a::after {
    bottom: calc(-5 / 375 * 100vw);
  }
}
.p-header__navList > ul a:hover {
  color: var(--color-main);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-header__navList > ul a:hover {
    color: var(--color-black);
  }
}
.p-header__navList > ul a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 767px) {
  .p-header__navList > ul a:hover::after {
    transform: scale(0, 1);
  }
}
.p-header__hamburger {
  background-image: url(../images/icon_hamburger.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  display: none;
  height: calc(26 / 375 * 100vw);
  transform: translateY(calc(10 / 375 * 100vw));
  width: calc(26 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header.is-clone {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  height: 89px;
  margin: 10px;
  opacity: 0.95;
  position: fixed;
  top: 0;
  transform: translateY(-200%);
  transition: 0.6s;
  width: 100%;
  width: calc(100% - 310px);
  z-index: 100;
}
@media screen and (max-width: 1439px) {
  .p-header.is-clone {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-clone {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-header.is-clone {
    border-radius: calc(5 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(15 / 1440 * 100vw) rgba(0, 0, 0, 0.1);
    height: calc(89 / 1440 * 100vw);
    margin: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-clone {
    border-radius: calc(0 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(15 / 375 * 100vw) rgba(0, 0, 0, 0.1);
    height: calc(61 / 375 * 100vw);
    margin: calc(0 / 375 * 100vw);
  }
}
.p-header.is-clone .p-header__inner {
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-header.is-clone .p-header__inner {
    align-items: center;
    justify-content: space-between;
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.p-header.is-clone .p-header__logoBox__logo {
  background-image: url(../images/logo_quidmonitor_black.svg);
  margin-right: 33px;
}
@media screen and (max-width: 1439px) {
  .p-header.is-clone .p-header__logoBox__logo {
    margin-right: calc(33 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-clone .p-header__logoBox__logo {
    height: calc(28 / 375 * 100vw);
    margin-right: calc(20 / 375 * 100vw);
    width: calc(95 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-clone .p-header__hamburger {
    transform: translateY(0);
  }
}
.p-header.is-clone.is-show {
  transform: translateY(0);
}

.is-open .p-header.is-show .p-header__hamburger {
  background-image: url(../images/icon_hamburger_close.svg);
}

.p-mainVisual {
  background-color: var(--color-bg);
  border-radius: 10px;
  margin-left: 10px;
  margin-top: 10px;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-mainVisual {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual {
    border-radius: calc(10 / 1440 * 100vw);
    margin-left: calc(10 / 1440 * 100vw);
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    border-radius: calc(10 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(10 / 375 * 100vw);
    width: calc(355 / 375 * 100vw);
  }
}
.p-mainVisual::before {
  background-image: url(../images/mainvisual_decoration.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 208px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 441px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual::before {
    height: calc(208 / 1440 * 100vw);
    left: calc(-10 / 1440 * 100vw);
    top: calc(-10 / 1440 * 100vw);
    width: calc(441 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual::before {
    background-image: url(../images/mainvisual_decoration_sp.svg);
    height: calc(114 / 375 * 100vw);
    left: calc(0 / 375 * 100vw);
    top: calc(0 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual .l-container {
    padding: 0;
  }
}
.p-mainVisual__inner {
  padding: 125px 140px 120px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__inner {
    padding: calc(125 / 1440 * 100vw) calc(140 / 1440 * 100vw) calc(120 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner {
    padding: calc(95 / 375 * 100vw) calc(0 / 375 * 100vw) calc(130 / 375 * 100vw);
  }
}
.p-mainVisual__content {
  position: relative;
  width: 427px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content {
    width: calc(427 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content {
    width: 100%;
  }
}
.p-mainVisual__content__title {
  background-image: url(../images/mainvisual_text.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 163px;
  margin: 0 auto;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 345px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__title {
    height: calc(163 / 1440 * 100vw);
    width: calc(345 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__title {
    height: calc(121 / 375 * 100vw);
    width: calc(266 / 375 * 100vw);
  }
}
.p-mainVisual__content__text {
  font-size: 19px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 25px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__text {
    font-size: calc(19 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
    margin-top: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-mainVisual__content__laptop {
  left: 450px;
  position: absolute;
  top: 0px;
  width: 477px;
}
.p-mainVisual__content__laptop img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__laptop {
    left: calc(450 / 1440 * 100vw);
    width: calc(477 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__laptop {
    margin-top: calc(20 / 375 * 100vw);
    position: static;
    width: 100%;
  }
}
.p-mainVisual__content__media {
  background-image: url(../images/mainvisual_media.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 128px;
  margin: 30px auto 0;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 427px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__media {
    height: calc(128 / 1440 * 100vw);
    margin: calc(30 / 1440 * 100vw) auto 0;
    width: calc(427 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__media {
    background-image: url(../images/mainvisual_media_sp.svg);
    height: calc(169 / 375 * 100vw);
    margin: calc(40 / 375 * 100vw) auto 0;
    width: calc(283 / 375 * 100vw);
  }
}

.p-nav {
  margin-top: -60px;
  position: relative;
  width: calc(100% - 310px);
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .p-nav {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-nav {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-nav {
    margin-top: calc(-60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav {
    margin-top: calc(-80 / 375 * 100vw);
  }
}
.p-nav__inner {
  margin: 0 auto;
  width: 1006px;
}
@media screen and (max-width: 1439px) {
  .p-nav__inner {
    width: calc(1006 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__inner {
    width: 100%;
  }
}
.p-nav__navList > ul {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-nav__navList > ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navList > ul > li + li {
    margin-top: calc(52 / 375 * 100vw);
  }
}
.p-nav__navList a:hover .p-nav__navList__navBox::after {
  -webkit-animation: fuwafuwa 1.5s infinite;
          animation: fuwafuwa 1.5s infinite;
}
.p-nav__navList__navBox {
  background: #fff;
  border: 2px solid #eaeaea;
  border-radius: 15px;
  filter: drop-shadow(0px 0px 11px rgba(0, 0, 0, 0.07));
  height: 190px;
  padding: 45px 25px 0;
  position: relative;
  width: 244px;
}
@media screen and (max-width: 1439px) {
  .p-nav__navList__navBox {
    border: calc(2 / 1440 * 100vw) solid #eaeaea;
    border-radius: calc(15 / 1440 * 100vw);
    filter: drop-shadow(calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(11 / 1440 * 100vw) rgba(0, 0, 0, 0.07));
    height: calc(190 / 1440 * 100vw);
    padding: calc(45 / 1440 * 100vw) calc(25 / 1440 * 100vw) 0;
    width: calc(244 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navList__navBox {
    border: calc(2 / 375 * 100vw) solid #eaeaea;
    border-radius: calc(15 / 375 * 100vw);
    filter: drop-shadow(calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(11 / 375 * 100vw) rgba(0, 0, 0, 0.07));
    height: auto;
    margin: 0 auto;
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
    width: calc(288 / 375 * 100vw);
  }
}
.p-nav__navList__navBox::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 48px;
  left: 26px;
  position: absolute;
  top: -24px;
  width: 48px;
}
@media screen and (max-width: 1439px) {
  .p-nav__navList__navBox::before {
    height: calc(48 / 1440 * 100vw);
    left: calc(26 / 1440 * 100vw);
    top: calc(-24 / 1440 * 100vw);
    width: calc(48 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navList__navBox::before {
    height: calc(45 / 375 * 100vw);
    left: calc(21 / 375 * 100vw);
    top: calc(-22 / 375 * 100vw);
    width: calc(45 / 375 * 100vw);
  }
}
.p-nav__navList__navBox::after {
  background-image: url(../images/nav_icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -15px;
  content: "";
  display: block;
  height: 31px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 31px;
}
@media screen and (max-width: 1439px) {
  .p-nav__navList__navBox::after {
    bottom: calc(-15 / 1440 * 100vw);
    height: calc(31 / 1440 * 100vw);
    width: calc(31 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navList__navBox::after {
    bottom: calc(-20 / 375 * 100vw);
    height: calc(38 / 375 * 100vw);
    width: calc(38 / 375 * 100vw);
  }
}
.p-nav__navList__navBox__title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
  text-decoration: underline;
}
@media screen and (max-width: 1439px) {
  .p-nav__navList__navBox__title {
    font-size: calc(17 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navList__navBox__title {
    font-size: calc(17 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.p-nav__navList__navBox__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: justify;
}
@media screen and (max-width: 1439px) {
  .p-nav__navList__navBox__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-nav__navList__navBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(21 / 375 * 100vw);
  }
}
.p-nav__navList__navBox--source::before {
  background-image: url(../images/nav_icon_source.svg);
}
.p-nav__navList__navBox--analytics::before {
  background-image: url(../images/nav_icon_analytics.svg);
}
.p-nav__navList__navBox--ai::before {
  background-image: url(../images/nav_icon_ai.svg);
}
.p-nav__navList__navBox--global::before {
  background-image: url(../images/nav_icon_global.svg);
}

.p-logo {
  margin-top: 65px;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-logo {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-logo {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-logo {
    margin-top: calc(65 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-logo {
    margin-top: calc(70 / 375 * 100vw);
    overflow: hidden;
  }
}
.p-logo__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-logo__title {
    font-size: calc(32 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-logo__title {
    font-size: calc(24 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-logo__list {
  display: flex;
  margin: 0 -50vw;
}
.p-logo__list > ul {
  align-items: center;
  display: flex;
  flex-shrink: 0;
}
.p-logo__list > ul:first-child {
  -webkit-animation: loop 100s -50s linear infinite;
          animation: loop 100s -50s linear infinite;
}
.p-logo__list > ul:last-child {
  -webkit-animation: loop2 100s linear infinite;
          animation: loop2 100s linear infinite;
}
.p-logo__list__image {
  width: 2657px;
}
.p-logo__list__image img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-logo__list__image {
    width: calc(2657 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-logo__list__image {
    width: calc(1510 / 375 * 100vw);
  }
}
.p-logo__notice {
  margin: 20px auto 0;
  text-align: right;
  width: 912px;
}
@media screen and (max-width: 1439px) {
  .p-logo__notice {
    margin: calc(20 / 1440 * 100vw) auto 0;
    width: calc(912 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-logo__notice {
    margin: calc(25 / 375 * 100vw) auto 0;
    padding-right: calc(20 / 375 * 100vw);
    width: 100%;
  }
}

.p-onayami {
  background-color: var(--color-bg2);
  border-radius: 10px;
  margin-left: 10px;
  margin-top: 60px;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-onayami {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-onayami {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-onayami {
    border-radius: calc(10 / 1440 * 100vw);
    margin-left: calc(10 / 1440 * 100vw);
    margin-top: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami {
    border-radius: calc(10 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(50 / 375 * 100vw);
    width: calc(355 / 375 * 100vw);
  }
}
.p-onayami__inner {
  padding-bottom: 78px;
  padding-top: 84px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-onayami__inner {
    padding-bottom: calc(78 / 1440 * 100vw);
    padding-top: calc(84 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-onayami__inner::before {
  background-image: url(../images/onayami_decoration.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -45px;
  content: "";
  display: block;
  height: 57px;
  left: -20px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 122px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__inner::before {
    bottom: calc(-45 / 1440 * 100vw);
    height: calc(57 / 1440 * 100vw);
    left: calc(-20 / 1440 * 100vw);
    width: calc(122 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__inner::before {
    bottom: calc(-38 / 375 * 100vw);
    height: calc(53 / 375 * 100vw);
    left: calc(0 / 375 * 100vw);
    width: calc(113 / 375 * 100vw);
  }
}
.p-onayami__title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 45px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-onayami__title {
    font-size: calc(35 / 1440 * 100vw);
    margin-bottom: calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__title {
    font-size: calc(30 / 375 * 100vw);
    line-height: calc(40 / 375 * 100vw);
    margin-bottom: calc(25 / 375 * 100vw);
  }
}
.p-onayami__title span.dot {
  display: inline-block;
  position: relative;
}
.p-onayami__title span.dot::before {
  background-color: var(--color-main);
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -8px;
  width: 6px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__title span.dot::before {
    height: calc(6 / 1440 * 100vw);
    top: calc(-8 / 1440 * 100vw);
    width: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__title span.dot::before {
    height: calc(6 / 375 * 100vw);
    top: calc(-8 / 375 * 100vw);
    width: calc(6 / 375 * 100vw);
  }
}
.p-onayami__onayamiList > ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList > ul {
    display: block;
  }
}
.p-onayami__onayamiList > ul > li {
  width: 280px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList > ul > li {
    width: calc(280 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList > ul > li {
    margin: 0 auto;
    width: calc(302 / 375 * 100vw);
  }
}
.p-onayami__onayamiList > ul > li + li {
  margin-left: 35px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList > ul > li + li {
    margin-left: calc(35 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList > ul > li + li {
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-onayami__onayamiList__onayamiBox__title {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 288px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList__onayamiBox__title {
    height: calc(288 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox__title {
    height: calc(264 / 375 * 100vw);
  }
}
.p-onayami__onayamiList__onayamiBox__textList {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList__onayamiBox__textList {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox__textList {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-onayami__onayamiList__onayamiBox__textList > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList__onayamiBox__textList > ul > li + li {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox__textList > ul > li + li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-onayami__onayamiList__onayamiBox__textList__text {
  display: flex;
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList__onayamiBox__textList__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox__textList__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.p-onayami__onayamiList__onayamiBox__textList__text::before {
  background-image: url(../images/onayami_icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 14px;
  margin-right: 6px;
  transform: translateY(6px);
  width: 14px;
}
@media screen and (max-width: 1439px) {
  .p-onayami__onayamiList__onayamiBox__textList__text::before {
    height: calc(14 / 1440 * 100vw);
    margin-right: calc(6 / 1440 * 100vw);
    transform: translateY(calc(6 / 1440 * 100vw));
    width: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox__textList__text::before {
    height: calc(15 / 375 * 100vw);
    margin-right: calc(5 / 375 * 100vw);
    transform: translateY(calc(7 / 375 * 100vw));
    width: calc(15 / 375 * 100vw);
  }
}
.p-onayami__onayamiList__onayamiBox--case1 .p-onayami__onayamiList__onayamiBox__title {
  background-image: url(../images/onayami_title_1.svg);
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox--case1 .p-onayami__onayamiList__onayamiBox__title {
    background-image: url(../images/onayami_title_1_sp.svg);
  }
}
.p-onayami__onayamiList__onayamiBox--case2 .p-onayami__onayamiList__onayamiBox__title {
  background-image: url(../images/onayami_title_2.svg);
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox--case2 .p-onayami__onayamiList__onayamiBox__title {
    background-image: url(../images/onayami_title_2_sp.svg);
  }
}
.p-onayami__onayamiList__onayamiBox--case3 .p-onayami__onayamiList__onayamiBox__title {
  background-image: url(../images/onayami_title_3.svg);
}
@media screen and (max-width: 767px) {
  .p-onayami__onayamiList__onayamiBox--case3 .p-onayami__onayamiList__onayamiBox__title {
    background-image: url(../images/onayami_title_3_sp.svg);
  }
}

.p-feature {
  margin-top: 56px;
  overflow: hidden;
  padding-top: 40px;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-feature {
    margin-top: calc(56 / 1440 * 100vw);
    padding-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    margin-top: calc(40 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
@media screen and (max-width: 1439px) {
  .p-feature {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    margin: 0 calc(-20 / 375 * 100vw);
  }
}
.p-feature__titleBox {
  margin: 0 auto 45px;
  width: 370px;
}
@media screen and (max-width: 1439px) {
  .p-feature__titleBox {
    margin: 0 auto calc(45 / 1440 * 100vw);
    width: calc(370 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__titleBox {
    margin: 0 auto calc(20 / 375 * 100vw);
    width: calc(294 / 375 * 100vw);
  }
}
.p-feature__titleBox__titleEn {
  color: var(--color-main);
  font-family: "Raleway";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.09em;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-feature__titleBox__titleEn {
    font-size: calc(14 / 1440 * 100vw);
    margin-bottom: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__titleBox__titleEn {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.p-feature__titleBox__titleJa {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .p-feature__titleBox__titleJa {
    font-size: calc(38 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__titleBox__titleJa {
    font-size: calc(30 / 375 * 100vw);
  }
}
.p-feature__titleBox__titleJa span.font {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  margin-right: 5px;
}
@media screen and (max-width: 1439px) {
  .p-feature__titleBox__titleJa span.font {
    margin-right: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__titleBox__titleJa span.font {
    margin-right: calc(5 / 375 * 100vw);
  }
}
.p-feature__titleBox__notice {
  color: var(--color-main2);
  font-size: 15px;
  font-weight: 500;
  margin-top: 5px;
}
@media screen and (max-width: 1439px) {
  .p-feature__titleBox__notice {
    font-size: calc(15 / 1440 * 100vw);
    margin-top: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__titleBox__notice {
    font-size: calc(13 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}
.p-feature__featureList > ul > li:nth-child(2n+1) .p-feature__featureList__featureBox__textBox {
  border-radius: 0 60px 0 0;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList > ul > li:nth-child(2n+1) .p-feature__featureList__featureBox__textBox {
    border-radius: 0 calc(60 / 1440 * 100vw) 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList > ul > li:nth-child(2n+1) .p-feature__featureList__featureBox__textBox {
    border-radius: 0 calc(60 / 375 * 100vw) 0 0;
  }
}
.p-feature__featureList > ul > li:nth-child(2n) .p-feature__featureList__featureBox {
  flex-direction: row-reverse;
}
.p-feature__featureList > ul > li:nth-child(2n) .p-feature__featureList__featureBox__textBox {
  border-radius: 0 0 0 60px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList > ul > li:nth-child(2n) .p-feature__featureList__featureBox__textBox {
    border-radius: 0 0 0 calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList > ul > li:nth-child(2n) .p-feature__featureList__featureBox__textBox {
    border-radius: 0 0 0 calc(60 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox {
    display: block;
  }
}
.p-feature__featureList__featureBox__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__thumbnail {
    width: 100%;
  }
}
.p-feature__featureList__featureBox__textBox {
  background-color: var(--color-bg3);
  padding: 80px;
  width: 50%;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox {
    padding: calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox {
    padding: calc(50 / 375 * 100vw) calc(25 / 375 * 100vw);
    width: 100%;
  }
}
.p-feature__featureList__featureBox__textBox__titleBox {
  margin-bottom: 30px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__titleBox {
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__titleBox {
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__titleBox__label {
  align-items: center;
  background: linear-gradient(to right, #d22630 0%, #ed515a 100%);
  border-radius: 13px;
  color: var(--color-white);
  display: inline-flex;
  font-family: "Raleway";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  height: 26px;
  margin-bottom: 14px;
  padding: 0 15px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__titleBox__label {
    border-radius: calc(13 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    height: calc(26 / 1440 * 100vw);
    margin-bottom: calc(14 / 1440 * 100vw);
    padding: 0 calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__titleBox__label {
    border-radius: calc(13 / 375 * 100vw);
    font-size: calc(13 / 375 * 100vw);
    height: calc(25 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
    padding: 0 calc(12 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__titleBox__title {
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__titleBox__title {
    font-size: calc(36 / 1440 * 100vw);
    line-height: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__titleBox__title {
    font-size: calc(28 / 375 * 100vw);
    line-height: calc(35 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__text {
  font-size: 16px;
  line-height: 28px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__textList {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__textList {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__textList {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__textList > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__textList > ul > li + li {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__textList > ul > li + li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__textList__text {
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__textList__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__textList__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__textList__text span.color {
  color: var(--color-main);
  display: inline-block;
  margin-bottom: 5px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__textList__text span.color {
    margin-bottom: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__textList__text span.color {
    margin-bottom: calc(5 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox__textBox__textList__text::before {
  background-image: url(../images/onayami_icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 14px;
  margin-right: 6px;
  transform: translateY(6px);
  width: 14px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox__textBox__textList__text::before {
    height: calc(14 / 1440 * 100vw);
    margin-right: calc(6 / 1440 * 100vw);
    transform: translateY(calc(6 / 1440 * 100vw));
    width: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox__textBox__textList__text::before {
    height: calc(14 / 375 * 100vw);
    margin-right: calc(6 / 375 * 100vw);
    transform: translateY(calc(7 / 375 * 100vw));
    width: calc(14 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox--source .p-feature__featureList__featureBox__thumbnail {
  background-image: url(../images/feature_thumbnail_source.png);
  height: 506px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox--source .p-feature__featureList__featureBox__thumbnail {
    height: calc(506 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox--source .p-feature__featureList__featureBox__thumbnail {
    background-image: url(../images/feature_thumbnail_source_sp.png);
    height: calc(345 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox--analytics .p-feature__featureList__featureBox__thumbnail {
  background-image: url(../images/feature_thumbnail_analytics.png);
  height: 512px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox--analytics .p-feature__featureList__featureBox__thumbnail {
    height: calc(512 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox--analytics .p-feature__featureList__featureBox__thumbnail {
    background-image: url(../images/feature_thumbnail_analytics_sp.png);
    height: calc(345 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox--ai .p-feature__featureList__featureBox__thumbnail {
  background-image: url(../images/feature_thumbnail_ai.png);
  height: 512px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox--ai .p-feature__featureList__featureBox__thumbnail {
    height: calc(512 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox--ai .p-feature__featureList__featureBox__thumbnail {
    background-image: url(../images/feature_thumbnail_ai_sp.png);
    height: calc(345 / 375 * 100vw);
  }
}
.p-feature__featureList__featureBox--global .p-feature__featureList__featureBox__thumbnail {
  background-image: url(../images/feature_thumbnail_global.png);
  height: 512px;
}
@media screen and (max-width: 1439px) {
  .p-feature__featureList__featureBox--global .p-feature__featureList__featureBox__thumbnail {
    height: calc(512 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__featureList__featureBox--global .p-feature__featureList__featureBox__thumbnail {
    background-image: url(../images/feature_thumbnail_global_sp.png);
    height: calc(345 / 375 * 100vw);
  }
}

.p-function {
  margin-top: 30px;
  padding-top: 40px;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-function {
    margin-top: calc(30 / 1440 * 100vw);
    padding-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function {
    margin-top: calc(20 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
@media screen and (max-width: 1439px) {
  .p-function {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-function {
    width: 100%;
  }
}
.p-function__titleBox {
  margin-bottom: 60px;
}
@media screen and (max-width: 1439px) {
  .p-function__titleBox {
    margin-bottom: calc(60 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__titleBox {
    margin-bottom: calc(50 / 375 * 100vw);
  }
}
.p-function__titleBox__title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-function__titleBox__title {
    font-size: calc(38 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__titleBox__title {
    font-size: calc(30 / 375 * 100vw);
  }
}
.p-function__titleBox__notice {
  color: var(--color-main2);
  font-size: 18px;
  font-weight: 500;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-function__titleBox__notice {
    font-size: calc(18 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__titleBox__notice {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-function__functionList {
  margin: 0 auto;
  width: 904px;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList {
    width: calc(904 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList {
    width: 100%;
  }
}
.p-function__functionList > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-function__functionList > ul {
    display: block;
  }
}
.p-function__functionList > ul > li {
  display: flex;
  margin-top: 20px;
  width: 442px;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList > ul > li {
    margin-top: calc(20 / 1440 * 100vw);
    width: calc(442 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList > ul > li {
    margin-left: auto;
    margin-right: auto;
    margin-top: calc(10 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-function__functionList > ul > li:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-function__functionList > ul > li:nth-child(-n+2) {
    margin-top: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList > ul > li:first-child {
    margin-top: 0;
  }
}
.p-function__functionList a {
  display: flex;
}
.p-function__functionList a:hover .p-function__functionList__functionBox__thumbnail {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .p-function__functionList a:hover .p-function__functionList__functionBox__thumbnail {
    transform: scale(1);
  }
}
.p-function__functionList__functionBox {
  background-color: var(--color-bg);
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox {
    border-radius: calc(10 / 1440 * 100vw);
    padding: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox {
    border-radius: calc(10 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
}
.p-function__functionList__functionBox__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 208px;
  transition: 0.3s;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox__thumbnail {
    height: calc(208 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox__thumbnail {
    height: calc(208 / 375 * 100vw);
  }
}
.p-function__functionList__functionBox__thumbnail__wrapper {
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox__thumbnail__wrapper {
    border-radius: calc(10 / 1440 * 100vw);
    margin-bottom: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox__thumbnail__wrapper {
    border-radius: calc(10 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-function__functionList__functionBox__thumbnail__wrapper::before {
  background-image: url(../images/icon_search.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 53px;
  position: absolute;
  right: 0;
  width: 53px;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox__thumbnail__wrapper::before {
    height: calc(53 / 1440 * 100vw);
    width: calc(53 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox__thumbnail__wrapper::before {
    display: none;
  }
}
.p-function__functionList__functionBox__textBox__title {
  display: flex;
  font-size: 21px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox__textBox__title {
    font-size: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox__textBox__title {
    font-size: calc(19 / 375 * 100vw);
  }
}
.p-function__functionList__functionBox__textBox__title::before {
  background-color: var(--color-main);
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 6px;
  margin-right: 6px;
  transform: translateY(8px);
  width: 6px;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox__textBox__title::before {
    height: calc(6 / 1440 * 100vw);
    margin-right: calc(6 / 1440 * 100vw);
    transform: translateY(calc(8 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox__textBox__title::before {
    height: calc(6 / 375 * 100vw);
    margin-right: calc(6 / 375 * 100vw);
    transform: translateY(calc(8 / 375 * 100vw));
    width: calc(6 / 375 * 100vw);
  }
}
.p-function__functionList__functionBox__textBox__text {
  font-size: 16px;
  line-height: 28px;
  margin-top: 15px;
}
@media screen and (max-width: 1439px) {
  .p-function__functionList__functionBox__textBox__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
    margin-top: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox__textBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-function__functionList__functionBox--function1 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_1.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function1 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_1_sp.png);
  }
}
.p-function__functionList__functionBox--function2 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_2.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function2 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_2_sp.png);
  }
}
.p-function__functionList__functionBox--function3 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_3.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function3 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_3_sp.png);
  }
}
.p-function__functionList__functionBox--function4 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_4.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function4 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_4_sp.png);
  }
}
.p-function__functionList__functionBox--function5 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_5.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function5 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_5_sp.png);
  }
}
.p-function__functionList__functionBox--function6 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_6.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function6 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_6_sp.png);
  }
}
.p-function__functionList__functionBox--function7 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_7.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function7 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_7_sp.png);
  }
}
.p-function__functionList__functionBox--function8 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_8.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function8 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_8_sp.png);
  }
}
.p-function__functionList__functionBox--function9 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_9.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function9 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_9_sp.png);
  }
}
.p-function__functionList__functionBox--function10 .p-function__functionList__functionBox__thumbnail {
  background-image: url(../images/function_thumbnail_10.png);
}
@media screen and (max-width: 767px) {
  .p-function__functionList__functionBox--function10 .p-function__functionList__functionBox__thumbnail {
    background-image: url(../images/function_thumbnail_10_sp.png);
  }
}

.p-case {
  background-color: var(--color-bg2);
  border-radius: 10px;
  height: 390px;
  margin-left: 10px;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-case {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-case {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-case {
    border-radius: calc(10 / 1440 * 100vw);
    height: calc(390 / 1440 * 100vw);
    margin-left: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case {
    border-radius: calc(0 / 375 * 100vw);
    height: calc(450 / 375 * 100vw);
    margin-left: calc(0 / 375 * 100vw);
  }
}
.p-case__wrapper {
  margin-top: 60px;
  padding-top: 40px;
}
@media screen and (max-width: 1439px) {
  .p-case__wrapper {
    margin-top: calc(60 / 1440 * 100vw);
    padding-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__wrapper {
    margin-top: calc(35 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-case__inner {
  margin: 0 auto;
  padding-top: 65px;
  width: 951px;
}
@media screen and (max-width: 1439px) {
  .p-case__inner {
    padding-top: calc(65 / 1440 * 100vw);
    width: calc(951 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__inner {
    padding-top: calc(54 / 375 * 100vw);
    position: relative;
    width: 100%;
  }
}
.p-case__titleBox {
  align-items: center;
  display: flex;
  margin-bottom: 60px;
  padding-left: 10px;
}
@media screen and (max-width: 1439px) {
  .p-case__titleBox {
    margin-bottom: calc(60 / 1440 * 100vw);
    padding-left: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__titleBox {
    left: calc(25 / 375 * 100vw);
    margin-bottom: calc(0 / 375 * 100vw);
    padding-left: calc(0 / 375 * 100vw);
    position: absolute;
    top: calc(-14 / 375 * 100vw);
  }
}
.p-case__titleBox__titleEn {
  color: var(--color-main);
  font-family: "Raleway";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.09em;
  margin-right: 15px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-case__titleBox__titleEn {
    font-size: calc(14 / 1440 * 100vw);
    margin-right: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__titleBox__titleEn {
    font-size: calc(13 / 375 * 100vw);
    margin-right: calc(15 / 375 * 100vw);
  }
}
.p-case__titleBox__titleJa {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-case__titleBox__titleJa {
    font-size: calc(38 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__titleBox__titleJa {
    font-size: calc(28 / 375 * 100vw);
  }
}
.p-case__caseList {
  margin: 0 auto;
}
.p-case__caseList__swiper {
  margin-top: -120px;
}
@media screen and (max-width: 1439px) {
  .p-case__caseList__swiper {
    margin-top: calc(-120 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__caseList__swiper {
    margin-top: calc(0 / 375 * 100vw);
  }
}
.p-case__caseList__swiper .swiper-container {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-case__caseList__swiper .swiper-container {
    overflow: hidden;
    padding-bottom: calc(65 / 375 * 100vw);
  }
}
.p-case__caseList__swiper .swiper-slide {
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .p-case__caseList__swiper .swiper-slide {
    opacity: 1;
  }
}
.p-case__caseList__swiper .swiper-slide-active {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-case__caseList__swiper .swiper-button-prev {
    left: auto;
    right: calc(60 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-case__caseList__swiper .swiper-button-next {
    right: 0;
  }
}

.p-cta {
  margin-bottom: -170px;
  margin-top: 330px;
  position: relative;
  width: calc(100% - 310px);
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .p-cta {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-cta {
    margin-bottom: calc(-170 / 1440 * 100vw);
    margin-top: calc(330 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    margin-bottom: calc(-95 / 375 * 100vw);
    margin-top: calc(290 / 375 * 100vw);
  }
}
.p-cta__inner {
  background: linear-gradient(to right, #b41821 0%, #8d131a 100%);
  border-radius: 20px;
  margin: 0 auto;
  padding: 106px 0 32px;
  position: relative;
  width: 1010px;
}
@media screen and (max-width: 1439px) {
  .p-cta__inner {
    border-radius: calc(20 / 1440 * 100vw);
    padding: calc(106 / 1440 * 100vw) 0 calc(32 / 1440 * 100vw);
    width: calc(1010 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    background: linear-gradient(130deg, #b41821 0%, #8d131a 100%);
    border-radius: calc(20 / 375 * 100vw);
    padding: calc(73 / 375 * 100vw) 0 calc(60 / 375 * 100vw);
    width: 100%;
  }
}
.p-cta__inner::before {
  background-image: url(../images/cta_illust.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 148px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -80px;
  width: 207px;
}
@media screen and (max-width: 1439px) {
  .p-cta__inner::before {
    height: calc(148 / 1440 * 100vw);
    top: calc(-80 / 1440 * 100vw);
    width: calc(207 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__inner::before {
    height: calc(103 / 375 * 100vw);
    top: calc(-52 / 375 * 100vw);
    width: calc(145 / 375 * 100vw);
  }
}
.p-cta__title {
  color: var(--color-white);
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-cta__title {
    font-size: calc(34 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: calc(27 / 375 * 100vw);
    line-height: calc(38 / 375 * 100vw);
  }
}
.p-cta__title span.font {
  font-family: "Raleway";
  font-style: normal;
  font-weight: 800;
  margin: 0 3px;
}
@media screen and (max-width: 1439px) {
  .p-cta__title span.font {
    margin: 0 calc(3 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title span.font {
    font-size: calc(32 / 375 * 100vw);
    letter-spacing: 0.03em;
    margin: 0 calc(2 / 375 * 100vw);
  }
}
.p-cta__text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 29px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-cta__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(29 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(29 / 375 * 100vw);
    margin-top: calc(25 / 375 * 100vw);
    text-align: center;
  }
}
.p-cta__text a {
  color: var(--color-white);
}
.p-cta__button {
  margin-top: 30px;
}
@media screen and (max-width: 1439px) {
  .p-cta__button {
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__button {
    margin-top: calc(30 / 375 * 100vw);
  }
}
.p-cta__button a {
  align-items: center;
  background-color: var(--color-white);
  border-radius: 40px;
  color: var(--color-main);
  display: flex;
  font-size: 18px;
  font-weight: bold;
  height: 75px;
  margin: 0 auto;
  padding-left: 46px;
  pointer-events: none;
  position: relative;
  width: 530px;
}
@media screen and (max-width: 1439px) {
  .p-cta__button a {
    border-radius: calc(40 / 1440 * 100vw);
    font-size: calc(18 / 1440 * 100vw);
    height: calc(75 / 1440 * 100vw);
    padding-left: calc(46 / 1440 * 100vw);
    width: calc(530 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__button a {
    border-radius: calc(40 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    height: calc(65 / 375 * 100vw);
    padding-left: calc(50 / 375 * 100vw);
    pointer-events: auto;
    width: calc(315 / 375 * 100vw);
  }
}
.p-cta__button a::after {
  background-image: url(../images/cta_icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  right: 25px;
  width: 18px;
}
@media screen and (max-width: 1439px) {
  .p-cta__button a::after {
    height: calc(16 / 1440 * 100vw);
    right: calc(25 / 1440 * 100vw);
    width: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__button a::after {
    height: calc(16 / 375 * 100vw);
    right: calc(25 / 375 * 100vw);
    width: calc(18 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__button a span {
    display: none;
  }
}

.p-faq {
  background-color: var(--color-bg2);
  border-radius: 20px;
  margin-left: 10px;
  overflow: hidden;
  position: relative;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-faq {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-faq {
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .p-faq {
    border-radius: calc(20 / 1440 * 100vw);
    margin-left: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq {
    border-radius: calc(20 / 375 * 100vw);
    margin-left: calc(0 / 375 * 100vw);
  }
}
.p-faq::before {
  background-image: url(../images/faq_decoration_before.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 964px;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  width: 392px;
}
@media screen and (max-width: 1439px) {
  .p-faq::before {
    height: calc(964 / 1440 * 100vw);
    width: calc(392 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq::before {
    background-image: url(../images/faq_decoration_before_sp.png);
    height: calc(661 / 375 * 100vw);
    width: calc(291 / 375 * 100vw);
  }
}
.p-faq::after {
  background-image: url(../images/faq_decoration_after.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 399px;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  width: 489px;
}
@media screen and (max-width: 1439px) {
  .p-faq::after {
    height: calc(399 / 1440 * 100vw);
    width: calc(489 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq::after {
    background-image: url(../images/faq_decoration_after_sp.png);
    height: calc(473 / 375 * 100vw);
    width: calc(403 / 375 * 100vw);
  }
}
.p-faq__inner {
  margin: 0 auto;
  padding-bottom: 80px;
  padding-top: 230px;
  width: 775px;
}
@media screen and (max-width: 1439px) {
  .p-faq__inner {
    padding-bottom: calc(80 / 1440 * 100vw);
    padding-top: calc(230 / 1440 * 100vw);
    width: calc(775 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(133 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-faq__titleBox {
  margin-bottom: 60px;
  margin-top: -40px;
  padding-top: 40px;
}
@media screen and (max-width: 1439px) {
  .p-faq__titleBox {
    margin-bottom: calc(60 / 1440 * 100vw);
    margin-top: calc(-40 / 1440 * 100vw);
    padding-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__titleBox {
    margin-bottom: calc(40 / 375 * 100vw);
    margin-top: calc(-35 / 375 * 100vw);
    padding-top: calc(35 / 375 * 100vw);
  }
}
.p-faq__titleBox__titleEn {
  color: var(--color-main);
  font-family: "Raleway";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.09em;
  margin-bottom: 14px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-faq__titleBox__titleEn {
    font-size: calc(14 / 1440 * 100vw);
    margin-bottom: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__titleBox__titleEn {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
}
.p-faq__titleBox__titleJa {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .p-faq__titleBox__titleJa {
    font-size: calc(38 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__titleBox__titleJa {
    font-size: calc(28 / 375 * 100vw);
  }
}
.p-faq__faqList {
  position: relative;
  z-index: 1;
}
.p-faq__faqList > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox {
  background-color: var(--color-white);
  border-radius: 15px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  padding: 20px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox {
    border-radius: calc(15 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(6 / 1440 * 100vw) rgba(0, 0, 0, 0.16);
    padding: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox {
    border-radius: calc(10 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(6 / 375 * 100vw) rgba(0, 0, 0, 0.16);
    padding: calc(15 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox.is-open .p-faq__faqList__faqBox__qBox::after {
  background-image: url(../images/icon_minus.svg);
}
.p-faq__faqList__faqBox__qBox {
  position: relative;
}
.p-faq__faqList__faqBox__qBox::after {
  background-image: url(../images/icon_plus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 19px;
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 19px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox::after {
    height: calc(19 / 1440 * 100vw);
    width: calc(19 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox::after {
    height: calc(19 / 375 * 100vw);
    width: calc(19 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__inner {
  display: flex;
}
.p-faq__faqList__faqBox__qBox__icon {
  color: var(--color-main);
  font-family: "Raleway";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  width: 30px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__icon {
    font-size: calc(24 / 1440 * 100vw);
    width: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__icon {
    font-size: calc(24 / 375 * 100vw);
    width: calc(30 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 21px;
  width: 662px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(21 / 1440 * 100vw);
    width: calc(662 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    width: calc(248 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox {
  display: none;
  margin-top: 5px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox {
    margin-top: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox {
    margin-top: calc(5 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox__inner {
  display: flex;
}
.p-faq__faqList__faqBox__aBox__icon {
  color: var(--color-main);
  font-family: "Raleway";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  visibility: hidden;
  width: 30px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox__icon {
    font-size: calc(24 / 1440 * 100vw);
    width: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__icon {
    font-size: calc(24 / 375 * 100vw);
    width: calc(30 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox__text {
  font-size: 16px;
  line-height: 26px;
  width: 662px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(26 / 1440 * 100vw);
    width: calc(662 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    width: calc(248 / 375 * 100vw);
  }
}

.p-footer {
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-footer {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    width: 100%;
  }
}
.p-footer__inner {
  padding-bottom: 30px;
  padding-top: 40px;
}
@media screen and (max-width: 1439px) {
  .p-footer__inner {
    padding-bottom: calc(30 / 1440 * 100vw);
    padding-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-bottom: calc(25 / 375 * 100vw);
    padding-top: calc(30 / 375 * 100vw);
  }
}
.p-footer__logo {
  margin: 0 auto;
  width: 46px;
}
.p-footer__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-footer__logo {
    width: calc(46 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    width: calc(50 / 375 * 100vw);
  }
}
.p-footer__company {
  font-size: 12px;
  line-height: 17px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-footer__company {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__company {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
    margin-top: calc(18 / 375 * 100vw);
  }
}
.p-footer__text {
  font-size: 11px;
  line-height: 17px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-footer__text {
    font-size: calc(11 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: calc(13 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
    margin-top: calc(18 / 375 * 100vw);
  }
}

.p-copyright {
  background-color: #FAFAFA;
  height: 24px;
}
@media screen and (max-width: 1439px) {
  .p-copyright {
    height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-copyright {
    height: calc(29 / 375 * 100vw);
  }
}
.p-copyright .l-container {
  height: 100%;
}
.p-copyright__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: calc(100% - 310px);
}
@media screen and (max-width: 1439px) {
  .p-copyright__inner {
    width: calc(100% - (310 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-copyright__inner {
    width: 100%;
  }
}
.p-copyright__text {
  color: #939393;
  font-size: 10px;
}
@media screen and (max-width: 1439px) {
  .p-copyright__text {
    font-size: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-copyright__text {
    font-size: calc(10 / 375 * 100vw);
  }
}

.p-form {
  background-color: var(--color-white);
  border-radius: 4px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  height: calc(100vh - 40px);
  position: fixed;
  right: 10px;
  top: 30px;
  width: 278px;
  z-index: 101;
}
@media screen and (max-width: 1439px) {
  .p-form {
    border-radius: calc(4 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(15 / 1440 * 100vw) rgba(0, 0, 0, 0.1);
    height: calc(100vh - (40 / 1440 * 100vw));
    right: calc(10 / 1440 * 100vw);
    top: calc(30 / 1440 * 100vw);
    width: calc(278 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form {
    -ms-overflow-style: none;
    border-radius: calc(4 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(15 / 375 * 100vw) rgba(0, 0, 0, 0.1);
    height: auto;
    max-height: calc(100vh - (114 / 375 * 100vw)) !important;
    overflow: scroll;
    position: static;
    right: calc(10 / 375 * 100vw);
    scrollbar-width: none;
    top: calc(30 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-form__inner {
  padding: 35px 25px 45px;
}
@media screen and (max-width: 1439px) {
  .p-form__inner {
    padding: calc(35 / 1440 * 100vw) calc(25 / 1440 * 100vw) calc(45 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__inner {
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
  }
}
.p-form__textBox {
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-form__textBox {
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__textBox {
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.p-form__textBox__label {
  background-image: url(../images/form_label.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 47px;
  left: 0;
  margin: 0 auto;
  overflow: hidden;
  position: absolute;
  right: 0;
  text-indent: 150vw;
  top: -55px;
  white-space: nowrap;
  width: 162px;
}
@media screen and (max-width: 1439px) {
  .p-form__textBox__label {
    height: calc(47 / 1440 * 100vw);
    top: calc(-55 / 1440 * 100vw);
    width: calc(162 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__textBox__label {
    height: calc(47 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
    position: static;
    width: calc(162 / 375 * 100vw);
  }
}
.p-form__textBox__title {
  font-size: 19px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 1439px) {
  .p-form__textBox__title {
    font-size: calc(19 / 1440 * 100vw);
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__textBox__title {
    font-size: calc(19 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.p-form__textBox__image {
  margin: 0 auto;
  width: 188px;
}
.p-form__textBox__image img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form__textBox__image {
    width: calc(188 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__textBox__image {
    width: calc(188 / 375 * 100vw);
  }
}
.p-form .smpForm {
  -ms-overflow-style: none;
  height: calc(100vh - 255px);
  overflow: scroll;
  padding: 0;
  scrollbar-width: none;
}
@media screen and (max-width: 1439px) {
  .p-form .smpForm {
    height: calc(100vh - (255 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-form .smpForm {
    height: auto;
    overflow: auto;
  }
}
.p-form .smpForm::-webkit-scrollbar {
  display: none;
}
.p-form .ss_field:first-child {
  margin-top: 0;
}
.p-form .ss_field:nth-child(odd) {
  background-color: transparent;
}
.p-form .ss_field:nth-child(even):hover {
  background-color: transparent;
}
.p-form .ss_contents fieldset {
  border: 0;
}
.p-form .ss_form_title {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_form_title {
    font-size: calc(12 / 1440 * 100vw);
    margin-bottom: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_form_title {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(7 / 375 * 100vw);
  }
}
.p-form .ss_form_title .ss_user_notnull {
  font-size: 0;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_form_title .ss_user_notnull {
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_form_title .ss_user_notnull {
    font-size: 0;
  }
}
.p-form .ss_form_title .ss_user_notnull::after {
  color: var(--color-main);
  content: "*";
  font-size: 13px;
  margin-left: 2px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_form_title .ss_user_notnull::after {
    font-size: calc(13 / 1440 * 100vw);
    margin-left: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_form_title .ss_user_notnull::after {
    font-size: calc(13 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.p-form .ss_input {
  font-size: 12px;
  line-height: 17px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
  }
}
.p-form .ss_input .ss_bottomComment {
  color: var(--color-black);
  font-size: 12px;
  line-height: 17px;
  margin-top: 5px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input .ss_bottomComment {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
    margin-top: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input .ss_bottomComment {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}
.p-form .ss_input .ss_bottomComment u {
  text-decoration: none;
}
.p-form .ss_input .ss_bottomComment u font {
  color: #1571DA;
  font-size: 12px;
  line-height: 17px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input .ss_bottomComment u font {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input .ss_bottomComment u font {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(24 / 375 * 100vw);
  }
}
.p-form .ss_input .ss_bottomComment u font::after {
  background-image: url(../images/icon_external_link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  display: inline-block;
  height: 8px;
  margin-right: 2px;
  transform: translateY(-3px);
  width: 8px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input .ss_bottomComment u font::after {
    height: calc(8 / 1440 * 100vw);
    margin-right: calc(2 / 1440 * 100vw);
    transform: translateY(calc(-3 / 1440 * 100vw));
    width: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input .ss_bottomComment u font::after {
    height: calc(8 / 375 * 100vw);
    margin-right: calc(2 / 375 * 100vw);
    transform: translateY(calc(-3 / 375 * 100vw));
    width: calc(8 / 375 * 100vw);
  }
}
.p-form fieldset + fieldset {
  margin-top: 8px;
}
@media screen and (max-width: 1439px) {
  .p-form fieldset + fieldset {
    margin-top: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form fieldset + fieldset {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_rightComment {
  display: none;
}
.p-form .ss_warning_label {
  display: none;
}
.p-form .ss_error_msg, .p-form .errorMsg {
  align-items: center;
  background-color: #ffeeef;
  color: var(--color-main);
  display: inline-flex;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 7px;
  margin-left: 0;
  padding: 4px 5px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_error_msg, .p-form .errorMsg {
    font-size: calc(12 / 1440 * 100vw);
    margin-bottom: calc(7 / 1440 * 100vw);
    padding: calc(4 / 1440 * 100vw) calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_error_msg, .p-form .errorMsg {
    font-size: calc(12 / 375 * 100vw);
    margin-bottom: calc(7 / 375 * 100vw);
    padding: calc(4 / 375 * 100vw) calc(5 / 375 * 100vw);
  }
}
.p-form .ss_error_msg::before, .p-form .errorMsg::before {
  background-image: url(../images/icon_notice.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 14px;
  margin-right: 3px;
  width: 14px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_error_msg::before, .p-form .errorMsg::before {
    height: calc(14 / 1440 * 100vw);
    margin-right: calc(3 / 1440 * 100vw);
    width: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_error_msg::before, .p-form .errorMsg::before {
    height: calc(14 / 375 * 100vw);
    margin-right: calc(3 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form textarea {
  background-color: var(--color-form);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 13px;
  height: 28px;
  padding: 0 12px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form textarea {
    border-radius: calc(2 / 1440 * 100vw);
    font-size: calc(13 / 1440 * 100vw);
    height: calc(28 / 1440 * 100vw);
    padding: 0 calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form input[type=text],
.p-form input[type=tel],
.p-form input[type=email],
.p-form textarea {
    border-radius: calc(2 / 375 * 100vw);
    font-size: 16px;
    height: calc(50 / 375 * 100vw);
    padding: 0 calc(12 / 375 * 100vw);
  }
}
.p-form textarea {
  height: 90px;
  padding: 12px;
}
@media screen and (max-width: 1439px) {
  .p-form textarea {
    height: calc(90 / 1440 * 100vw);
    padding: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form textarea {
    height: calc(115 / 375 * 100vw);
    padding: calc(12 / 375 * 100vw);
  }
}
.p-form input[type=button] {
  background-color: var(--color-main);
  border-color: var(--color-main);
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  height: 49px;
}
@media screen and (max-width: 1439px) {
  .p-form input[type=button] {
    border-radius: calc(25 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    height: calc(49 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form input[type=button] {
    border-radius: calc(25 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(49 / 375 * 100vw);
  }
}
.p-form .ss_btnArea {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_btnArea {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_btnArea {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-form .ss_grid {
  display: block;
}
.p-form .ss_grid .ss_input .ss_leftComment {
  color: var(--color-black);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_grid .ss_input .ss_leftComment {
    font-size: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_grid .ss_input .ss_leftComment {
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-form .ss_grid .ss_input + .ss_input {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_grid .ss_input + .ss_input {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_grid .ss_input + .ss_input {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-form #ss_name .ss_input:first-of-type .ss_leftComment {
  display: none;
}
.p-form #ss_name .ss_input:last-of-type .ss_leftComment {
  font-size: 0;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_leftComment {
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_leftComment {
    font-size: 0;
  }
}
.p-form #ss_name .ss_input:last-of-type .ss_leftComment::before {
  content: "名";
  font-size: 13px;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_leftComment::before {
    font-size: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_leftComment::before {
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-form #ss_name .ss_input:last-of-type .ss_leftComment::after {
  color: var(--color-main);
  content: "*";
  font-size: 13px;
  margin-left: 2px;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_leftComment::after {
    font-size: calc(13 / 1440 * 100vw);
    margin-left: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_leftComment::after {
    font-size: calc(13 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.p-form #ss_name .ss_input:last-of-type .ss_error_msg {
  display: none;
}
.p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_leftComment {
  margin-bottom: 32px;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_leftComment {
    margin-bottom: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_leftComment {
    margin-bottom: calc(32 / 375 * 100vw);
  }
}
.p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment {
  display: block;
  font-size: 0;
  height: 0;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment {
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment {
    font-size: 0;
  }
}
.p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment::before {
  align-items: center;
  background-color: #ffeeef;
  box-sizing: border-box;
  color: var(--color-main);
  content: "必ず入力してください";
  display: inline-flex;
  font-size: 12px;
  font-weight: bold;
  left: 0;
  margin-left: 0;
  padding: 4px 5px 4px 23px;
  position: absolute;
  top: 22px;
  width: 228px;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment::before {
    font-size: calc(12 / 1440 * 100vw);
    padding: calc(4 / 1440 * 100vw) calc(5 / 1440 * 100vw) calc(4 / 1440 * 100vw) calc(23 / 1440 * 100vw);
    top: calc(22 / 1440 * 100vw);
    width: calc(228 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment::before {
    font-size: calc(12 / 375 * 100vw);
    padding: calc(4 / 375 * 100vw) calc(5 / 375 * 100vw) calc(4 / 375 * 100vw) calc(23 / 375 * 100vw);
    top: calc(22 / 375 * 100vw);
    width: calc(228 / 375 * 100vw);
  }
}
.p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment::after {
  background-image: url(../images/icon_notice.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 14px;
  left: 6px;
  margin-right: 3px;
  position: absolute;
  top: 29px;
  width: 14px;
}
@media screen and (max-width: 1439px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment::after {
    height: calc(14 / 1440 * 100vw);
    left: calc(6 / 1440 * 100vw);
    margin-right: calc(3 / 1440 * 100vw);
    top: calc(29 / 1440 * 100vw);
    width: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form #ss_name .ss_input:last-of-type .ss_error_msg ~ .ss_rightComment::after {
    height: calc(14 / 375 * 100vw);
    left: calc(6 / 375 * 100vw);
    margin-right: calc(3 / 375 * 100vw);
    top: calc(29 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.p-form #ss_name .ss_input:last-of-type br {
  display: none;
}
.p-form .ss_field:first-of-type .ss_input {
  font-size: 0;
  margin-bottom: 15px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:first-of-type .ss_input {
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:first-of-type .ss_input {
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_field:first-of-type .ss_bottomComment {
  -webkit-clip-path: inset(36px 0px 0 0);
  bottom: -16px;
          clip-path: inset(36px 0px 0 0);
  left: 21px;
  margin-top: 0;
  position: absolute;
  width: 205px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:first-of-type .ss_bottomComment {
    -webkit-clip-path: inset(calc(36 / 1440 * 100vw) 0px 0 0);
    bottom: calc(-14 / 1440 * 100vw);
            clip-path: inset(calc(36 / 1440 * 100vw) 0px 0 0);
    left: calc(23 / 1440 * 100vw);
    width: calc(205 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:first-of-type .ss_bottomComment {
    -webkit-clip-path: inset(calc(48 / 375 * 100vw) 0px 0 0);
    bottom: calc(-23 / 375 * 100vw);
            clip-path: inset(calc(48 / 375 * 100vw) 0px 0 0);
    left: calc(21 / 375 * 100vw);
    width: calc(253 / 375 * 100vw);
  }
}
.p-form .ss_field:nth-last-child(1) .ss_form_title {
  display: none;
}
.p-form .ss_field:nth-last-child(1) .ss_input {
  align-items: center;
  display: flex;
  font-size: 0;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:nth-last-child(1) .ss_input {
    font-size: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:nth-last-child(1) .ss_input {
    font-size: 0;
  }
}
.p-form .ss_field:nth-last-child(1) .ss_input::after {
  content: "無料デモを申し込み";
  font-size: 12px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:nth-last-child(1) .ss_input::after {
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:nth-last-child(1) .ss_input::after {
    font-size: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_submit_loader {
  background-color: transparent;
}
.p-form .ss_submit_loader .spinner::before {
  border: 0.5em solid var(--color-main);
  border-top-color: rgba(0, 0, 0, 0);
}
.p-form.lity-hide {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form.lity-hide {
    display: none;
  }
}

.p-drawer {
  background-color: #B5151E;
  border-radius: 0 0 calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
  display: none;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateY(-110%);
  transition: 0.3s;
  width: 100%;
  z-index: 100;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    display: block;
  }
}
.p-drawer__header {
  background-color: var(--color-white);
  height: calc(61 / 375 * 100vw);
}
.p-drawer__header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 calc(20 / 375 * 100vw);
}
.p-drawer__header__logoBox a {
  display: block;
}
.p-drawer__header__logoBox__logo {
  background-image: url(../images/logo_quidmonitor_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: calc(28 / 375 * 100vw);
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: calc(95 / 375 * 100vw);
}
.p-drawer__content__inner {
  padding-bottom: calc(60 / 375 * 100vw);
  padding-top: calc(35 / 375 * 100vw);
}
.p-drawer__content__navList > ul > li + li {
  margin-top: calc(33 / 375 * 100vw);
}
.p-drawer__content__navList__text {
  font-size: calc(20 / 375 * 100vw);
  font-weight: bold;
  text-align: center;
}
.p-drawer__content__navList__text a {
  color: var(--color-white);
}
.p-drawer__content__button a {
  align-items: center;
  background-color: var(--color-white);
  border-radius: calc(32 / 375 * 100vw);
  color: var(--color-main);
  display: flex;
  font-size: calc(17 / 375 * 100vw);
  font-weight: bold;
  height: calc(64 / 375 * 100vw);
  justify-content: center;
  margin: calc(40 / 375 * 100vw) auto 0;
  width: calc(335 / 375 * 100vw);
}
.p-drawer.is-show {
  opacity: 1;
  transform: translateY(0);
  z-index: 100;
}

.p-sticky {
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 10;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-sticky {
    opacity: 1;
    z-index: 1;
  }
}
.p-sticky__banner {
  width: 100%;
}
.p-sticky__banner img {
  height: auto;
  width: 100%;
}
.p-sticky__banner a {
  display: block;
}

.p-complete {
  height: calc(100vh - 24px);
  position: relative;
}

@media screen and (max-width: 1439px) {
  .p-complete {
    height: calc(100vh - 1.6666666667vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete {
    height: calc(100vh - 7.7333333333vw);
  }
}
.p-complete::before {
  background-image: url(../images/decoration_mainvisual_1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 171px;
  left: 0;
  position: absolute;
  top: 0;
  width: 489px;
}

@media screen and (max-width: 1439px) {
  .p-complete::before {
    height: 11.875vw;
    width: 33.9583333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete::before {
    background-image: url(../images/decoration_mainvisual_1_sp.png);
    height: 30.4vw;
    width: 100vw;
  }
}
.p-complete__inner {
  padding-top: 130px;
}

@media screen and (max-width: 1439px) {
  .p-complete__inner {
    padding-top: 9.0277777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete__inner {
    padding-top: 30.4vw;
  }
}
.p-complete__title {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

@media screen and (max-width: 1439px) {
  .p-complete__title {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete__title {
    font-size: 6.1333333333vw;
    letter-spacing: 0.01em;
    line-height: 9.6vw;
  }
}
.p-complete__title::after {
  background-image: url(../images/icon_slash.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  display: block;
  height: 19px;
  margin: 30px auto;
  width: 13px;
}

@media screen and (max-width: 1439px) {
  .p-complete__title::after {
    height: 1.3194444444vw;
    margin: 2.0833333333vw auto;
    width: 0.9027777778vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete__title::after {
    height: 5.3333333333vw;
    margin: 6.9333333333vw auto;
    width: 3.2vw;
  }
}
.p-complete__text {
  font-size: 1.6rem;
  line-height: 30px;
  text-align: center;
}

@media screen and (max-width: 1439px) {
  .p-complete__text {
    font-size: 1.1111111111vw;
    line-height: 2.0833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete__text {
    font-size: 3.7333333333vw;
    line-height: 7.2vw;
    text-align: left;
  }
}
.p-complete__text a {
  color: var(--color-main);
  text-decoration: underline;
}

.p-complete__button {
  margin-top: 46px;
}

@media screen and (max-width: 1439px) {
  .p-complete__button {
    margin-top: 3.1944444444vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete__button {
    margin-top: 12.2666666667vw;
  }
}
.p-complete__button a {
  align-items: center;
  background-color: #434343;
  border: 1px solid transparent;
  border-radius: 2px;
  color: var(--color-white);
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  margin: 0 auto;
  width: 210px;
}

@media screen and (max-width: 1439px) {
  .p-complete__button a {
    border-radius: 0.1388888889vw;
    font-size: 0.9722222222vw;
    height: 3.3333333333vw;
    width: 14.5833333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-complete__button a {
    border-radius: 0.5333333333vw;
    font-size: 4.2666666667vw;
    height: 15.7333333333vw;
    width: 100%;
  }
}
.p-complete__button a:hover {
  background-color: var(--color-white);
  border: 1px solid #434343;
  color: #434343;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-complete__button a:hover {
    background-color: #434343;
    border: 1px solid transparent;
    color: var(--color-white);
  }
}
.p-headerComplete {
  height: 94px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-headerComplete {
    height: calc(94 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerComplete {
    height: calc(63 / 375 * 100vw);
  }
}
.p-headerComplete::before {
  background-image: url(../images/complete/headerComplete_decoration_logo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 186px;
  left: 0;
  position: absolute;
  top: 0;
  width: 534px;
}
@media screen and (max-width: 1439px) {
  .p-headerComplete::before {
    height: calc(186 / 1440 * 100vw);
    width: calc(534 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerComplete::before {
    height: calc(108 / 375 * 100vw);
    width: calc(315 / 375 * 100vw);
  }
}
.p-headerComplete__inner {
  align-items: center;
  display: flex;
  height: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .p-headerComplete__inner {
    padding: 0 calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerComplete__inner {
    padding: 0 calc(15 / 375 * 100vw);
  }
}
.p-headerComplete__logo {
  width: 146px;
}
.p-headerComplete__logo img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-headerComplete__logo {
    width: calc(146 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-headerComplete__logo {
    width: calc(114 / 375 * 100vw);
  }
}

.p-mainComplete {
  min-height: calc(100vh - 24px);
}
@media screen and (max-width: 1439px) {
  .p-mainComplete {
    min-height: calc(100vh - (24 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete {
    min-height: calc(100vh - (29 / 375 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete .l-container {
    padding-left: calc(40 / 375 * 100vw);
    padding-right: calc(40 / 375 * 100vw);
  }
}
.p-mainComplete__inner {
  padding-bottom: 100px;
  padding-top: 100px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__inner {
    padding-bottom: calc(100 / 1440 * 100vw);
    padding-top: calc(100 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__inner {
    padding-bottom: calc(80 / 375 * 100vw);
    padding-top: calc(114 / 375 * 100vw);
  }
}
.p-mainComplete__content__title {
  position: relative;
}
.p-mainComplete__content__title::before {
  background-image: url(../images/complete/mainComplete_icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 72px;
  margin: 0 auto 25px;
  width: 72px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__content__title::before {
    height: calc(72 / 1440 * 100vw);
    margin: 0 auto calc(25 / 1440 * 100vw);
    width: calc(72 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__content__title::before {
    height: calc(46 / 375 * 100vw);
    margin: 0 auto calc(10 / 375 * 100vw);
    width: calc(46 / 375 * 100vw);
  }
}
.p-mainComplete__content__title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__content__title {
    font-size: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__content__title {
    font-size: calc(22 / 375 * 100vw);
    line-height: calc(36 / 375 * 100vw);
  }
}
.p-mainComplete__content__text {
  font-size: 16px;
  line-height: 32px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__content__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(32 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__content__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
    margin-top: calc(25 / 375 * 100vw);
    text-align: left;
  }
}
.p-mainComplete__content__text a {
  color: var(--color-main);
}
.p-mainComplete__content__button {
  margin-top: 40px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__content__button {
    margin-top: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__content__button {
    margin-top: calc(40 / 375 * 100vw);
  }
}
.p-mainComplete__content__button a {
  align-items: center;
  background-color: #434343;
  border: 1px solid #434343;
  border-radius: 30px;
  color: var(--color-white);
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 48px;
  justify-content: center;
  margin: 0 auto;
  width: 210px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__content__button a {
    border-radius: calc(30 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    height: calc(48 / 1440 * 100vw);
    width: calc(210 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__content__button a {
    border-radius: calc(30 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    height: calc(59 / 375 * 100vw);
    width: calc(292 / 375 * 100vw);
  }
}
.p-mainComplete__content__button a:hover {
  background-color: var(--color-white);
  color: #434343;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-mainComplete__content__button a:hover {
    background-color: #434343;
    color: var(--color-white);
  }
}
.p-mainComplete__dlGroup {
  margin: 50px auto 0;
  width: 960px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup {
    margin: calc(50 / 1440 * 100vw) auto 0;
    width: calc(960 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup {
    margin: calc(40 / 375 * 100vw) auto 0;
    width: 100%;
  }
}
.p-mainComplete__dlGroup__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__text {
    font-size: calc(18 / 1440 * 100vw);
    line-height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList {
  margin-top: 30px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList {
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList > ul {
    display: block;
  }
}
.p-mainComplete__dlGroup__dlList > ul > li {
  margin-left: 20px;
  margin-top: 30px;
  width: 306px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList > ul > li {
    margin-left: calc(20 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
    width: calc(306 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList > ul > li {
    margin-left: calc(0 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    width: 100%;
  }
}
.p-mainComplete__dlGroup__dlList > ul > li:nth-child(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList > ul > li:nth-child(-n+3) {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList > ul > li:nth-child(3n+1) {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList > ul > li:first-child {
    margin-top: 0;
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__thumbnail {
  margin-bottom: 10px;
}
.p-mainComplete__dlGroup__dlList__dlBox__thumbnail img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList__dlBox__thumbnail {
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__thumbnail {
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__text {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 16px;
  font-weight: 500;
  height: 42px;
  letter-spacing: 0.02em;
  line-height: 23px;
  overflow: hidden;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList__dlBox__text {
    font-size: calc(16 / 1440 * 100vw);
    height: calc(42 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__text {
    font-size: calc(14 / 375 * 100vw);
    height: auto;
    line-height: calc(21 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__button {
  margin-top: 15px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button {
    margin-top: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__button a {
  align-items: center;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 30px;
  color: var(--color-main);
  display: flex;
  font-size: 14px;
  font-weight: bold;
  height: 50px;
  justify-content: center;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button a {
    border-radius: calc(30 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    height: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button a {
    border-radius: calc(30 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    height: calc(55 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__button a svg {
  fill: var(--color-main);
  margin-right: 3px;
  transform: translateY(1px);
  transition: 0.3s;
  width: 22px;
}
@media screen and (max-width: 1439px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button a svg {
    margin-right: calc(3 / 1440 * 100vw);
    width: calc(22 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button a svg {
    margin-right: calc(3 / 375 * 100vw);
    width: calc(22 / 375 * 100vw);
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__button a:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button a:hover {
    background-color: var(--color-white);
    color: var(--color-main);
  }
}
.p-mainComplete__dlGroup__dlList__dlBox__button a:hover svg {
  fill: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-mainComplete__dlGroup__dlList__dlBox__button a:hover svg {
    fill: var(--color-main);
  }
}

.p-footerComplete {
  background-color: #FAFAFA;
  height: 24px;
}
@media screen and (max-width: 1439px) {
  .p-footerComplete {
    height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerComplete {
    height: calc(29 / 375 * 100vw);
  }
}
.p-footerComplete .l-container {
  height: 100%;
}
.p-footerComplete__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footerComplete__text {
  color: #939393;
  font-size: 10px;
}
@media screen and (max-width: 1439px) {
  .p-footerComplete__text {
    font-size: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footerComplete__text {
    font-size: calc(10 / 375 * 100vw);
  }
}

.u-overlay {
  background: #717171;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.3s;
  width: 100vw;
  z-index: -1;
}

.is-open .u-overlay {
  opacity: 1;
  z-index: 50;
}