@charset "UTF-8";
:root {
  --color-white: #FFFFFF;
  --color-black: #3B3B3B;
  --color-black2: #1F1D1D;
  --color-black3: #333333;
  --color-main: #327EB5;
  --color-main2: #DF5434;
  --color-bg: #FCFAF7;
  --color-bg2: #fafafa;
  --color-border: #D3D3D3;
  --color-form: #F8F8F8;
  --color-placeholder: #CECECE;
}

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", sans-serif;
  font-size: 1rem;
  font-style: normal;
  overflow-x: hidden;
  width: 100%;
}
body * {
  letter-spacing: 0.05em;
}

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;
  }
}

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-button-prev,
.swiper-button-next {
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 1047px) {
  .swiper-button-prev,
.swiper-button-next {
    height: calc(30 / 1048 * 100vw);
    width: calc(30 / 1048 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
.swiper-button-next {
    height: calc(30 / 375 * 100vw);
    width: calc(30 / 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: 0;
}
.swiper-button-prev:after {
  background-image: url(../images/icon_prev.png);
}

.swiper-button-next {
  right: 0;
}
.swiper-button-next:after {
  background-image: url(../images/icon_next.png);
}

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

@media screen and (max-width: 767px) {
  .lity-wrap {
    bottom: auto;
    padding-top: calc(20 / 375 * 100vw);
  }
}

.lity-close,
.lity-close:hover {
  background-image: url(../images/icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  display: block;
  display: none;
  height: 45px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  text-indent: 150vw;
  top: 20px;
  white-space: nowrap;
  width: 45px;
}
@media screen and (max-width: 1047px) {
  .lity-close,
.lity-close:hover {
    height: calc(45 / 1048 * 100vw);
    right: calc(20 / 1048 * 100vw);
    top: calc(20 / 1048 * 100vw);
    width: calc(45 / 1048 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .lity-close,
.lity-close:hover {
    height: calc(45 / 375 * 100vw);
    right: calc(-12 / 375 * 100vw);
    top: calc(-12 / 375 * 100vw);
    width: calc(45 / 375 * 100vw);
  }
}

/* noto-sans-jp-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: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v42-latin-regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/noto-sans-jp-v42-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-jp-v42-latin-regular.woff2") format("woff2"), url("../fonts/noto-sans-jp-v42-latin-regular.woff") format("woff"), url("../fonts/noto-sans-jp-v42-latin-regular.ttf") format("truetype"), url("../fonts/noto-sans-jp-v42-latin-regular.svg#NotoSansJP") format("svg");
  /* Legacy iOS */
}
/* noto-sans-jp-500 - 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-v42-latin-500.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/noto-sans-jp-v42-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-jp-v42-latin-500.woff2") format("woff2"), url("../fonts/noto-sans-jp-v42-latin-500.woff") format("woff"), url("../fonts/noto-sans-jp-v42-latin-500.ttf") format("truetype"), url("../fonts/noto-sans-jp-v42-latin-500.svg#NotoSansJP") format("svg");
  /* Legacy iOS */
}
/* noto-sans-jp-700 - 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-v42-latin-700.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/noto-sans-jp-v42-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/noto-sans-jp-v42-latin-700.woff2") format("woff2"), url("../fonts/noto-sans-jp-v42-latin-700.woff") format("woff"), url("../fonts/noto-sans-jp-v42-latin-700.ttf") format("truetype"), url("../fonts/noto-sans-jp-v42-latin-700.svg#NotoSansJP") format("svg");
  /* Legacy iOS */
}
/* 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-v28-latin-regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/raleway-v28-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-v28-latin-regular.woff2") format("woff2"), url("../fonts/raleway-v28-latin-regular.woff") format("woff"), url("../fonts/raleway-v28-latin-regular.ttf") format("truetype"), url("../fonts/raleway-v28-latin-regular.svg#Raleway") format("svg");
  /* Legacy iOS */
}
/* 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-v28-latin-800.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/raleway-v28-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/raleway-v28-latin-800.woff2") format("woff2"), url("../fonts/raleway-v28-latin-800.woff") format("woff"), url("../fonts/raleway-v28-latin-800.ttf") format("truetype"), url("../fonts/raleway-v28-latin-800.svg#Raleway") format("svg");
  /* Legacy iOS */
}
.l-container {
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  transform: translateX(-143px);
  width: 1048px;
  z-index: 1;
}
@media screen and (max-width: 1439px) {
  .l-container {
    padding-left: calc(24 / 1440 * 100vw);
    padding-right: calc(24 / 1440 * 100vw);
    transform: translateX(calc(-143 / 1440 * 100vw));
    width: calc(1048 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(17 / 375 * 100vw);
    padding-right: calc(17 / 375 * 100vw);
    transform: translateX(0);
    width: 100%;
  }
}
@media screen and (max-width: 1439px) {
  .l-container--full {
    padding-left: calc(24 / 1440 * 100vw);
    padding-right: calc(24 / 1440 * 100vw);
    width: calc(1440 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container--full {
    padding-left: calc(20 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
    width: 100%;
  }
}

.c-sectionTitle {
  margin-bottom: 50px;
}
@media screen and (max-width: 1439px) {
  .c-sectionTitle {
    margin-bottom: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-sectionTitle {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.c-sectionTitle__en {
  color: #327EB5;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .c-sectionTitle__en {
    font-size: calc(14 / 1440 * 100vw);
    margin-bottom: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__en {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }
}
.c-sectionTitle__ja {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .c-sectionTitle__ja {
    font-size: calc(26 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__ja {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(31 / 375 * 100vw);
  }
}
.c-sectionTitle__ja span {
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  font-weight: 800;
}
@media screen and (max-width: 1439px) {
  .c-sectionTitle__ja span {
    font-size: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__ja span {
    font-size: calc(29 / 375 * 100vw);
  }
}
.c-sectionTitle__text {
  font-size: 15px;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .c-sectionTitle__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) {
  .c-sectionTitle__text {
    font-size: calc(14 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-sectionTitle__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}

.p-header {
  height: 81px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 1439px) {
  .p-header {
    height: calc(81 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: calc(61 / 375 * 100vw);
  }
}
.p-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding-left: 17px;
  padding-right: 322px;
}
@media screen and (max-width: 1439px) {
  .p-header__inner {
    padding-left: calc(17 / 1440 * 100vw);
    padding-right: calc(322 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: calc(17 / 375 * 100vw);
    padding-right: calc(15 / 375 * 100vw);
  }
}
.p-header__logo {
  /*background-image: url(../images/logo_rivaliq.png);--241004*/
  background-image: url(../images/QUID_Compete_Main_Logo.svg);
  /*background-position: center;--241004*/
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  /*height: 45px;--241004*/
  height: 36px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  /*width: 157px;--241004*/
  width: 260px;
}
@media screen and (max-width: 1439px) {
  .p-header__logo {
    height: calc(45 / 1440 * 100vw);
    width: calc(157 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    height: calc(36 / 375 * 100vw);
    width: calc(127 / 375 * 100vw);
  }
}
.p-header__navList {
  margin-left: 25px;
}
@media screen and (max-width: 1439px) {
  .p-header__navList {
    margin-left: calc(25 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__navList {
    display: none;
  }
}
.p-header__navList > ul {
  align-items: center;
  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);
  }
}
.p-header__navList__text a {
  color: var(--color-black2);
  font-size: 14px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-header__navList__text a {
    font-size: calc(14 / 1440 * 100vw);
  }
}
.p-header__navList__text a::after {
  background-color: var(--color-main);
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-header__navList__text a::after {
    bottom: calc(-4 / 1440 * 100vw);
    height: calc(2 / 1440 * 100vw);
  }
}
.p-header__navList__text a:hover {
  color: var(--color-main);
  opacity: 1;
}
.p-header__navList__text a:hover::after {
  transform: scale(1, 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(36 / 375 * 100vw);
  width: calc(36 / 375 * 100vw);
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}
.p-header.is-clone {
  background: #fff;
  border-radius: 0px 0px 15px 0px;
  box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.1);
  opacity: 0.95;
  position: fixed;
  top: 0;
  transform: translateY(-200%);
  transition: 0.6s;
  width: 100%;
  width: calc(100% - 323px);
  z-index: 100;
}
@media screen and (max-width: 1439px) {
  .p-header.is-clone {
    border-radius: 0px 0px calc(15 / 1440 * 100vw) 0px;
    box-shadow: 0px 0px calc(17 / 1440 * 100vw) rgba(0, 0, 0, 0.1);
    width: calc(100% - (323 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-clone {
    border-radius: 0px 0px calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
    box-shadow: 0px 0px calc(17 / 375 * 100vw) rgba(0, 0, 0, 0.1);
    width: 100%;
  }
}
.p-header.is-clone .p-header__inner {
  padding-right: 35px;
}
@media screen and (max-width: 1439px) {
  .p-header.is-clone .p-header__inner {
    padding-right: calc(35 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header.is-clone .p-header__inner {
    padding-right: calc(17 / 375 * 100vw);
  }
}
.p-header.is-clone .p-header__logo {
  /*background-image: url(../images/logo_rivaliq_float.png);--241004*/
  background-image: url(../images/QUID_Compete_Main_Logo.svg);
  background-position: left;/*--241004*/
}
.p-header.is-clone .p-header__hamburger {
  background-image: url(../images/icon_hamburger_black.svg);
}
.p-header.is-clone.is-show {
  transform: translateY(0);
}

#header-complete .p-header__logo {
  background-image: url(../images/QUID_Compete_Main_Logo.svg);
}
#header-complete .p-header__navList {
  display: none;
}
#header-complete .p-header__hamburger {
  display: none;
}

.p-footer {
  background-color: #F7F7F7;
  height: 24px;
  overflow: hidden;
}
@media screen and (max-width: 1439px) {
  .p-footer {
    height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: calc(29 / 375 * 100vw);
  }
}
.p-footer .l-container {
  height: 100%;
}
.p-footer__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-footer__text {
  color: var(--color-black3);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1439px) {
  .p-footer__text {
    font-size: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: calc(10 / 375 * 100vw);
  }
}

#footer-complete .l-container {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  #footer-complete .l-container {
    padding-left: calc(40 / 375 * 100vw);
    padding-right: calc(40 / 375 * 100vw);
  }
}

.p-drawer {
  background-image: url(../images/bg_drawer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: none;
  display: block;
  height: 100dvh;
  opacity: 0;
  position: fixed;
  right: 0;
  top: 0;
  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: var(--color-white);
  border-radius: 0px 0px calc(15 / 375 * 100vw) calc(15 / 375 * 100vw);
  box-shadow: 0px 0px calc(17 / 375 * 100vw) rgba(0, 0, 0, 0.1);
  height: calc(61 / 375 * 100vw);
}
.p-drawer__header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding-left: calc(17 / 375 * 100vw);
  padding-right: calc(15 / 375 * 100vw);
}
.p-drawer__header__logo {
  background-image: url(../images/logo_rivaliq_float.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: calc(36 / 375 * 100vw);
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: calc(127 / 375 * 100vw);
}
.p-drawer__header__close {
  background-image: url(../images/icon_close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: calc(36 / 375 * 100vw);
  width: calc(36 / 375 * 100vw);
}
.p-drawer__content__inner {
  padding: calc(15 / 375 * 100vw) calc(37 / 375 * 100vw) calc(69 / 375 * 100vw);
}
.p-drawer__content__navList > ul > li {
  border-top: 1px solid #EDEDED;
}
.p-drawer__content__navList > ul > li:first-child {
  border-top: 0;
}
.p-drawer__content__navList__text a {
  align-items: center;
  display: flex;
  font-size: calc(20 / 375 * 100vw);
  font-weight: bold;
  height: calc(82 / 375 * 100vw);
  position: relative;
}
.p-drawer__content__navList__text a::after {
  background-image: url(../images/arrow_drawer.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  filter: drop-shadow(0px 0px 12px rgba(223, 84, 52, 0.16));
  height: calc(29 / 375 * 100vw);
  margin: auto 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(270deg);
  width: calc(29 / 375 * 100vw);
}
.p-drawer__content__button {
  border-radius: calc(30 / 375 * 100vw);
  box-shadow: 0px 0px calc(6 / 375 * 100vw) rgba(0, 0, 0, 0.16);
  margin-top: calc(40 / 375 * 100vw);
}
.p-drawer__content__button a {
  display: block;
  width: 100%;
}
.p-drawer__content__button a img {
  height: auto;
  width: 100%;
}
.p-drawer.is-show {
  opacity: 1;
  z-index: 200;
}

.lity {
  background: rgba(0, 0, 0, 0.5);
}

.lity-wrap {
  padding-bottom: calc(57 / 375 * 100vw);
  padding-top: calc(57 / 375 * 100vw);
}

.lity-close {
  background-image: url(../images/icon_close_lity.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: calc(24 / 375 * 100vw);
  position: absolute;
  right: 0;
  top: calc(-33 / 375 * 100vw);
  width: calc(24 / 375 * 100vw);
}

.p-form {
  -ms-overflow-style: none;
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(19.6348991394px);
  --webkit-backdrop-filter: blur(19.634899139404297px);
          backdrop-filter: blur(19.6348991394px);
  background: transparent;
  background-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.17);
  border-radius: 7px;
  /* (plus shape's fill blended on top as a separate layer with 36.18% opacity) */
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  height: calc(100vh - 20px);
  overflow: scroll;
  position: fixed;
  right: 10px;
  scrollbar-width: none;
  top: 10px;
  width: 278px;
  z-index: 101;
}
@media screen and (max-width: 1439px) {
  .p-form {
    border-radius: calc(7 / 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 - (20 / 1440 * 100vw));
    right: calc(10 / 1440 * 100vw);
    top: calc(10 / 1440 * 100vw);
    width: calc(278 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form {
    background: var(--color-white);
    border-radius: calc(7 / 375 * 100vw);
    max-height: calc(100vh - (114 / 375 * 100vw)) !important;
    position: static;
    width: calc(335 / 375 * 100vw);
  }
}
.p-form::-webkit-scrollbar {
  display: none;
}
.p-form__title {
  align-items: center;
  border-radius: 8px 8px 0px 0px;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  padding-top: 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form__title {
    border-radius: calc(8 / 1440 * 100vw) calc(8 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    padding-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__title {
    border-radius: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(0 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    padding-top: calc(20 / 375 * 100vw);
  }
}
.p-form__title::before {
  background: var(--color-main);
  border-radius: 0px 0px 1.5px 1.5px;
  content: "";
  display: block;
  height: 4px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 215px;
}
.p-form__title span {
  font-size: 16px;
}
@media screen and (max-width: 1439px) {
  .p-form__title span {
    font-size: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__title span {
    font-size: calc(19 / 375 * 100vw);
  }
}
.p-form__embedd__inner {
  padding: 5px 25px 50px;
}
@media screen and (max-width: 1439px) {
  .p-form__embedd__inner {
    padding: calc(5 / 1440 * 100vw) calc(25 / 1440 * 100vw) calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__embedd__inner {
    padding: calc(0 / 375 * 100vw) calc(20 / 375 * 100vw) calc(50 / 375 * 100vw);
  }
}
.p-form__embedd__titleBox {
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  .p-form__embedd__titleBox {
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__embedd__titleBox {
    margin-bottom: calc(5 / 375 * 100vw);
  }
}
.p-form__embedd__titleBox__thumbnail {
  margin: 0 auto;
  width: 175px;
}
.p-form__embedd__titleBox__thumbnail img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form__embedd__titleBox__thumbnail {
    width: calc(175 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__embedd__titleBox__thumbnail {
    width: calc(233 / 375 * 100vw);
  }
}
.p-form__agree {
  display: none;
}
.p-form__image {
  margin: 0 auto;
  width: 200px;
}
.p-form__image img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form__image {
    width: calc(200 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form__image {
    margin: 0 auto calc(16 / 375 * 100vw);
    width: calc(250 / 375 * 100vw);
  }
}
.p-form .smpForm {
  padding: 0;
}
.p-form .ss_field + .ss_field {
  margin-top: 9px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field + .ss_field {
    margin-top: calc(9 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field + .ss_field {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_field:first-child {
  font-size: 1.2rem;
  margin-top: 0;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:first-child {
    font-size: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:first-child {
    font-size: calc(14 / 375 * 100vw);
  }
}
.p-form .ss_field:first-child .ss_grid {
  margin-top: 8px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:first-child .ss_grid {
    margin-top: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:first-child .ss_grid {
    margin-top: calc(8 / 375 * 100vw);
  }
}
.p-form .ss_field:nth-child(odd) {
  background-color: transparent;
}
.p-form .ss_field:nth-last-child(1) .ss_form_title {
  display: none;
}
.p-form .ss_field:nth-last-child(1) .ss_input {
  display: flex;
  font-size: 0;
}
.p-form .ss_field:nth-last-child(1) .ss_input::after {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 2px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_field:nth-last-child(1) .ss_input::after {
    font-size: calc(12 / 1440 * 100vw);
    margin-left: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_field:nth-last-child(1) .ss_input::after {
    font-size: calc(14 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.p-form .ss_field:nth-last-child(1) .ss_input::after {
  content: "無料デモを申し込む";
}
.p-form .ss_field:hover {
  background-color: transparent;
}
.p-form .ss_contents fieldset {
  border: 0;
}
.p-form .ss_contents fieldset + fieldset {
  background-color: transparent;
}
.p-form .ss_upComment {
  color: var(--color-black);
  font-size: 1.2rem;
  line-height: 17px;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_upComment {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
    margin-bottom: calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_upComment {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
    margin-bottom: calc(6 / 375 * 100vw);
  }
}
.p-form .ss_upComment a {
  color: #1571DA;
  font-size: 1.2rem;
  line-height: 17px;
  position: relative;
  text-decoration: underline;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_upComment a {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_upComment a {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
  }
}
.p-form .ss_upComment a::after {
  background-image: url(../images/icon_external_link.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 8px;
  margin-left: 2px;
  margin-right: 2px;
  transform: translateY(-3px);
  width: 8px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_upComment a::after {
    height: calc(8 / 1440 * 100vw);
    margin-left: calc(2 / 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_upComment a::after {
    height: calc(8 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
    margin-right: calc(2 / 375 * 100vw);
    transform: translateY(calc(-3 / 375 * 100vw));
    width: calc(8 / 375 * 100vw);
  }
}
.p-form .ss_upComment font {
  color: #1571DA;
  font-size: 1.2rem;
  line-height: 17px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_upComment font {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_upComment font {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
  }
}
.p-form .ss_grid {
  display: block;
}
.p-form .ss_grid .ss_input:first-of-type .ss_leftComment {
  display: none;
}
.p-form .ss_grid .ss_input:last-of-type .ss_leftComment {
  font-size: 0;
}
.p-form .ss_grid .ss_input:last-of-type .ss_leftComment::before {
  color: var(--color-black);
  content: "名";
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 6px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_grid .ss_input:last-of-type .ss_leftComment::before {
    font-size: calc(12 / 1440 * 100vw);
    margin-bottom: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_grid .ss_input:last-of-type .ss_leftComment::before {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(7 / 375 * 100vw);
  }
}
.p-form .ss_grid .ss_input:last-of-type .ss_leftComment::after {
  color: var(--color-main2);
  content: "*";
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-left: 2px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_grid .ss_input:last-of-type .ss_leftComment::after {
    font-size: calc(12 / 1440 * 100vw);
    margin-left: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_grid .ss_input:last-of-type .ss_leftComment::after {
    font-size: calc(13 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.p-form .ss_rightComment {
  display: none;
}
.p-form .ss_form_title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 6px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_form_title {
    font-size: calc(12 / 1440 * 100vw);
    margin-bottom: calc(6 / 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_input {
  width: 100%;
}
.p-form .ss_input br {
  display: none;
}
.p-form .ss_input input[type=text],
.p-form .ss_input input[type=email],
.p-form .ss_input select,
.p-form .ss_input textarea {
  background-color: var(--color-form);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  font-size: 1.3rem;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input input[type=text],
.p-form .ss_input input[type=email],
.p-form .ss_input select,
.p-form .ss_input textarea {
    border-radius: calc(2 / 1440 * 100vw);
    font-size: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input input[type=text],
.p-form .ss_input input[type=email],
.p-form .ss_input select,
.p-form .ss_input textarea {
    border-radius: calc(2 / 375 * 100vw);
    font-size: 16px;
  }
}
.p-form .ss_input input[type=text],
.p-form .ss_input input[type=email],
.p-form .ss_input select {
  height: 30px;
  padding: 0 12px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input input[type=text],
.p-form .ss_input input[type=email],
.p-form .ss_input select {
    height: calc(30 / 1440 * 100vw);
    padding: 0 calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input input[type=text],
.p-form .ss_input input[type=email],
.p-form .ss_input select {
    height: calc(50 / 375 * 100vw);
    padding: 0 calc(15 / 375 * 100vw);
  }
}
.p-form .ss_input textarea {
  height: 75px;
  padding: 12px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input textarea {
    height: calc(75 / 1440 * 100vw);
    padding: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input textarea {
    height: calc(115 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_input input[type=checkbox] {
  margin: 0 5px 0 0;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input input[type=checkbox] {
    margin: 0 calc(5 / 1440 * 100vw) 0 0;
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input input[type=checkbox] {
    margin: 0 calc(5 / 375 * 100vw) 0 0;
  }
}
.p-form .ss_input + .ss_input {
  margin-top: 9px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_input + .ss_input {
    margin-top: calc(9 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_input + .ss_input {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_bottomComment {
  color: var(--color-black);
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 17px;
  margin-top: 8px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_bottomComment {
    font-size: calc(13 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
    margin-top: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_bottomComment {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
    margin-top: calc(8 / 375 * 100vw);
  }
}
.p-form .ss_bottomComment a {
  color: #1571DA;
  font-size: 1.2rem;
  line-height: 17px;
  position: relative;
  text-decoration: underline;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_bottomComment a {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_bottomComment a {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
  }
}
.p-form .ss_bottomComment a::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-left: 2px;
  margin-right: 2px;
  transform: translateY(-3px);
  width: 8px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_bottomComment a::after {
    height: calc(8 / 1440 * 100vw);
    margin-left: calc(2 / 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_bottomComment a::after {
    height: calc(8 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
    margin-right: calc(2 / 375 * 100vw);
    transform: translateY(calc(-3 / 375 * 100vw));
    width: calc(8 / 375 * 100vw);
  }
}
.p-form .ss_bottomComment font {
  color: #1571DA;
  font-size: 1.2rem;
  line-height: 17px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_bottomComment font {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_bottomComment font {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(19 / 375 * 100vw);
  }
}
.p-form .ss_user_notnull {
  font-size: 0;
}
.p-form .ss_user_notnull::after {
  color: var(--color-main2);
  content: "*";
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 2px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_user_notnull::after {
    font-size: calc(12 / 1440 * 100vw);
    margin-left: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_user_notnull::after {
    font-size: calc(13 / 375 * 100vw);
    margin-left: calc(2 / 375 * 100vw);
  }
}
.p-form .ss_btnArea {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_btnArea {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_btnArea {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-form .ss_btnArea input[type=button] {
  align-items: center;
  background: linear-gradient(125deg, #f2765a 0%, #df5434 100%);
  border: 1px solid var(--color-main2);
  border-radius: 25px;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  height: 49px;
  justify-content: center;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_btnArea 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 .ss_btnArea input[type=button] {
    border-radius: calc(30 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
    height: calc(59 / 375 * 100vw);
  }
}
.p-form .ss_btnArea input[type=button]:hover {
  background: var(--color-white);
  color: var(--color-main2);
}
@media screen and (max-width: 767px) {
  .p-form .ss_btnArea input[type=button]:hover {
    background: linear-gradient(125deg, #f2765a 0%, #df5434 100%);
    color: var(--color-white);
  }
}
.p-form .ss_warning_label {
  display: none;
}
.p-form .ss_error_msg {
  align-items: center;
  background-color: #ffeeef;
  color: var(--color-main2);
  display: flex;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  margin-left: 0;
  padding: 4px 4px 5px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_error_msg {
    font-size: calc(13 / 1440 * 100vw);
    margin-bottom: calc(8 / 1440 * 100vw);
    padding: calc(4 / 1440 * 100vw) calc(4 / 1440 * 100vw) calc(5 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_error_msg {
    font-size: calc(13 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
    padding: calc(4 / 375 * 100vw) calc(4 / 375 * 100vw) calc(5 / 375 * 100vw);
  }
}
.p-form .ss_error_msg::before {
  background-image: url(../images/icon_notice.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 15px;
  margin-right: 4px;
  transform: translateY(1px);
  width: 15px;
}
@media screen and (max-width: 1439px) {
  .p-form .ss_error_msg::before {
    height: calc(15 / 1440 * 100vw);
    margin-right: calc(4 / 1440 * 100vw);
    width: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-form .ss_error_msg::before {
    height: calc(15 / 375 * 100vw);
    margin-right: calc(4 / 375 * 100vw);
    width: calc(15 / 375 * 100vw);
  }
}
.p-form .ss_error_msg ~ input[type=text], .p-form .ss_error_msg ~ input[type=email] {
  background-color: #FCE3E2 !important;
  border: 1px solid #BA211F !important;
}
.p-form.lity-hide {
  display: block;
}
@media screen and (max-width: 767px) {
  .p-form.lity-hide {
    display: none;
  }
}

fieldset:first-child .ss_form_title {
  margin-bottom: 10px;
}
@media screen and (max-width: 1439px) {
  fieldset:first-child .ss_form_title {
    margin-bottom: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  fieldset:first-child .ss_form_title {
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
fieldset:first-child .ss_input {
  font-weight: 500;
}
fieldset:first-child .ss_input input[type=checkbox] {
  transform: translateY(-1px);
}
fieldset:first-child .ss_input .ss_error_msg {
  left: 0;
  position: absolute;
  top: 40px;
}
@media screen and (max-width: 1439px) {
  fieldset:first-child .ss_input .ss_error_msg {
    top: calc(42 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  fieldset:first-child .ss_input .ss_error_msg {
    top: calc(45 / 375 * 100vw);
  }
}
fieldset:first-child .ss_input .ss_error_msg ~ .ss_bottomComment {
  margin-top: 30px;
}
@media screen and (max-width: 1439px) {
  fieldset:first-child .ss_input .ss_error_msg ~ .ss_bottomComment {
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  fieldset:first-child .ss_input .ss_error_msg ~ .ss_bottomComment {
    margin-top: calc(36 / 375 * 100vw);
  }
}
fieldset:nth-child(2) .ss_grid .ss_input:last-child {
  position: relative;
}
fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg {
  display: none;
}
fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_leftComment {
  display: inline-block;
  margin-bottom: 32px;
}
@media screen and (max-width: 1439px) {
  fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_leftComment {
    margin-bottom: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_leftComment {
    margin-bottom: calc(32 / 375 * 100vw);
  }
}
fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_rightComment {
  display: block;
  font-size: 0;
  margin: 0;
}
fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_rightComment::before {
  background-color: #ffeeef;
  color: var(--color-main2);
  content: "必ず入力してください";
  display: inline-block;
  display: flex;
  font-size: 1.3rem;
  font-weight: 600;
  left: 0;
  letter-spacing: 0.05em;
  padding: 5px 4px 6px 22px;
  position: absolute;
  top: 18px;
  width: 202px;
}
@media screen and (max-width: 1439px) {
  fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_rightComment::before {
    font-size: calc(13 / 1440 * 100vw);
    padding: calc(5 / 1440 * 100vw) calc(4 / 1440 * 100vw) calc(6 / 1440 * 100vw) calc(22 / 1440 * 100vw);
    top: calc(18 / 1440 * 100vw);
    width: calc(202 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_rightComment::before {
    font-size: calc(13 / 375 * 100vw);
    padding: calc(5 / 375 * 100vw) calc(4 / 375 * 100vw) calc(6 / 375 * 100vw) calc(22 / 375 * 100vw);
    top: calc(18 / 375 * 100vw);
    width: calc(254 / 375 * 100vw);
  }
}
fieldset:nth-child(2) .ss_grid .ss_input:last-child .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: 15px;
  left: 4px;
  margin-right: 4px;
  position: absolute;
  top: 22px;
  transform: translateY(1px);
  width: 15px;
}
@media screen and (max-width: 1439px) {
  fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_rightComment::after {
    height: calc(15 / 1440 * 100vw);
    left: calc(4 / 1440 * 100vw);
    margin-right: calc(4 / 1440 * 100vw);
    top: calc(22 / 1440 * 100vw);
    width: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  fieldset:nth-child(2) .ss_grid .ss_input:last-child .ss_error_msg ~ .ss_rightComment::after {
    height: calc(15 / 375 * 100vw);
    left: calc(4 / 375 * 100vw);
    margin-right: calc(4 / 375 * 100vw);
    top: calc(22 / 375 * 100vw);
    width: calc(15 / 375 * 100vw);
  }
}

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

.p-complete {
  background-color: #FCFAF7;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: calc(100vh - 24px);
}
@media screen and (max-width: 1439px) {
  .p-complete {
    height: calc(100vh - (24 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-complete {
    height: calc(100vh - (29 / 375 * 100vw));
  }
}
.p-complete .l-container {
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .p-complete .l-container {
    padding-left: calc(38 / 375 * 100vw);
    padding-right: calc(38 / 375 * 100vw);
  }
}
.p-complete__inner {
  padding-top: 150px;
}
@media screen and (max-width: 1439px) {
  .p-complete__inner {
    padding-top: calc(150 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__inner {
    padding-top: calc(100 / 375 * 100vw);
  }
}
.p-complete__titleBox {
  margin-bottom: 60px;
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-complete__titleBox {
    margin-bottom: calc(60 / 1440 * 100vw);
    padding-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__titleBox {
    margin-bottom: calc(40 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-complete__titleBox::before {
  background-image: url(../images/icon_check_complete.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 33px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 33px;
}
@media screen and (max-width: 1439px) {
  .p-complete__titleBox::before {
    height: calc(33 / 1440 * 100vw);
    width: calc(33 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__titleBox::before {
    height: calc(30 / 375 * 100vw);
    width: calc(30 / 375 * 100vw);
  }
}
.p-complete__titleBox__title {
  color: #1F1D1D;
  font-size: 26px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-complete__titleBox__title {
    font-size: calc(26 / 1440 * 100vw);
    line-height: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__titleBox__title {
    font-size: calc(21 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
  }
}
.p-complete__text {
  color: #1F1D1D;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-complete__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(26 / 375 * 100vw);
    text-align: left;
  }
}
.p-complete__text a {
  color: #DF5434;
}
.p-complete__button {
  margin-top: 80px;
}
@media screen and (max-width: 1439px) {
  .p-complete__button {
    margin-top: calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__button {
    margin-top: calc(60 / 375 * 100vw);
  }
}
.p-complete__button a {
  align-items: center;
  background: linear-gradient(125deg, #f2765a 0%, #df5434 100%);
  border: 1px solid var(--color-main2);
  border-radius: 30px;
  color: var(--color-white);
  display: flex;
  font-size: 16px;
  font-weight: bold;
  height: 60px;
  justify-content: center;
  margin: 0 auto;
  transition: 0s;
  width: 299px;
}
@media screen and (max-width: 1439px) {
  .p-complete__button a {
    border-radius: calc(30 / 1440 * 100vw);
    font-size: calc(16 / 1440 * 100vw);
    height: calc(60 / 1440 * 100vw);
    width: calc(299 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-complete__button a {
    border-radius: calc(30 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
    width: 100%;
  }
}
.p-complete__button a:hover {
  background: var(--color-white);
  color: var(--color-main2);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-complete__button a:hover {
    background: linear-gradient(125deg, #f2765a 0%, #df5434 100%);
    color: var(--color-white);
  }
}

.p-faq {
  background: var(--color-bg);
  border-radius: 80px 0 0 80px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1439px) {
  .p-faq {
    border-radius: calc(80 / 1440 * 100vw) 0 0 calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq {
    border-radius: calc(50 / 375 * 100vw) 0 0 calc(50 / 375 * 100vw);
  }
}
.p-faq__inner {
  padding-bottom: 80px;
  padding-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-faq__inner {
    padding-bottom: calc(80 / 1440 * 100vw);
    padding-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding: calc(20 / 375 * 100vw) 0 calc(60 / 375 * 100vw);
  }
}
.p-faq .c-sectionTitle {
  margin-bottom: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-faq .c-sectionTitle {
    margin-bottom: calc(50 / 1440 * 100vw);
    padding-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq .c-sectionTitle {
    margin-bottom: calc(30 / 375 * 100vw);
    padding-top: calc(30 / 375 * 100vw);
  }
}
.p-faq__faqList > ul > li + li {
  margin-top: 15px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(15 / 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: var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin: 0 auto;
  padding: 20px;
  width: 776px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox {
    border-radius: calc(10 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(16 / 1440 * 100vw) rgba(0, 0, 0, 0.1);
    padding: calc(20 / 1440 * 100vw);
    width: calc(776 / 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(16 / 375 * 100vw) rgba(0, 0, 0, 0.1);
    padding: calc(15 / 375 * 100vw) calc(18 / 375 * 100vw) calc(20 / 375 * 100vw);
    width: 100%;
  }
}
.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;
  content: "";
  display: block;
  height: 18px;
  position: absolute;
  right: 0;
  top: 3px;
  width: 18px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox::after {
    height: calc(18 / 1440 * 100vw);
    top: calc(3 / 1440 * 100vw);
    width: calc(18 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox::after {
    height: calc(14 / 375 * 100vw);
    top: calc(5 / 375 * 100vw);
    width: calc(14 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__inner {
  display: flex;
}
.p-faq__faqList__faqBox__qBox__icon {
  color: var(--color-main);
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-right: 8px;
  transform: translateY(-1px);
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__icon {
    font-size: calc(24 / 1440 * 100vw);
    margin-right: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__icon {
    font-size: calc(24 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
          user-select: none;
  width: 662px;
}
@media screen and (max-width: 1919px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
    width: calc(662 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    width: calc(250 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox {
  display: none;
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox__inner {
  display: flex;
}
.p-faq__faqList__faqBox__aBox__icon {
  color: var(--color-main2);
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-right: 8px;
  visibility: hidden;
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox__icon {
    font-size: calc(24 / 1440 * 100vw);
    margin-right: calc(8 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__icon {
    font-size: calc(24 / 375 * 100vw);
    margin-right: calc(8 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox__text {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
  font-size: 15px;
  line-height: 23px;
          user-select: none;
  width: 662px;
}
@media screen and (max-width: 1919px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
    width: calc(662 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(13 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
    width: calc(250 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox.is-open .p-faq__faqList__faqBox__qBox::after {
  background-image: url(../images/icon_minus.svg);
}

.p-company {
  height: 580px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1919px) {
  .p-company {
    height: 605px;
  }
}
@media screen and (max-width: 1439px) {
  .p-company {
    height: calc(605 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company {
    height: calc(749 / 375 * 100vw);
  }
}
.p-company::after {
  background-image: url(../images/decoration_company.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 305px;
  position: absolute;
  right: 288px;
  width: 460px;
}
@media screen and (max-width: 1439px) {
  .p-company::after {
    height: calc(305 / 1440 * 100vw);
    right: calc(288 / 1440 * 100vw);
    width: calc(460 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company::after {
    height: calc(156 / 375 * 100vw);
    right: calc(0 / 375 * 100vw);
    width: calc(236 / 375 * 100vw);
  }
}
.p-company .l-container {
  height: 100%;
}
.p-company__inner {
  height: 100%;
  padding-top: 72px;
  position: relative;
}
@media screen and (max-width: 1919px) {
  .p-company__inner {
    padding-left: 12px;
  }
}
@media screen and (max-width: 1439px) {
  .p-company__inner {
    padding-left: calc(12 / 1440 * 100vw);
    padding-top: calc(72 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    padding-left: calc(0 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-company__content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-company__content {
    display: block;
  }
}
.p-company__content::before {
  background-image: url(../images/logo_tdse.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 75px;
  margin-right: 62px;
  transform: translateY(65px);
  width: 47px;
}
@media screen and (max-width: 1439px) {
  .p-company__content::before {
    height: calc(75 / 1440 * 100vw);
    margin-right: calc(62 / 1440 * 100vw);
    transform: translateY(calc(65 / 1440 * 100vw));
    width: calc(47 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__content::before {
    height: calc(75 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
    transform: translateY(calc(0 / 375 * 100vw));
    width: calc(47 / 375 * 100vw);
  }
}
.p-company__content__titleBox {
  margin-bottom: 40px;
}
@media screen and (max-width: 1439px) {
  .p-company__content__titleBox {
    margin-bottom: calc(40 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__content__titleBox {
    margin-bottom: calc(50 / 375 * 100vw);
  }
}
.p-company__content__titleBox__title {
  color: var(--color-black3);
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-company__content__titleBox__title {
    font-size: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__content__titleBox__title {
    font-size: calc(21 / 375 * 100vw);
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-company__content__infoList {
    padding: 0 calc(20 / 375 * 100vw);
  }
}
.p-company__content__infoList > ul > li + li {
  margin-top: 27px;
}
@media screen and (max-width: 1439px) {
  .p-company__content__infoList > ul > li + li {
    margin-top: calc(27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__content__infoList > ul > li + li {
    margin-top: calc(22 / 375 * 100vw);
  }
}
.p-company__content__infoList dl {
  display: flex;
}
.p-company__content__infoList dl dt {
  color: var(--color-black3);
  flex-shrink: 0;
  font-size: 14px;
  font-weight: bold;
  width: 80px;
}
@media screen and (max-width: 1439px) {
  .p-company__content__infoList dl dt {
    font-size: calc(14 / 1440 * 100vw);
    width: calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__content__infoList dl dt {
    font-size: calc(14 / 375 * 100vw);
    width: calc(80 / 375 * 100vw);
  }
}
.p-company__content__infoList dl dd {
  color: var(--color-black3);
  font-size: 14px;
}
@media screen and (max-width: 1439px) {
  .p-company__content__infoList dl dd {
    font-size: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-company__content__infoList dl dd {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(17 / 375 * 100vw);
  }
}

.p-mainVisual {
  height: 579px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual {
    height: 523px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual {
    height: calc(523 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    height: calc(675 / 375 * 100vw);
  }
}
.p-mainVisual::before {
  background: var(--color-bg2);
  border-radius: 0px 0px 0px 80px;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual::before {
    border-radius: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual::before {
    border-radius: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(60 / 375 * 100vw);
  }
}
.p-mainVisual__inner {
  height: 100%;
  position: relative;
}
.p-mainVisual__inner::before, .p-mainVisual__inner::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  content: "";
  display: block;
  position: absolute;
}
.p-mainVisual__inner::before {
  background-image: url(../images/before_mainvisual_xl.svg);
  height: 208px;
  left: 0;
  top: 0;
  width: 894px;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual__inner::before {
    background-image: url(../images/before_mainvisual.svg);
    height: 193px;
    width: 807px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__inner::before {
    height: calc(193 / 1440 * 100vw);
    width: calc(807 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner::before {
    background-image: url(../images/before_mainvisual_sp.svg);
    height: calc(130 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
.p-mainVisual__inner::after {
  background-image: url(../images/after_mainvisual_xl.svg);
  bottom: 0;
  height: 208px;
  right: 0;
  width: 849px;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual__inner::after {
    background-image: url(../images/after_mainvisual.svg);
    height: 192px;
    width: 800px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__inner::after {
    height: calc(192 / 1440 * 100vw);
    width: calc(800 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__inner::after {
    background-image: url(../images/after_mainvisual_sp.svg);
    bottom: calc(23 / 375 * 100vw);
    height: calc(293 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
.p-mainVisual__content {
  position: relative;
}
.p-mainVisual__content__inner {
  padding-left: 0;
  padding-top: 150px;
  position: relative;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual__content__inner {
    padding-left: 62px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__inner {
    padding-left: calc(62 / 1440 * 100vw);
    padding-top: calc(150 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__inner {
    padding-left: calc(0 / 375 * 100vw);
    padding-top: calc(109 / 375 * 100vw);
  }
}
.p-mainVisual__content__inner::before {
  background-image: url(../images/image_mainvisual.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 429px;
  left: 495px;
  position: absolute;
  top: 95px;
  width: 611px;
  z-index: 1;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual__content__inner::before {
    height: 363px;
    left: 439px;
    top: 106px;
    width: 566px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__inner::before {
    height: calc(363 / 1440 * 100vw);
    left: calc(439 / 1440 * 100vw);
    top: calc(106 / 1440 * 100vw);
    width: calc(566 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__inner::before {
    background-image: url(../images/image_mainvisual_sp.png);
    height: calc(278 / 375 * 100vw);
    left: calc(-20 / 375 * 100vw);
    margin: 0 auto;
    right: 0;
    top: calc(350 / 375 * 100vw);
    width: calc(383 / 375 * 100vw);
  }
}
.p-mainVisual__content__titleBox {
  background-image: url(../images/title_mainvisual_xl.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 207px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 475px;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual__content__titleBox {
    height: 177px;
    width: 399px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__titleBox {
    background-image: url(../images/title_mainvisual.svg);
    height: calc(177 / 1440 * 100vw);
    width: calc(399 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__titleBox {
    background-image: url(../images/title_mainvisual_sp.svg);
    height: calc(154 / 375 * 100vw);
    margin: 0 auto;
    width: calc(326 / 375 * 100vw);
  }
}
.p-mainVisual__content__text {
  font-size: 18px;
  font-weight: bold;
  line-height: 32px;
  margin-top: 30px;
}
@media screen and (max-width: 1919px) {
  .p-mainVisual__content__text {
    font-size: 16px;
    line-height: 26px;
  }
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__content__text {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(26 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__content__text {
    font-size: calc(16 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    text-align: center;
  }
}

.p-point {
  margin-top: -46px;
  overflow: hidden;
  padding-bottom: 21px;
  padding-top: 16px;
}
@media screen and (max-width: 1919px) {
  .p-point {
    margin-top: -46px;
    padding-bottom: 21px;
    padding-top: 16px;
  }
}
@media screen and (max-width: 1439px) {
  .p-point {
    margin-top: calc(-46 / 1440 * 100vw);
    padding-bottom: calc(21 / 1440 * 100vw);
    padding-top: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point {
    margin-top: calc(-63 / 375 * 100vw);
    padding-bottom: calc(21 / 375 * 100vw);
    padding-top: calc(16 / 375 * 100vw);
  }
}
.p-point .l-container {
  padding-left: 0;
  padding-right: 0;
  width: 1155px;
}
@media screen and (max-width: 1919px) {
  .p-point .l-container {
    padding-left: 24px;
    padding-right: 24px;
    width: 1048px;
  }
}
@media screen and (max-width: 1439px) {
  .p-point .l-container {
    padding-left: calc(24 / 1440 * 100vw);
    padding-right: calc(24 / 1440 * 100vw);
    width: calc(1048 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point .l-container {
    padding-left: calc(17 / 375 * 100vw);
    padding-right: calc(17 / 375 * 100vw);
    width: 100%;
  }
}
.p-point h2 {
  display: none;
}
.p-point__pointList > ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-point__pointList > ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-point__pointList > ul > li + li {
    margin-top: calc(36 / 375 * 100vw);
  }
}
.p-point__pointList__pointBox {
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(7.0067200661px);
  --webkit-backdrop-filter: blur(7.006720066070557px);
          backdrop-filter: blur(7.0067200661px);
  background: transparent;
  background-color: rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
  height: 256px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 23px;
  /* (plus shape's fill blended on top as a separate layer with 39.66% opacity) */
  position: relative;
  width: 270px;
}
@media screen and (max-width: 1919px) {
  .p-point__pointList__pointBox {
    width: 229px;
  }
}
@media screen and (max-width: 1439px) {
  .p-point__pointList__pointBox {
    -webkit-backdrop-filter: blur(calc(7.006720066070557 / 1440 * 100vw));
    --webkit-backdrop-filter: blur(calc(7.006720066070557 / 1440 * 100vw));
            backdrop-filter: blur(calc(7.006720066070557 / 1440 * 100vw));
    border-radius: calc(7 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(16 / 1440 * 100vw) rgba(0, 0, 0, 0.15);
    height: calc(256 / 1440 * 100vw);
    padding-left: calc(18 / 1440 * 100vw);
    padding-right: calc(18 / 1440 * 100vw);
    padding-top: calc(23 / 1440 * 100vw);
    width: calc(229 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point__pointList__pointBox {
    -webkit-backdrop-filter: blur(calc(7.006720066070557 / 375 * 100vw));
    --webkit-backdrop-filter: blur(calc(7.006720066070557 / 375 * 100vw));
            backdrop-filter: blur(calc(7.006720066070557 / 375 * 100vw));
    border-radius: calc(7 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(16 / 375 * 100vw) rgba(0, 0, 0, 0.15);
    height: auto;
    margin: 0 auto;
    padding-bottom: calc(60 / 375 * 100vw);
    padding-left: calc(17 / 375 * 100vw);
    padding-right: calc(17 / 375 * 100vw);
    padding-top: calc(25 / 375 * 100vw);
    width: calc(295 / 375 * 100vw);
  }
}
.p-point__pointList__pointBox::after {
  background-image: url(../images/arrow_point.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -21px;
  content: "";
  display: block;
  filter: drop-shadow(0px 0px 12px rgba(223, 84, 52, 0.16));
  height: 42px;
  position: absolute;
  right: 21px;
  width: 42px;
}
@media screen and (max-width: 1439px) {
  .p-point__pointList__pointBox::after {
    bottom: calc(-21 / 1440 * 100vw);
    filter: drop-shadow(calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(12 / 1440 * 100vw) rgba(223, 84, 52, 0.16));
    height: calc(42 / 1440 * 100vw);
    right: calc(21 / 1440 * 100vw);
    width: calc(42 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point__pointList__pointBox::after {
    bottom: calc(-21 / 375 * 100vw);
    filter: drop-shadow(calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(12 / 375 * 100vw) rgba(223, 84, 52, 0.16));
    height: calc(42 / 375 * 100vw);
    left: 0;
    margin: 0 auto;
    right: calc(0 / 375 * 100vw);
    width: calc(42 / 375 * 100vw);
  }
}
.p-point__pointList__pointBox__icon {
  margin: 0 auto 17px;
  width: 192px;
}
.p-point__pointList__pointBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-point__pointList__pointBox__icon {
    margin: 0 auto calc(17 / 1440 * 100vw);
    width: calc(192 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point__pointList__pointBox__icon {
    margin: 0 auto calc(17 / 375 * 100vw);
    width: calc(192 / 375 * 100vw);
  }
}
.p-point__pointList__pointBox__textBox__title {
  font-size: 17px;
  font-weight: bold;
  line-height: 26px;
  margin-bottom: 7px;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .p-point__pointList__pointBox__textBox__title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 1439px) {
  .p-point__pointList__pointBox__textBox__title {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(26 / 1440 * 100vw);
    margin-bottom: calc(3 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point__pointList__pointBox__textBox__title {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.p-point__pointList__pointBox__textBox__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 1919px) {
  .p-point__pointList__pointBox__textBox__text {
    font-size: 12px;
    line-height: 19px;
  }
}
@media screen and (max-width: 1439px) {
  .p-point__pointList__pointBox__textBox__text {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(19 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-point__pointList__pointBox__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
  }
}

.p-achievement__inner {
  padding-bottom: 50px;
  padding-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-achievement__inner {
    padding-bottom: calc(50 / 1440 * 100vw);
    padding-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievement__inner {
    padding-bottom: calc(50 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}
.p-achievement__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 23px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-achievement__title {
    font-size: calc(24 / 1440 * 100vw);
    margin-bottom: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievement__title {
    font-size: calc(21 / 375 * 100vw);
    margin-bottom: calc(25 / 375 * 100vw);
  }
}
.p-achievement__logoList > ul {
  display: flex;
  justify-content: center;
}
.p-achievement__logoList > ul > li + li {
  margin-left: 70px;
}
@media screen and (max-width: 1439px) {
  .p-achievement__logoList > ul > li + li {
    margin-left: calc(70 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievement__logoList > ul > li + li {
    margin-left: calc(15 / 375 * 100vw);
  }
}
.p-achievement__logoList__logo {
  height: 57px;
}
@media screen and (max-width: 1439px) {
  .p-achievement__logoList__logo {
    height: calc(57 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-achievement__logoList__logo {
    height: calc(44 / 375 * 100vw);
  }
}
.p-achievement__logoList__logo img {
  height: 100%;
  width: auto;
}

.p-help {
  background: var(--color-bg);
  border-radius: 80px 0 0 80px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1439px) {
  .p-help {
    border-radius: calc(80 / 1440 * 100vw) 0 0 calc(80 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help {
    border-radius: calc(50 / 375 * 100vw) 0 0 calc(50 / 375 * 100vw);
  }
}
.p-help__inner {
  padding-bottom: 80px;
  padding-top: 86px;
}
@media screen and (max-width: 1439px) {
  .p-help__inner {
    padding-bottom: calc(80 / 1440 * 100vw);
    padding-top: calc(86 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__inner {
    padding-bottom: calc(70 / 375 * 100vw);
    padding-top: calc(50 / 375 * 100vw);
  }
}
.p-help__title {
  background-image: url(../images/title_help.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  margin: 0 auto 116px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 481px;
}
@media screen and (max-width: 1439px) {
  .p-help__title {
    height: calc(25 / 1440 * 100vw);
    margin: 0 auto calc(116 / 1440 * 100vw);
    width: calc(481 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__title {
    background-image: url(../images/title_help_sp.svg);
    height: calc(76 / 375 * 100vw);
    margin: 0 auto calc(107 / 375 * 100vw);
    width: calc(325 / 375 * 100vw);
  }
}
.p-help__helpList {
  margin: 0 auto;
  width: 815px;
}
@media screen and (max-width: 1919px) {
  .p-help__helpList {
    width: 744px;
  }
}
@media screen and (max-width: 1439px) {
  .p-help__helpList {
    width: calc(744 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList {
    width: 100%;
  }
}
.p-help__helpList > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-help__helpList > ul {
    display: block;
  }
}
.p-help__helpList > ul > li {
  margin-top: 92px;
}
@media screen and (max-width: 1439px) {
  .p-help__helpList > ul > li {
    margin-top: calc(92 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList > ul > li {
    margin-top: calc(96 / 375 * 100vw);
  }
}
.p-help__helpList > ul > li:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-help__helpList > ul > li:nth-child(-n+2) {
    margin-top: calc(96 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList > ul > li:first-child {
    margin-top: 0;
  }
}
.p-help__helpList__helpBox {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
  height: 328px;
  opacity: 0.95;
  padding: 134px 24px 0;
  position: relative;
  width: 390px;
}
@media screen and (max-width: 1919px) {
  .p-help__helpList__helpBox {
    height: 330px;
    width: 356px;
  }
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox {
    border-radius: calc(7 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(16 / 1440 * 100vw) rgba(0, 0, 0, 0.15);
    height: calc(330 / 1440 * 100vw);
    padding: calc(134 / 1440 * 100vw) calc(24 / 1440 * 100vw) 0;
    width: calc(356 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox {
    border-radius: calc(7 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(16 / 375 * 100vw) rgba(0, 0, 0, 0.15);
    height: auto;
    padding: calc(98 / 375 * 100vw) calc(20 / 375 * 100vw) calc(25 / 375 * 100vw);
    width: calc(335 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__icon {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -64px;
  width: 308px;
}
.p-help__helpList__helpBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__icon {
    top: calc(-64 / 1440 * 100vw);
    width: calc(308 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__icon {
    top: calc(-80 / 375 * 100vw);
    width: calc(298 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__textBox__titleBox {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  min-height: 44px;
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__textBox__titleBox {
    margin-bottom: calc(10 / 1440 * 100vw);
    min-height: calc(44 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__textBox__titleBox {
    margin-bottom: calc(15 / 375 * 100vw);
    min-height: 0;
  }
}
.p-help__helpList__helpBox__textBox__titleBox__title {
  font-size: 17px;
  font-weight: bold;
  line-height: 26px;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .p-help__helpList__helpBox__textBox__titleBox__title {
    font-size: 16px;
    line-height: 24px;
  }
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__textBox__titleBox__title {
    font-size: calc(16 / 1440 * 100vw);
    line-height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__textBox__titleBox__title {
    font-size: calc(17 / 375 * 100vw);
    line-height: calc(27 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__textBox__titleBox__title span {
  color: var(--color-main);
  display: inline-block;
  font-size: 20px;
  margin-right: 3px;
  transform: translateY(1px);
}
@media screen and (max-width: 1919px) {
  .p-help__helpList__helpBox__textBox__titleBox__title span {
    font-size: 18px;
    margin-right: 3px;
  }
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__textBox__titleBox__title span {
    font-size: calc(18 / 1440 * 100vw);
    margin-right: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__textBox__titleBox__title span {
    font-size: calc(19 / 375 * 100vw);
    margin-right: calc(2 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__textBox__list > ul > li {
  display: flex;
  position: relative;
}
.p-help__helpList__helpBox__textBox__list > ul > li::before {
  background-image: url(../images/icon_check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 9px;
  margin-right: 9px;
  transform: translateY(8px);
  width: 13px;
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__textBox__list > ul > li::before {
    height: calc(9 / 1440 * 100vw);
    margin-right: calc(9 / 1440 * 100vw);
    transform: translateY(calc(8 / 1440 * 100vw));
    width: calc(13 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__textBox__list > ul > li::before {
    height: calc(10 / 375 * 100vw);
    margin-right: calc(7 / 375 * 100vw);
    transform: translateY(calc(8 / 375 * 100vw));
    width: calc(14 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__textBox__list > ul > li + li {
  margin-top: 10px;
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__textBox__list > ul > li + li {
    margin-top: calc(10 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__textBox__list > ul > li + li {
    margin-top: calc(5 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__textBox__list__text {
  font-size: 14px;
  font-weight: bold;
  line-height: 24px;
  text-align: justify;
}
@media screen and (max-width: 1439px) {
  .p-help__helpList__helpBox__textBox__list__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-help__helpList__helpBox__textBox__list__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.p-help__helpList__helpBox__textBox__list__text span {
  color: var(--color-main2);
}

.p-feature {
  margin-top: -160px;
  overflow: hidden;
  padding-bottom: 16px;
  padding-top: 170px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-feature {
    margin-top: calc(-160 / 1440 * 100vw);
    padding-bottom: calc(16 / 1440 * 100vw);
    padding-top: calc(170 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature {
    margin-top: calc(-83 / 375 * 100vw);
    padding-bottom: calc(16 / 375 * 100vw);
    padding-top: calc(100 / 375 * 100vw);
  }
}
.p-feature::before {
  background: var(--color-bg2);
  border-radius: 80px 0px 0px 80px;
  content: "";
  display: block;
  height: 2490px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1919px) {
  .p-feature::before {
    height: 2400px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature::before {
    border-radius: calc(80 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(80 / 1440 * 100vw);
    height: calc(2400 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature::before {
    border-radius: calc(50 / 375 * 100vw) calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(50 / 375 * 100vw);
    height: calc(2512 / 375 * 100vw);
    width: calc(375 / 375 * 100vw);
  }
}
.p-feature .c-sectionTitle {
  padding-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-feature .c-sectionTitle {
    padding-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature .c-sectionTitle {
    padding-top: calc(30 / 375 * 100vw);
  }
}
.p-feature__content {
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(19.6348991394px);
  --webkit-backdrop-filter: blur(19.634899139404297px);
          backdrop-filter: blur(19.6348991394px);
  background: transparent;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 7px;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
  height: 2400px;
  /* (plus shape's fill blended on top as a separate layer with 36.18% opacity) */
  margin: 0 auto;
  padding: 66px 60px;
  position: relative;
  width: 860px;
  z-index: 1;
}
@media screen and (max-width: 1919px) {
  .p-feature__content {
    height: 2250px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content {
    -webkit-backdrop-filter: blur(calc(19.634899139404297 / 1440 * 100vw));
    --webkit-backdrop-filter: blur(calc(19.634899139404297 / 1440 * 100vw));
            backdrop-filter: blur(calc(19.634899139404297 / 1440 * 100vw));
    border-radius: calc(7 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(16 / 1440 * 100vw) rgba(0, 0, 0, 0.15);
    height: calc(2250 / 1440 * 100vw);
    padding: calc(66 / 1440 * 100vw) calc(60 / 1440 * 100vw);
    width: calc(860 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content {
    -webkit-backdrop-filter: blur(calc(19.634899139404297 / 375 * 100vw));
    --webkit-backdrop-filter: blur(calc(19.634899139404297 / 375 * 100vw));
            backdrop-filter: blur(calc(19.634899139404297 / 375 * 100vw));
    border-radius: calc(7 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(16 / 375 * 100vw) rgba(0, 0, 0, 0.15);
    height: auto;
    padding: calc(50 / 375 * 100vw) calc(18 / 375 * 100vw);
    width: 100%;
  }
}
.p-feature__content__featureList > ul > li + li {
  margin-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList > ul > li + li {
    margin-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList > ul > li + li {
    margin-top: calc(40 / 375 * 100vw);
  }
}
.p-feature__content__featureList > ul > li:nth-child(even) .p-feature__content__featureList__featureBox__mainBox {
  flex-direction: row-reverse;
}
.p-feature__content__featureList__featureBox__mainBox {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox {
    display: block;
  }
}
.p-feature__content__featureList__featureBox__mainBox__image {
  width: 326px;
}
.p-feature__content__featureList__featureBox__mainBox__image img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__image {
    width: calc(326 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__image {
    width: 100%;
  }
}
.p-feature__content__featureList__featureBox__mainBox__image img {
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__image img {
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(16 / 1440 * 100vw) rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__image img {
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(16 / 375 * 100vw) rgba(0, 0, 0, 0.15);
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox {
  padding-top: 24px;
  width: 355px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox {
    padding-top: 26px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox {
    padding-top: calc(26 / 1440 * 100vw);
    width: calc(355 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox {
    margin-top: calc(25 / 375 * 100vw);
    padding-top: calc(0 / 375 * 100vw);
    width: 100%;
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox__number {
  margin-bottom: 10px;
  width: 32px;
}
.p-feature__content__featureList__featureBox__mainBox__textBox__number img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__number {
    margin-bottom: calc(10 / 1440 * 100vw);
    width: calc(32 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__number {
    margin-bottom: calc(10 / 375 * 100vw);
    width: calc(31 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox__title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__title {
    font-size: calc(24 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__title {
    font-size: calc(22 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  margin-top: 20px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__text {
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(21 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox__textBox {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(21 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text + .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
  margin-top: 8px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text + .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text + .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
    margin-top: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text + .p-feature__content__featureList__featureBox__mainBox__textBox__textBox__text {
    margin-top: calc(5 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__subFeatureList {
  margin: 55px auto 0;
  width: 614px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__subFeatureList {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__subFeatureList {
    margin: calc(40 / 1440 * 100vw) auto 0;
    width: calc(614 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList {
    height: calc(620 / 375 * 100vw);
    margin: calc(30 / 375 * 100vw) auto 0;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
}
.p-feature__content__featureList__featureBox__subFeatureList.is-open {
  height: auto;
}
.p-feature__content__featureList__featureBox__subFeatureList.is-open .p-feature__content__featureList__featureBox__subFeatureList__button {
  display: none;
}
.p-feature__content__featureList__featureBox__subFeatureList.is-open::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList::after {
    background: linear-gradient(rgba(255, 255, 255, 0) 0%, #fff 40%);
    bottom: 0;
    content: "";
    display: block;
    height: calc(100 / 375 * 100vw);
    position: absolute;
    width: 100%;
  }
}
.p-feature__content__featureList__featureBox__subFeatureList > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul {
    display: block;
  }
}
.p-feature__content__featureList__featureBox__subFeatureList > ul > li {
  margin-top: 80px;
  position: relative;
  width: 277px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li {
    margin-top: calc(60 / 1440 * 100vw);
    width: calc(277 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li {
    margin-top: calc(20 / 375 * 100vw);
    width: 100%;
  }
}
.p-feature__content__featureList__featureBox__subFeatureList > ul > li::before {
  background: #EAEAEA;
  content: "";
  display: block;
  height: 100%;
  left: -30px;
  position: absolute;
  top: 0;
  width: 1px;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li::before {
    left: calc(-30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li::before {
    display: none;
    left: calc(-30 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__subFeatureList > ul > li:nth-child(-n+2) {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li:nth-child(-n+2) {
    margin-top: calc(20 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList > ul > li:first-child {
    margin-top: 0;
  }
}
.p-feature__content__featureList__featureBox__subFeatureList > ul > li:nth-child(2n+1)::before {
  display: none;
}
.p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__image img {
  height: auto;
  width: 100%;
}
.p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox {
  margin-top: 20px;
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox {
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__title {
  color: var(--color-main);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__title {
    font-size: 17px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__title {
    font-size: calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__title {
    font-size: calc(17 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  margin-top: 14px;
}
@media screen and (max-width: 1919px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__text {
    font-size: 12px;
    line-height: 19px;
    margin-top: 6px;
  }
}
@media screen and (max-width: 1439px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__text {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(19 / 1440 * 100vw);
    margin-top: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList__subFeatureBox__textBox__text {
    font-size: calc(12 / 375 * 100vw);
    line-height: calc(20 / 375 * 100vw);
    margin-top: calc(6 / 375 * 100vw);
  }
}
.p-feature__content__featureList__featureBox__subFeatureList__button {
  bottom: 0;
  display: none;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: calc(246 / 375 * 100vw);
  z-index: 1;
}
.p-feature__content__featureList__featureBox__subFeatureList__button img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__content__featureList__featureBox__subFeatureList__button {
    display: block;
  }
}
.p-feature__decoration1 {
  left: -110px;
  position: absolute;
  top: 345px;
  width: 488px;
}
.p-feature__decoration1 img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__decoration1 {
    left: calc(-110 / 1440 * 100vw);
    top: calc(345 / 1440 * 100vw);
    width: calc(488 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__decoration1 {
    left: calc(-120 / 375 * 100vw);
    top: calc(280 / 375 * 100vw);
    width: calc(378 / 375 * 100vw);
  }
}
.p-feature__decoration2 {
  left: 600px;
  position: absolute;
  top: 690px;
  width: 488px;
}
.p-feature__decoration2 img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__decoration2 {
    left: calc(600 / 1440 * 100vw);
    top: calc(690 / 1440 * 100vw);
    width: calc(488 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__decoration2 {
    left: calc(50 / 375 * 100vw);
    top: calc(750 / 375 * 100vw);
    width: calc(378 / 375 * 100vw);
  }
}
.p-feature__decoration3 {
  left: 20px;
  position: absolute;
  top: 1050px;
  width: 488px;
}
.p-feature__decoration3 img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__decoration3 {
    left: calc(20 / 1440 * 100vw);
    top: calc(1050 / 1440 * 100vw);
    width: calc(488 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__decoration3 {
    left: calc(-120 / 375 * 100vw);
    top: calc(1290 / 375 * 100vw);
    width: calc(378 / 375 * 100vw);
  }
}
.p-feature__decoration4 {
  left: 270px;
  position: absolute;
  top: 1840px;
  width: 488px;
}
.p-feature__decoration4 img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-feature__decoration4 {
    left: calc(270 / 1440 * 100vw);
    top: calc(1840 / 1440 * 100vw);
    width: calc(488 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-feature__decoration4 {
    display: none;
    left: calc(270 / 375 * 100vw);
    top: calc(1840 / 375 * 100vw);
    width: calc(488 / 375 * 100vw);
  }
}

.p-flow {
  margin-top: 14px;
  overflow: hidden;
}
@media screen and (max-width: 1439px) {
  .p-flow {
    margin-top: calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow {
    margin-top: calc(0 / 375 * 100vw);
  }
}
.p-flow__inner {
  padding-bottom: 75px;
  padding-top: 50px;
}
@media screen and (max-width: 1439px) {
  .p-flow__inner {
    padding-bottom: calc(75 / 1440 * 100vw);
    padding-top: calc(50 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-bottom: calc(45 / 375 * 100vw);
    padding-top: calc(30 / 375 * 100vw);
  }
}
.p-flow__flowList {
  margin: 0 auto;
  position: relative;
  width: 971px;
}
@media screen and (max-width: 1919px) {
  .p-flow__flowList {
    width: 890px;
  }
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList {
    width: calc(890 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList {
    width: 100%;
  }
}
.p-flow__flowList::before, .p-flow__flowList::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 488px;
  position: absolute;
  width: 488px;
  z-index: -1;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList::before, .p-flow__flowList::after {
    height: calc(488 / 1440 * 100vw);
    width: calc(488 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList::before, .p-flow__flowList::after {
    height: calc(488 / 375 * 100vw);
    width: calc(488 / 375 * 100vw);
  }
}
.p-flow__flowList::before {
  background-image: url(../images/decoration_feature_pink.png);
  left: -270px;
  top: -230px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList::before {
    left: calc(-270 / 1440 * 100vw);
    top: calc(-230 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList::before {
    left: calc(-270 / 375 * 100vw);
    top: calc(-230 / 375 * 100vw);
  }
}
.p-flow__flowList::after {
  background-image: url(../images/decoration_feature_lightblue.png);
  left: 650px;
  top: 170px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList::after {
    left: calc(650 / 1440 * 100vw);
    top: calc(170 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList::after {
    left: calc(30 / 375 * 100vw);
    top: calc(1000 / 375 * 100vw);
  }
}
.p-flow__flowList > ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-flow__flowList > ul {
    display: block;
  }
}
.p-flow__flowList > ul > li {
  width: 297px;
}
@media screen and (max-width: 1919px) {
  .p-flow__flowList > ul > li {
    width: 277px;
  }
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList > ul > li {
    width: calc(277 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList > ul > li {
    margin: 0 auto;
    width: calc(300 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList > ul > li + li {
    margin-top: calc(25 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content {
  /* Note: currently only Safari supports backdrop-filter */
  -webkit-backdrop-filter: blur(31.3719005585px);
  --webkit-backdrop-filter: blur(31.37190055847168px);
          backdrop-filter: blur(31.3719005585px);
  background: transparent;
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 7px;
  /* (plus shape's fill blended on top as a separate layer with 22.17% opacity) */
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.15);
  height: 395px;
  padding: 0 17px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content {
    -webkit-backdrop-filter: blur(calc(31.37190055847168 / 1440 * 100vw));
    --webkit-backdrop-filter: blur(calc(31.37190055847168 / 1440 * 100vw));
            backdrop-filter: blur(calc(31.37190055847168 / 1440 * 100vw));
    border-radius: calc(7 / 1440 * 100vw);
    box-shadow: calc(0 / 1440 * 100vw) calc(0 / 1440 * 100vw) calc(16 / 1440 * 100vw) rgba(0, 0, 0, 0.15);
    height: calc(395 / 1440 * 100vw);
    padding: 0 calc(17 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content {
    -webkit-backdrop-filter: blur(calc(31.37190055847168 / 375 * 100vw));
    --webkit-backdrop-filter: blur(calc(31.37190055847168 / 375 * 100vw));
            backdrop-filter: blur(calc(31.37190055847168 / 375 * 100vw));
    border-radius: calc(7 / 375 * 100vw);
    box-shadow: calc(0 / 375 * 100vw) calc(0 / 375 * 100vw) calc(16 / 375 * 100vw) rgba(0, 0, 0, 0.15);
    height: auto;
    padding: 0 calc(17 / 375 * 100vw) calc(26 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__number {
  margin: 0 auto 20px;
  width: 83px;
}
.p-flow__flowList__flowBox__content__number img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__number {
    margin: 0 auto calc(20 / 1440 * 100vw);
    width: calc(83 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__number {
    margin: 0 auto calc(20 / 375 * 100vw);
    width: calc(83 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 23px;
  text-align: center;
}
@media screen and (max-width: 1919px) {
  .p-flow__flowList__flowBox__content__title {
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__title {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__title {
    font-size: calc(14 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__icon {
  margin: 15px auto;
}
.p-flow__flowList__flowBox__content__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__icon {
    margin: calc(15 / 1440 * 100vw) auto;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__icon {
    margin: calc(15 / 375 * 100vw) auto;
  }
}
.p-flow__flowList__flowBox__content__list {
  background: #fff;
  border-radius: 5px;
  padding: 15px 14px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__list {
    border-radius: calc(5 / 1440 * 100vw);
    padding: calc(15 / 1440 * 100vw) calc(14 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__list {
    border-radius: calc(5 / 375 * 100vw);
    padding: calc(15 / 375 * 100vw) calc(14 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__list > ul > li {
  display: flex;
}
.p-flow__flowList__flowBox__content__list > ul > li::before {
  background-color: #F2765A;
  border-radius: 50%;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 6px;
  margin-right: 5px;
  transform: translateY(9px);
  width: 6px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__list > ul > li::before {
    height: calc(6 / 1440 * 100vw);
    margin-right: calc(5 / 1440 * 100vw);
    transform: translateY(calc(9 / 1440 * 100vw));
    width: calc(6 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__list > ul > li::before {
    height: calc(6 / 375 * 100vw);
    margin-right: calc(5 / 375 * 100vw);
    transform: translateY(calc(9 / 375 * 100vw));
    width: calc(6 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__list__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 23px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__list__text {
    font-size: calc(14 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__list__text {
    font-size: calc(13 / 375 * 100vw);
    line-height: calc(23 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__list__text span {
  display: block;
  font-size: 11px;
  line-height: 16px;
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__list__text span {
    font-size: calc(11 / 1440 * 100vw);
    line-height: calc(16 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__list__text span {
    font-size: calc(11 / 375 * 100vw);
    line-height: calc(16 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__content__notice {
  font-size: 13px;
  line-height: 19px;
  margin-top: 7px;
}
@media screen and (max-width: 1919px) {
  .p-flow__flowList__flowBox__content__notice {
    font-size: 12px;
    line-height: 17px;
  }
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__content__notice {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(17 / 1440 * 100vw);
    margin-top: calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__content__notice {
    font-size: calc(10 / 375 * 100vw);
    line-height: calc(16 / 375 * 100vw);
    margin-top: calc(7 / 375 * 100vw);
  }
}
.p-flow__flowList__flowBox__period {
  align-items: center;
  border: 1px solid var(--color-main);
  border-radius: 20px;
  color: var(--color-main);
  display: flex;
  font-size: 15px;
  font-weight: bold;
  height: 38px;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 1919px) {
  .p-flow__flowList__flowBox__period {
    font-size: 14px;
  }
}
@media screen and (max-width: 1439px) {
  .p-flow__flowList__flowBox__period {
    border-radius: calc(20 / 1440 * 100vw);
    font-size: calc(14 / 1440 * 100vw);
    height: calc(38 / 1440 * 100vw);
    margin-top: calc(20 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__flowList__flowBox__period {
    border-radius: calc(16 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    height: calc(32 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.p-flow__notice {
  color: #909090;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  width: 971px;
}
@media screen and (max-width: 1919px) {
  .p-flow__notice {
    font-size: 12px;
    width: 890px;
  }
}
@media screen and (max-width: 1439px) {
  .p-flow__notice {
    font-size: calc(12 / 1440 * 100vw);
    line-height: calc(23 / 1440 * 100vw);
    margin-top: calc(30 / 1440 * 100vw);
    width: calc(890 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__notice {
    font-size: calc(11 / 375 * 100vw);
    line-height: calc(18 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
    width: 100%;
  }
}

/*231004*/
.p-mainvisual__titleBox__logo.Qmonitor {
    font-size: 3.1em;
    font-weight: 900;
}
div.QMnotice {
    width: 100%;
    font-size: 1.5em;
    text-align: center;
    padding: 10px;
    background-color: #e4e4e4;
}
@media screen and (max-width: 767px) {
div.QMnotice {
font-size: 1em;
}
}
header {
position: relative;
}
