/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
rtc,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

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

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

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

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

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

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

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

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

/* Misc
   ========================================================================== */
template {
  display: none;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: #1A1A1A;
  background-color: #F7F9FA;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10rem;
}

.l-header {
  position: fixed;
  top: 4rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 126rem;
  height: 8rem;
  padding: 1.8rem 6rem;
  border-radius: 1rem;
  background-color: #FFFFFF;
  border: 1px solid #EAEAEA;
  z-index: 3000;
}
@media (max-width: 799px) {
  .l-header {
    width: 92vw;
    height: 15.4666666667vw;
    padding: 0rem 5.3333333333vw;
    top: 1.5rem;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header {
    width: 100%;
    padding: 1.8vw 6vw;
    height: 8rem;
  }
}
.l-header .l-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
}
@media (max-width: 799px) {
  .l-header .l-header__inner {
    height: 100%;
  }
}
.l-header .l-header__inner .l-header__title > a {
  font-family: poppins, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #03163F;
}
@media (min-width: 1441px) {
  .l-header .l-header__inner .l-header__title > a {
    font-size: 3rem;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header .l-header__inner .l-header__title > a {
    font-size: 3vw;
  }
}
@media (max-width: 799px) {
  .l-header .l-header__inner .l-header__title > a {
    font-size: 4.8vw;
    line-height: 1;
  }
}
.l-header .l-header__inner .l-header__nav {
  margin-left: auto;
}
.l-header .l-header__inner .l-header__nav .l-header__nav-list {
  display: flex;
  gap: 0 2.5rem;
}
@media (min-width: 1441px) {
  .l-header .l-header__inner .l-header__nav .l-header__nav-list {
    gap: 0 2.5rem;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header .l-header__inner .l-header__nav .l-header__nav-list {
    gap: 1.7361111111vw;
  }
}
@media (max-width: 799px) {
  .l-header .l-header__inner .l-header__nav .l-header__nav-list {
    display: none;
  }
}
@media (max-width: 1100px) {
  .l-header .l-header__inner .l-header__nav .l-header__nav-list {
    gap: 1.7361111111vw;
  }
}
.l-header .l-header__inner .l-header__nav .l-header__nav-list .l-header__nav-item > a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #585858;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header .l-header__inner .l-header__nav .l-header__nav-list .l-header__nav-item > a {
    font-size: 1.3vw;
  }
}
@media (min-width: 1441px) {
  .l-header .l-header__inner .l-header__nav .l-header__nav-list .l-header__nav-item > a {
    font-size: 1.4rem;
  }
}
.l-header .l-header__inner .l-header__side {
  display: flex;
  align-items: center;
  gap: 0rem;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header .l-header__inner .l-header__side {
    gap: 0vw;
  }
}
@media (max-width: 799px) {
  .l-header .l-header__inner .l-header__side {
    width: 2.7rem;
    height: 2.7rem;
  }
}
.l-header .l-header__inner .l-header__side .l-header__btn-wrapper {
  margin-left: 5.7rem;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out, transform 3s ease-in-out;
  transition: opacity 0.3s ease;
}
.l-header .l-header__inner .l-header__side .l-header__btn-wrapper:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.l-header .l-header__inner .l-header__side .l-header__btn-wrapper:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header .l-header__inner .l-header__side .l-header__btn-wrapper {
    margin-left: 5.7vw;
  }
}
@media (min-width: 1441px) {
  .l-header .l-header__inner .l-header__side .l-header__btn-wrapper {
    margin-left: 5.7rem;
  }
}
@media (max-width: 799px) {
  .l-header .l-header__inner .l-header__side .l-header__btn-wrapper {
    display: none;
  }
}
.l-header .l-header__inner .l-header__side .l-header__btn-wrapper .l-header__btn {
  height: 4.4rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 400;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .l-header .l-header__inner .l-header__side .l-header__btn-wrapper .l-header__btn {
    height: 4.4vw;
    padding: 0 2vw;
    font-size: 1.4vw;
  }
}
@media (min-width: 1441px) {
  .l-header .l-header__inner .l-header__side .l-header__btn-wrapper .l-header__btn {
    padding: 0 2rem;
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .l-header .l-header__inner .l-header__side .l-hamburger {
    width: 2.7rem;
    height: 2.7rem;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 0.3s ease, background-image 0.3s ease;
    background: url("../img/header/icon.svg") no-repeat center/contain;
  }
}
@media (max-width: 799px) {
  .l-header .l-header__inner .l-header__side .l-hamburger.is-open {
    background-image: url("../img/header/icon-close.svg");
    transform: rotate(180deg);
    transition: all 0.2s linear;
  }
}

.nav {
  display: none;
}
@media (max-width: 799px) {
  .nav {
    background: #F7F9FA;
    height: 100vh;
    padding: 24.5333333333vw 5.3333333333vw 31.2vw;
    overflow-y: auto;
    position: fixed;
    z-index: 2000;
    width: 100%;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    position: fixed;
    left: 0;
  }
}
.nav.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.nav.open {
  display: none;
}
@media (max-width: 799px) {
  .nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    display: flex;
  }
}
.nav .nav__list {
  text-align: center;
  font-size: 4.2666666667vw;
  text-align: left;
  color: #191919;
}
.nav .nav__list li {
  border-bottom: 0.1rem solid #003C97;
  padding: 4.8vw 0;
}

