@charset "UTF-8";

html,
body,
div,
iframe,
h2,
p,
img,
ul,
li,
header,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  word-break: break-all;
}

body {
  -webkit-text-size-adjust: 100%;
}

main,
header,
section {
  display: block;
}

h2 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

ul[class] {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
  min-width: 320px;
  min-height: 100vh;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: #333;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: .06em;
}

::-moz-selection {
  background: #21A4E2;
  color: #fff;
}

::selection {
  background: #21A4E2;
  color: #fff;
}

::-moz-selection {
  background: #21A4E2;
  color: #fff;
}

.l-wrapper {
  position: relative;
}

.u-media-query {
  display: none;
  font-family: 'sp';
}

@media all and (min-width: 768px) {
  .u-media-query {
    font-family: 'tb';
  }
}

@media all and (min-width: 1120px) {
  .u-media-query {
    font-family: 'pc';
  }
}

.u-inner02 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 25px;
  padding-right: 25px;
}

@media all and (min-width: 768px) {
  .u-inner02 {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    -webkit-transition: max-width 0.3s ease;
    transition: max-width 0.3s ease;
  }
}

@media all and (min-width: 768px) and (max-width: 1440px) {
  .u-inner02 {
    max-width: 1080px;
    padding-left: 0;
    padding-right: 0;
  }
}

.u-font-en {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.c-head01 {
  margin-bottom: 40px;
}

.c-head01__en {
  font-size: 4rem;
}

.c-head01__ja {
  margin-top: 2px;
  font-size: 1.5rem;
  font-weight: 400;
}

@media all and (min-width: 768px) {
  .c-head01__en {
    font-size: 9rem;
  }

  .c-head01__ja {
    font-size: 2rem;
  }
}

.l-nav-entry-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1000;
}

@media all and (min-width: 768px) {
  .l-nav-entry-overlay {
    display: none !important;
  }
}

.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
}

