:root {
  --color-polarWhite: #EBECF1;
  --color-snowWhite: #F4F4F4;
  --color-umberBlack: #222222;
  --color-jetBlack: #171717;
  --color-aliceBlue: #E8EEFF;
  --color-zenBlue: #C3C8E2;
  --color-frankBlue: #39458E;
  --color-denimBlue: #27316C;
  --color-goldYellow: #FED001;
}

/*
! tailwindcss v3.0.15 | MIT License | https://tailwindcss.com
*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/*
Remove the default font size and weight for headings.
*/


h2,
h3,
h4 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/


strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

/*
Add the correct font size in all browsers.
*/

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-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 */
}

/*
Add the correct display in Chrome and Safari.
*/

/*
Removes the default spacing and border for appropriate elements.
*/


dl,
dd,
h2,
h3,
h4,
figure,
p {
  margin: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
video,
iframe {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/*
Ensure the default browser behavior of the `hidden` attribute.
*/

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.right-0 {
  right: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.left-1\/2 {
  left: 50%;
}
.top-o-570 {
  top: 5.70rem;
}
.top-o-2000 {
  top: 20.00rem;
}
.right-o-10 {
  right: 0.1rem;
}
.-bottom-o-100 {
  bottom: -1rem;
}
.-left-o-2 {
  left: -0.02rem;
}
.top-0 {
  top: 0px;
}
.-left-o-54 {
  left: -0.54rem;
}
.-top-o-28 {
  top: -0.28rem;
}
.left-o-76 {
  left: 0.76rem;
}
.left-o-125 {
  left: 1.25rem;
}
.top-o-130 {
  top: 1.30rem;
}
.top-o-398 {
  top: 3.98rem;
}
.-top-o-20 {
  top: -0.20rem;
}
.left-0 {
  left: 0px;
}
.-left-o-110 {
  left: -1.1rem;
}
.-bottom-o-36 {
  bottom: -0.36rem;
}
.-top-o-40 {
  top: -0.40rem;
}
.-left-o-48 {
  left: -0.48rem;
}
.-top-o-10 {
  top: -1.0rem;
}
.-left-o-56 {
  left: -0.56rem;
}
.top-1\/2 {
  top: 50%;
}
.-right-o-14 {
  right: -0.14rem;
}
.-top-o-5 {
  top: -0.05rem;
}
.-bottom-o-50 {
  bottom: -0.50rem;
}
.-left-o-36 {
  left: -0.36rem;
}
.-top-o-24 {
  top: -0.24rem;
}
.-left-o-75 {
  left: -0.75rem;
}
.-right-o-36 {
  right: -0.36rem;
}
.-top-o-36 {
  top: -0.36rem;
}
.bottom-o-25 {
  bottom: 0.25rem;
}
.-top-o-35 {
  top: -0.35rem;
}
.-top-o-108 {
  top: -1.08rem;
}
.-bottom-o-130 {
  bottom: -1.30rem;
}
.z-50 {
  z-index: 50;
}
.z-40 {
  z-index: 40;
}
.z-10 {
  z-index: 10;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-o-48 {
  margin-top: 0.48rem;
}
.mb-o-48 {
  margin-bottom: 0.48rem;
}
.mt-o-72 {
  margin-top: 0.72rem;
}
.mt-o-96 {
  margin-top: 0.96rem;
}
.mt-o-8 {
  margin-top: 0.08rem;
}
.mt-o-20 {
  margin-top: 0.20rem;
}
.ml-o-140 {
  margin-left: 1.40rem;
}
.mt-o-36 {
  margin-top: 0.36rem;
}
.mt-o-112 {
  margin-top: 1.12rem;
}
.mt-o-108 {
  margin-top: 1.08rem;
}
.mr-o-12 {
  margin-right: 0.12rem;
}
.mt-o-24 {
  margin-top: 0.24rem;
}
.mt-o-84 {
  margin-top: 0.84rem;
}
.mt-o-92 {
  margin-top: 0.92rem;
}
.mt-o-60 {
  margin-top: 0.60rem;
}
.mt-o-76 {
  margin-top: 0.76rem;
}
.mt-o-68 {
  margin-top: 0.68rem;
}
.mt-o-56 {
  margin-top: 0.56rem;
}
.ml-o-56 {
  margin-left: 0.56rem;
}
.mr-o-24 {
  margin-right: 0.24rem;
}
.mt-o-12 {
  margin-top: 0.12rem;
}
.mt-o-32 {
  margin-top: 0.32rem;
}
.mt-o-88 {
  margin-top: 0.88rem;
}
.mr-o-60 {
  margin-right: 0.60rem;
}
.ml-o-320 {
  margin-left: 3.20rem;
}
.mt-o-100 {
  margin-top: 1rem;
}
.ml-o-100 {
  margin-left: 1rem;
}
.mr-o-100 {
  margin-right: 1rem;
}
.mt-o-132 {
  margin-top: 1.32rem;
}
.mt-o-124 {
  margin-top: 1.24rem;
}
.mt-o-40 {
  margin-top: 0.40rem;
}
.mt-o-64 {
  margin-top: 0.64rem;
}
.mr-o-36 {
  margin-right: 0.36rem;
}
.ml-o-48 {
  margin-left: 0.48rem;
}
.mt-o-44 {
  margin-top: 0.44rem;
}
.mt-o-52 {
  margin-top: 0.52rem;
}
.ml-o-8 {
  margin-left: 0.08rem;
}
.mt-o-140 {
  margin-top: 1.40rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-o-50 {
  height: 0.50rem;
}
.h-full {
  height: 100%;
}
.h-o-100 {
  height: 1rem;
}
.h-o-293 {
  height: 2.93rem;
}
.h-o-8 {
  height: 0.08rem;
}
.h-o-1 {
  height: 0.01rem;
}
.h-o-658 {
  height: 6.58rem;
}
.h-o-1615 {
  height: 16.15rem;
}
.h-1\/2 {
  height: 50%;
}
.h-o-76 {
  height: 0.76rem;
}
.h-o-6 {
  height: 0.06rem;
}
.h-o-70 {
  height: 0.70rem;
}
.h-o-136 {
  height: 1.36rem;
}
.h-o-86 {
  height: 0.86rem;
}
.h-o-24 {
  height: 0.24rem;
}
.h-o-190 {
  height: 1.90rem;
}
.h-o-93 {
  height: 0.93rem;
}
.h-o-128 {
  height: 1.28rem;
}
.w-full {
  width: 100%;
}
.w-o-125 {
  width: 1.25rem;
}
.w-o-315 {
  width: 3.15rem;
}
.w-o-9 {
  width: 0.09rem;
}
.w-o-518 {
  width: 5.18rem;
}
.w-o-21 {
  width: 0.21rem;
}
.w-o-8 {
  width: 0.08rem;
}
.w-o-120 {
  width: 1.20rem;
}
.w-o-612 {
  width: 6.12rem;
}
.w-o-614 {
  width: 6.14rem;
}
.w-o-550 {
  width: 5.50rem;
}
.w-o-244 {
  width: 2.44rem;
}
.w-o-580 {
  width: 5.80rem;
}
.w-o-280 {
  width: 2.80rem;
}
.w-o-480 {
  width: 4.80rem;
}
.w-o-56 {
  width: 0.56rem;
}
.w-o-6 {
  width: 0.06rem;
}
.w-o-294 {
  width: 2.94rem;
}
.w-o-567 {
  width: 5.67rem;
}
.w-o-476 {
  width: 4.76rem;
}
.w-o-616 {
  width: 6.16rem;
}
.w-px {
  width: 1px;
}
.w-o-112 {
  width: 1.12rem;
}
.w-o-287 {
  width: 2.87rem;
}
.w-o-27 {
  width: 0.27rem;
}
.w-o-124 {
  width: 1.24rem;
}
.w-o-310 {
  width: 3.1rem;
}
.w-o-600 {
  width: 6rem;
}
.w-o-340 {
  width: 3.40rem;
}
.w-o-562 {
  width: 5.62rem;
}
.w-o-70 {
  width: 0.70rem;
}
.w-o-12 {
  width: 0.12rem;
}
.w-o-500 {
  width: 5rem;
}
.w-o-136 {
  width: 1.36rem;
}
.w-o-160 {
  width: 1.60rem;
}
.w-o-690 {
  width: 6.90rem;
}
.w-o-24 {
  width: 0.24rem;
}
.w-o-100 {
  width: 1rem;
}
.w-o-354 {
  width: 3.54rem;
}
.w-o-220 {
  width: 2.20rem;
}
.w-o-190 {
  width: 1.90rem;
}
.w-o-440 {
  width: 4.40rem;
}
.w-o-14 {
  width: 0.14rem;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-scale-x-100 {
  --tw-scale-x: -1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.overflow-auto {
  overflow: auto;
}
.rounded-full {
  border-radius: 9999px;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-t {
  border-top-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-jetBlack {
  border-color: var(--color-jetBlack);
}
.border-umberBlack {
  border-color: var(--color-umberBlack);
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-zenBlue {
  border-color: var(--color-zenBlue);
}
.border-denimBlue {
  border-color: var(--color-denimBlue);
}
.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity));
}
.bg-snowWhite {
  background-color: var(--color-snowWhite);
}
.bg-goldYellow {
  background-color: var(--color-goldYellow);
}
.bg-umberBlack {
  background-color: var(--color-umberBlack);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-frankBlue {
  background-color: var(--color-frankBlue);
}
.bg-polarWhite {
  background-color: var(--color-polarWhite);
}
.bg-denimBlue {
  background-color: var(--color-denimBlue);
}
.bg-aliceBlue {
  background-color: var(--color-aliceBlue);
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-zenBlue {
  background-color: var(--color-zenBlue);
}
.bg-nany {
  background-color: #2C314B;
}
.bg-opacity-90 {
  --tw-bg-opacity: 0.9;
}
.bg-opacity-95 {
  --tw-bg-opacity: 0.95;
}
.p-o-48 {
  padding: 0.48rem;
}
.p-o-8 {
  padding: 0.08rem;
}
.px-o-48 {
  padding-left: 0.48rem;
  padding-right: 0.48rem;
}
.py-o-10 {
  padding-top: 0.10rem;
  padding-bottom: 0.10rem;
}
.py-o-20 {
  padding-top: 0.20rem;
  padding-bottom: 0.20rem;
}
.py-o-4 {
  padding-top: 0.04rem;
  padding-bottom: 0.04rem;
}
.py-o-96 {
  padding-top: 0.96rem;
  padding-bottom: 0.96rem;
}
.py-o-52 {
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}
.py-o-48 {
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
}
.px-o-40 {
  padding-left: 0.40rem;
  padding-right: 0.40rem;
}
.py-o-24 {
  padding-top: 0.24rem;
  padding-bottom: 0.24rem;
}
.px-o-44 {
  padding-left: 0.44rem;
  padding-right: 0.44rem;
}
.py-o-88 {
  padding-top: 0.88rem;
  padding-bottom: 0.88rem;
}
.px-o-8 {
  padding-left: 0.08rem;
  padding-right: 0.08rem;
}
.py-o-32 {
  padding-top: 0.32rem;
  padding-bottom: 0.32rem;
}
.pl-o-16 {
  padding-left: 0.16rem;
}
.pt-o-92 {
  padding-top: 0.92rem;
}
.pb-o-84 {
  padding-bottom: 0.84rem;
}
.pt-o-56 {
  padding-top: 0.56rem;
}
.pb-o-72 {
  padding-bottom: 0.72rem;
}
.pb-o-36 {
  padding-bottom: 0.36rem;
}
.pt-o-72 {
  padding-top: 0.72rem;
}
.pb-o-48 {
  padding-bottom: 0.48rem;
}
.pr-o-64 {
  padding-right: 0.64rem;
}
.pt-o-76 {
  padding-top: 0.76rem;
}
.pt-o-48 {
  padding-top: 0.48rem;
}
.pb-o-68 {
  padding-bottom: 0.68rem;
}
.pt-o-160 {
  padding-top: 1.60rem;
}
.pb-o-172 {
  padding-bottom: 1.72rem;
}
.pt-o-100 {
  padding-top: 1rem;
}
.pb-o-80 {
  padding-bottom: 0.80rem;
}
.pb-o-52 {
  padding-bottom: 0.52rem;
}
.pl-o-104 {
  padding-left: 1.04rem;
}
.pt-o-88 {
  padding-top: 0.88rem;
}
.pt-o-36 {
  padding-top: 0.36rem;
}
.pb-o-96 {
  padding-bottom: 0.96rem;
}
.pt-o-40 {
  padding-top: 0.40rem;
}
.pb-o-76 {
  padding-bottom: 0.76rem;
}
.pt-o-20 {
  padding-top: 0.20rem;
}
.pt-o-64 {
  padding-top: 0.64rem;
}
.pb-o-40 {
  padding-bottom: 0.40rem;
}
.pb-o-8 {
  padding-bottom: 0.08rem;
}
.pt-o-8 {
  padding-top: 0.08rem;
}
.pr-o-112 {
  padding-right: 1.12rem;
}
.pl-o-44 {
  padding-left: 0.44rem;
}
.pb-o-4 {
  padding-bottom: 0.04rem;
}
.pl-o-28 {
  padding-left: 0.28rem;
}
.pr-o-80 {
  padding-right: 0.80rem;
}
.pb-o-28 {
  padding-bottom: 0.28rem;
}
.pl-o-52 {
  padding-left: 0.52rem;
}
.pr-o-16 {
  padding-right: 0.16rem;
}
.pl-o-36 {
  padding-left: 0.36rem;
}
.text-center {
  text-align: center;
}
.align-top {
  vertical-align: top;
}
.font-teko {
  font-family: Teko, sans-serif;
}
.text-md {
  font-size: 13.02083vw;
}
.text-21 {
  font-size: 0.21rem;
}
.text-32 {
  font-size: 0.32rem;
}
.text-20 {
  font-size: 0.20rem;
}
.text-45 {
  font-size: 0.45rem;
}
.text-65 {
  font-size: 0.65rem;
}
.text-59 {
  font-size: 0.59rem;
}
.text-171 {
  font-size: 1.71rem;
}
.text-115 {
  font-size: 1.15rem;
}
.text-170 {
  font-size: 1.70rem;
}
.text-36 {
  font-size: 0.36rem;
}
.text-167 {
  font-size: 1.67rem;
}
.text-35 {
  font-size: 0.35rem;
}
.text-28 {
  font-size: 0.28rem;
}
.text-64 {
  font-size: 0.64rem;
}
.text-40 {
  font-size: 0.40rem;
}
.text-52 {
  font-size: 0.52rem;
}
.text-138 {
  font-size: 1.38rem;
}
.text-49 {
  font-size: 0.49rem;
}
.text-105 {
  font-size: 1.05rem;
}
.text-30 {
  font-size: 0.30rem;
}
.text-24 {
  font-size: 0.24rem;
}
.text-37 {
  font-size: 0.37rem;
}
.text-48 {
  font-size: 0.48rem;
}
.text-51 {
  font-size: 0.51rem;
}
.text-34 {
  font-size: 0.34rem;
}
.text-27 {
  font-size: 0.27rem;
}
.text-26 {
  font-size: 0.26rem;
}
.text-125 {
  font-size: 1.25rem;
}
.text-43 {
  font-size: 0.43rem;
}
.text-44 {
  font-size: 0.44rem;
}
.text-25 {
  font-size: 0.25rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-black {
  font-weight: 900;
}
.font-semibold {
  font-weight: 600;
}
.font-normal {
  font-weight: 400;
}
.leading-o-12 {
  line-height: 1.2;
}
.leading-3 {
  line-height: .75rem;
}
.leading-o-14 {
  line-height: 1.4;
}
.leading-none {
  line-height: 1;
}
.leading-o-16 {
  line-height: 1.6;
}
.leading-o-17 {
  line-height: 1.7;
}
.leading-o-20 {
  line-height: 2;
}
.tracking-o-100 {
  letter-spacing: 0.100em;
}
.tracking-o-75 {
  letter-spacing: 0.075em;
}
.tracking-o-50 {
  letter-spacing: 0.05em;
}
.text-denimBlue {
  color: var(--color-denimBlue);
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-goldYellow {
  color: var(--color-goldYellow);
}
.text-umberBlack {
  color: var(--color-umberBlack);
}
.text-black {
  color: #000000;
}

html{
  /* ベースフォント */
  font-family: 'Noto Sans JP', sans-serif;
}
body {
  background: var(--color-denimBlue);
  color: var(--color-umberBlack);
  font-size: 0.28rem;
  overflow-x: hidden;
}
section {
  position: relative;
}
picture, figure {
  display: block;
}
img {
  width: 100%;
}
a, button {
  transition: 0.2s ease;
}
strong {
  font-weight: inherit;
}
mark {
  background: none;
  color: inherit;
}

/* shadow */
.shadow-o-black-16-s {
  box-shadow: 0 0.03rem 0.2rem rgba(0, 0, 0, 0.16);
}
.shadow-o-black-16 {
  box-shadow: 0 0.13rem 0.23rem rgba(0, 0, 0, 0.16);
}
.shadow-o-umberBlack-26 {
  box-shadow: 0.02rem 0.23rem 0.23rem rgba(34, 34, 34, 0.26);
}
.textshadow-o-goldYellow-x-5 {
  text-shadow: 0.05rem 0 0 var(--color-goldYellow);
}

/* table */
table.tbl_block {
  display: block;
  text-align: left;
}
table.tbl_block tbody {
  display: block;
  text-align: left;
}
table.tbl_block tr {
  display: block;
  text-align: left;
}
table.tbl_block th, table.tbl_block td {
  display: block;
  text-align: left;
}

/* utility */
.bg-denimBlue.bg-opacity-95 {
  background: rgba(39, 49, 108, 0.95);
}
.bg-denimBlue.bg-opacity-85 {
  background: rgba(39, 49, 108, 0.85);
}
.font-teko {
  position: relative;
  bottom: -0.1em;
  line-height: 1;
}
.vertical-rl {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
}
.cmn_video_16-9 {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.cmn_video_16-9 iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.cmn_txt01 > p:nth-of-type(n+2) {
  margin-top: 1em;
}
.cmn_marker_goldYellow {
  background: linear-gradient(0deg, var(--color-goldYellow) 10%, rgba(255, 255, 255, 0) 10%)
}
.cmn_pattern01 {
  background: url(../../images/lpB/cmn_pattern01.png);
  background-size: 2.56rem auto;
}

/* 固有 */
.body_bg01 {
  background: url(../../images/lpB/body_bg01.png) no-repeat right bottom;
  background-size: 3.74rem auto;
  background-attachment: fixed;
  width: 100%; height: 100vh;
}
.cta_fixed_btn01_arrow {
  left: 90%; top: 50%;
  transform: translate(0, -50%);
  transition: 0.2s ease;
}
.cta_fixed_btn01:hover .cta_fixed_btn01_arrow {
  transform: translate(50%, -50%);
}
@media screen and (max-width:768px) {
  .fv_btn01 small {
    display: block;
    margin-top: -3px;
  }
}
.fv_btn01:hover {
  box-shadow: none;
  transform: translateY(0.1rem);
}
.fv_btn01_arrow {
  left: 90%; top: 50%;
  transform: translate(0, -50%);
}
.fv_scroll_circle {
  -webkit-animation: fv_scroll_circle_anime 2s infinite;
          animation: fv_scroll_circle_anime 2s infinite;
}
.cta01_list {
  list-style-type: disc;

}
@media (min-width: 768px) {
  .cta01_list {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20%;
    line-height: 1.4;
  }
  .cta01_list_item {
    margin: 5px;
    width: calc(50% - 10px);
  }
}
.cta01_bubble {
  width: 4.2rem;
  position: relative;
  display: inline-block;
  padding: 10px;
  background: #6971A2;
  border: 1px solid #ffffff;
  top: 0.7rem;
  left: 1.75rem;
  z-index: 3;
}
@media (min-width: 768px) {
  .cta01_bubble {
    left: 5.55rem;
  }
}
.cta02_bubble {
  background: #555D91!important;
}
.cta01_bubble:before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  margin-left: -16px;
  border: 13px solid transparent;
  border-top: 13px solid #6971A2;
  z-index: 2;
}
.cta02_bubble:before {
  border-top: 13px solid #555D91 !important;
}
.cta01_bubble:after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #ffffff;
  z-index: 1;
}
.cta_img {
  width: 6.0rem;
  margin: 0 auto -0.5rem;
}
.form_btn_bg {
  background-color: var(--color-goldYellow)!important;
}

@-webkit-keyframes fv_scroll_circle_anime {
  0%{
    opacity: 0;
    top: 0;
  }
  20%{
    opacity: 1;
  }
  60%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    top: 100%;
  }
}
@keyframes fv_scroll_circle_anime {
  0%{
    opacity: 0;
    top: 0;
  }
  20%{
    opacity: 1;
  }
  60%{
    opacity: 1;
  }
  100%{
    opacity: 0;
    top: 100%;
  }
}
#sec02 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), var(--color-frankBlue));
}
.sec02_case_haad_bg01 {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(98, 110, 156, 0.1) 40%, rgba(255, 255, 255, 0));
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.sec02_case_body_tit01_bar {
  width: calc(100% + 0.48rem);
}
.sec02_case_body_background {
  background: url(../../images/lpB/sec02_case_body_background_bg01@2x.png) no-repeat center top;
  background-size: cover;
}
.sec03_bg01 {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(98, 110, 156, 0.1) 40%, rgba(255, 255, 255, 0));
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.sec05_bg01 {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(246, 255, 199, 0.22) 30%, rgba(255, 255, 255, 0));
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.sec05_reason_tit01 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.47) 50%, rgba(255, 255, 255, 0) 50%) repeat-x left bottom;
  background-size: 0.16rem 0.06rem;
}
.sec06_foot {
  background: url(../../images/lpB/sec06_foot_bg01@2x.png) repeat-x left bottom;
  background-size: 5.15rem auto;
}
.sec08_voice_line {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.47) 50%, rgba(255, 255, 255, 0) 50%) repeat-x left bottom;
  background-size: 0.16rem 0.06rem;
  width: calc(100% - 0.8rem);
}
.sec09_support > li {
  gap: 0.56rem;
  grid-template-columns: 2.9rem auto;
  grid-template-rows: 2.05rem auto;
}
.sec09_support_txt01 {
  grid-column: 1 / 3;
}
.sec10_flow_line {
  background: url(../../images/lpB/sec10_flow_line01@2x.png) repeat-y center top;
  background-size: 0.08rem auto;
  height: 0.84rem;
}
.sec10_flow_line.white {
  background-image: url(../../images/lpB/sec10_flow_line01_white@2x.png);
}
.sec11_faq_q_ico {
  background: url(../../images/lpB/sec11_faq_q_ico01@2x.png) no-repeat center top;
  background-size: 100% auto;
}
.sec11_faq_q_ico.js_open {
  background-position: center bottom;
}
.sec11_faq_a {
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition: 0.3s ease;
}
.sec11_faq_a.js_open {
  height: auto;
  overflow: auto;
  padding-top: 0.32rem;
  padding-bottom: 0.4rem;
}
.form_tbl :-moz-placeholder-shown {
  color: #7B7B7B;
}
.form_tbl :-ms-input-placeholder {
  color: #7B7B7B;
}
.form_tbl :placeholder-shown {
  color: #7B7B7B;
}
.form_tbl ::-webkit-input-placeholder {
  color: #7B7B7B;
}
.form_tbl :-moz-placeholder {
  color: #7B7B7B;
  opacity: 1;
}
.form_tbl ::-moz-placeholder {
  color: #7B7B7B;
  opacity: 1;
}
.form_tbl :-ms-input-placeholder {
  color: #7B7B7B;
}
.form_tbl th {
  font-weight: 400;
  vertical-align: top;
}
.form_tbl input[type='text'],
.form_tbl input[type='mail'],
.form_tbl input[type='tel'],
.form_tbl select,
.form_tbl textarea {
  width: 100%;
  background: #fff;
  border: none;
  padding: 0.2rem;
}
.form_tbl input:required,
.form_tbl textarea:required {
  background: #FFFCF0;
}
.form_tbl textarea {
  height: 2.57rem;
}
.form_tbl .flex input {
  width: 49%;
}
.scrollbar::-webkit-scrollbar {
  background: #fff;
  width: 0.1rem;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #B7B7B7;
}
.form_btn01:hover {
  box-shadow: none;
  transform: translateY(0.1rem);
}
.form_btn01_arrow {
  left: 90%; top: 50%;
  transform: translate(0, -50%);
}
#sec12 {
  background: linear-gradient(0deg, rgba(39, 49, 108, 0.5), #39458E);
}
.cta {
  background: url(../../images/lpB/cta_bg01.png) no-repeat center center;
  background-size: 100% 100%;
}
.cta01 {
  background: url(../../images/lpB/cta_bg02.png) no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 768px) {
  .cta01 {
  background: url(../../images/lpB/cta_bg02_pc.png) no-repeat center bottom #383F70;
  background-size: contain;
}
}
.cta_btn01 small {
  display: block;
  font-size: 80%;
  margin-top: -5px;
}
.cta_btn01:hover {
  box-shadow: none;
  transform: translateY(0.1rem);
}
.cta_btn01_arrow {
  left: 90%; top: 50%;
  transform: translate(0, -50%);
}

/* SP only */
@media (max-width: 767px) {}

/* PC only */
@media (min-width: 768px) {
  table.tbl_block {
    display: table;
  }
  table.tbl_block tbody {
    display: table-row-group;
  }
  table.tbl_block tr {
    display: table-row;
  }
  table.tbl_block th, table.tbl_block td {
    display: table-cell;
  }
  .body_bg01 {
    background: url(../../images/lpB/body_bg01_pc@2x.png) no-repeat right 0.5rem;
    background-size: 5.42rem auto;
  }
  .cta_fixed_btn01 small {
    display: block;
    font-size: 80%;
    margin-top: -5px;
  }
  .cta_fixed_btn01_arrow {
    transform: translate(0, -50%) rotate(90deg);
  }
  .cta_fixed_btn01:hover .cta_fixed_btn01_arrow {
    transform: translate(0, 0) rotate(90deg);
  }
  .sec02_case_haad_bg01 {
    background: linear-gradient(30deg, rgba(255, 255, 255, 0), rgba(98, 110, 156, 0.1) 40%, rgba(255, 255, 255, 0));
  }
  .sec09_support > li {
    gap: 0.48rem;
    grid-template-columns: 2.53rem auto;
    grid-template-rows: 0.8rem auto;
  }
  .sec09_support_img {
    grid-row: 1 / 3;
  }
  .sec09_support_txt01 {
    grid-column: 2 / 3;
  }
  .sec10_flow_line {
    height: calc(100% + 1.32rem);
  }
  .sec11_faq_a.js_open {
    padding-top: 0.38rem;
    padding-bottom: 0.38rem;
  }
  .cta {
    background-image: url(../../images/lpB/cta_bg01_pc@2x.png);
  }
}
.first\:mt-0:first-child {
  margin-top: 0px;
}
@media (min-width: 768px) {

  .md\:fixed {
    position: fixed;
  }

  .md\:absolute {
    position: absolute;
  }

  .md\:left-0 {
    left: 0px;
  }

  .md\:top-0 {
    top: 0px;
  }

  .md\:left-o-275 {
    left: 2.75rem;
  }

  .md\:top-o-520 {
    top: 5.20rem;
  }

  .md\:-bottom-o-140 {
    bottom: -1.40rem;
  }

  .md\:left-o-70 {
    left: 0.70rem;
  }

  .md\:top-o-120 {
    top: 1.20rem;
  }

  .md\:left-o-67 {
    left: 0.67rem;
  }

  .md\:top-o-117 {
    top: 1.17rem;
  }

  .md\:top-o-690 {
    top: 6.90rem;
  }

  .md\:top-o-370 {
    top: 3.70rem;
  }

  .md\:-left-o-566 {
    left: -5.66rem;
  }

  .md\:-top-o-94 {
    top: -0.94rem;
  }

  .md\:top-auto {
    top: auto;
  }

  .md\:bottom-0 {
    bottom: 0px;
  }

  .md\:left-o-120 {
    left: 1.20rem;
  }

  .md\:-top-o-150 {
    top: -1.50rem;
  }

  .md\:-left-o-72 {
    left: -0.72rem;
  }

  .md\:-bottom-o-72 {
    bottom: -0.72rem;
  }

  .md\:-left-o-60 {
    left: -0.60rem;
  }

  .md\:top-1\/2 {
    top: 50%;
  }

  .md\:-left-o-46 {
    left: -0.46rem;
  }

  .md\:left-o-173 {
    left: 1.73rem;
  }

  .md\:left-o-540 {
    left: 5.40rem;
  }

  .md\:-bottom-o-36 {
    bottom: -0.36rem;
  }

  .md\:-left-o-50 {
    left: -0.50rem;
  }

  .md\:-right-o-50 {
    right: -0.50rem;
  }

  .md\:-top-o-38 {
    top: -0.38rem;
  }

  .md\:-left-o-65 {
    left: -0.65rem;
  }

  .md\:-bottom-o-76 {
    bottom: -0.76rem;
  }

  .md\:-left-o-36 {
    left: -0.36rem;
  }

  .md\:-left-o-76 {
    left: -0.76rem;
  }

  .md\:bottom-auto {
    bottom: auto;
  }

  .md\:-top-o-28 {
    top: -0.28rem;
  }

  .md\:z-10 {
    z-index: 10;
  }

  .md\:mx-o-32 {
    margin-left: 0.32rem;
    margin-right: 0.32rem;
  }

  .md\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .md\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .md\:mx-o-8 {
    margin-left: 0.08rem;
    margin-right: 0.08rem;
  }

  .md\:mx-o-28 {
    margin-left: 0.28rem;
    margin-right: 0.28rem;
  }

  .md\:mx-o-72 {
    margin-left: 0.72rem;
    margin-right: 0.72rem;
  }

  .md\:mt-o-64 {
    margin-top: 0.64rem;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-o-224 {
    margin-top: 2.24rem;
  }

  .md\:ml-o-720 {
    margin-left: 7.20rem;
  }

  .md\:mt-o-16 {
    margin-top: 0.16rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:mt-o-120 {
    margin-top: 1.20rem;
  }

  .md\:mt-o-56 {
    margin-top: 0.56rem;
  }

  .md\:mt-o-44 {
    margin-top: 0.44rem;
  }

  .md\:mt-o-8 {
    margin-top: 0.08rem;
  }

  .md\:mt-o-32 {
    margin-top: 0.32rem;
  }

  .md\:mt-o-68 {
    margin-top: 0.68rem;
  }

  .md\:mt-o-48 {
    margin-top: 0.48rem;
  }

  .md\:ml-o-46 {
    margin-left: 0.46rem;
  }

  .md\:mt-o-100 {
    margin-top: 1rem;
  }

  .md\:mr-o-220 {
    margin-right: 2.20rem;
  }

  .md\:ml-o-592 {
    margin-left: 5.92rem;
  }

  .md\:mt-o-84 {
    margin-top: 0.84rem;
  }

  .md\:mr-o-52 {
    margin-right: 0.52rem;
  }

  .md\:mr-0 {
    margin-right: 0px;
  }

  .md\:ml-o-52 {
    margin-left: 0.52rem;
  }

  .md\:mt-o-112 {
    margin-top: 1.12rem;
  }

  .md\:mt-o-52 {
    margin-top: 0.52rem;
  }

  .md\:mt-o-24 {
    margin-top: 0.24rem;
  }

  .md\:mt-o-20 {
    margin-top: 0.20rem;
  }

  .md\:mr-o-56 {
    margin-right: 0.56rem;
  }

  .md\:ml-o-28 {
    margin-left: 0.28rem;
  }

  .md\:mt-o-92 {
    margin-top: 0.92rem;
  }

  .md\:inline {
    display: inline;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-o-80 {
    height: 0.80rem;
  }

  .md\:h-o-488 {
    height: 4.88rem;
  }

  .md\:h-o-765 {
    height: 7.65rem;
  }

  .md\:h-o-766 {
    height: 7.66rem;
  }

  .md\:h-o-160 {
    height: 1.60rem;
  }

  .md\:w-o-460 {
    width: 4.60rem;
  }

  .md\:w-o-14 {
    width: 0.14rem;
  }

  .md\:w-o-566 {
    width: 5.66rem;
  }

  .md\:w-o-600 {
    width: 6rem;
  }

  .md\:w-o-632 {
    width: 6.32rem;
  }

  .md\:w-o-395 {
    width: 3.95rem;
  }

  .md\:w-o-585 {
    width: 5.85rem;
  }

  .md\:w-o-1200 {
    width: 12rem;
  }

  .md\:w-o-775 {
    width: 7.75rem;
  }

  .md\:w-1\/2 {
    width: 50%;
  }

  .md\:w-o-928 {
    width: 9.28rem;
  }

  .md\:w-o-1095 {
    width: 10.95rem;
  }

  .md\:w-o-188 {
    width: 1.88rem;
  }

  .md\:w-o-806 {
    width: 8.06rem;
  }

  .md\:w-o-253 {
    width: 2.53rem;
  }

  .md\:w-o-747 {
    width: 7.47rem;
  }

  .md\:w-o-388 {
    width: 3.88rem;
  }

  .md\:w-o-300 {
    width: 3rem;
  }

  .md\:w-o-1375 {
    width: 13.75rem;
  }

  .md\:w-o-500 {
    width: 5rem;
  }

  .md\:w-o-92 {
    width: 0.92rem;
  }

  .md\:w-o-290 {
    width: 2.90rem;
  }

  .md\:w-o-420 {
    width: 4.20rem;
  }

  .md\:w-o-320 {
    width: 3.20rem;
  }

  .md\:w-o-1000 {
    width: 10rem;
  }

  .md\:w-o-418 {
    width: 4.18rem;
  }

  .md\:w-o-536 {
    width: 5.36rem;
  }

  .md\:w-o-294 {
    width: 2.94rem;
  }

  .md\:w-o-445 {
    width: 4.45rem;
  }

  .md\:w-o-236 {
    width: 2.36rem;
  }

  .md\:w-o-1100 {
    width: 11rem;
  }

  .md\:w-o-900 {
    width: 9rem;
  }

  .md\:w-o-250 {
    width: 2.50rem;
  }

  .md\:w-o-580 {
    width: 5.80rem;
  }

  .md\:w-o-330 {
    width: 3.30rem;
  }

  .md\:shrink-0 {
    flex-shrink: 0;
  }

  .md\:grow {
    flex-grow: 1;
  }

  .md\:translate-x-0 {
    --tw-translate-x: 0px;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:rotate-90 {
    --tw-rotate: 90deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:flex-row-reverse {
    flex-direction: row-reverse;
  }

  .md\:flex-col {
    flex-direction: column;
  }

  .md\:flex-wrap {
    flex-wrap: wrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:justify-center {
    justify-content: center;
  }

  .md\:justify-between {
    justify-content: space-between;
  }

  .md\:border-b-2 {
    border-bottom-width: 2px;
  }

  .md\:border-t-0 {
    border-top-width: 0px;
  }

  .md\:py-o-8 {
    padding-top: 0.08rem;
    padding-bottom: 0.08rem;
  }

  .md\:py-o-32 {
    padding-top: 0.32rem;
    padding-bottom: 0.32rem;
  }

  .md\:px-o-28 {
    padding-left: 0.28rem;
    padding-right: 0.28rem;
  }

  .md\:py-o-68 {
    padding-top: 0.68rem;
    padding-bottom: 0.68rem;
  }

  .md\:py-o-36 {
    padding-top: 0.36rem;
    padding-bottom: 0.36rem;
  }

  .md\:py-o-80 {
    padding-top: 0.80rem;
    padding-bottom: 0.80rem;
  }

  .md\:py-o-20 {
    padding-top: 0.20rem;
    padding-bottom: 0.20rem;
  }

  .md\:px-o-36 {
    padding-left: 0.36rem;
    padding-right: 0.36rem;
  }

  .md\:pt-o-72 {
    padding-top: 0.72rem;
  }

  .md\:pb-o-100 {
    padding-bottom: 1rem;
  }

  .md\:pt-o-64 {
    padding-top: 0.64rem;
  }

  .md\:pb-o-64 {
    padding-bottom: 0.64rem;
  }

  .md\:pr-o-64 {
    padding-right: 0.64rem;
  }

  .md\:pl-o-120 {
    padding-left: 1.20rem;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pt-o-76 {
    padding-top: 0.76rem;
  }

  .md\:pr-o-56 {
    padding-right: 0.56rem;
  }

  .md\:pt-o-36 {
    padding-top: 0.36rem;
  }

  .md\:pt-o-80 {
    padding-top: 0.80rem;
  }

  .md\:pt-o-32 {
    padding-top: 0.32rem;
  }

  .md\:pt-o-24 {
    padding-top: 0.24rem;
  }

  .md\:pb-o-44 {
    padding-bottom: 0.44rem;
  }

  .md\:pt-o-96 {
    padding-top: 0.96rem;
  }

  .md\:pb-o-88 {
    padding-bottom: 0.88rem;
  }

  .md\:pb-o-96 {
    padding-bottom: 0.96rem;
  }

  .md\:pl-o-76 {
    padding-left: 0.76rem;
  }

  .md\:pb-o-120 {
    padding-bottom: 1.20rem;
  }

  .md\:pb-o-72 {
    padding-bottom: 0.72rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pb-o-76 {
    padding-bottom: 0.76rem;
  }

  .md\:pt-o-52 {
    padding-top: 0.52rem;
  }

  .md\:pb-o-28 {
    padding-bottom: 0.28rem;
  }

  .md\:pt-o-60 {
    padding-top: 0.60rem;
  }

  .md\:pt-o-56 {
    padding-top: 0.56rem;
  }

  .md\:pr-o-92 {
    padding-right: 0.92rem;
  }

  .md\:pt-o-40 {
    padding-top: 0.40rem;
  }

  .md\:pl-o-56 {
    padding-left: 0.56rem;
  }

  .md\:align-middle {
    vertical-align: middle;
  }

  .md\:text-pc {
    font-size: 6.51042vw;
  }

  .md\:text-28 {
    font-size: 0.28rem;
  }

  .md\:text-22 {
    font-size: 0.22rem;
  }

  .md\:text-55 {
    font-size: 0.55rem;
  }

  .md\:text-160 {
    font-size: 1.60rem;
  }

  .md\:text-107 {
    font-size: 1.07rem;
  }

  .md\:text-35 {
    font-size: 0.35rem;
  }

  .md\:text-154 {
    font-size: 1.54rem;
  }

  .md\:text-16 {
    font-size: 0.16rem;
  }

  .md\:text-33 {
    font-size: 0.33rem;
  }

  .md\:text-21 {
    font-size: 0.21rem;
  }

  .md\:text-31 {
    font-size: 0.31rem;
  }

  .md\:text-25 {
    font-size: 0.25rem;
  }

  .md\:text-40 {
    font-size: 0.40rem;
  }

  .md\:text-95 {
    font-size: 0.95rem;
  }

  .md\:text-18 {
    font-size: 0.18rem;
  }

  .md\:text-20 {
    font-size: 0.20rem;
  }

  .md\:text-15 {
    font-size: 0.15rem;
  }

  .md\:leading-4 {
    line-height: 1rem;
  }
  .md\:tracking-normal {
    letter-spacing: 0em;
  }
}

/* JMRバッジエリア */
.jmr_area {
  background-color: #222222;
  padding: 25px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.jmr_container {
  border: 1px solid #CCC;
  padding: 25px;
}
.jmr_logo {
  text-align: center;
  color: #FFFFFF;
}
.jmr_body {
  text-align: center;
  color: #FFFFFF;
}
.jmr_modallink {
    cursor: pointer;
    margin-top: 20px;
    font-size: 12px;
}
.jmr_logo img {
    width: auto;
    margin: 0 auto;
}
.jmr_ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.jmr_point li {
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #CBCBCB;
  padding: 10px 10px;
  margin: 0 auto;
}
.jmr_point li:not(:last-child) {
  margin-bottom: 10px;
}
.jmr_notice {
  font-size: 12px;
  color: #FFFFFF;
  margin-top: 10px;
  line-height: 1.4;
}
.jmr_notice_box {
    position: fixed;
    top: 30%;
    left: 25%;
    width: 50%;
    background-color: #FFFFFF;
    padding: 30px;
    z-index: 9999;
    display: none;
}
.jmr_notice_box p {
    font-size: 14px;
    line-height: 1.6;
}
.jmr_notice_box p:not(:last-child) {
    margin-bottom: 10px;
}
.btn_close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}
.overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0,0,0,70%);
    z-index: 1001;
    display: none;
}
@media screen and (min-width:769px) {
  .jmr_inner {
      max-width: 1000px;
      margin: 0 auto;
  }
  .jmr_container {
      display: flex;
      justify-content: space-around;
  }
  .jmr_logo {
      width: 300px;
  }
}
@media screen and (max-width:768px) {
  .jmr_area {
      padding: 10px;
  }
  .jmr_container {
      padding: 10px;
  }
  .jmr_logo img {
      max-width: 100px;
  }
  .jmr_ttl {
      font-size: 20px;
  }
  .jmr_point li {
      font-size: 14px;
  }
  .jmr_notice {
      font-size: 11px;
  }
  .jmr_notice_box {
      position: fixed;
      top: 50px;
      left: 20px;
      right: 20px;
      width: auto;
      background-color: #FFFFFF;
      padding: 30px;
      z-index: 9999;
      display: none;
  }
}

.p-contact__form {
  margin: 8.53333vw 0 0;
}

@media only screen and (min-width: 769px) {
  .p-contact__form {
    max-width: 770px;
    margin: 80px auto 0;
  }
}

@media only screen and (max-width: 768px) {
  .p-contact__form table,
  .p-contact__form tbody,
  .p-contact__form tr,
  .p-contact__form th,
  .p-contact__form td {
    display: block;
  }
}

.p-contact__form table {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.4;
}

.p-contact__form th {
  padding-top: 4.26667vw;
  text-align: left;
  color: #3D495E;
  font-weight: 400;
}

@media only screen and (min-width: 769px) {
  .p-contact__form th {
    width: 160px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.p-contact__form th small {
  color: #F07A5F;
  font-size: 1.1rem;
}

.p-contact__form td {
  padding-top: 4.26667vw;
  padding-bottom: 4.26667vw;
}

@media only screen and (min-width: 769px) {
  .p-contact__form td {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 1em;
  }
}

.p-contact__form .wpcf7-form-control-wrap {
  display: inline;
}

.p-contact__form .wpcf7-form-control-wrap[data-name="your-name-mei"] {
  margin-left: 1em;
}

.p-contact__form .wpcf7-list-item {
  margin: 0;
}

.p-contact__form .wpcf7-list-item:not(:first-child) {
  margin: 0 0 0 1em;
}

.p-contact__form__submit {
  margin-top: 10.66667vw;
}

@media only screen and (min-width: 769px) {
  .p-contact__form__submit {
    width: 316px;
    margin: 40px auto 0;
  }
}

.p-contact__form .mktoForm {
  width: 100% !important;
  padding: 0 !important;
}

.p-contact__form .mktoFormRow {
  position: relative;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoFormRow {
    display: -ms-flexbox !important;
    display: flex !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
}

.p-contact__form .mktoFormRow:not(:first-child) {
  padding-top: 3vw !important;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoFormRow:not(:first-child) {
    padding-top: 0px !important;
  }
}

.p-contact__form .mktoForm .mktoFormCol {
  float: none !important;
}

.p-contact__form .mktoFormCol {
  margin: 0 !important;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoFormCol:nth-child(1) {
    width: 15em;
    padding-top: 1em;
  }
  .p-contact__form .mktoFormCol:nth-child(2) {
    width: calc( 100% - 12em);
  }
  .p-contact__form .mktoFormCol:nth-child(3) {
    width: calc( 50% - 6em);
  }
  .p-contact__form .mktoFormCol:nth-child(1):has(+ .mktoClear) {
      width: 100%;
  }
  .mv_form .p-contact__form .mktoFormCol:nth-child(1):has(+ .mktoClear) {
      width: 100%!important;
  }
}

.p-contact__form .mktoFormCol:not(:first-child) {
  padding-top: 2.13333vw !important;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoFormCol:not(:first-child) {
    padding-top: 0 !important;
    padding-left: 16px !important;
  }
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoFormRow:nth-child(2) .mktoFormCol:nth-child(2) {
    padding-top: 1em !important;
  }
  /* .p-contact__form .mktoFormRow:nth-child(3) .mktoFormCol:nth-child(2) {
    width: calc( 50% - 6em);
  } */
  .p-contact__form .mktoFormRow .mktoFormCol:nth-child(2):has(+ .mktoFormCol:nth-child(3)) {
    width: calc( 50% - 6em);
  }
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoFormRow:nth-child(10) .mktoFormCol:nth-child(1) {
    width: 100%;
  }
}

.p-contact__form .mktoFormRow:nth-child(10) .mktoFormCol:nth-child(1) a {
  display: inline;
  padding: 0;
  color: #F07A5F;
  text-decoration: underline;
}

.p-contact__form .mktoFormRow:nth-child(10) .mktoFormCol:nth-child(1) a:hover {
  text-decoration: none;
}

.p-contact__form .mktoHtmlText {
  width: 100% !important;
  color: #3D495E !important;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4 !important;
}

.p-contact__form .mktoFormRow:nth-child(2) .mktoHtmlText:after,
.p-contact__form .mktoFormRow:nth-child(3) .mktoHtmlText:after,
.p-contact__form .mktoFormRow:nth-child(4) .mktoHtmlText:after,
.p-contact__form .mktoFormRow:nth-child(5) .mktoHtmlText:after,
.p-contact__form .mktoFormRow:nth-child(6) .mktoHtmlText:after,
.p-contact__form .mktoFormRow:nth-child(7) .mktoHtmlText:after,
.p-contact__form .mktoFormRow:nth-child(8) .mktoHtmlText:after {
  display: inline-block;
  padding: 10px 10px 10px;
  margin: 0 0 0 10px;
  border-radius: 2px;
  background-color: #F07A5F;
  vertical-align: middle;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.05em;
  content: '必須';
}

.p-contact__form .mktoForm .mktoGutter,
.p-contact__form .mktoForm .mktoOffset {
  display: none;
}

.p-contact__form .mktoForm .mktoRequiredField label.mktoLabel {
  display: none !important;
}

.p-contact__form .mktoForm .mktoAsterix {
  color: #F07A5F !important;
  font-size: 1.1rem !important;
}

.p-contact__form .mktoForm .mktoFormRow .mktoField {
  float: none !important;
  clear: none !important;
}

.p-contact__form .mktoForm input[type=checkbox],
.p-contact__form .mktoForm input[type=radio] {
  width: auto !important;
  height: auto !important;
  opacity: 1 !important;
  margin-right: 0.25em;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoForm .mktoRadioList,
  .p-contact__form .mktoForm .mktoCheckboxList {
    float: none;
    padding: 0;
    width: 100% !important;
  }
}

.p-contact__form .mktoForm .mktoRadioList > label,
.p-contact__form .mktoForm .mktoCheckboxList > label {
  display: inline-block !important;
  margin-left: 0.1em !important;
  margin-right: 1em !important;
}

.p-contact__form .mktoForm .mktoRadioList > label:before,
.p-contact__form .mktoForm .mktoCheckboxList > label:before {
  display: none !important;
}

.p-contact__form .mktoForm input[type=text],
.p-contact__form .mktoForm input[type=url],
.p-contact__form .mktoForm input[type=email],
.p-contact__form .mktoForm input[type=tel],
.p-contact__form .mktoForm input[type=number],
.p-contact__form .mktoForm input[type=date],
.p-contact__form .mktoForm select.mktoField,
.p-contact__form .mktoForm textarea.mktoField {
  width: 100% !important;
  height: auto !important;
  border: 1px solid #3D495E !important;
  padding: 1em !important;
  background-color: #FAFAFA !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background-color: #ffffff !important;
  font-size: 16px;
}

.p-contact__form .mktoButtonRow {
  display: block !important;
  padding: 0 !important;
  margin-top: 10.66667vw;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoButtonRow {
    width: 316px;
    margin: 40px auto 0;
  }
}

.p-contact__form .mktoForm .mktoFieldWrap {
  float: none;
}

.p-contact__form .mktoForm .mktoButtonWrap {
  display: block !important;
  margin: 0 !important;
}

.p-contact__form .mktoForm .mktoButtonWrap .mktoButton {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center !important;
      align-items: center !important;
  -ms-flex-pack: center !important;
      justify-content: center !important;
  width: 100% !important;
  height: 13.33333vw !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 2.66667vw !important;
  background: #4E4E4E !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

@media only screen and (min-width: 769px) {
  .p-contact__form .mktoForm .mktoButtonWrap .mktoButton {
    height: 50px !important;
    border-radius: 10px !important;
    font-size: 16px;
  }
}

/* lpB4 */
@media screen and (min-width:1200px) {
  .lpb4_mv {
    width: calc(100% - 400px);
  }
  .lpb4_mv_btn {
    width: 4rem;
    top: 4rem;
    left: 2.0rem;
    height: 0.6rem;
  }
  .lpb4_mv_btn span {
    font-size: 0.2rem;
  }
  .fv_cta .lpb4_mv_btn {
    width: 3rem;
    left: 0.6rem;
  }
}
@media screen and (min-width:1000px) {
  .fv_cta4 .fv_tel_area {
    top: 4rem;
    left: 3.8rem;
    height: 0.6rem;
  }
  .fv_cta4 .fv_tel_area .fv_tel {
    font-size: 0.22rem;
    padding: 0px 50px 0px 80px;
    height: 0.6rem;
  }
  .fv_cta4 .fv_tel_area .fv_tel .tel_hour dt {
    font-size: 0.10rem;
  }
  .fv_cta4 .fv_tel_area .fv_tel .tel_hour dd {
    font-size: 0.12rem;
  }
}
@media screen and (min-width:769px) and (max-width:1200px) {
  .fv_cta4 .lpb4_mv_btn {
    left: 0.60rem;
  }
  .fv_cta4 .fv_tel_area {
    top: 5.2rem;
    left: 5.6rem;
  }
  .fv_cta4 .fv_tel_area .fv_tel {
    height: 0.80rem;
  }
}
@media screen and (min-width:769px) and (max-width:999px) {
  .fv_cta4 .fv_tel_area .fv_tel {
    display: inline-block;
    background-position: left 10px center;
  }
}

/* Mv Form */
.mv_form .p-contact__form .mktoHtmlText {
  font-size: 13px;
  font-weight: bold;
}
.mv_form .p-contact__form .mktoFormRow .mktoHtmlText:after {
  font-size: 12px!important;
  padding: 3px 2px!important;
  margin-left: 5px!important;
}
.mv_form .p-contact__form .mktoFormRow:not(:first-child) {
  padding-top: 0px!important;
  padding-bottom: 0px!important;
}
.mv_form .p-contact__form .mktoFormCol:nth-child(1) {
  padding-top: 0.5em;
}
.mv_form .p-contact__form .mktoFormRow {
    border-top: 1px solid #ddd;
}
.mv_form .p-contact__form .mktoForm input[type=text],
.mv_form .p-contact__form .mktoForm input[type=email],
.mv_form .p-contact__form .mktoForm input[type=tel],
.mv_form .p-contact__form .mktoForm select.mktoField,
.mv_form .p-contact__form .mktoForm textarea.mktoField {
    border-radius: 5px!important;
    border: 1px solid #ddd!important;
    color: #666;
}
.p-contact__form .mktoFormRow .mktoHtmlText:after {
    background-color: #c8143d!important;
    position: absolute;
    top: 8px;
    right: 0px;
}
@media screen and (min-width:1200px) {
  .mv_form {
      position: absolute;
      top: 0px;
      right: 0px;
      bottom: 0px;
      background-color: #fff;
      padding: 10px 10px;
      /* max-width: calc((100% - 1080px) / 2); */
      width: 400px;
  }
  .mv_form .p-contact__form {
      margin: 0;
  }
  .mv_form .p-contact__form .mktoFormCol:nth-child(1) {
      width: 124px!important;
  }
  .mv_form .p-contact__form .mktoFormRow:not(:first-child) .mktoFormCol {
      padding-top: 5px!important;
      padding-bottom: 5px!important;
  }
  .mv_form .p-contact__form .mktoForm input[type=text], .mv_form .p-contact__form .mktoForm input[type=url], .mv_form .p-contact__form .mktoForm input[type=email], .mv_form .p-contact__form .mktoForm input[type=tel], .mv_form .p-contact__form .mktoForm input[type=number], .mv_form .p-contact__form .mktoForm input[type=date], .mv_form .p-contact__form .mktoForm select.mktoField, .mv_form .p-contact__form .mktoForm textarea.mktoField {
      font-size: 13px;
      padding: 0.5em 1em!important;
  }
  .mv_form .p-contact__form .mktoFormCol:nth-child(2) {
      width: calc( 100% - 10em);
  }
  .mv_form .p-contact__form .mktoButtonRow {
      width: auto;
      max-width: 316px;
      margin-top: 20px;
  }
  .mv_form .p-contact__form .mktoForm textarea.mktoField {
      height: 100px!important;
  }
  .mv_form_ttl {
    font-size: 18px;
    text-align: center;
      margin-bottom: 10px;
  }
  .mv_form_ttl span {
      display: none;
  }
  .mv_form + .fv_scroll {
    right: 400px;
    bottom: 0px;
  }
}
@media screen and (max-width:768px) {
  .mv_form {
      display: none;
      padding: 60px 20px 20px;
      background-color: #eee;
      position: fixed;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      overflow-y: auto;
      z-index: 1000;
  }
  .mv_form .p-contact__form {
      margin: 0;
  }
  .mv_form_ttl {
      font-size: 16px;
      color: #fff;
      font-weight: bold;
      line-height: 1.4;
      background-color: #1c2569;
      padding: 15px;
      position: fixed;
      top: 0px;
      left: 0px;
      right: 0px;
      z-index: 1001;
  }
  .mv_form_ttl span {
      display: block;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      font-size: 20px;
      color: #1c2569;
      background-color: #eee;
      border-radius: 100%;
      width: 20px;
      height: 20px;
      line-height: 20px;
      text-align: center;
      position: absolute;
      top: 16px;
      right: 10px;
      cursor: pointer;
  }
  .p-contact__form .mktoFormRow .mktoHtmlText:after {
    top: auto;
    bottom: 0px;
  }
}
@media screen and (min-width:1200px) and (max-width:1400px) {
  .fwh-fv {
    min-height: 670px;
  }
  .lpb4_mv_btn {
    top: 3.6rem;
  }
  .fv_cta4 .fv_tel_area {
    top: 3.6rem;
  }
}
@media screen and (max-width:1199px) and (min-width:769px) {
  .mv_form {
    display: none;
  }
}

/* MVフォーム（展開型） */
.mv_form_rich .mktoForm .mktoLabel {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.mv_form_rich .p-contact__form .mktoHtmlText {
  font-size: 13px;
  font-weight: bold;
}
.mv_form_rich .p-contact__form .mktoFormRow .mktoHtmlText:after {
  font-size: 12px!important;
  padding: 3px 2px!important;
  margin-left: 5px!important;
}
.mv_form_rich .p-contact__form .mktoFormRow:not(:first-child) {
  padding-top: 0px!important;
  padding-bottom: 0px!important;
}
.mv_form_rich .p-contact__form .mktoFormCol:nth-child(1) {
  padding-top: 0.5em;
}
.mv_form_rich .p-contact__form .mktoFormRow {
    margin-bottom: 0px;
}
.mv_form_rich .p-contact__form .mktoForm input[type=text],
.mv_form_rich .p-contact__form .mktoForm input[type=email],
.mv_form_rich .p-contact__form .mktoForm input[type=tel],
.mv_form_rich .p-contact__form .mktoForm select.mktoField,
.mv_form_rich .p-contact__form .mktoForm textarea.mktoField {
    border-radius: 5px!important;
    border: none!important;
    color: #111;
    background-color: rgba(255,255,255,100%)!important;
}
.mv_form_rich .p-contact__form .mktoForm .mktoFieldDescriptor {
  background-color: #ffe8e1!important;
  border-radius: 10px;
  padding: 10px 20px 10px 30px;
  margin-bottom: 10px!important;
  position: relative;
  overflow: hidden;
}
.mv_form_rich .p-contact__form .mktoForm .mktoFormRow {
  counter-increment: number;
}
.mv_form_rich .p-contact__form .mktoForm .mktoFieldDescriptor:first-child:after {
  content: counter(number);
  display: flex;
  justify-items: center;
  align-items: center;
  background-color: #ea5414;
  padding: 5px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
}
.mv_form_rich .mktoForm .mktoRadioList > label, .mv_form_rich .mktoForm .mktoCheckboxList > label {
  margin-bottom: 0;
}
.mv_form_rich .p-contact__form .mktoForm .mktoRadioList label {
  font-size: 16px;
  color: #111;
}
.mv_form_rich input::placeholder,
.mv_form_rich textarea::placeholder {
  color: #333;
}
.mv_form_rich .p-contact__form .mktoForm .mktoFormRow:nth-child(5) .mktoRequiredField label.mktoLabel {
  display: block!important;
}
.mv_form_rich .p-contact__form .mktoForm .mktoFormRow:nth-child(5) .mktoRequiredField label.mktoLabel .mktoAsterix {
  display: none;
}
@media screen and (min-width:769px) {
  .mv_form_rich .p-contact__form .mktoFormCol:not(:first-child) {
    padding-top: 10px!important;
  }
}
@media screen and (min-width:1200px) {
  .mv_form_rich .p-contact__form .mktoFormRow:not(:first-child) {
    padding: 0px 0px!important;
  }
  .mv_form_rich {
      position: absolute;
      top: 0px;
      right: 0px;
      bottom: 0px;
      background-color: #fff;
      padding: 10px 10px;
      /* max-width: calc((100% - 1080px) / 2); */
      width: 400px;
  }
  .mv_form_rich .p-contact__form {
      margin: 0;
  }
  .mv_form_rich .p-contact__form .mktoForm input[type=text], .mv_form_rich .p-contact__form .mktoForm input[type=url], .mv_form_rich .p-contact__form .mktoForm input[type=email], .mv_form_rich .p-contact__form .mktoForm input[type=tel], .mv_form_rich .p-contact__form .mktoForm input[type=number], .mv_form_rich .p-contact__form .mktoForm input[type=date], .mv_form_rich .p-contact__form .mktoForm select.mktoField, .mv_form_rich .p-contact__form .mktoForm textarea.mktoField {
      font-size: 16px;
      padding: 0.5em 1em!important;
  }
  .mv_form_rich .p-contact__form .mktoFormCol:nth-child(2) {
      width: calc( 50% - 5px);
  }
  .mv_form_rich .p-contact__form .mktoButtonRow {
      width: auto;
      max-width: 316px;
      margin-top: 20px;
  }
  .mv_form_rich .p-contact__form .mktoForm textarea.mktoField {
      height: 100px!important;
  }
}
@media screen and (max-width:768px) {
  .mv_form_rich {
      display: none;
      padding: 60px 20px 20px;
      background-color: #eee;
      position: fixed;
      top: 0px;
      left: 0px;
      right: 0px;
      bottom: 0px;
      overflow-y: auto;
      z-index: 1000;
  }
  .mv_form_rich .p-contact__form {
      margin: 0;
  }
}
@media screen and (max-width:1199px) and (min-width:769px) {
  .mv_form_rich {
    display: none;
  }
}
@media screen and (min-width:1200px) and (max-width:1400px) {
  .mv_form_rich .p-contact__form .mktoForm .mktoFieldDescriptor {
    margin-bottom: 5px!important;
  }
}
@media screen and (min-width:769px) {
  .mv_form, .mv_form_rich {
    overflow-y: auto;
  }
  .mv_form::-webkit-scrollbar, .mv_form_rich::-webkit-scrollbar {
    background-color: #eee;
    width: 10px;
  }
  .mv_form::-webkit-scrollbar-thumb, .mv_form_rich::-webkit-scrollbar-thumb {
    background-color: #222;
    border-radius: 10px;
  }
}
.hsfc-Step__Content {
  background-color: #333;
}

/* 独自フォーム */
.p-contact__form_item dt {
  position: relative;
  font-weight: 700;
}
.p-contact__form_item dt, .p-contact__form_item dd {
  font-size: 16px;
  line-height: 1.4;
}
.form-group {
  display: block;
  margin-bottom: 10px;
}
label.form-group {
  cursor: pointer;
}
.form-group label {
  cursor: pointer;
}
@media screen and (min-width:769px) {
  .p-contact__form_item {
    display: flex;
  }
  .p-contact__form_item dt {
    width: 180px;
    padding: 10px 0;
  }
  .p-contact__form_item dd {
    width: 610px;
    padding-bottom: 10px;
  }
}
@media screen and (max-width:768px) {
  .p-contact__form_item dt {
    padding-bottom: 10px;
  }
  .p-contact__form_item dd {
    padding-bottom: 20px;
  }
}
.form-control {
  border: 1px solid #DDD;
  border-radius: 3px;
  height: 50px;
  width: 100%;
  padding: 0 10px;
  font-size: 14px;
  box-sizing: border-box;
}
.form-control::placeholder {
  color: #999999;
}
textarea.form-control {
  height: auto;
  padding: 10px;
  line-height: 1.3;
}
select.form-control {
  cursor: pointer;
}
.form-inline {
  display: flex;
  justify-content: space-between;
  margin: 0 -10px;
}
.form-inline > input {
  margin: 0 10px;
}
.required {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  margin-left: 10px;
  background: #F07A5F;
  padding: 2px 3px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  @media screen and (max-width:768px) {
    top: 0px;
  }
}
.required-non {
  background: #707070;
}
.btn-submit {
  background-color: #4e4e4e;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  line-height: 1.4;
  padding: 15px 30px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}
.form_privacy_text {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin: 20px 0 30px;
}
.form_privacy_text a {
  text-decoration: underline;
}
.form_privacy_text a:hover {
  opacity: 0.8;
}

@media screen and (max-width:768px) {
  .p-contact__form {
    padding: 0 20px;
  }
}

/* MVフォーム */
.mv_form .p-contact__form_item dt,
.mv_form .p-contact__form_item dd {
  font-size: 13px;
}
.mv_form .p-contact__form .form-group {
  margin-bottom: 5px;
}
.mv_form .p-contact__form .form_privacy_text {
  font-size: 14px;
  margin: 15px 0;
}
@media screen and (min-width:769px) {
  .mv_form .p-contact__form_item {
    justify-content: space-between;
  }
  .mv_form .p-contact__form_item dt {
    width: 134px;
  }
  .mv_form .p-contact__form_item dd {
    width: 246px;
  }
}

/* MVフォーム（展開型） */
.mv_form_rich .p-contact__form_item {
  counter-increment: number;
  position: relative;
  background-color: #ffe8e1;
  border-radius: 10px;
  padding: 10px 20px 10px 30px;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.mv_form_rich .p-contact__form_item dt {
  content: counter(number);
  background-color: #ea5414;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #fff;
  font-weight: 700;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  z-index: 10;
  width: auto;
}
.mv_form_rich .p-contact__form_item dt::before {
  content: counter(number);
  font-size: 13px;
}
.mv_form_rich .p-contact__form_item dt label {
  display: none;
}
.mv_form_rich .p-contact__form_item dd {

}
.radio-inline {
  display: flex;
}
.radio-inline label:not(:last-child) {
  margin-right: 10px;
}
.mv_form_rich .form_privacy_text {
  font-size: 13px;
  font-weight: 700;
  margin: 15px 0 15px;
}
.mv_form_rich .hide {
  display: none;
}
@media screen and (min-width:769px) {
  .mv_form_rich .p-contact__form_item dd {
    padding-bottom: 0;
    width: 330px;
  }
}
@media screen and (max-width:768px) {
  .mv_form_rich .p-contact__form_item dd {
    padding-bottom: 0;
  }
}

/* 固定フォーム */
@media screen and (min-width:769px) {
  .mv_form_fixed {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 999;
  }
  .mv_form_fixed_body {
    width: calc(100% - 400px);
  }
  .mv_form_fixed_body .lpb4_mv {
    width: auto;
  }
  .mv_form_fixed_body .header {
    width: calc(100% - 400px);
  }
  .mv_form_fixed_body .sec01_movie_about {
    width: auto;
  }
  .mv_form_fixed_body .sec05_inner {
    padding: 0 1rem 0 30px;
  }
}

/* Tel */
.header_tel {
  background: #fff url(../../images/lpB/icon_tel.png) left 10px center / auto 80% no-repeat;
  border: 3px solid #EA5414;
  padding: 1px 20px 1px 3.6vw;
  padding: 1px 20px 1px 50px;
  /* font-size: 0.20rem; */
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  color: #EA5414;
  border-radius: 10px;
  margin-top: 2px;
  margin-bottom: 2px;
  text-align: center;
}
@media screen and (min-width:1400px) {
  .header_tel {
    padding: 1px 20px 1px 3.6vw;
  }
}
.header_tel .tel_hour {
  margin-top: 0px;
}
.header_tel .tel_hour dt {
  font-size: 10px;
  padding: 2px 5px;
  border-color: #666;
  color: #444;
}
.header_tel .tel_hour dd {
  font-size: 11px;
  color: #444;
}
.fv_tel {
  background: #fff url(../../images/lpB/icon_tel.png) left 30px center no-repeat;
  border: 3px solid #EA5414;
  padding: 10px 50px 10px 80px;
  font-size: 0.26rem;
  line-height: 1.0;
  font-weight: bold;
  color: #EA5414;
  border-radius: 50px;
  height: 0.80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* display: block;
  text-align: center; */
}
.cta_tel {
  background: #fff url(../../images/lpB/icon_tel.png) left 30px center no-repeat;
  border: 3px solid #EA5414;
  padding: 10px 50px 10px 80px;
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
  color: #EA5414;
  border-radius: 50px;
  height: 0.80rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tel_hour {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.tel_hour dt {
  display: inline-block;
  border: 1px solid #333333;
  border-radius: 1em;
  padding: 5px 10px;
  margin-right: 5px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.tel_hour dd {
  font-size: 16px;
}
.section_cta .tel_hour {
  color: #fff;
}
.section_cta .tel_hour dt {
  border-color: #eee;
}
.fv_tel .tel_hour {
  margin-top: 0.05rem;
  color: #222;
}
.fv_tel .tel_hour dt {
  font-size: 0.12rem;
  padding: 0.04rem 0.1rem;
}
.fv_tel .tel_hour dd {
  font-size: 0.15rem;
}
@media screen and (max-width:999px) {
  .header_tel {
    /* display: none; */
    padding: 1px 10px 1px 30px;
    font-size: 12px;
    margin: 0;
  }
  .header_tel .tel_no {
    display: none;
  }
  .fv_cta {
    display: flex;
  }
  .fv_tel {
    font-size: 0.32rem;
    padding: 5px 20px 5px 40px;
    background-size: 20px auto;
    height: 0.85rem;
  }
  .fv_tel_area {
    position: absolute;
    top: 6.12rem;
    left: 1.2rem;
    right: 1.2rem;
  }
  .fv_cta .fv_btn01 {
    top: 5.05rem;
  }
  .section_cta {
    text-align: center;
  }
  .section_cta .cta_btn01 {
    margin: 0 auto;
  }
  .section_cta > a:not(:last-child) {
    margin-bottom: 10px;
  }
  .cta_tel {
    font-size: 20px;
    padding: 10px 20px 10px 40px;
    background-size: 20px auto;
    width: 5.18rem;
    margin: 0 auto;
  }
  .fv_tel_area .tel_hour {
    margin-top: 1px;
  }
  .fv_tel_area dt {
    font-size: 10px;
    padding: 2px 5px;
  }
  .fv_tel_area .tel_hour dd {
    font-size: 11px;
  }
  .fv_cta4 .lpb4_mv_btn {
    top: 5.20rem;
  }
  .fv_tel_area {
    top: 6.30rem;
  }
}
@media screen and (min-width:1000px) {
  .header {
    min-height: 55px;
  }
  .fv_tel_area {
    position: absolute;
    top: 5.20rem;
    left: 6rem;
  }
  .section_cta {
    display: flex;
    justify-content: center;
  }
  .section_cta > a:not(:last-child) {
    margin-right: 20px;
  }
}

/* LP202407 */
.fv_btn_bubble_item {
  position: absolute;
  top: -35px;
  left: 50%;
  background-color: #fff;
  width: 300px;
  margin-left: -150px;
  text-align: center;
  color: #EA5414;
  font-size: 20px;
  padding: 10px;
  border: 1px solid #FED001;
  border-radius: 30px;
}
.fv_btn_bubble_item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  width: 20px;
  height: 10px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (max-width:768px) {
  .fv_btn_bubble_item {
    font-size: 13px;
    top: -25px;
    width: 180px;
    margin-left: -90px;
    padding: 5px;
  }
}

/* lpb5 */
.industry_menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
.industry_contaier {
  display: none;
}
.industry_contaier.active {
  display: block;
}
.industry_menu li {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  background-color: #fff;
  border: 1px solid #27316C;
  border-radius: 30px;
  padding: 10px 15px;
  margin: 10px 10px;
  cursor: pointer;
}
.industry_menu li.active {
  background-color: #27316C;
  color: #fff;
}
.industry_menu li:hover {
  background-color: #27316C;
  color: #fff;
  opacity: 0.8;
}
.problem_list {
  display: inline-block;
  background-color: #fff;
  text-align: left;
  padding: 30px 30px;
  margin: 50px 0;
}
.problem_list li {
  font-size: 26px;
  line-height: 1.4;
  background: url(../../images/lpB/ico_check.png) left center / 40px auto no-repeat;
  padding-left: 50px;
}
.problem_list li:not(:last-child) {
  margin-bottom: 20px;
}
.industry_endtext {
  font-size: 30px;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: url(../../images/lpB/cta_bg01.png) no-repeat center center;
  padding: 30px 20px;
  background-size: 100% 100%;
  margin-bottom: 50px;
}
.industry_list {
  display: inline-block;
  background-color: #fff;
  text-align: left;
  padding: 30px 30px;
  margin: 50px 0;
}
.industry_list li {
  font-size: 26px;
  line-height: 1.4;
  background: url(../../images/lpB/ico_ok.png) left center / auto 30px no-repeat;
  padding-left: 50px;
}
.industry_list li:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width:769px) {
  .industry_menu {
    max-width: 1200px;
  }
  .industry_contaier {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (max-width:768px) {
  .industry_menu li {
    font-size: 3.6vw;
    padding: 5px 10px;
    margin: 5px;
  }
  .problem_list li,
  .industry_list li {
    font-size: 4.0vw;
    background-size: auto 7.0vw;
    min-height: 7.0vw;
  }
  .industry_endtext {
    font-size: 6.0vw;
  }
  .industry_case_body {
    padding: 20px 20px 0;
  }
}

.industry_case_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  background-color: #fff;
  border-radius: 20px;
  padding: 10px 20px;
  margin-bottom: 20px;
}
.industry_case_ttl dt {
  display: inline-block;
  font-size: 14px;
  line-height: 1.4;
  color: #fff;
  padding: 2px 10px;
  background-color: #3D495E;
}
.industry_case_ttl .acqisition dt {
  background-color: #F07A5F;
}
.industry_case_text {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width:769px) {
  .industry_case_wrap {
    max-width: 1000px;
    margin: 0 auto;
  }
  .industry_case {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
  .industry_case_img {
    width: 400px;
  }
  .industry_case_body {
    width: 550px;
  }
  .industry_case_text {
    padding: 0 20px;
  }
}

/* スマホのみ */
@media screen and (min-width:769px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .pc-only {
    display: none;
  }
}