.p-footer {
  background: #03163F;
  padding: 3rem 9rem 3.2rem;
  color: #FFFFFF;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-footer {
    padding: 8.5333333333vw 0 8vw;
    max-width: auto;
  }
}
.p-footer .p-footer__top .p-footer__nav {
  display: flex;
  justify-content: space-between;
}
.p-footer .p-footer__top .p-footer__nav .p-footer__menu {
  display: flex;
}
@media (max-width: 799px) {
  .p-footer .p-footer__top .p-footer__nav .p-footer__menu {
    margin-left: 2.6666666667vw;
  }
}
.p-footer .p-footer__top .p-footer__nav .p-footer__menu .p-footer__item {
  font-family: poppins, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__top .p-footer__nav .p-footer__menu .p-footer__item {
    font-size: 3.4666666667vw;
  }
}
.p-footer .p-footer__top .p-footer__nav .p-footer__menu .p-footer__item.dot::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__top .p-footer__nav .p-footer__menu .p-footer__item.dot::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-footer .p-footer__top .p-footer__nav .p-footer__topback {
  position: relative;
  right: 0;
  font-family: poppins, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__top .p-footer__nav .p-footer__topback {
    margin-right: 2.6666666667vw;
    font-size: 3.4666666667vw;
  }
}
.p-footer .p-footer__top .p-footer__nav .p-footer__topback::before {
  content: "";
  position: absolute;
  width: 1.1rem;
  height: 1.1rem;
  top: 50%;
  left: -2rem;
  transform: translateY(-50%);
  background: url("../img/footer/arrow.svg") no-repeat center/contain;
}
@media (max-width: 799px) {
  .p-footer .p-footer__top .p-footer__nav .p-footer__topback::before {
    width: 2.9333333333vw;
    height: 2.9333333333vw;
    left: -5.3333333333vw;
  }
}
.p-footer .p-footer__top .p-footer__divider {
  border: solid 0.1rem #243967;
  margin: 2.9rem 0 6.7rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__top .p-footer__divider {
    margin: 2.9rem 0 7.2rem;
  }
}
@media (max-width: 799px) {
  .p-footer .p-footer__info {
    margin-left: 8vw;
  }
}
.p-footer .p-footer__info .p-footer__company .p-footer__company-en {
  font-family: poppins, sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__info .p-footer__company .p-footer__company-en {
    font-size: 5.3333333333vw;
    margin-bottom: 0.5rem;
  }
}
.p-footer .p-footer__info .p-footer__company .p-footer__company-jp {
  font-size: 1.3rem;
  margin-bottom: 3.3rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__info .p-footer__company .p-footer__company-jp {
    font-size: 2.9333333333vw;
    margin-bottom: 3.6rem;
  }
}
.p-footer .p-footer__info .p-footer__office {
  margin-bottom: 7.2rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__info .p-footer__office {
    margin-bottom: 11.7rem;
  }
}
.p-footer .p-footer__info .p-footer__office .p-footer__office-title {
  font-family: poppins, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-left: 0rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__info .p-footer__office .p-footer__office-title {
    font-size: 4vw;
    margin-bottom: 0.5rem;
  }
}
.p-footer .p-footer__info .p-footer__office .p-footer__office-title::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #2A3753;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1.2rem 0 0;
}
@media (max-width: 799px) {
  .p-footer .p-footer__info .p-footer__office .p-footer__office-title::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 2.6666666667vw 0 0;
  }
}
.p-footer .p-footer__info .p-footer__office .p-footer__address {
  margin-bottom: 1.9rem;
  margin-left: 1.7rem;
  font-size: 1.5rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__info .p-footer__office .p-footer__address {
    margin-bottom: 1.4rem;
    font-size: 2.9333333333vw;
    margin-left: 4.5333333333vw;
  }
}
.p-footer .p-footer__divider {
  border: solid 0.1rem #243967;
  margin: 0rem 0 1.9rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__divider {
    margin-bottom: 2.1rem;
  }
}
.p-footer .p-footer__bottom {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 799px) {
  .p-footer .p-footer__bottom {
    justify-content: flex-start;
    margin-left: 2.6666666667vw;
  }
}
.p-footer .p-footer__bottom .p-footer__policy {
  display: flex;
}
.p-footer .p-footer__bottom .p-footer__policy li a {
  padding: 0 1rem;
  font-size: 1.3rem;
  display: inline-block;
  font-family: poppins, sans-serif;
  border-left: solid 0.1rem #FFFFFF;
  line-height: 1;
  height: 1rem;
}
@media (max-width: 799px) {
  .p-footer .p-footer__bottom .p-footer__policy li a {
    display: none;
  }
}
.p-footer .p-footer__bottom .p-footer__copy {
  font-size: 1.5rem;
  font-family: poppins, sans-serif;
}
@media (max-width: 799px) {
  .p-footer .p-footer__bottom .p-footer__copy {
    font-size: 3.4666666667vw;
  }
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-btn--fourth {
  background-color: #003C97;
  color: #FFFFFF;
}
.c-btn--arrow::after {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-left: 1.5rem;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: rotate(135deg);
}

.p-consult__btn-wrapper {
  width: 30rem;
  margin: 0 auto;
  display: flex;
  gap: 7rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-consult__btn-wrapper:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.p-consult__btn-wrapper:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
@media (max-width: 799px) {
  .p-consult__btn-wrapper {
    width: 74.6666666667vw;
  }
}
.p-consult__btn-wrapper .l-consult__btn {
  height: 7rem;
  padding: 2.5rem 1rem 2.5rem 4rem;
  border-radius: 0.5rem;
  font-weight: 500;
  width: 30rem;
}
@media (min-width: 1441px) {
  .p-consult__btn-wrapper .l-consult__btn {
    font-size: 1.8rem;
  }
}
@media (max-width: 799px) {
  .p-consult__btn-wrapper .l-consult__btn {
    padding: 2.4vw 2.6666666667vw 2.4vw 5.3333333333vw;
    width: 74.6666666667vw;
  }
}
.p-consult__btn-wrapper .l-consult__btn .p-consult__btn-text .p-consult__btn-subtitle {
  font-size: 3.2vw;
}
.p-consult__btn-wrapper .l-consult__btn .p-consult__btn-text .p-consult__btn-title {
  font-size: 1.4rem;
}
@media (max-width: 799px) {
  .p-consult__btn-wrapper .l-consult__btn .p-consult__btn-text .p-consult__btn-title {
    font-size: 4.2666666667vw;
  }
}
.p-consult__btn-wrapper .l-consult__btn .p-fixed-cta__icon {
  width: 5rem;
  height: 5rem;
}
@media (max-width: 799px) {
  .p-consult__btn-wrapper .l-consult__btn .p-fixed-cta__icon {
    width: 12.2666666667vw;
    height: spVW(47);
  }
}

.p-contact__form-item--submit {
  width: 30rem;
  margin: 5.9rem auto 0;
}
@media (max-width: 799px) {
  .p-contact__form-item--submit {
    width: 74.6666666667vw;
    margin: 3.9rem auto 0;
  }
}
.p-contact__form-item--submit .p-contact__submit {
  height: 7rem;
  padding: 2.5rem 1rem 2.5rem 4rem;
  border-radius: 0.5rem;
  font-weight: 500;
  width: 30rem;
  font-size: 1.4rem;
  background-color: #003C97;
  color: #FFFFFF;
  position: relative;
  text-align: left;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-contact__form-item--submit .p-contact__submit {
    height: 17.3333333333vw;
    width: 74.6666666667vw;
    padding: 5.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.p-contact__form-item--submit .p-contact__submit::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/contact/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 1rem;
  top: 1rem;
}
@media (max-width: 799px) {
  .p-contact__form-item--submit .p-contact__submit::before {
    width: 12.2666666667vw;
    height: 12.5333333333vw;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}

.cta-humburger {
  height: 7rem;
  padding: 2.5rem 1rem 2.5rem 4rem;
  border-radius: 0.5rem;
  font-weight: 500;
  width: 30rem;
  font-size: 1.4rem;
  background-color: #003C97;
  color: #FFFFFF;
  position: relative;
  text-align: left;
}
@media (max-width: 799px) {
  .cta-humburger {
    height: 17.3333333333vw;
    width: 74.6666666667vw;
    padding: 5.3333333333vw;
    font-size: 4.2666666667vw;
    margin: 18.6666666667vw auto 0;
  }
}
.cta-humburger::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/contact/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 1rem;
  top: 1rem;
}
@media (max-width: 799px) {
  .cta-humburger::before {
    width: 12.2666666667vw;
    height: 12.5333333333vw;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}

.p-fixed-cta {
  background: linear-gradient(to bottom right, #003C97, #03163F);
  width: 26rem;
  display: flex;
  gap: 3.5rem;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 0.5rem;
  align-items: center;
  position: fixed;
  right: 7rem;
  bottom: 2rem;
  z-index: 1000;
}
@media (max-width: 799px) {
  .p-fixed-cta {
    display: none;
  }
}
.p-fixed-cta .p-fixed-cta__text {
  color: #FFFFFF;
  font-size: 1rem;
  line-height: 1.5;
}
.p-fixed-cta .p-fixed-cta__text span {
  font-size: 1.5rem;
  font-weight: 500;
}
.p-fixed-cta img {
  width: 6rem;
  height: 6rem;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-fixed-cta img {
    width: 6vw;
    height: 6vw;
  }
}

.p-hero {
  padding: 2rem 2rem;
}
@media (max-width: 799px) {
  .p-hero {
    padding: 2.6666666667vw;
  }
}
.p-hero .p-hero-container {
  padding: 21rem 0 8rem 12rem;
  background: url("../img/hero/hero-background.webp") center/cover no-repeat;
  border-radius: 1rem;
  max-width: 134rem;
  margin: 0 auto;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container {
    padding: 21vw 0vw 17vw 12vw;
  }
}
@media (max-width: 799px) {
  .p-hero .p-hero-container {
    padding: 24.8vw 4vw 10.6666666667vw;
  }
}
.p-hero .p-hero-container .p-hero-wrap {
  color: #FFFFFF;
  max-width: 72rem;
}
.p-hero .p-hero-container .p-hero-wrap .p-hero__label {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  background: #003C97;
  padding: 0.8rem 1rem;
  width: 13.2rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__label {
    font-size: 1.4vw;
    margin-bottom: 1.2vw;
    padding: 0.8vw 1vw;
    width: 14.2vw;
  }
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__label {
    font-size: 3.4666666667vw;
    width: 33.0666666667vw;
    padding: 2.1333333333vw 2.6666666667vw;
    margin: 0 auto;
  }
}
.p-hero .p-hero-container .p-hero-wrap .p-hero__catchup {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__catchup {
    font-size: 4vw;
    margin-bottom: 3.9rem;
    margin-top: 1rem;
    text-align: center;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__catchup {
    font-size: 2vw;
    margin-bottom: 2vw;
  }
}
.p-hero .p-hero-container .p-hero-wrap .p-hero__headline {
  display: flex;
  gap: 2rem;
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__headline {
    flex-wrap: wrap;
    margin-bottom: 4rem;
    flex-direction: column;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__headline {
    gap: 2vw;
  }
}
.p-hero .p-hero-container .p-hero-wrap .p-hero__headline .p-hero__title {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__headline .p-hero__title {
    font-size: 8.2666666667vw;
    margin-bottom: 0;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__headline .p-hero__title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.p-hero .p-hero-container .p-hero-wrap .p-hero__headline img {
  width: 6rem;
  height: 6rem;
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__headline img {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
    margin: 0 auto;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__headline img {
    width: 6vw;
    height: 6vw;
  }
}
.p-hero .p-hero-container .p-hero-wrap .p-hero__description {
  font-size: 1.8rem;
  margin-bottom: 3.9rem;
  line-height: 1.67;
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__description {
    font-size: 3.7333333333vw;
    margin-bottom: 3.4rem;
    line-height: 2;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero-wrap .p-hero__description {
    font-size: 1.8vw;
    margin-bottom: 3.9vw;
  }
}
.p-hero .p-hero-container .p-hero__image-wrapper {
  display: flex;
  width: 14rem;
  height: 14rem;
  gap: 2rem;
}
@media (max-width: 799px) {
  .p-hero .p-hero-container .p-hero__image-wrapper {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    gap: 3.4666666667vw;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-hero .p-hero-container .p-hero__image-wrapper {
    width: 14vw;
    height: 14vw;
    gap: 2vw;
  }
}

.p-partners .p-partners-images {
  height: 15rem;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-partners .p-partners-images {
    height: 26.6666666667vw;
  }
}
.p-partners .p-partners-images .p-scroll-infinity {
  animation: scroll-left 40s linear infinite;
  display: flex;
  gap: 1.5rem;
  width: max-content;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media (max-width: 799px) {
  .p-partners .p-partners-images .p-scroll-infinity {
    gap: 1.8666666667vw;
    margin-bottom: 0.7rem;
  }
}
.p-partners .p-partners-images ul.p-scroll-infinity li {
  display: list-item;
  text-align: -webkit-match-parent;
  unicode-bidi: isolate;
}
.p-partners .p-partners-images ul.p-scroll-infinity li img {
  height: 7rem;
  width: auto;
  display: block;
}
@media (max-width: 799px) {
  .p-partners .p-partners-images ul.p-scroll-infinity li img {
    height: 12.5333333333vw;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-common-problems {
  padding: 7rem 2rem 0rem;
  text-align: center;
}
@media (max-width: 799px) {
  .p-common-problems {
    padding: 16vw 5.3333333333vw 10.6666666667vw;
  }
}
.p-common-problems .p-common-problems__head .p-common-problems__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-common-problems .p-common-problems__head .p-common-problems__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__head .p-common-problems__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-common-problems .p-common-problems__head .p-common-problems__sub-title::before, .p-common-problems .p-common-problems__head .p-common-problems__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__head .p-common-problems__sub-title::before, .p-common-problems .p-common-problems__head .p-common-problems__sub-title::after {
    width: 1.6vw;
    height: 1.6vw;
    margin: 0 5.3333333333vw;
  }
}
.p-common-problems .p-common-problems__head .p-common-problems__label {
  font-size: 1.4rem;
  color: #9D9D9D;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-common-problems .p-common-problems__head .p-common-problems__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__head .p-common-problems__label {
    font-size: 3.2vw;
    margin-bottom: 7.7333333333vw;
  }
}
.p-common-problems .p-common-problems__head .p-common-problems__title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
}
@media (min-width: 1441px) {
  .p-common-problems .p-common-problems__head .p-common-problems__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__head .p-common-problems__title {
    font-size: 5.3333333333vw;
    margin-bottom: 2rem;
  }
}
.p-common-problems .p-common-problems__list .p-common-problems__col {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__list .p-common-problems__col {
    flex-wrap: wrap;
    gap: 1.3333333333vw;
  }
}
.p-common-problems .p-common-problems__list .p-common-problems__col.top {
  margin-bottom: 0.9rem;
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__list .p-common-problems__col.top {
    margin-bottom: 0;
  }
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__list .p-common-problems__col.bottom {
    margin-top: 1.3333333333vw;
  }
}
.p-common-problems .p-common-problems__list .p-common-problems__col .p-common-problems__item {
  font-size: 1.5rem;
  color: #585858;
  height: 6.1rem;
  padding: 0 2rem;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
}
@media (min-width: 1441px) {
  .p-common-problems .p-common-problems__list .p-common-problems__col .p-common-problems__item {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__list .p-common-problems__col .p-common-problems__item {
    font-size: 3.7333333333vw;
    padding: 5.3333333333vw;
  }
}
.p-common-problems .p-common-problems__solution img {
  width: 2rem;
  height: 2rem;
  margin: 2rem 0;
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__solution img {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin: 2rem 0;
  }
}
.p-common-problems .p-common-problems__solution .p-common-problems__solution-title {
  font-size: 3rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  padding-bottom: 6rem;
}
@media (max-width: 799px) {
  .p-common-problems .p-common-problems__solution .p-common-problems__solution-title {
    font-size: 5.8666666667vw;
    padding-bottom: 0;
  }
}
.p-common-problems .p-common-problems__solution .p-common-problems__solution-title span {
  font-weight: 700;
  color: #003C97;
}
@media (min-width: 1441px) {
  .p-common-problems .p-common-problems__solution .p-common-problems__solution-title {
    font-size: 3rem;
    text-align: center;
  }
}

.p-service {
  padding: 0rem 1rem 6rem;
}
@media (max-width: 799px) {
  .p-service {
    padding: 0vw 2.6666666667vw 8vw;
  }
}
.p-service .p-service__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 1rem 8rem;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap {
    padding: 16vw 4.8vw 1.3333333333vw;
  }
}
.p-service .p-service__wrap .p-service__head {
  text-align: center;
}
.p-service .p-service__wrap .p-service__head .p-service__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__head .p-service__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__head .p-service__sub-title {
    margin-bottom: 0.6rem;
    font-size: 4vw;
  }
}
.p-service .p-service__wrap .p-service__head .p-service__sub-title::before, .p-service .p-service__wrap .p-service__head .p-service__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__head .p-service__sub-title::before, .p-service .p-service__wrap .p-service__head .p-service__sub-title::after {
    width: 1.6vw;
    height: 1.6vw;
    margin: 0 5.3333333333vw;
  }
}
.p-service .p-service__wrap .p-service__head .p-service__label {
  font-size: 1.4rem;
  color: #9D9D9D;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__head .p-service__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__head .p-service__label {
    font-size: 3.2vw;
    margin-bottom: 2.9rem;
  }
}
.p-service .p-service__wrap .p-service__head .p-service__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.9rem;
  line-height: 1.5;
  margin: 0 auto;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__head .p-service__title {
    font-size: 3rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__head .p-service__title {
    font-size: 5.3333333333vw;
    margin-bottom: 2.5rem;
  }
}
.p-service .p-service__wrap .p-service__head .p-service__description {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 5.9rem;
  color: #585858;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__head .p-service__description {
    font-size: 1.8rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__head .p-service__description {
    font-size: 3.7333333333vw;
    margin-bottom: 3rem;
    text-align: left;
  }
}
.p-service .p-service__wrap .p-scroll-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-service .p-service__wrap .p-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes {
  display: flex;
  min-width: max-content;
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box {
  overflow-y: auto;
  min-width: max-content;
  background: #E4F0FC;
  border-radius: 1rem;
  padding: 4.9rem 8rem 6.1rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 0 auto 6rem;
  max-width: 98rem;
  width: 100%;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box {
    padding: 9.6vw 8vw 10.4vw 4vw;
    margin-bottom: 0rem;
    gap: 8.2666666667vw;
  }
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item {
  text-align: center;
  position: relative;
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/flow/arrow-right.svg) no-repeat center/contain;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item::after {
    width: 2.4vw;
    height: 2.4vw;
    right: -5.3333333333vw;
  }
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item:last-child::after {
  display: none;
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__role {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.9rem;
  color: #003C97;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__role {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__role {
    font-size: 3.7333333333vw;
    margin-bottom: 1rem;
  }
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__role.gray {
  color: #03163F;
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item img {
  width: 12rem;
  height: 12rem;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item img {
    width: 25.3333333333vw;
    height: 25.0666666667vw;
  }
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__task {
  font-size: 1.4rem;
  color: #FFFFFF;
  height: 3.9rem;
  background: #003C97;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  margin-top: 2rem;
  font-weight: 600;
}
.p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__task.accent {
  background: #03163F;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__task {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-scroll-wrapper .p-service__boxes .p-service__box .p-service__item .p-service__task {
    font-size: 2.6666666667vw;
    height: 3.1rem;
    margin-top: 1rem;
    padding: 2.1333333333vw 4vw;
    width: 29.6vw;
  }
}
.p-service .p-service__wrap .p-scroll-progress {
  height: 1.3333333333vw;
  background: #ddd;
  width: 53.3333333333vw;
  margin: 5.3333333333vw auto 0rem;
  position: sticky;
  border-radius: 13.3333333333vw;
  bottom: 0;
  overflow: hidden;
}
.p-service .p-service__wrap .p-scroll-progress .p-scroll-progress__bar {
  height: 100%;
  background: #03163F;
  width: 0%;
  transition: width 0.2s ease;
}
.p-service .p-service__wrap .p-service__item_wrap {
  display: flex;
  gap: 4rem;
  margin: 0rem auto 3rem;
  max-width: 98rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap {
    flex-direction: column;
    margin-bottom: 3.5rem;
    gap: 0;
    margin-top: 6rem;
  }
}
.p-service .p-service__wrap .p-service__item_wrap img {
  width: 44rem;
  height: 30rem;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap img {
    width: 85.3333333333vw;
    height: 56vw;
  }
}
.p-service .p-service__wrap .p-service__item_wrap .p-service__content {
  max-width: 48rem;
}
.p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category {
  font-size: 1.6rem;
  font-weight: 500;
  color: #003C97;
  margin-bottom: 3rem;
  font-family: poppins, sans-serif;
  position: relative;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category {
    font-size: 3.4666666667vw;
    position: relative;
    top: -6.6666666667vw;
    background: #FFFFFF;
    padding: 4vw 9.3333333333vw 0 0;
    margin: 0;
    border-radius: 0 1.3333333333vw 1.3333333333vw 0;
  }
}
.p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #003C97;
  border-radius: 50%;
  margin-right: 1rem;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}
.p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  top: 50%;
  background-color: #003C97;
  margin-left: 1rem;
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category::after {
    width: 8vw;
    margin-left: 2.6666666667vw;
  }
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__category {
    font-size: 1.6rem;
  }
}
.p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.9rem;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__title {
    font-size: 4.5333333333vw;
    margin-bottom: 2rem;
  }
}
.p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__text {
  font-size: 1.5rem;
  line-height: 2;
  color: #585858;
}
@media (min-width: 1441px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-service .p-service__wrap .p-service__item_wrap .p-service__content .p-service__text {
    font-size: 3.7333333333vw;
  }
}

.p-plan {
  padding: 0 1rem 5rem;
}
@media (max-width: 799px) {
  .p-plan {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-plan .p-plan__wrap {
  background: #FFFFFF;
  padding: 6rem 1rem 8rem;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap {
    padding: 16vw 4.8vw 10.6666666667vw;
  }
}
.p-plan .p-plan__wrap .p-plan__head {
  text-align: center;
}
.p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title::before, .p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title::before, .p-plan .p-plan__wrap .p-plan__head .p-plan__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-plan .p-plan__wrap .p-plan__head .p-plan__label {
  font-size: 1.4rem;
  color: #9D9D9D;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__label {
    font-size: 3.2vw;
    margin-bottom: 7.7333333333vw;
  }
}
.p-plan .p-plan__wrap .p-plan__head .p-plan__title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}
@media (min-width: 1441px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__head .p-plan__title {
    font-size: 5.3333333333vw;
    margin-bottom: 8vw;
    line-height: 1.5;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes {
    flex-direction: column;
    gap: 5.3333333333vw;
    flex-wrap: nowrap;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box {
  border-radius: 1rem;
  border: solid 0.3rem #003C97;
  padding: 3rem 4.3rem 6.1rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box {
    padding: 8.5333333333vw 5.3333333333vw 8vw;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__standard_wrap {
  display: flex;
  position: relative;
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__standard_wrap img {
  width: 9rem;
  height: 9rem;
  position: absolute;
  right: -4.4rem;
  top: -3.1rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__standard_wrap img {
    width: 24vw;
    height: 24vw;
    right: -5.6vw;
    top: -8.8vw;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__name {
  color: #003C97;
  font-family: poppins, sans-serif;
  margin-bottom: 3rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__name {
    margin-bottom: 2rem;
    font-size: 3.4666666667vw;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__name::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #003C97;
  border-radius: 50%;
  margin-right: 1rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__name::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__name::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 0.1rem;
  top: 50%;
  background-color: #003C97;
  margin-left: 1rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__name::after {
    width: 8vw;
    margin-left: 2.6666666667vw;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__detail {
  font-size: 1.5rem;
  color: #585858;
  text-align: center;
  margin-bottom: 0.4rem;
}
@media (min-width: 1441px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__detail {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__detail {
    font-size: 3.7333333333vw;
    margin-bottom: 0rem;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__price {
  font-size: 2.5rem;
  text-align: center;
  color: #003C97;
  font-weight: 700;
  font-family: ff-din-paneuropean, sans-serif;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__price {
    font-size: 5.3333333333vw;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__price span {
  font-size: 5rem;
  margin-right: 0.5rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__header .p-plan__price span {
    font-size: 10.6666666667vw;
    margin-right: 1.3333333333vw;
    line-height: 1;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__features {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__features {
    gap: 1.8666666667vw;
    flex-wrap: wrap;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__features.feature {
  margin: 1rem 0 2rem;
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__features .p-plan__feature {
  background: #EFF6FD;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1.3rem;
  color: #003C97;
  font-weight: 500;
  margin: 1rem 0 3rem;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__features .p-plan__feature {
    padding: 2.1333333333vw 4vw;
    font-size: 3.4666666667vw;
    margin: 1rem 0 2rem;
  }
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__features .p-plan__feature.feature-name {
  margin: 0;
}
.p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__description .p-plan__text {
  font-size: 1.5rem;
  line-height: 2;
  color: #585858;
  width: 39rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__description .p-plan__text {
    font-size: 3.7333333333vw;
    width: 74.6666666667vw;
  }
}
@media (max-width: 799px) {
  .p-plan .p-plan__wrap .p-plan__boxes .p-plan__box .p-plan__description .p-plan__text.plan-text {
    width: 73.3333333333vw;
  }
}

.p-consult {
  padding: 0rem 0 0rem;
}
.p-consult.top {
  padding-bottom: 6rem;
}
@media (max-width: 799px) {
  .p-consult.top {
    padding-bottom: 4rem;
  }
}
@media (max-width: 799px) {
  .p-consult {
    padding: 0vw 2.6666666667vw 0vw;
  }
}
.p-consult .p-consult__inner {
  background: url("../img/hero/hero-background.webp") center/cover no-repeat;
  border-radius: 1rem;
  padding: 7.4rem 1rem 6.1rem;
  color: #FFFFFF;
  border: solid 0.1rem #EAEAEA;
  text-align: center;
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner {
    padding: 14.6666666667vw 5.3333333333vw 10.6666666667vw;
  }
}
.p-consult .p-consult__inner .p-consult__heading {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.9rem;
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner .p-consult__heading {
    font-size: 5.3333333333vw;
    margin-bottom: 2rem;
  }
}
.p-consult .p-consult__inner .p-consult__subtext {
  font-size: 1.5rem;
  margin-bottom: 2.9rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner .p-consult__subtext {
    font-size: 3.7333333333vw;
    margin-bottom: 3rem;
  }
}
.p-consult .p-consult__inner .p-consult__btn-wrapper {
  width: 30rem;
  margin: 0 auto;
  display: flex;
  gap: 7rem;
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner .p-consult__btn-wrapper {
    width: 74.6666666667vw;
  }
}
.p-consult .p-consult__inner .p-consult__btn-wrapper .l-consult__btn {
  height: 7rem;
  padding: 2.5rem 1rem 2.5rem 4rem;
  border-radius: 0.5rem;
  font-weight: 500;
  width: 30rem;
}
@media (min-width: 1441px) {
  .p-consult .p-consult__inner .p-consult__btn-wrapper .l-consult__btn {
    font-size: 1.8rem;
  }
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner .p-consult__btn-wrapper .l-consult__btn {
    width: 74.6666666667vw;
    height: 17.3333333333vw;
  }
}
.p-consult .p-consult__inner .p-consult__btn-wrapper p {
  font-size: 1.4rem;
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner .p-consult__btn-wrapper p {
    font-size: 4.2666666667vw;
  }
}
.p-consult .p-consult__inner .p-consult__btn-wrapper .p-fixed-cta__icon {
  width: 5rem;
  height: 5rem;
}
@media (max-width: 799px) {
  .p-consult .p-consult__inner .p-consult__btn-wrapper .p-fixed-cta__icon {
    width: 12.2666666667vw;
    height: 12.2666666667vw;
  }
}

.p-guidelines {
  padding: 0 1rem 6rem;
}
@media (max-width: 799px) {
  .p-guidelines {
    padding: 0vw 2.6666666667vw 8vw;
  }
}
.p-guidelines .p-guidelines__wrap {
  background: linear-gradient(to bottom, #003C97, #03163F);
  max-width: 114rem;
  margin: 0 auto;
  color: #FFFFFF;
  border-radius: 1rem;
  padding: 6rem 1rem 8rem;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap {
    padding: 13.3333333333vw 4.8vw 10.6666666667vw;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__head {
  text-align: center;
}
.p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title::before, .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #FFFFFF;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title::before, .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__label {
  font-size: 1.4rem;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__label {
    font-size: 3.2vw;
    margin-bottom: 2.9rem;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.9rem;
  line-height: 1.5;
}
@media (min-width: 1441px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__title {
    font-size: 3rem;
  }
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__title {
    font-size: 5.3333333333vw;
    margin-bottom: 2.5rem;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__text {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 auto 2.9rem;
}
@media (min-width: 1441px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__head .p-guidelines__text {
    font-size: 3.7333333333vw;
    width: 85.3333333333vw;
    margin: 0 auto 8.3rem;
  }
}
.p-guidelines .p-guidelines__wrap .p-radial {
  width: 40rem;
  height: 0.3rem;
  background: url("../img/guidelines/radial.webp") center/cover no-repeat;
  margin: 0 auto 3rem;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-radial {
    display: none;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content {
  display: flex;
  gap: 4rem;
  position: relative;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content {
    flex-direction: column;
    gap: 8vw;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__toggle {
  display: none;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__toggle {
    width: 55.7333333333vw;
    height: 14.6666666667vw;
    position: absolute;
    left: 50%;
    background: #003C97;
    border-radius: 5rem;
    border: solid 0.1rem #FFFFFF;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.2666666667vw;
    font-weight: 500;
    top: -4vw;
    cursor: pointer;
  }
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__toggle::after {
    content: "";
    width: 2.4vw;
    height: 2.4vw;
    background-image: url("../img/guidelines/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    right: -8vw;
    position: relative;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden {
  display: flex;
  gap: 4rem;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden {
    display: none;
    gap: 8vw;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden.open {
  display: block;
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-image img {
  width: 44rem;
  height: 33.5rem;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-image img {
    width: 85.3333333333vw;
    height: 56vw;
    margin-bottom: 3rem;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body {
  max-width: 50rem;
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__content-title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 1.6rem;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__content-title {
    font-size: 5.3333333333vw;
    margin-bottom: 2.5rem;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__content-text {
  font-size: 1.5rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__content-text {
    font-size: 3.7333333333vw;
  }
}
.p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__google {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  text-decoration: underline;
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__google {
    font-size: 2.9333333333vw;
    margin-top: 2rem;
    line-height: 1.76;
  }
}
@media (max-width: 799px) {
  .p-guidelines .p-guidelines__wrap .p-guidelines__content .p-guidelines__hidden .p-guidelines__content-body .p-guidelines__close {
    width: 55.7333333333vw;
    height: 14.6666666667vw;
    margin: 7.7333333333vw auto 0;
  }
}

.p-generation {
  padding: 0rem 1rem 6rem;
}
@media (max-width: 799px) {
  .p-generation {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-generation .p-generation__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 1rem 8rem;
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap {
    padding: 16vw 4.8vw 10.6666666667vw;
  }
}
.p-generation .p-generation__wrap .p-generation__head {
  text-align: center;
  max-width: 98rem;
  margin: 0 auto;
}
.p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title::before, .p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title::before, .p-generation .p-generation__wrap .p-generation__head .p-generation__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-generation .p-generation__wrap .p-generation__head .p-generation__label {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  color: #9D9D9D;
}
@media (min-width: 1441px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__label {
    font-size: 3.2vw;
  }
}
.p-generation .p-generation__wrap .p-generation__head .p-generation__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.9rem;
  line-height: 1.5;
}
@media (min-width: 1441px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__title {
    font-size: 3rem;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__title {
    font-size: 4.8vw;
    margin-bottom: 2.4rem;
  }
}
.p-generation .p-generation__wrap .p-generation__head .p-generation__text {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 auto 2.9rem;
  text-align: left;
  color: #585858;
}
@media (min-width: 1441px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .p-generation__head .p-generation__text {
    font-size: 3.7333333333vw;
    margin: 0 auto 4rem;
  }
}
.p-generation .p-generation__wrap .swiper-wrap {
  position: relative;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper::-webkit-scrollbar {
    display: none;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper {
    gap: 0vw;
    flex-wrap: nowrap;
    justify-content: unset;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide {
  background: #EFF6FD;
  padding: 3rem 3rem 3.5rem;
  border-radius: 1rem;
  width: 32rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide {
    padding: 5.8666666667vw 5.3333333333vw 6.1333333333vw;
    width: 80vw;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-sub-title {
  color: #003C97;
  font-family: poppins, sans-serif;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-sub-title {
    font-size: 3.4666666667vw;
    margin-bottom: 2rem;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-sub-title::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #003C97;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-sub-title::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-sub-title::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  top: 50%;
  background-color: #003C97;
  margin-left: 1rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-sub-title::after {
    width: 8vw;
    margin-left: 2.6666666667vw;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image {
  display: flex;
  justify-content: center;
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image img.point-01 {
  width: 12rem;
  height: 11.4rem;
  margin-bottom: 3rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image img.point-01 {
    width: 23.7333333333vw;
    height: 22.4vw;
    margin-bottom: 2.2rem;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image img.point-02 {
  width: 14.5rem;
  height: 10.6rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image img.point-02 {
    width: 32.2666666667vw;
    height: 24vw;
    margin-bottom: 2.2rem;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image img.point-03 {
  width: 11.4rem;
  height: 10.1rem;
  margin-bottom: 4rem;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-image img.point-03 {
    width: 24vw;
    height: 21.3333333333vw;
    margin-bottom: 2.2rem;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-title {
  font-size: 1.5rem;
  color: #003C97;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.4rem;
  line-height: 1.67;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-title {
    font-size: 4.2666666667vw;
    margin-bottom: 1rem;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-text {
  font-size: 1.3rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-generation__content-text {
    font-size: 3.7333333333vw;
  }
}
.p-generation .p-generation__wrap .swiper-wrap .swiper-button-prev,
.p-generation .p-generation__wrap .swiper-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: auto;
  height: auto;
  margin-top: 0;
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .swiper-button-prev {
    left: -5.3333333333vw;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .swiper-button-next {
    right: -5.3333333333vw;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .swiper-button-next img {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .swiper-button-prev img {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 799px) {
  .p-generation .p-generation__wrap .swiper-wrap .swiper-pagination {
    position: relative;
    top: -1rem;
  }
}

.p-expert {
  padding: 0 1rem 3.2rem;
}
@media (max-width: 799px) {
  .p-expert {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-expert .p-expert__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 1rem 8rem;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap {
    padding: 16vw 4.8vw 10.6666666667vw;
  }
}
.p-expert .p-expert__wrap .p-expert__head {
  text-align: center;
}
.p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title::before, .p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title::before, .p-expert .p-expert__wrap .p-expert__head .p-expert__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-expert .p-expert__wrap .p-expert__head .p-expert__label {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  color: #9D9D9D;
}
@media (min-width: 1441px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__label {
    font-size: 3.2vw;
    margin-bottom: 3rem;
  }
}
.p-expert .p-expert__wrap .p-expert__head .p-expert__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.9rem;
  line-height: 1.5;
}
@media (min-width: 1441px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__title {
    font-size: 3rem;
  }
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__title {
    font-size: 4.8vw;
    margin-bottom: 2.4rem;
  }
}
.p-expert .p-expert__wrap .p-expert__head .p-expert__text {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 auto 2.9rem;
  text-align: left;
  color: #585858;
  max-width: 98rem;
}
@media (min-width: 1441px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-expert__head .p-expert__text {
    font-size: 3.7333333333vw;
    margin: 0 auto 3rem;
  }
}
.p-expert .p-expert__wrap .p-scroll-wrapper {
  max-width: 97.8rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-expert .p-expert__wrap .p-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.p-expert .p-expert__wrap .p-scroll-wrapper .p-expert__content__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-scroll-wrapper .p-expert__content__wrapper {
    display: flex;
    min-width: max-content;
  }
}
.p-expert .p-expert__wrap .p-scroll-wrapper .p-expert__content__wrapper .p-expert__content__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 97.8rem;
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-scroll-wrapper .p-expert__content__wrapper .p-expert__content__wrap {
    gap: 1.0666666667vw;
    width: 194.4vw;
  }
}
.p-expert .p-expert__wrap .p-scroll-wrapper .p-expert__content__wrapper .p-expert__content__wrap .p-expert__content {
  background: #EFF6FD;
  font-size: 1.3rem;
  color: #003C97;
  padding: 1.5rem 2.49rem;
  border-radius: 0.5rem;
}
@media (max-width: 799px) {
  .p-expert .p-expert__wrap .p-scroll-wrapper .p-expert__content__wrapper .p-expert__content__wrap .p-expert__content {
    font-size: 2.9333333333vw;
    padding: 2.6666666667vw 4vw;
  }
}
.p-expert .p-expert__wrap .p-scroll-progress {
  height: 1.3333333333vw;
  background: #ddd;
  width: 53.3333333333vw;
  margin: 5.3333333333vw auto 0rem;
  position: sticky;
  border-radius: 13.3333333333vw;
  bottom: 0;
  overflow: hidden;
}
.p-expert .p-expert__wrap .p-scroll-progress .p-scroll-progress__bar {
  height: 100%;
  background: #03163F;
  width: 0%;
  transition: width 0.2s ease;
}

.p-seo {
  padding: 0rem 1rem 6rem;
}
@media (max-width: 799px) {
  .p-seo {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-seo .p-seo__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 1rem 8rem;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap {
    padding: 16vw 4.8vw 10.6666666667vw;
  }
}
.p-seo .p-seo__wrap .p-seo__head {
  text-align: center;
}
.p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title::before, .p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title::before, .p-seo .p-seo__wrap .p-seo__head .p-seo__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-seo .p-seo__wrap .p-seo__head .p-seo__label {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  color: #9D9D9D;
}
@media (min-width: 1441px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__label {
    font-size: 3.2vw;
    margin-bottom: 3.2rem;
  }
}
.p-seo .p-seo__wrap .p-seo__head .p-seo__title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 2.9rem;
  line-height: 1.5;
}
@media (min-width: 1441px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__title {
    font-size: 3rem;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__title {
    font-size: 4.8vw;
    margin-bottom: 2.4rem;
  }
}
.p-seo .p-seo__wrap .p-seo__head .p-seo__text {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 auto 2.9rem;
  text-align: left;
  color: #585858;
  max-width: 98rem;
}
@media (min-width: 1441px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .p-seo__head .p-seo__text {
    font-size: 3.7333333333vw;
    margin-bottom: 4rem;
  }
}
.p-seo .p-seo__wrap .swiper-wrap {
  position: relative;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper::-webkit-scrollbar {
    display: none;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper {
    gap: 0vw;
    flex-wrap: nowrap;
    justify-content: unset;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide {
  background: #EFF6FD;
  padding: 3rem 3rem 3.5rem;
  border-radius: 1rem;
  width: 32rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide {
    width: 80vw;
    padding: 5.8666666667vw 5.3333333333vw 6.1333333333vw;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-sub-title {
  color: #003C97;
  font-family: poppins, sans-serif;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-sub-title {
    margin-bottom: 2rem;
    font-size: 3.4666666667vw;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-sub-title::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #003C97;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-sub-title::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-sub-title::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  top: 50%;
  background-color: #003C97;
  margin-left: 1rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-sub-title::after {
    width: 8vw;
    margin-left: 2.6666666667vw;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image {
  display: flex;
  justify-content: center;
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image img.point-01 {
  width: 15.6rem;
  height: 11.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image img.point-01 {
    width: 32vw;
    height: 23.2vw;
    margin-bottom: 2rem;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image img.point-02 {
  width: 18.2rem;
  height: 10rem;
  margin-bottom: 4.5rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image img.point-02 {
    width: 37.8666666667vw;
    height: 20.5333333333vw;
    margin-bottom: 2.2rem;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image img.point-03 {
  width: 11.4rem;
  height: 11.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-image img.point-03 {
    width: 24vw;
    height: 23.4666666667vw;
    margin-bottom: 2.1rem;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-title {
  font-size: 1.8rem;
  color: #003C97;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.4rem;
  line-height: 1.67;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-title {
    font-size: 4.2666666667vw;
    margin-bottom: 1rem;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-text {
  font-size: 1.3rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .p-swiper .swiper-wrapper .swiper-slide .p-seo__content-text {
    font-size: 3.7333333333vw;
  }
}
.p-seo .p-seo__wrap .swiper-wrap .swiper-button-prev,
.p-seo .p-seo__wrap .swiper-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: auto;
  height: auto;
  margin-top: 0;
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .swiper-button-prev {
    left: -5.3333333333vw;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .swiper-button-next {
    right: -5.3333333333vw;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .swiper-button-next img {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .swiper-button-prev img {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 799px) {
  .p-seo .p-seo__wrap .swiper-wrap .swiper-pagination {
    position: relative;
    top: -1rem;
  }
}

.p-clients {
  padding: 8rem 1rem 8rem;
}
@media (max-width: 799px) {
  .p-clients {
    padding: 4rem 5.3333333333vw 10.6666666667vw;
  }
}
.p-clients .p-clients__wrap {
  max-width: 114rem;
  margin: 0 auto;
}
.p-clients .p-clients__wrap .p-clients__head {
  text-align: center;
}
.p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title::before, .p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title::before, .p-clients .p-clients__wrap .p-clients__head .p-clients__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-clients .p-clients__wrap .p-clients__head .p-clients__label {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  color: #9D9D9D;
}
@media (min-width: 1441px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__label {
    margin-bottom: spVW(29);
    font-size: 3.2vw;
  }
}
.p-clients .p-clients__wrap .p-clients__head .p-clients__title {
  font-size: 1.8rem;
  margin-bottom: 2.9rem;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__title {
    font-size: 3.7333333333vw;
    margin-bottom: 2rem;
  }
}
.p-clients .p-clients__wrap .p-clients__head .p-clients__title span {
  font-size: 3rem;
  font-weight: 600;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__title span {
    font-size: 6.4vw;
  }
}
.p-clients .p-clients__wrap .p-clients__head .p-clients__title span strong {
  font-size: 6rem;
  font-family: ff-din-paneuropean, sans-serif;
  font-weight: 700;
  color: #C90000;
  line-height: 1;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__head .p-clients__title span strong {
    font-size: 10.1333333333vw;
  }
}
.p-clients .p-clients__wrap .p-clients__content_wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__content_wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-clients .p-clients__wrap .p-clients__content_wrap::-webkit-scrollbar {
    display: none;
  }
}
.p-clients .p-clients__wrap .p-clients__content_wrap .p-clients__content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 110rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__content_wrap .p-clients__content {
    width: 170.6666666667vw;
    gap: 1.6vw;
    animation: scroll-left 20s linear infinite;
  }
}
.p-clients .p-clients__wrap .p-clients__content_wrap .p-clients__content img {
  width: 17.5rem;
  height: 7rem;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__content_wrap .p-clients__content img {
    width: 26.9333333333vw;
    height: 10.6666666667vw;
  }
}
.p-clients .p-clients__wrap .p-clients__text_content img {
  width: 2rem;
  height: 2rem;
  display: block;
  margin: 3rem auto;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__text_content img {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
    margin: 3rem auto;
  }
}
.p-clients .p-clients__wrap .p-clients__text_content .p-clients__comment {
  font-size: 3rem;
  color: #003C97;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .p-clients__text_content .p-clients__comment {
    font-size: 5.3333333333vw;
  }
}
.p-clients .p-clients__wrap .swiper-wrap {
  position: relative;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    z-index: 2000;
  }
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper::-webkit-scrollbar {
    display: none;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  justify-content: center;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-wrapper {
    gap: 0vw;
    flex-wrap: nowrap;
    justify-content: unset;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide {
  width: 35rem;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 3rem 3rem 4.3rem;
  height: 33rem;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide {
    width: 77.3333333333vw;
    padding: 8.5333333333vw 5.3333333333vw 9.6vw;
    height: 85.8666666667vw;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-sub-title {
  color: #003C97;
  font-family: poppins, sans-serif;
  margin-bottom: 3rem;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-sub-title {
    font-size: 3.4666666667vw;
    margin-bottom: 2.5rem;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-sub-title::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #003C97;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 0.3rem;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-sub-title::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin-right: 2.6666666667vw;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-sub-title::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  top: 50%;
  background-color: #003C97;
  margin-left: 1rem;
  margin-bottom: 0.4rem;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-sub-title::after {
    width: 8vw;
    margin-left: 2.6666666667vw;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-title {
  font-size: 1.5rem;
  color: #003C97;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.4rem;
  line-height: 1.67;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-title {
    font-size: 4.2666666667vw;
    margin-bottom: 1rem;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-text {
  font-size: 1.3rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .p-swiper .swiper-slide .p-clients__content-text {
    font-size: 3.7333333333vw;
  }
}
.p-clients .p-clients__wrap .swiper-wrap .swiper-button-prev,
.p-clients .p-clients__wrap .swiper-wrap .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  width: auto;
  height: auto;
  margin-top: 0;
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .swiper-button-prev {
    left: -5.3333333333vw;
  }
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .swiper-button-next {
    right: -5.3333333333vw;
  }
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .swiper-button-next img {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .swiper-button-prev img {
    width: 8vw;
    height: 8vw;
  }
}
@media (max-width: 799px) {
  .p-clients .p-clients__wrap .swiper-wrap .swiper-pagination {
    position: relative;
    top: -1rem;
  }
}

.p-flow {
  padding: 0 1rem 6rem;
}
@media (max-width: 799px) {
  .p-flow {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-flow .p-flow__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 2rem 8rem;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap {
    padding: 13.0666666667vw 5.3333333333vw 10.6666666667vw;
  }
}
.p-flow .p-flow__wrap .p-flow__head {
  text-align: center;
}
.p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
@media (min-width: 1441px) {
  .p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title {
    font-size: 2rem;
  }
}
.p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title::before, .p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title::before, .p-flow .p-flow__wrap .p-flow__head .p-flow__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-flow .p-flow__wrap .p-flow__head .p-flow__label {
  font-size: 1.4rem;
  color: #9D9D9D;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-flow .p-flow__wrap .p-flow__head .p-flow__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__head .p-flow__label {
    font-size: 3.2vw;
  }
}
.p-flow .p-flow__wrap .p-scroll-wrapper {
  overflow-x: scroll;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-flow .p-flow__wrap .p-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.p-flow .p-flow__wrap .p-flow__box_wrap {
  display: flex;
  justify-content: center;
  min-width: max-content;
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box {
  background: #E4F0FC;
  border-radius: 1rem;
  padding: 4.9rem 8rem 6.1rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box {
    padding: 6.9333333333vw 6.4vw 7.2vw;
    gap: 9.6vw;
    width: 185.3333333333vw;
  }
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item {
  text-align: center;
  position: relative;
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
  width: 1.1rem;
  height: 1.1rem;
  background: url(../img/flow/arrow-right.svg) no-repeat center/contain;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item::after {
    width: 2.4vw;
    height: 2.4vw;
    right: -5.3333333333vw;
  }
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item:last-child::after {
  display: none;
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__role {
  font-size: 1.4rem;
  color: #FFFFFF;
  height: 3.9rem;
  background: #003C97;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__role.accent {
  background: #03163F;
}
@media (min-width: 1441px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__role {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__role {
    font-size: 2.9333333333vw;
    height: 3.1rem;
    margin-bottom: 1rem;
  }
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item img {
  width: 12rem;
  height: 12rem;
  position: relative;
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item img {
    width: 25.3333333333vw;
    height: 25.3333333333vw;
  }
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__task {
  font-size: 1.5rem;
  font-weight: 500;
  color: #003C97;
  margin-top: 2rem;
  line-height: 1.67;
}
@media (min-width: 1441px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__task {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__task {
    font-size: 3.7333333333vw;
    margin-top: 1.8666666667vw;
  }
}
.p-flow .p-flow__wrap .p-flow__box_wrap .p-flow__box .p-flow__item .p-flow__task.accent {
  color: #03163F;
}
.p-flow .p-flow__wrap .p-scroll-progress {
  height: 1.3333333333vw;
  background: #ddd;
  width: 53.3333333333vw;
  margin: 5.3333333333vw auto 0rem;
  position: sticky;
  border-radius: 13.3333333333vw;
  bottom: 0;
  overflow: hidden;
}
.p-flow .p-flow__wrap .p-scroll-progress .p-scroll-progress__bar {
  height: 100%;
  background: #03163F;
  width: 0%;
  transition: width 0.2s ease;
}

.p-faq {
  padding: 0 1rem 6rem;
}
@media (max-width: 799px) {
  .p-faq {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-faq .p-faq__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 1rem 8rem;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap {
    padding: 16vw 4.8vw 8vw;
  }
}
.p-faq .p-faq__wrap .p-faq__head {
  text-align: center;
}
.p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title::before, .p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title::before, .p-faq .p-faq__wrap .p-faq__head .p-faq__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-faq .p-faq__wrap .p-faq__head .p-faq__label {
  font-size: 1.4rem;
  color: #9D9D9D;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-faq .p-faq__wrap .p-faq__head .p-faq__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq__head .p-faq__label {
    font-size: 3.2vw;
    margin-bottom: 2.9rem;
  }
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item {
  background: #EFF6FD;
  margin: 0 auto 2rem;
  border-radius: 1rem;
  padding: 2rem 6rem 1.9rem;
  max-width: 98rem;
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item {
    margin-bottom: 1rem;
    padding: 5.6vw 4vw 4vw;
  }
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question {
  color: #003C97;
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
  padding-left: 4rem;
  overflow-wrap: anywhere;
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question {
    font-size: 4vw;
    padding-left: 9.3333333333vw;
    width: 62.9333333333vw;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question {
    width: 70vw;
  }
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4rem;
  height: 4rem;
  background-image: url("../img/faq/q-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: -2rem;
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question::before {
    width: 6.4vw;
    height: 6.4vw;
    left: 0vw;
  }
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  top: 0;
  bottom: 0;
  right: -3rem;
  margin: auto 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: center center;
  background-image: url("../img/faq/plus-icon.svg");
  transition: all 0.2s linear;
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-question::after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    right: -12vw;
  }
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-answer {
  font-size: 1.5rem;
  line-height: 2;
  width: 78rem;
  margin: 0 auto;
  position: relative;
  margin-top: 2.9rem;
  display: none;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-answer {
    width: 78vw;
  }
}
@media (max-width: 799px) {
  .p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-answer {
    font-size: 3.4666666667vw;
    width: 74.6666666667vw;
  }
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item .p-faq-answer span {
  color: #003C97;
}
.p-faq .p-faq__wrap .p-faq-list .p-faq-item.open .p-faq-question::after {
  transition: all 0.2s linear;
  transform: rotate(180deg);
  background-image: url("../img/faq/minus-icon.svg");
}

.p-contact {
  padding: 0 1rem 10rem;
}
@media (max-width: 799px) {
  .p-contact {
    padding: 0 2.6666666667vw 8vw;
  }
}
.p-contact .p-contact__wrap {
  background: #FFFFFF;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  padding: 6rem 10rem 8rem;
  max-width: 114rem;
  margin: 0 auto;
  height: 1000px;
}
@media (min-width: 501px) and (max-width: 908px) {
  .p-contact .p-contact__wrap {
    height: 1300px;
  }
}
@media (min-width: 500px) and (max-width: 820px) {
  .p-contact .p-contact__wrap {
    height: 1400px;
  }
}
@media (min-width: 350px) and (max-width: 499px) {
  .p-contact .p-contact__wrap {
    height: 1200px;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap {
    padding: 16vw 5.3333333333vw 5.3333333333vw;
  }
}
.p-contact .p-contact__wrap .p-contact__head {
  text-align: center;
}
.p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title::before, .p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title::before, .p-contact .p-contact__wrap .p-contact__head .p-contact__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-contact .p-contact__wrap .p-contact__head .p-contact__label {
  font-size: 1.4rem;
  color: #9D9D9D;
  margin-bottom: 6rem;
}
@media (min-width: 1441px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__label {
    font-size: 3.2vw;
    margin-bottom: 2.9rem;
  }
}
.p-contact .p-contact__wrap .p-contact__head .p-contact__text {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 4.9rem;
  color: #585858;
}
@media (min-width: 1441px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__text {
    font-size: 1.8rem;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__head .p-contact__text {
    font-size: 3.7333333333vw;
    margin-bottom: 3rem;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item {
  display: flex;
  margin: 0 auto 2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item {
    justify-content: flex-start;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item {
    margin-bottom: 2rem;
    justify-content: flex-start;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__label-text {
  font-size: 1.5rem;
  width: 15rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__label-text {
    font-size: 3.4666666667vw;
    width: auto;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__label-text::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1.3rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__label-text::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 4vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__required {
  font-size: 1.3rem;
  color: #003C97;
  background: #EFF6FD;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__required {
    font-size: 2.9333333333vw;
    padding: 0.8vw 2.1333333333vw;
    margin-left: 5.3333333333vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__required.any {
  background: #FFFFFF;
  border: solid 0.1rem #003C97;
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__input,
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__textarea {
  width: 72rem;
  border: solid 0.1rem #EAEAEA;
  height: 6rem;
  border-radius: 0.5rem;
  margin-left: 2.4rem;
  padding: 0 2rem;
  flex-direction: column;
  font-size: 1.4rem;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__input,
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__textarea {
    margin-top: 2rem;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__input,
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__textarea {
    width: 84vw;
    height: 16vw;
    margin-left: 0;
    margin-top: 1rem;
    padding: 0 2.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__input.p-contact__textarea,
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__textarea.p-contact__textarea {
  height: 18rem;
  padding: 2rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__input.p-contact__textarea,
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__textarea.p-contact__textarea {
    height: 61.3333333333vw;
    padding: 5.3333333333vw 2.6666666667vw;
    font-size: 3.7333333333vw;
    line-height: 2;
    flex-shrink: 0;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text {
  flex-direction: column;
  margin-left: 2rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text {
    margin-left: 5.3333333333vw;
    margin-bottom: 1.5rem;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-desc {
  font-size: 1.5rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-desc {
    font-size: 3.4666666667vw;
    margin-top: 4vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-desc .p-contact__check {
  margin-right: 1rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-desc .p-contact__check {
    margin-right: 2.6666666667vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text label {
  display: flex;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text label .p-contact__check {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text label .p-contact__check {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-note {
  font-size: 1.5rem;
  margin-left: 3.5rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-note {
    font-size: 3.2vw;
    margin-left: 9.3333333333vw;
    margin-top: 3.7333333333vw;
    line-height: 2;
  }
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .p-contact__check-text .p-contact__check-note span {
  color: #003C97;
  text-decoration: underline;
}
.p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .error {
  border: solid 1px #c70a09;
  border-radius: 0.3472222222vw;
  padding: 0.2777777778vw 0.5555555556vw;
  font-size: 0.8333333333vw;
  color: #c70a09;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
  width: 25rem;
  flex-direction: column;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form .p-contact__form-item .error {
    font-size: 3.2vw;
    border-radius: 1.3333333333vw;
    padding: 1.3333333333vw;
    margin-left: 0;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item {
  display: flex;
  margin: 0 auto 0rem;
  align-items: center;
  flex-wrap: wrap;
}
.p-contact .p-contact__wrap .p-contact__form-item.p-contact__form-item--check {
  margin-left: 5.4861111111vw;
  margin-bottom: 3.9rem;
}
@media (max-width: 1000px) {
  .p-contact .p-contact__wrap .p-contact__form-item.p-contact__form-item--check {
    margin-left: 0;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item.p-contact__form-item--check {
    margin-left: 0;
    margin-bottom: 0vw;
  }
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-contact .p-contact__wrap .p-contact__form-item {
    justify-content: flex-start;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item {
    margin-bottom: 2rem;
    justify-content: flex-start;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__label-text {
  font-size: 1.5rem;
  width: 15rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__label-text {
    font-size: 3.4666666667vw;
    width: auto;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__label-text::before {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 1.3rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__label-text::before {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 4vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__required {
  font-size: 1.3rem;
  color: #003C97;
  background: #EFF6FD;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__required {
    font-size: 2.9333333333vw;
    padding: 0.8vw 2.1333333333vw;
    margin-left: 5.3333333333vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__required.any {
  background: #FFFFFF;
  border: solid 0.1rem #003C97;
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__input,
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__textarea {
  width: 72rem;
  border: solid 0.1rem #EAEAEA;
  height: 6rem;
  border-radius: 0.5rem;
  margin-left: 2.4rem;
  padding: 0 2rem;
  flex-direction: column;
}
@media (min-width: 800px) and (max-width: 1040px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__input,
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__textarea {
    margin-top: 2rem;
  }
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__input,
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__textarea {
    width: 84vw;
    height: 16vw;
    margin-left: 0;
    margin-top: 1rem;
    padding: 0 2.6666666667vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__input.p-contact__textarea,
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__textarea.p-contact__textarea {
  height: 18rem;
  padding: 2rem;
  line-height: 2;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__input.p-contact__textarea,
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__textarea.p-contact__textarea {
    height: 61.3333333333vw;
    padding: 5.3333333333vw 1.3333333333vw;
    font-size: 3.7333333333vw;
    line-height: 2.29;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text {
  flex-direction: column;
  margin-left: 2rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text {
    margin-left: 5.3333333333vw;
    margin-bottom: 1.5rem;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-desc {
  font-size: 1.5rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-desc {
    font-size: 3.4666666667vw;
    margin-top: 4vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-desc .p-contact__check {
  margin-right: 1rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-desc .p-contact__check {
    margin-right: 2.6666666667vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text label {
  display: flex;
  margin-bottom: 1rem;
  margin-top: 3rem;
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text label .p-contact__check {
  width: 2.5rem;
  height: 2.5rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text label .p-contact__check {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-note {
  font-size: 1.5rem;
  margin-left: 3.5rem;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-note {
    font-size: 3.2vw;
    margin-left: 9.3333333333vw;
    margin-top: 3.7333333333vw;
    line-height: 2;
  }
}
.p-contact .p-contact__wrap .p-contact__form-item .p-contact__check-text .p-contact__check-note span {
  color: #003C97;
  text-decoration: underline;
}
.p-contact .p-contact__wrap .p-contact__form-item .error {
  border: solid 1px #c70a09;
  border-radius: 0.3472222222vw;
  padding: 0.2777777778vw 0.5555555556vw;
  font-size: 0.8333333333vw;
  color: #c70a09;
  background-color: rgba(255, 255, 255, 0.8);
  margin-top: 0rem;
  flex-direction: column;
}
@media (max-width: 799px) {
  .p-contact .p-contact__wrap .p-contact__form-item .error {
    font-size: 3.2vw;
    border-radius: 1.3333333333vw;
    padding: 1.3333333333vw;
    margin-left: 0;
  }
}

.p-comparison {
  padding: 0 1rem 5rem;
}
@media (max-width: 799px) {
  .p-comparison {
    padding: 0 2.6666666667vw 10.6666666667vw;
  }
}
.p-comparison .p-comparison__wrap {
  background: #FFFFFF;
  padding: 6rem 1rem 8rem;
  border-radius: 1rem;
  border: solid 0.1rem #EAEAEA;
  max-width: 114rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap {
    padding: 16vw 4.5333333333vw 10.6666666667vw;
  }
}
.p-comparison .p-comparison__wrap .p-comparison__head {
  text-align: center;
}
.p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title {
  font-family: poppins, sans-serif;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
}
@media (min-width: 1441px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title {
    font-size: 2rem;
  }
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title {
    font-size: 4vw;
    margin-bottom: 0.6rem;
  }
}
.p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title::before, .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  background-color: #1A1A1A;
  border-radius: 50%;
  vertical-align: middle;
  margin: 0 2rem;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title::before, .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__sub-title::after {
    width: 1.3333333333vw;
    height: 1.3333333333vw;
    margin: 0 5.3333333333vw;
  }
}
.p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__label {
  margin-bottom: 6rem;
  font-size: 1.4rem;
  color: #9D9D9D;
}
@media (min-width: 1441px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__label {
    font-size: 1.4rem;
  }
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__label {
    font-size: 3.2vw;
    margin-bottom: 2.9rem;
  }
}
.p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__title {
  font-size: 2.5rem;
  margin-bottom: 2.9rem;
  font-weight: 500;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__title {
    font-size: 5.3333333333vw;
    margin-bottom: 2.5rem;
    line-height: 1.5;
  }
}
.p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__text {
  font-size: 1.5rem;
  line-height: 2;
  margin: 0 auto 2.9rem;
  color: #585858;
}
@media (min-width: 1441px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__text {
    font-size: 1.5rem;
  }
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-comparison__head .p-comparison__text {
    font-size: 3.7333333333vw;
    margin: 0 auto 3rem;
    text-align: left;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper {
  max-width: 82rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-comparison .p-comparison__wrap .p-scroll-wrapper::-webkit-scrollbar {
    display: none;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables {
    display: flex;
    min-width: max-content;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table {
  width: 82rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table {
    width: 130.1333333333vw;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__table-head {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__table-head {
    gap: 0.8vw;
    margin-bottom: 0.3rem;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__table-head .p-comparison__service-name {
  color: #FFFFFF;
  font-family: poppins, sans-serif;
  font-size: 2rem;
  background: #03163F;
  height: 6rem;
  width: 30rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__table-head .p-comparison__service-name {
    font-size: 3.7333333333vw;
    height: 9.6vw;
    width: 47.7333333333vw;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__table-head .p-comparison__service-name.grey {
  font-size: 1.5rem;
  font-weight: 500;
  background: #585858;
  font-family: noto-sans-cjk-jp, sans-serif;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__table-head .p-comparison__service-name.grey {
    font-size: 2.9333333333vw;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__row {
    gap: spVW(3);
    margin-bottom: 0.8vw;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__row .p-comparison__item-title {
  color: #FFFFFF;
  font-size: 1.5rem;
  background: #003C97;
  padding: 3.65rem 0;
  width: 21rem;
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  line-height: 1.67;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__row .p-comparison__item-title {
    font-size: 2.9333333333vw;
    width: 33.3333333333vw;
    padding: 5.0666666667vw 0;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item {
  color: #003C97;
  background: #EFF6FD;
  padding: 3.65rem 0;
  width: 30rem;
  border-radius: 0.5rem;
  text-align: center;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item {
    width: 47.7333333333vw;
    padding: 4.8vw 0 3.7333333333vw;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item.gray {
  background: #F7F9FA;
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item img {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item img {
    width: 4.8vw;
    height: 4.8vw;
    margin-bottom: 1rem;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item .p-comparison__desc {
  font-size: 1.3rem;
  font-weight: 500;
}
@media (max-width: 799px) {
  .p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item .p-comparison__desc {
    font-size: 2.6666666667vw;
  }
}
.p-comparison .p-comparison__wrap .p-scroll-wrapper .p-comparison__tables .p-comparison__table .p-comparison__item .p-comparison__desc.gray {
  color: #585858;
}
.p-comparison .p-comparison__wrap .p-scroll-progress {
  height: 1.3333333333vw;
  background: #ddd;
  width: 53.3333333333vw;
  margin: 5.3333333333vw auto 0rem;
  position: sticky;
  border-radius: 13.3333333333vw;
  bottom: 0;
  overflow: hidden;
}
.p-comparison .p-comparison__wrap .p-scroll-progress .p-scroll-progress__bar {
  height: 100%;
  background: #03163F;
  width: 0%;
  transition: width 0.2s ease;
}

.confirm-form {
  background: #EFF6FD;
  padding: 13rem;
}
@media (max-width: 799px) {
  .confirm-form {
    padding: 24vw 5.3333333333vw;
  }
}
.confirm-form .confirm-title {
  font-size: 3rem;
  color: #003C97;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 799px) {
  .confirm-form .confirm-title {
    font-size: 5.3333333333vw;
  }
}
.confirm-form .text {
  font-size: 2rem;
  text-align: center;
  margin: 3rem 0 7rem;
}
@media (max-width: 799px) {
  .confirm-form .text {
    font-size: 4vw;
    margin: 8vw 0 16vw;
  }
}
.confirm-form .p-contact__form {
  background: #FFFFFF;
  border-radius: 0.5rem;
  border: solid 0.1rem #eaeaea;
  padding: 5rem 0;
  width: 70rem;
  margin: 0 auto 3rem;
}
@media (max-width: 799px) {
  .confirm-form .p-contact__form {
    width: 100%;
    padding: 10.6666666667vw 4vw;
    margin: 0 auto 8vw;
  }
}
.confirm-form .p-contact__form .p-contact__form-item {
  display: flex;
  border-bottom: solid 0.1rem #eaeaea;
  padding: 3rem;
  width: 50rem;
  margin: 0 auto;
}
@media (max-width: 799px) {
  .confirm-form .p-contact__form .p-contact__form-item {
    width: 100%;
    padding: 5.3333333333vw;
    font-size: 3.7333333333vw;
    white-space: normal;
    word-break: break-word;
  }
}
.confirm-form .p-contact__form .p-contact__form-item.p-contact__form-item--check {
  display: none;
}
.confirm-form .p-contact__form .p-contact__form-item .p-contact__label-text {
  margin-right: 4rem;
  width: 12rem;
}
@media (max-width: 799px) {
  .confirm-form .p-contact__form .p-contact__form-item .p-contact__label-text {
    width: 32vw;
    font-size: 3.7333333333vw;
  }
}
.confirm-form .p-contact__form .p-contact__form-item .p-contact__required {
  display: none;
}
.confirm-form .p-contact__form .p-contact__form-item--submit {
  display: none;
}
.confirm-form .p-contact__form-item {
  display: none;
}
.confirm-form .button-wrap {
  display: flex;
  gap: 6rem;
  justify-content: center;
}
@media (max-width: 799px) {
  .confirm-form .button-wrap {
    flex-wrap: wrap;
    gap: 8vw;
  }
}
.confirm-form .button-wrap .button-backbutton {
  background: #003C97;
  width: 25rem;
  border-radius: 0.5rem;
  padding: 2.5rem 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}
@media (max-width: 799px) {
  .confirm-form .button-wrap .button-backbutton {
    width: 74.6666666667vw;
    padding: 5.3333333333vw;
  }
}
.confirm-form .button-wrap .button-backbutton::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/contact/arrow-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  left: 1rem;
  top: 1.2rem;
}
@media (max-width: 799px) {
  .confirm-form .button-wrap .button-backbutton::before {
    width: 12.2666666667vw;
    height: 12.5333333333vw;
    top: 2.6666666667vw;
    left: 2.6666666667vw;
  }
}
.confirm-form .button-wrap .button-backbutton .back-button {
  color: #FFFFFF;
  font-weight: 500;
  margin-left: 4rem;
}
.confirm-form .button-wrap .button-submit {
  background: #243967;
  width: 25rem;
  border-radius: 0.5rem;
  padding: 2.5rem 0;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}
@media (max-width: 799px) {
  .confirm-form .button-wrap .button-submit {
    width: 74.6666666667vw;
    padding: 5.3333333333vw;
  }
}
.confirm-form .button-wrap .button-submit::before {
  content: "";
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-image: url("../img/contact/arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 1rem;
  top: 1.2rem;
}
@media (max-width: 799px) {
  .confirm-form .button-wrap .button-submit::before {
    width: 12.2666666667vw;
    height: 12.5333333333vw;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.confirm-form .button-wrap .button-submit .submit-button {
  color: #FFFFFF;
  font-weight: 500;
  margin-right: 4rem;
}

.thankyou-page {
  background: #f7fcff;
  padding: 20rem 10rem 10rem;
  text-align: center;
}
@media (max-width: 799px) {
  .thankyou-page {
    padding: 24vw 5.3333333333vw;
    height: auto;
  }
}
.thankyou-page .thankyou-box {
  background: #fff;
  border-radius: 2rem;
  padding: 6rem 9rem;
}
@media (max-width: 799px) {
  .thankyou-page .thankyou-box {
    padding: 8vw 2rem;
    border-radius: 5.3333333333vw;
  }
}
.thankyou-page .thankyou-box .thankyou-box__body h3 {
  color: #003C97;
  font-weight: bold;
  font-size: 2.8rem;
}
@media (max-width: 799px) {
  .thankyou-page .thankyou-box .thankyou-box__body h3 {
    font-size: 6.6666666667vw;
  }
}
.thankyou-page .thankyou-box .thankyou-box__body p {
  font-size: 2rem;
  margin-top: 2rem;
}
@media (max-width: 799px) {
  .thankyou-page .thankyou-box .thankyou-box__body p {
    font-size: 4vw;
    margin-top: 5.3333333333vw;
  }
}
.thankyou-page .thankyou-box .dotted-line {
  border-top: solid 0.2rem #003C97;
  margin: 3rem 0;
}
@media (max-width: 799px) {
  .thankyou-page .thankyou-box .dotted-line {
    border-top: #003C97 solid 0.5333333333vw;
    margin: 8vw 0;
  }
}
.thankyou-page .thankyou-box .note {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 799px) {
  .thankyou-page .thankyou-box .note {
    font-size: 3.4666666667vw;
    margin-top: 0.5333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.thankyou-page .thankyou-box .thankyou-note {
  font-size: 1.6rem;
}
@media (max-width: 799px) {
  .thankyou-page .thankyou-box .thankyou-note {
    font-size: 4vw;
  }
}

.md {
  display: block;
}
@media (max-width: 799px) {
  .md {
    display: none;
  }
}

.sm {
  display: none;
}
@media (max-width: 799px) {
  .sm {
    display: block;
  }
}/*# sourceMappingURL=front-page.css.map */