.js-c-anime-elem[data-anime="fadein-up"] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.js-c-anime-elem[data-anime="fadein-up"].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media all and (min-width: 768px) {
  .js-c-anime-elem[data-anime="fadein-up"] {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.home-loading {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.home-loading-ico {
  position: absolute;
  top: 50vh;
  left: 50vw;
  width: 250px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  margin-top: -15px;
}

.home-loading-ico__wrap {
  opacity: 0;
}

.home-loading-ico__logo {
  width: 190px;
  margin: auto;
}

.home-loading-ico__bar {
  position: relative;
  margin-top: 25px;
  width: 100%;
  height: 5px;
  background: #F0F3F5;
  border-radius: 3px;
  overflow: hidden;
}

.home-loading-ico__bar::before {
  position: absolute;
  content: '';
  display: block;
  top: -3%;
  left: -3%;
  width: 0;
  height: 106%;
  background: #21A4E2;
  -webkit-transition: width 2.1s cubic-bezier(1, 0, 1, 1);
  transition: width 2.1s cubic-bezier(1, 0, 1, 1);
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.home-loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.home-loading.is-active .home-loading-ico__bar::before {
  width: 106%;
}

.home-loading.is-unvisited {
  -webkit-transition: opacity 1.2s cubic-bezier(0.6, 0.14, 0.15, 0.9) 4.5s, visibility 1.2s cubic-bezier(0.6, 0.14, 0.15, 0.9) 4.5s;
  transition: opacity 1.2s cubic-bezier(0.6, 0.14, 0.15, 0.9) 4.5s, visibility 1.2s cubic-bezier(0.6, 0.14, 0.15, 0.9) 4.5s;
}

.home-loading.is-unvisited .home-loading-ico__wrap {
  -webkit-animation: fadeIn .3s linear 0s forwards;
  animation: fadeIn .3s linear 0s forwards;
}

.home-loading.is-unvisited .home-loading-ico {
  opacity: 0;
  -webkit-transition: opacity 0.6s cubic-bezier(0.6, 0.14, 0.15, 0.9) 3.6s;
  transition: opacity 0.6s cubic-bezier(0.6, 0.14, 0.15, 0.9) 3.6s;
}

@media all and (min-width: 768px) {
  .home-loading-ico {
    width: 420px;
  }

  .home-loading-ico__logo {
    width: 352px;
  }

  .home-loading-ico__bar {
    margin-top: 50px;
  }
}

/* .home-intro
================================================== */
.home-intro__inner {
  padding-bottom: 60px;
}

.home-intro-set {
  display: block;
  position: relative;
  margin-top: 40px;
}

.home-intro-set:nth-of-type(1) {
  z-index: 2;
}

.home-intro-set:nth-of-type(2) {
  z-index: 1;
}

.home-intro-set:nth-of-type(3) {
  z-index: 0;
}

.home-intro-set__link {
  display: block;
}

.home-intro-set__area-txt {
  position: relative;
  margin-top: 20px;
}

.home-intro-set__num {
  position: absolute;
  display: inline-block;
  top: -75px;
  right: 5px;
  color: #24b478;
  font-size: 8rem;
}

.home-intro-set__head {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.home-intro-set__bg {
  position: absolute;
  z-index: -5;
  background: #E9F4F0;
}

.home-intro-set:nth-of-type(odd) .home-intro-set__bg {
  top: -30px;
  right: -25px;
  width: 180px;
  height: 154px;
  border-top-left-radius: 20px;
}

.home-intro-set:nth-of-type(even) .home-intro-set__bg {
  top: -20px;
  left: -25px;
  width: 150px;
  height: 120px;
  border-top-right-radius: 20px;
}

@media all and (min-width: 768px) {
  .home-intro__inner {
    padding-bottom: 100px;
  }

  .home-intro-set {
    margin-top: 60px;
  }

  .home-intro-set+.home-intro-set {
    margin-top: 70px;
  }

  .home-intro-set__link {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
  }

  .home-intro-set:nth-of-type(odd) .home-intro-set__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .home-intro-set:nth-of-type(even) .home-intro-set__area-txt {
    -ms-flex-preferred-size: 370px;
    flex-basis: 500px;
  }

  .home-intro-set__area-txt {
    margin-top: 5px;
    -ms-flex-preferred-size: 390px;
    flex-basis: 488px;
  }

  .home-intro-set__num {
    position: static;
    font-size: 8rem !important;
  }

  .home-intro-set__head {
    margin-top: 15px;
    font-size: 2.2rem;
  }

  .home-intro-set__bg {
    border-radius: 20px;
  }

  .home-intro-set:nth-of-type(1) .home-intro-set__bg {
    right: -145px;
    width: 420px;
    height: 400px;
  }

  .home-intro-set:nth-of-type(2) .home-intro-set__bg {
    top: -63px;
    left: -93px;
    width: 380px;
    height: 273px;
  }

  .home-intro-set:nth-of-type(3) .home-intro-set__bg {
    top: 20px;
    left: 90%;
    width: 350px;
    height: 311px;
    -webkit-transform: translateX(-250px);
    transform: translateX(-250px);
  }
}

@media (min-width: 768px) {
  .home-intro-set__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: space-evenly;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-btn01__wrap img {
  width: 70%;
}

p.has-text-align-center.is-style-webfont1.has-text-color.has-normal-font-size {
  padding-bottom: 12px;
}

.has-inline-color {
  font-size: 22px;
}
















.features-ttl {
  font-size: 2.2rem;
}

.entry-content li,
.comment-content li,
.mu_register li {
  margin: 0;
  margin: 0;
}

.question-frame {
  padding-top: 50px;
}

.wp-block-button.has-custom-width.wp-block-button__width-50.colorful-btn-small.is-style-outline.is-style-outline--1 {
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  gap: 10px;
}

._microcopy_1lmqm_33 {
  position: relative;
  padding: 0 .5em;
  margin-bottom: 0px;
  font-size: 25px;
  font-weight: 500;
  color: #ea8f14;
  line-height: normal;
}

._microcopy_1lmqm_33:before {
  left: 100%;
  transform: rotate(-45deg);
  transform-origin: bottom left;
}

._microcopy_1lmqm_33:before,
._microcopy_1lmqm_33:after {
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 32px;
  content: "";
  border-bottom: 2px solid #ea8f14;
}

._microcopy_1lmqm_33:after {
  right: 100%;
  transform: rotate(45deg);
  transform-origin: bottom right;
}

.cta-subttl {
  font-size: 22px;
}






















/*
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)
*/
/*
Theme Name: 20career
Version: 1.0.0
*/
*,
::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.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

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

/*
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.
*/

/*
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.
*/

/*
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 {
  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,
select {
  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.
*/
:-moz-focusring {
  outline: auto;
}

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

/*
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.
*/
p {
  margin: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

/*
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 {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input:-ms-input-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.
*/
:disabled {
  cursor: default;
}

/*
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.
*/
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)
*/

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

*,
::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: ;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.right-0 {
  right: 0px;
}

.left-0 {
  left: 0px;
}

.top-\[calc\(50\%_-_0\.04rem\)\] {
  top: calc(50% - 0.04rem);
}

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

.m-auto {
  margin: auto;
}

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

.mb-o-16 {
  margin-bottom: 22px;
}

.mb-o-88 {
  margin-bottom: 0.88rem;
}

.mb-o-48 {
  margin-bottom: 3.5rem;
  margin-top: 2.48rem;
}

.mb-o-40 {
  margin-bottom: 4.5rem;
  margin-top: 22px;
}

.mb-o-60 {
  margin-bottom: 0.60rem;
}

.mb-o-24 {
  margin-bottom: 0.24rem;
}

.mb-o-4 {
  margin-bottom: 0.04rem;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.h-o-40 {
  height: 3.4rem;
}

.h-o-4 {
  height: 0.20rem;
}

.w-full {
  width: 100%;
}

.w-o-614 {
  width: 100%;
}


.w-o-320 {
  width: 43.1rem;
}

.w-o-40 {
  width: 3.4rem;
}

.w-o-608 {
  width: 60.08rem;
}

.w-o-290 {
  width: 29.5rem;
}

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

.w-o-400 {
  width: 100%;
}

.origin-left {
  transform-origin: left;
}

.origin-center {
  transform-origin: center;
}

.translate-x-\[100\%\] {
  --tw-translate-x: 100%;
  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-\[0\.8\] {
  --tw-scale-x: 0.8;
  --tw-scale-y: 0.8;
  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-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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;
}

.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.place-items-center {
  place-items: center;
}

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

.gap-o-32 {
  gap: 3.32rem;
}

.gap-o-24 {
  gap: 1.24rem;
}

.gap-o-4 {
  gap: 0.04rem;
}

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.rounded-\[0\.12rem\] {
  border-radius: 12.12rem;
}

.rounded-\[0\.18rem\] {
  border-radius: 0rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-\[0\.08rem\] {
  border-radius: 0.08rem;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc !important;
  margin-right: 11px !important;
  padding: 15px !important;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s;
  -moz-transition: border linear .2s, box-shadow linear .2s;
  -o-transition: border linear .2s, box-shadow linear .2s;
  transition: border linear .2s, box-shadow linear .2s;
  width: 350px;
}

.colorful-formbox input[type^="text"] {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 55px;
  padding: 0 calc(55px * 0.35);
  background-color: #fff;
  box-shadow: none;
  font-size: 17px;
  transition: all;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  outline: 0;
  line-height: normal;
}

.border-\[0\.04rem\] {
  border-width: 4.04rem;
}

.border-\[0\.06rem\] {
  border-width: 0.06rem;
}

.border-\[\#659ed8\] {
  --tw-border-opacity: 1;
  border-color: #24b478;
}

.border-neutral-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-\[\#cfd3d7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(207 211 215 / var(--tw-bg-opacity));
}

.bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-\[\#ea8f14\] {
  --tw-bg-opacity: 1;
  background-color: #ea8f14;
}

.py-o-28 {
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}

.py-o-12 {
  padding-top: 1.12rem;
  padding-bottom: 1.12rem;
}

.px-o-16 {
  padding-left: 1.16rem;
  padding-right: 1.16rem;
}

.py-o-4 {
  padding-top: 1.04rem;
  padding-bottom: 1.04rem;
}

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

.py-o-16 {
  padding-top: 0.16rem;
  padding-bottom: 0.16rem;
}

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

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

.text-md {
  font-size: 13.02083vw;
}

.text-\[16px\] {
  font-size: 16px;
}

.text-20 {
  font-size: 1.8rem;
}

.text-28 {
  font-size: 2.7rem;
  color: #000;
}

.text-22 {
  font-size: 2.22rem;
  color: #000;
}

.text-24 {
  font-size: 2rem;
  color: #9ca3af;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.text-\[\#659ed8\] {
  --tw-text-opacity: 1;
  color: #24b478;
  border: 2px solid #24b478;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-\[\#cfd3d7\] {
  --tw-text-opacity: 1;
  color: rgb(207 211 215 / var(--tw-text-opacity));
}

.text-\[\#ea8f14\] {
  --tw-text-opacity: 1;
  color: #ea8f14;
}

.text-\[\#a7a9ab\] {
  --tw-text-opacity: 1;
  margin-top: 35px;
}

.text-\[\#a7a9ab2\] {
  --tw-text-opacity: 1;
  color: rgb(51 51 51);
  margin-top: 10px;
}

.opacity-0 {
  opacity: 0;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-150 {
  transition-duration: 150ms;
  margin-bottom: 20px;
}

html {
  /* ベースフォント */
  font-family: "Noto Sans JP", sans-serif;
  color: #343b42;
  scroll-behavior: smooth;
}

::-moz-placeholder {
  color: #757575;
}

:-ms-input-placeholder {
  color: #757575;
}

.form_shadow {
  box-shadow: 0 0 16px rgb(104, 122, 135, 0.2);
  border: 4px solid #24b478;
}

.num_active {
  background: #BE1D1D;
}

.form_active {
  opacity: 100;
  transform: translate(0%, 0%);
  pointer-events: auto;
}

.text_active {
  color: #BE1D1D;
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:right-o-8::before {
  content: var(--tw-content);
  right: 1.1rem;
}

.before\:top-o-12::before {
  content: var(--tw-content);
  top: 1.3rem;
}

.before\:text-20::before {
  content: var(--tw-content);
  font-size: 1.6rem;
}

.before\:text-\[\#cfd3d7\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(207 211 215 / var(--tw-text-opacity));
}

.hover\:bg-\[\#659ed8\]:hover {
  --tw-bg-opacity: 1;
  background-color: #24b478;
}

.hover\:bg-\[\#ef371e\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 55 30 / var(--tw-bg-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.peer:checked~.peer-checked\:text-white {
  --tw-text-opacity: 1;
}

@media (min-width: 768px) {

  .md\:hidden {
    display: none;
  }

  .md\:w-o-950 {
    width: 9.50rem;
  }

  .md\:border-\[0\.04rem\] {
    border-width: 0.04rem;
  }

  .md\:pt-o-92 {
    padding-top: 0.92rem;
  }

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


@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}









.colorful-formbox .wp-block-cover {
  border-radius: 0px;
  box-shadow: none;
  padding: 20px;
}

.colorful-formbox .wp-block-cover {
  border-radius: 0px;
  box-shadow: none;
}

.wp-block-cover,
.wp-block-cover-image {
  padding: 0px;
}

.section-ttl {
  padding: 20px 0;
}

.features-bg {
  background-color: #fff;
}


/* 外枠も制御 */
.page_height01 {
  height: 20.7rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.page_height02 {
  height: 40.8rem;
}

.page_height03 {
  height: 42.7rem;
}

.colorful-formbox input[type^="text"] {
  margin: 0px 11px 0px 0px !important;
}

.page_height04 {
  height: 28.6rem;
}

.page_height05 {
  height: 35.1rem;
}

.page_height06 {
  height: 32.6rem;
}

.page_height07 {
  height: 101.3rem;
}

button:hover,
a.btn-custom:hover,
p.btn-custom:hover,
a.btn-custom-sma:hover,
p.btn-custom-sma:hover,
a.btn-blue:hover,
p.btn-blue:hover,
a.btn-blue-sma:hover,
p.btn-blue-sma:hover,
a.btn-red:hover,
p.btn-red:hover,
a.btn-red-sma:hover,
p.btn-red-sma:hover,
a.btn-green:hover,
p.btn-green:hover,
a.btn-green-sma:hover,
p.btn-green-sma:hover,
a.btn-purple:hover,
p.btn-purple:hover,
a.btn-purple-sma:hover,
p.btn-purple-sma:hover,
a.btn-gray:hover,
p.btn-gray:hover,
a.btn-gray-sma:hover,
p.btn-gray-sma:hover,
a.btn-custom-3d:hover,
p.btn-custom-3d:hover,
a.btn-custom-3d-sma:hover,
p.btn-custom-3d-sma:hover,
a.btn-blue-3d:hover,
p.btn-blue-3d:hover,
a.btn-blue-3d-sma:hover,
p.btn-blue-3d-sma:hover,
a.btn-red-3d:hover,
p.btn-red-3d:hover,
a.btn-red-3d-sma:hover,
p.btn-red-3d-sma:hover,
a.btn-green-3d:hover,
p.btn-green-3d:hover,
a.btn-green-3d-sma:hover,
p.btn-green-3d-sma:hover,
a.btn-purple-3d:hover,
p.btn-purple-3d:hover,
a.btn-purple-3d-sma:hover,
p.btn-purple-3d-sma:hover,
a.btn-gray-3d:hover,
p.btn-gray-3d:hover,
a.btn-gray-3d-sma:hover,
p.btn-gray-3d-sma:hover {
  opacity: 0.5;
  filter: alpha(opacity=60);
  -ms-filter: "alpha( opacity=60 )";
  color: rgb(51 51 51);
}

button#send01 {
  font-size: 29px;
  padding: 10px 7px 15px;
  -webkit-box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2), 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2), 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.18);
  opacity: initial;
}

button#send01:hover {
  color: #fff !important;
  margin-top: 2px;
  padding: 9px 7px 14px;
  -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2), 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2), 1px 0 1px rgba(0, 0, 0, 0.1), -1px 0 1px rgba(0, 0, 0, 0.1), 0 1px 1px rgba(0, 0, 0, 0.3), 0 3px 4px rgba(0, 0, 0, 0.2);
}





.colorful-frame2-kai {
  align-items: center;
  background-position: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  min-height: 430px;
  overflow: hidden;
  overflow: clip;
  padding: 0.3em !important;
  position: relative;
}

@media screen and (max-width: 768px) {
  .wp-block-cover.alignfull.has-parallax.is-repeated.is-light.is-position-center-center {
    padding: 0 35px;
  }

  .wp-block-group.is-layout-flow.wp-block-group-is-layout-flow {
    padding: 0px;
  }

  .home-intro-set__num {
    font-size: 8rem !important;
  }

  p.has-text-align-center.is-style-webfont1.has-text-color.has-normal-font-size {
    padding-bottom: 12px;
    margin: 0 30px;
  }

  .wp-block-image {
    margin: 0px 12px 0em;
  }

  .wp-block-buttons>.wp-block-button.wp-block-button__width-50 {
    width: 80%;
  }

  ._microcopy_1lmqm_33 {
    position: relative;
    padding: 0 .5em;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 500;
    color: #ea8f14;
    line-height: normal;
  }

  ._microcopy_1lmqm_33:before,
  ._microcopy_1lmqm_33:after {
    position: absolute;
    bottom: 0;
    width: 24px;
    height: 24px;
    content: "";
    border-bottom: 2px solid #ea8f14;
  }

  figure.wp-block-image.aligncenter.size-full.is-resized {
    margin: 0 auto !important;
  }

  .form_shadow {
    box-shadow: 0 0 16px rgb(104, 122, 135, 0.2);
    border: 4px solid #24b478;
    margin: 0 10px !important;
  }
}

















/*
! 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)
*/

/*
Theme Name: 20career
Version: 1.0.0
*/

*,
::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.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

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

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  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.
*/

b,
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.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

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

small {
  font-size: 80%;
}

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

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
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,
optgroup,
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,
select {
  text-transform: none;
}

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

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

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

:-moz-focusring {
  outline: auto;
}

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

:-moz-ui-invalid {
  box-shadow: none;
}

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

progress {
  vertical-align: baseline;
}

/*
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.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
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.
*/

summary {
  display: list-item;
}

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

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  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,
[role="button"] {
  cursor: pointer;
}

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

:disabled {
  cursor: default;
}

/*
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,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  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: ;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.static {
  position: static;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}


.bottom-0 {
  bottom: 0px;
}

.right-auto {
  right: auto;
}



.m-auto {
  margin: auto;
}

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




.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}



.origin-left {
  transform-origin: left;
}

.origin-center {
  transform-origin: center;
}

.translate-x-\[100\%\] {
  --tw-translate-x: 100%;
  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-\[0\.8\] {
  --tw-scale-x: 0.8;
  --tw-scale-y: 0.8;
  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-\[0\.6\] {
  --tw-scale-x: 0.6;
  --tw-scale-y: 0.6;
  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-90 {
  --tw-scale-x: .9;
  --tw-scale-y: .9;
  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));
}

.transform {
  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;
}

.resize {
  resize: both;
}

.appearance-none {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.place-items-center {
  place-items: center;
}

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

.items-end {
  align-items: flex-end;
}

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

.justify-end {
  justify-content: flex-end;
}

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

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

.overflow-hidden {
  overflow: hidden;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.border-\[\#659ed8\] {
  --tw-border-opacity: 1;
  border-color: #24b478;
}

.border-\[\#cfd3d7\] {
  --tw-border-opacity: 1;
  border-color: rgb(207 211 215 / var(--tw-border-opacity));
}

.border-neutral-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity));
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-b-\[\#dddddd\] {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(221 221 221 / var(--tw-border-opacity));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-\[\#659ed8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(101 158 216 / var(--tw-bg-opacity));
}

.bg-\[\#cfd3d7\] {
  --tw-bg-opacity: 1;
  background-color: rgb(207 211 215 / var(--tw-bg-opacity));
}

.bg-neutral-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}

.bg-transparent {
  background-color: transparent;
}

.bg-\[\#ea8f14\] {
  --tw-bg-opacity: 1;
  background-color: #ea8f14;
}

.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 197 253 / var(--tw-bg-opacity));
}

.bg-\[\#343b42\] {
  --tw-bg-opacity: 1;
  background-color: rgb(52 59 66 / var(--tw-bg-opacity));
}

.bg-opacity-70 {
  --tw-bg-opacity: 0.7;
}

.bg-\[url\(\.\.\/images\/hold_bg\.jpg\)\] {
  background-image: url(../images/hold_bg.jpg);
}

.bg-cover {
  background-size: cover;
}

.object-contain {
  -o-object-fit: contain;
  object-fit: contain;
}


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

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

.font-BarlowCondensed {
  font-family: Barlow Condensed;
}


.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-black {
  font-weight: 900;
}

.leading-o-16 {
  line-height: 1.6;
}

.leading-none {
  line-height: 1;
}

.leading-o-14 {
  line-height: 1.4;
}

.leading-o-18 {
  line-height: 1.8;
}

.leading-o-17 {
  line-height: 1.7;
}

.tracking-\[0\.025em\] {
  letter-spacing: 0.025em;
}

.tracking-\[0\.05em\] {
  letter-spacing: 0.05em;
}

.tracking-o-30 {
  letter-spacing: 0.030em;
}

.text-\[\#659ed8\] {
  --tw-text-opacity: 1;
  color: #24b478;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-\[\#cfd3d7\] {
  --tw-text-opacity: 1;
  color: rgb(207 211 215 / var(--tw-text-opacity));
}

.text-\[\#a6a8aa\] {
  --tw-text-opacity: 1;
  color: rgb(166 168 170 / var(--tw-text-opacity));
}

.text-\[\#ea8f14\] {
  --tw-text-opacity: 1;
  color: #ea8f14;
}

.text-\[\#d4a9db\] {
  --tw-text-opacity: 1;
  color: rgb(212 169 219 / var(--tw-text-opacity));
}

.text-\[\#d4c7ea\] {
  --tw-text-opacity: 1;
  color: rgb(212 199 234 / var(--tw-text-opacity));
}

.text-\[\#d5d2eb\] {
  --tw-text-opacity: 1;
  color: rgb(213 210 235 / var(--tw-text-opacity));
}

.text-\[\#ffc0b4\] {
  --tw-text-opacity: 1;
  color: rgb(255 192 180 / var(--tw-text-opacity));
}

.text-\[\#ffead7\] {
  --tw-text-opacity: 1;
  color: rgb(255 234 215 / var(--tw-text-opacity));
}

.text-\[\#c092d0\] {
  --tw-text-opacity: 1;
  color: rgb(192 146 208 / var(--tw-text-opacity));
}

.text-\[\#aaaaaa\] {
  --tw-text-opacity: 1;
  color: rgb(170 170 170 / var(--tw-text-opacity));
}

.text-\[\#ffc1b4\] {
  --tw-text-opacity: 1;
  color: rgb(255 193 180 / var(--tw-text-opacity));
}

.text-\[\#f3d1d3\] {
  --tw-text-opacity: 1;
  color: rgb(243 209 211 / var(--tw-text-opacity));
}

.text-\[\#f3d1f3\] {
  --tw-text-opacity: 1;
  color: rgb(243 209 243 / var(--tw-text-opacity));
}

.text-\[\#e9d3ff\] {
  --tw-text-opacity: 1;
  color: rgb(233 211 255 / var(--tw-text-opacity));
}

.text-\[\#fbd4b1\] {
  --tw-text-opacity: 1;
  color: rgb(251 212 177 / var(--tw-text-opacity));
}

.text-\[\#fff0f1\] {
  --tw-text-opacity: 1;
  color: rgb(255 240 241 / var(--tw-text-opacity));
}

.text-\[\#fcd1e0\] {
  --tw-text-opacity: 1;
  color: rgb(252 209 224 / var(--tw-text-opacity));
}

.text-\[\#d793a6\] {
  --tw-text-opacity: 1;
  color: rgb(215 147 166 / var(--tw-text-opacity));
}

.text-\[\#8eb8e2\] {
  --tw-text-opacity: 1;
  color: rgb(142 184 226 / var(--tw-text-opacity));
}

.underline {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.underline-offset-4 {
  text-underline-offset: 4px;
}

.opacity-0 {
  opacity: 0;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.\[writing-mode\:vertical-rl\] {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

html {
  /* ベースフォント */
  font-family: "Noto Sans JP", sans-serif;
  color: #343b42;
  scroll-behavior: smooth;
}

::-moz-placeholder {
  color: #757575;
}

:-ms-input-placeholder {
  color: #757575;
}

::placeholder {
  color: #757575;
}

.cta_copy_shadow {
  box-shadow: 0 0 10px rgb(104, 122, 135, 0.28);
}

.form_shadow {
  box-shadow: 0 0 16px rgb(104, 122, 135, 0.2);
}

.num_active {
  background: #ea8f14;
}

.prev_active {
  opacity: 0;
  transform: translate(0%, 0%);
}

.form_active {
  opacity: 100;
  transform: translate(0%, 0%);
  pointer-events: auto;
}

.prevBtn_active {
  pointer-events: auto;
}

.text_active {
  color: #ea8f14;
}

.mainbg {
  background-color: hsla(53, 56%, 90%, 1);
  background-image: radial-gradient(at 98% 8%,
      hsla(1, 88%, 79%, 1) 0px,
      transparent 50%),
    radial-gradient(at 50% 47%, hsla(55, 73%, 89%, 1) 0px, transparent 50%),
    radial-gradient(at 8% 84%, hsla(197, 85%, 75%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 10%, hsla(268, 56%, 78%, 1) 0px, transparent 50%);
}

.ctaBg {
  background-color: hsla(195, 86%, 74%, 1);
  background-image: radial-gradient(at 57% 94%,
      hsla(212, 82%, 77%, 1) 0px,
      transparent 50%),
    radial-gradient(at 98% 8%, hsla(218, 76%, 83%, 1) 0px, transparent 50%),
    radial-gradient(at 8% 84%, hsla(197, 85%, 75%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 10%, hsla(268, 56%, 78%, 1) 0px, transparent 50%);
}

.btn_arrow {
  position: relative;
}

.btn_arrow::before {
  position: absolute;
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background-image: url(../images/actionIcon.png);
  background-size: contain;
  right: 0.16rem;
  transform: rotate(180deg);
  transition-duration: 0.3s;
}

.btn_arrow:hover::before {
  background-image: url(../images/actionIcon_hover.png);
}

.cta_btn_arrow {
  position: relative;
}

.cta_btn_arrow::before {
  content: "";
  position: absolute;
  background-image: url(../images/cta_btnarrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.12rem;
  height: 0.24rem;
  right: 0.36rem;
  top: calc(50% - 0.06rem);
}

.section-ttl h2 {
  font-size: 30px !important;
  background-color: #24b478;
}


@media screen and (min-width: 768px) {
  .cta_btn_arrow::before {
    width: 0.1rem;
    height: 0.2rem;
    top: calc(50% - 0.07rem);
    right: 0.3rem;
  }
}

.case_active {
  line-height: 1.6;
  opacity: 1;
  visibility: visible;
}

.btn_arrow_active.btn_arrow::before {
  transform: rotate(0deg);
}

@media screen and (min-width: 768px) {
  .btn_arrow::before {
    width: 0.21rem;
    height: 0.21rem;
  }
}

.slider_shadow {
  box-shadow: 0 0 12px rgb(104, 122, 135, 0.13);
}

.swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.16rem;
  margin-top: 0.56rem;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #659ed8;
  width: 1.31rem;
  height: 0.16rem;
  display: inline-block;
  border-radius: 100px;
}

.swiper-pagination-bullet {
  background-color: #ffffff;
  width: 1.31rem;
  height: 0.16rem;
  display: inline-block;
  border-radius: 100px;
  box-shadow: 0 0 12px rgb(104, 122, 135, 0.13);
}



@media screen and (min-width: 768px) {
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 0.655rem;
    height: 0.08rem;
  }

  .swiper-pagination-bullet {
    width: 0.655rem;
    height: 0.08rem;
  }
}

.btn_arrow_q {
  position: relative;
}

.btn_arrow_q::before {
  content: "";
  position: absolute;
  background-image: url(../images/actionIcon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.32rem;
  height: 0.32rem;
  right: 0.2rem;
  top: calc(50% - 0.16rem);
}

.btn_arrow_q_active.btn_arrow_q::before {
  transform: rotate(180deg);
}

.a_active {
  opacity: 1;
  visibility: visible;
}

.btn_arrow02 {
  position: relative;
}

.btn_arrow02::before {
  position: absolute;
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  background-image: url(../images/actionIcon.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition-duration: 0.3s;
  right: 0.4rem;
  top: calc(50% - 0.15rem);
}

.btn_arrow02:hover::before {
  background-image: url(../images/actionIcon_hover.png);
}

.voice-box-frame {
  background-color: #E9F4F0;
  padding: 7px;
}

.voice-box {
  background: #fff;
  padding: 20px 25px;
  margin-bottom: 30px;
}

.voice-box-last {
  background: #fff;
  padding: 20px 25px;
}

.voice-comment {
  font-size: 16px;
}

.voice-head {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.voice-head img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.voice-head h3 {
  font-size: 16px;
  font-weight: bold;
  color: #24b478;
  margin: 0;
}

.voice-job {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.label {
  font-size: 13px;
  font-weight: bold;
  border-radius: 5px;
  padding: 2px 7px;
  margin-right: 8px;
  display: inline-block;
}

.label.before {
  background: #ffffff;
  color: #000;
  border: 2px solid #24b478;
}

.label.after {
  background: #24b478;
  border: 2px solid #24b478;
  color: #fff;
}

.voice-section {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 3px;
  border: 10px solid #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.job-text {
  font-size: 17px;
}

.voice-head h3 {
  font-size: 18px;
}

.voice-comment {
  font-size: 16px;
  margin-top: 15px;
}

.voice-job-frame {
  background-color: #E9F4F0;
  padding: 10px 10px;
}

button,
input,
textarea {
  border: 1px solid rgb(51 51 51);
}

.text-\[\#a7a9ab\] {
  color: rgb(51 51 51);
}

@media screen and (min-width: 768px) {
  .btn_arrow02::before {
    width: 0.2rem;
    height: 0.2rem;
    top: calc(50% - 0.1rem);
    right: 0.24rem;
  }
}

.holdbtn_active {
  opacity: 1;
  pointer-events: auto;
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:text-\[\#cfd3d7\]::before {
  content: var(--tw-content);
  --tw-text-opacity: 1;
  color: rgb(207 211 215 / var(--tw-text-opacity));
}

.before\:content-\[\'\25BC\'\]::before {
  --tw-content: '▼';
  content: var(--tw-content);
}

.last\:mb-0:last-child {
  margin-bottom: 0px;
}

.hover\:bg-\[\#659ed8\]:hover {
  --tw-bg-opacity: 1;
  background-color: #24b478;
}

.hover\:bg-\[\#ef371e\]:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 55 30 / var(--tw-bg-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
}

.peer:checked~.peer-checked\:bg-\[\#659ed8\] {
  --tw-bg-opacity: 1;
  background-color: #24b478;
}

.peer:checked~.peer-checked\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

#send01:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.text-\[\#007a52\].underline {
  color: #333;
  padding-left: 8px;
}

.text-\[\#007a52\].underline:hover {
  opacity: 0.6;
}

@media (min-width: 769px) {
  .absolute {
    position: absolute !important;
  }
}

@media only screen and (max-width: 768px) {
  .absolute {
    position: relative !important;
  }

  .w-o-290 {
    width: auto;
  }

  .mb-o-48 {
    margin-bottom: 1.5rem;
    margin-top: 2.48rem;
  }
}

@media (min-width: 768px) {
  .md\:top-o-260 {
    top: 2.60rem;
  }

  .md\:top-o-416 {
    top: 4.16rem;
  }

  .md\:-bottom-o-108 {
    bottom: -1.08rem;
  }

  .md\:-left-o-18 {
    left: -0.18rem;
  }

  .md\:-right-o-41 {
    right: -0.41rem;
  }

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

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

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

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

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

  .md\:-right-o-16 {
    right: -0.16rem;
  }

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

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

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

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

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

  .md\:mr-auto {
    margin-right: auto;
  }

  .md\:mb-o-8 {
    margin-bottom: 0.08rem;
  }

  .md\:mb-o-64 {
    margin-bottom: 0.64rem;
  }

  .md\:mb-o-24 {
    margin-bottom: 0.24rem;
  }

  .md\:ml-auto {
    margin-left: auto;
  }

  .md\:ml-o-12 {
    margin-left: 0.12rem;
  }

  .py-o-12 {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .section-ttl h2 {
    font-size: 24px !important;
    padding: 10px 0;
  }

  .md\:mb-o-12 {
    margin-bottom: 0.12rem;
  }

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

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

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

  .md\:block {
    display: block;
  }

  .md\:inline-block {
    display: inline-block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-o-729 {
    height: 7.29rem;
  }

  .md\:h-o-240 {
    height: 2.40rem;
  }

  .md\:h-o-700 {
    height: 7rem;
  }

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

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

  .md\:w-o-1017 {
    width: 10.17rem;
  }

  .md\:w-o-950 {
    width: 9.50rem;
  }

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

  .md\:w-o-727 {
    width: 7.27rem;
  }

  .md\:w-o-820 {
    width: 8.20rem;
  }

  .md\:w-o-303 {
    width: 3.03rem;
  }

  .md\:w-o-328 {
    width: 3.28rem;
  }

  .md\:w-o-480 {
    width: 4.80rem;
  }

  .md\:w-initial {
    width: initial;
  }

  .md\:w-o-270 {
    width: 2.70rem;
  }

  .md\:w-o-620 {
    width: 6.20rem;
  }

  .md\:w-o-1160 {
    width: 11.60rem;
  }

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

  .md\:w-o-360 {
    width: 3.60rem;
  }

  .md\:w-o-880 {
    width: 8.80rem;
  }

  .md\:w-o-357 {
    width: 3.57rem;
  }

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

  .md\:w-o-280 {
    width: 2.80rem;
  }

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

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

  .md\:w-o-400 {
    width: 4rem;
  }

  .md\:w-o-524 {
    width: 5.24rem;
  }

  .md\:w-o-1002 {
    width: 10.02rem;
  }

  .md\:w-o-554 {
    width: 5.54rem;
  }

  .md\:w-full {
    width: 100%;
  }

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

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

  .md\:w-o-340 {
    width: 3.40rem;
  }

  .md\:w-o-148 {
    width: 1.48rem;
  }

  .md\:w-o-260 {
    width: 2.60rem;
  }

  .md\:w-o-240 {
    width: 2.40rem;
  }

  .md\:w-o-454 {
    width: 4.54rem;
  }

  .md\:w-o-1050 {
    width: 10.50rem;
  }

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

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

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

  .md\:justify-start {
    justify-content: flex-start;
  }

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

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

  .md\:gap-o-12 {
    gap: 0.12rem;
  }

  .md\:gap-o-32 {
    gap: 0.32rem;
  }

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

  .md\:rounded-\[0\.16rem\] {
    border-radius: 0.16rem;
  }

  .md\:rounded-\[0\.08rem\] {
    border-radius: 0.08rem;
  }

  .md\:rounded-\[0\.12rem\] {
    border-radius: 0.12rem;
  }

  .md\:rounded-r-o-40 {
    border-top-right-radius: 0.40rem;
    border-bottom-right-radius: 0.40rem;
  }

  .md\:rounded-l-o-40 {
    border-top-left-radius: 0.40rem;
    border-bottom-left-radius: 0.40rem;
  }

  .md\:border-\[0\.04rem\] {
    border-width: 0.04rem;
  }

  .md\:border-\[0\.03rem\] {
    border-width: 0.03rem;
  }

  .md\:bg-\[url\(\.\.\/images\/hold_bg_pc\.jpg\)\] {
    background-image: url(../images/hold_bg_pc.jpg);
  }

  .md\:px-o-320 {
    padding-left: 3.20rem;
    padding-right: 3.20rem;
  }

  .md\:py-o-12 {
    padding-top: 0.12rem;
    padding-bottom: 0.12rem;
  }

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

  .md\:py-o-16 {
    padding-top: 0.16rem;
    padding-bottom: 0.16rem;
  }

  .md\:px-o-52 {
    padding-left: 0.52rem;
    padding-right: 0.52rem;
  }

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

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

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

  .md\:pt-o-92 {
    padding-top: 0.92rem;
  }

  .md\:pt-o-88 {
    padding-top: 0.88rem;
  }

  .md\:pl-o-80 {
    padding-left: 0.80rem;
  }

  .md\:pl-o-8 {
    padding-left: 0.08rem;
  }

  .md\:text-right {
    text-align: right;
  }

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

  .md\:text-24 {
    font-size: 0.24rem;
  }

  .md\:text-26 {
    font-size: 0.26rem;
  }

  .md\:text-\[2\.4rem\] {
    font-size: 2.4rem;
  }

  .md\:text-32 {
    font-size: 0.32rem;
  }

  .md\:text-100 {
    font-size: 1rem;
  }

  .md\:text-36 {
    font-size: 0.36rem;
  }

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

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

  .md\:text-\[2\.40rem\] {
    font-size: 2.40rem;
  }

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

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

  .md\:text-\[2rem\] {
    font-size: 2rem;
  }

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

  .md\:text-42 {
    font-size: 0.42rem;
  }

  .md\:text-46 {
    font-size: 0.46rem;
  }

  .md\:text-12 {
    font-size: 0.12rem;
  }

  .md\:leading-o-20 {
    line-height: 2;
  }

  .md\:leading-none {
    line-height: 1;
  }

  .md\:leading-o-18 {
    line-height: 1.8;
  }

  .md\:text-\[\#ffcdc1\] {
    --tw-text-opacity: 1;
    color: rgb(255 205 193 / var(--tw-text-opacity));
  }

  .md\:text-\[\#bbdde7\] {
    --tw-text-opacity: 1;
    color: rgb(187 221 231 / var(--tw-text-opacity));
  }

  .md\:text-\[\#f9f5d6\] {
    --tw-text-opacity: 1;
    color: rgb(249 245 214 / var(--tw-text-opacity));
  }

  .md\:text-\[\#f3d1f3\] {
    --tw-text-opacity: 1;
    color: rgb(243 209 243 / var(--tw-text-opacity));
  }

  .md\:text-\[\#e9d3ff\] {
    --tw-text-opacity: 1;
    color: rgb(233 211 255 / var(--tw-text-opacity));
  }

  .md\:text-\[\#9dcdf0\] {
    --tw-text-opacity: 1;
    color: rgb(157 205 240 / var(--tw-text-opacity));
  }

  .md\:text-\[\#fbd5d7\] {
    --tw-text-opacity: 1;
    color: rgb(251 213 215 / var(--tw-text-opacity));
  }

  .md\:text-\[\#cee3e0\] {
    --tw-text-opacity: 1;
    color: rgb(206 227 224 / var(--tw-text-opacity));
  }
}



.wp-block-spacer {
  height: 460px;
}

img.wp-image-1357 {
  width: 615px;
  height: auto;
}



@media screen and (min-width: 2000px) {
  .wp-block-spacer {
    height: 800px;
  }

  img.wp-image-1357 {
    width: 902px;
    height: auto;
    margin-right: 290px;
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 2460px) {
  .wp-block-spacer {
    height: 890px;
  }
}

@media screen and (min-width: 2800px) {
  .wp-block-spacer {
    height: 1090px;
  }
}

@media screen and (max-width: 1999px) {

  .wp-block-spacer {
    height: 650px;
  }

}

@media screen and (max-width: 1500px) {

  .wp-block-spacer {
    height: 550px;
  }
}

@media screen and (max-width: 1300px) {

  .wp-block-spacer {
    height: 450px;
  }
}


@media screen and (max-width: 1100px) {
  img.wp-image-1357 {
    width: 463px;
    height: auto;
    margin-top: 0px;
    margin-left: 0px;
  }

  .wp-container-content-ff9eefd0 {
    flex-basis: 290px !important;
  }

  .wp-block-spacer {
    height: 360px;
  }
}

@media screen and (max-width: 910px) {

  .wp-block-spacer {
    height: 320px;
  }

  .wp-container-content-ff9eefd0 {
    flex-basis: 265px !important;
  }

  img.wp-image-1357 {
    width: 400px;
    height: auto;
    margin-top: 10px;
    margin-left: 0px;
  }
}

@media screen and (max-width: 820px) {
  .wp-block-spacer {
    height: 300px;
  }
}

@media screen and (max-width:800px) {
  .wp-block-spacer {
    height: 240px;
  }

  .wp-container-content-ff9eefd0 {
    flex-basis: 245px;
  }

  img.wp-image-1357 {
    width: 400px;
    height: auto;
    margin-top: 68px;
    margin-left: 0px;
  }
}

@media screen and (max-width:769px) {
  .wp-image-1357 {
    width: 420px;
  }


  .wp-container-content-ff9eefd0 {
    flex-basis: 245px;
  }

}


@media screen and (max-width: 768px) {

  .w-o-608,
  .w-o-614 {
    width: 90% !important;
    margin-top: 10px;
  }

  .text-28 {
    font-size: 2rem !important;
  }

  .text-25,
  .text-24,
  .text-22 {
    font-size: 1.6rem !important;
  }

  .form_shadow {
    width: calc(100% - 20px) !important;
    margin: 0 auto !important;
  }

  .wp-block-button__link {
    font-size: 2.2rem !important;
    padding: 20px 12px !important;
  }

  ._microcopy_1lmqm_33 {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 768px) {

  .voice-section {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 3px;
    border: 10px solid #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
  }

  /* ステップバーの幅と間隔を調整 */
  .flex.gap-o-32 {
    flex-wrap: wrap;
    gap: 30px !important;
    display: flex;
    justify-content: center !important;
    padding: 0 10px;
    width: 100% !important;
  }

  .w-o-320 {
    width: 100% !important;
  }

  .w-o-40 {
    width: 30px !important;
    height: 30px !important;
  }

  .text-20 {
    font-size: 1.6rem !important;
  }

  .text-28 {
    font-size: 16px !important;
  }



  .step-progress {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    /* 必要に応じて調整 */
    padding: 0 12px;
    box-sizing: border-box;
  }

  .step-progress li {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 1.4rem;
    border-radius: 50%;
    text-align: center;
    background: #ccc;
    color: #fff;
  }

  /* 現在のステップ */
  .step-progress li.active {
    background: #ea8f14;
  }
}


@media screen and (max-width: 768px) {
  .page_height01 {
    height: 15.7rem;
    padding-bottom: 2rem;
  }

  .grid {
    display: grid;
    justify-content: center;
  }

  .top-\[calc\(50\%_-_0\.04rem\)\] {
    bottom: 45px;
  }

  .h-o-40 {
    height: 3rem;
  }

  .w-1\/2 {
    width: fit-content;
  }

  .w-full {
    width: 380px;
  }

  .page_height01 {}

  .page_height02 {
    height: 33.8rem;
  }

  .page_height03 {
    height: 35.7rem;
  }

  .page_height04 {
    height: 22.6rem;
  }

  .page_height05 {
    height: 28.1rem;
  }

  .page_height06 {
    height: 25.6rem;
  }

  .page_height07 {
    height: 87.3rem;
  }

  .cta-subttl {
    font-size: 20px;
  }

  .entry-content p {
    font-size: 90%;
    margin: 0 0px;
    padding: 0px !important;
  }

  .qa_balloon_right_default {
    position: relative;
    display: inline-flex;
    margin: 0 15px 0 0;
    line-height: 0.8;
    text-align: center;
    font-weight: bold;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 12px 15px 14px !important;
    max-width: fit-content !important;
    align-items: center;
    justify-content: center;
  }

  .text-\[\#a7a9ab2\] {
    --tw-text-opacity: 1;
    color: rgb(51 51 51);
    margin-top: 10px;
    width: 29.5rem !important;
  }

  .wp-block-spacer {
    height: 230px;
  }

  .text-\[\#a7a9ab\] {
    --tw-text-opacity: 1;
    margin-top: 14px;
    width: 29.5rem;
  }

}



@media (max-width: 767px) {
  .step-progress {
    gap: 6px;
  }

  img.wp-image-1357 {
    width: 615px;
    height: auto;
    margin-left: 15px;
    margin-top: 0px;
  }

  .step-progress li {
    width: 24px;
    height: 24px;
    font-size: 1.2rem;
  }

  .wp-block-spacer {
    height: 740px;
  }

  .section-ttl h2 {
    font-size: 20px !important;
    padding: 10px 0;
  }

  .page_height02 {
    height: 39.8rem;
  }

  .page_height03 {
    height: 37.7rem;
  }



  .page_height04 {
    height: 24.6rem;
  }

  .page_height05 {
    height: 30.1rem;
  }

  .page_height06 {
    height: 27.6rem;
  }

  .page_height07 {
    height: 88.3rem;
  }

}

@media screen and (max-width: 735px) {
  .wp-block-spacer {
    height: 735px;
  }
}

@media screen and (max-width: 700px) {
  .wp-block-spacer {
    height: 700px;
  }
}

@media screen and (max-width: 650px) {
  .wp-block-spacer {
    height: 650px;
  }
}

@media screen and (max-width: 600px) {
  .wp-block-spacer {
    height: 600px;
  }
}





@media screen and (max-width: 550px) {

  figure.wp-block-image.aligncenter.size-full.is-resized {
    margin: 0 20px !important;
  }

  .voice-job {
    display: flex;
    align-items: flex-start;
    margin: 5px 0;
    flex-direction: column;
  }


  .w-full {
    width: 270px;
  }

  .w-o-290 {
    width: auto;
  }

  .top-\[calc\(50\%_-_0\.04rem\)\] {
    bottom: 34px;
  }

  .flex.gap-o-32 {
    flex-wrap: wrap;
    gap: 20px !important;
    justify-content: center !important;
    padding: 0px;
    width: 100% !important;
  }

  .w-o-40 {
    width: 27px !important;
    height: 27px !important;
  }

  .h-o-40 {
    height: 27px;
  }

  .grid {
    display: grid;
    justify-content: center;
  }

  .text-20 {
    font-size: 14px !important;
    width: auto;
    padding: 0px !important;
  }

  .text-\[\#a7a9ab\] {
    --tw-text-opacity: 1;
    margin-top: 14px;
    width: 55%;
  }

  .page_height01 {
    height: 12.7rem;
    padding-bottom: 2rem;
  }

  .page_height02 {
    height: 34.5rem;
  }

  .page_height03 {
    height: 32.5rem;
  }

  .page_height04 {
    height: 21rem;
  }

  .page_height05 {
    height: 27rem;
  }

  .page_height06 {
    height: 23.6rem;
  }

  .page_height07 {
    height: 77.8rem;
  }

  .text-\[\#a7a9ab2\] {
    --tw-text-opacity: 1;
    color: rgb(51 51 51);
    margin-top: 10px;
    width: 55% !important;
  }


  .c-btn01__wrap img {
    width: 30%;
  }

  .home-intro-set:nth-of-type(odd) .home-intro-set__bg {
    right: -25px;
    border-top-left-radius: 0px;
    top: -20px;
    left: -25px;
    width: 150px;
    height: 120px;
    border-top-right-radius: 20px;
    transform: translate(0px, 0px) !important;
  }

  .wp-block-separator.has-background:not(.is-style-dots) {
    border-bottom: none;
    height: 1px;
    margin-bottom: 16px;
  }

  .page_height09 {
    height: 56.9rem;
  }

  .home-intro-set__num {
    position: absolute;
    display: inline-block;
    top: -110px;
    right: 5px;
    color: #24b478;
    font-size: 8rem;
  }

  li.js-c-anime-elem.home-intro-set.is-animated {
    margin-bottom: 50px;
  }

  .text-\[\#659ed8\] {
    --tw-text-opacity: 1;
    color: #24b478;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 11px 6px;
  }

  .entry-content .wp-block-separator {
    height: 1px;
    margin: 1px auto;
  }

  .home-intro__inner {
    padding-bottom: 40px;
  }

  .mb-o-60 {
    margin-bottom: 0.60rem;
    margin-top: 12px;
  }

  .w-o-608,
  .w-o-614 {
    width: 95% !important;
    margin-top: 10px;
  }

  .mb-o-48 {
    margin-bottom: 1.5rem 15px;
    margin-top: 2.48rem;
  }

  .before\:right-o-8::before {
    content: var(--tw-content);
    right: 1.08rem;
  }

  .w-1\/2 {
    width: fit-content;
  }

  .text-25,
  .text-24,
  .text-22 {
    font-size: 16px !important;
  }

  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    background-color: #ffffff;
    border: 1px solid #cccccc !important;
    margin-right: 11px !important;
    padding: 6px !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    width: 350px;
  }

  .colorful-formbox input[type^="text"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 55px;
    padding: 0 calc(55px * 0.35);
    margin: 0px;
    border-radius: 3px;
    border: 1px solid #c1c1c1;
    background-color: #fff;
    box-shadow: none;
    font-size: 17px;
    transition: all;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    outline: 0;
    line-height: normal;
  }

  .colorful-formbox input[type^="text"] {
    display: block;
    box-sizing: border-box;
    width: 100%;
    min-height: 45px;
    padding: 0 calc(55px * 0.35);
    background-color: #fff;
    box-shadow: none;
    font-size: 17px;
    transition: all;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    outline: 0;
    line-height: normal;
  }

  .before\:text-20::before {
    content: var(--tw-content);
    font-size: 1.3rem;
  }

  .before\:top-o-12::before {
    content: var(--tw-content);
    top: 1.3rem;
  }

  .section-ttl h2 {
    font-size: 18px !important;
    padding: 10px 15px;
  }

  textarea,
  input[type="text"],
  input[type="password"],
  input[type="datetime"],
  input[type="datetime-local"],
  input[type="date"],
  input[type="month"],
  input[type="time"],
  input[type="week"],
  input[type="number"],
  input[type="email"],
  input[type="url"],
  input[type="search"],
  input[type="tel"],
  input[type="color"],
  .uneditable-input {
    background-color: #ffffff;
    border: 1px solid #cccccc !important;
    margin-right: 11px !important;
    padding: 6px !important;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border linear .2s, box-shadow linear .2s;
    -moz-transition: border linear .2s, box-shadow linear .2s;
    -o-transition: border linear .2s, box-shadow linear .2s;
    transition: border linear .2s, box-shadow linear .2s;
    width: 100%;
  }

  .wp-block-button__link {
    font-size: 1.7rem !important;
    padding: 20px 12px !important;
  }

  ._microcopy_1lmqm_33 {
    font-size: 1.6rem !important;
  }

  .cta-subttl {
    font-size: 15px;
  }

  ._microcopy_1lmqm_33:before,
  ._microcopy_1lmqm_33:after {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    content: "";
    border-bottom: 2px solid #ea8f14;
  }

  img.wp-image-1357 {
    width: 100%;
    height: auto;
    margin-left: 0px;
  }

  .wp-block-spacer {
    height: 530px;
  }

  .wp-block-button.has-custom-width.wp-block-button__width-50.colorful-btn-small.is-style-outline.is-style-outline--1 {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    gap: 6px;
  }

  .entry-content p {
    font-size: 90%;
    margin: 0 0px;
  }

  .qa_balloon_right_default {
    position: relative;
    display: inline-flex;
    margin: 0 15px 0 0;
    line-height: 0.8;
    text-align: center;
    font-weight: bold;
    border-radius: 50px;
    box-sizing: border-box;
    padding: 12px 13px 14px !important;
    max-width: fit-content !important;
    align-items: center;
    justify-content: center;
  }

  .text-25 {
    font-size: 13px !important;
  }

}

@media screen and (max-width: 480px) {
  .wp-block-spacer {
    height: 480px;
  }
}

@media screen and (max-width: 430px) {
  .wp-block-spacer {
    height: 430px;
  }
}

@media screen and (max-width: 400px) {
  .wp-block-spacer {
    height: 385px;
  }
}

@media screen and (max-width: 380px) {
  .wp-block-spacer {
    height: 360px;
  }
}

@media screen and (max-width: 360px) {
  .wp-block-spacer {
    height: 356px;
  }
}

@media screen and (max-width: 350px) {
  .flex.gap-o-32 {
    flex-wrap: wrap;
    gap: 12px !important;
    justify-content: center !important;
    padding: 0px;
    width: 100% !important;
  }

  .top-\[calc\(50\%_-_0\.04rem\)\] {
    bottom: 26px;
  }

  .w-full {
    width: 250px;
  }

  .wp-block-spacer {
    height: 340px;
  }
}

@media screen and (max-width: 330px) {
  .wp-block-spacer {
    height: 320px;
  }
}


@media screen and (max-width: 325px) {
  .page_height02 {
    height: 36.5rem;
  }

  .page_height03 {
    height: 33.5rem;
  }

  .page_height04 {
    height: 22rem;
  }

  .page_height05 {
    height: 28rem;
  }

  .page_height06 {
    height: 24.6rem;
  }

  .page_height07 {
    height: 79.8rem;
  }
}