@charset "UTF-8";
:root {
  --title-font-family: "Zen Kurenaido", sans-serif;
  --color-white: rgb(255, 255, 255);
  --color-black: rgb(50, 50, 50);
  --color-primary: rgb(0, 146, 215);
  --color-primary-light: rgb(73, 176, 220);
  --color-primary-bg: rgb(241, 248, 250);
  --color-secondary: rgb(61, 128, 181);
  --color-accent-orange: rgb(243, 160, 27);
  --color-accent-yellow: rgb(255, 209, 102);
  --color-accent-orange-dark: rgb(228, 106, 57);
  --color-accent-yellow-light: rgb(254, 243, 145);
  --color-light-orange: rgb(248, 173, 143);
  --color-highlight-yellow: rgb(254, 243, 145);
  --color-gray-light: rgb(221, 221, 221);
  --color-gray: rgb(130, 130, 130);
  --color-border: rgb(239, 239, 239);
  --color-deep-green: rgb(0, 100, 0);
  --color-bg-primary: var(--color-white);
  --color-bg-secondary: var(--color-primary-bg);
  --color-bg-accent: var(--color-primary);
  --color-bg-dark: var(--color-black);
  --color-text-primary: var(--color-black);
  --color-text-white: var(--color-white);
  --color-text-accent: var(--color-primary);
  --color-text-gray: var(--color-gray);
  --color-border-primary: var(--color-border);
  --color-border-gray: var(--color-gray-light);
  --color-button-primary: var(--color-primary);
  --color-button-primary-hover: var(--color-secondary);
  --color-button-secondary: var(--color-accent-orange);
  --color-button-secondary-hover: var(--color-accent-orange-dark);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

:where(div, figure):has(> .u-no-image) {
  background-color: #fff;
  background-color: var(--color-white);
}

.u-no-image {
  padding: 10% 20%;
  -o-object-fit: contain;
     object-fit: contain;
}

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

iframe {
  display: block;
  max-width: 100%;
}

address,
em {
  font-style: normal;
}

button {
  color: inherit;
  padding: 0;
}

/* リンクのフォーカス時の罫線を削除 */
a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

a:focus,
a:focus-visible {
  border: none;
  outline: none;
}

@font-face {
  font-display: swap;
  font-family: "Noto Sans JP VF";
  font-style: normal;
  font-weight: 100 900;
  src: url("../../fonts/NotoSansJP-VF.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Zen Kurenaido";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/ZenKurenaido-Regular.woff2") format("woff2");
}
html {
  font-size: 16px;
}

:root {
  --wp-admin-bar-height: 0px;
  --base-font-family: "Noto Sans JP VF", sans-serif;
  --color-black: #111;
  --color-white: #fff;
  --header-height: 3.75rem;
}

:root:has(.admin-bar) {
  --wp-admin-bar-height: 32px;
}
/* 小さい画面では #wpadminbar を固定 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(3.75rem + 0px) !important;
  scroll-padding-top: calc(var(--header-height) + var(--wp-admin-bar-height)) !important;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #111;
  color: var(--color-black);
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  letter-spacing: 0.01em;
  line-height: 1.5;
  min-height: calc(100vh - 0px) !important;
  min-height: calc(100vh - var(--wp-admin-bar-height)) !important;
  min-height: calc(100dvh - 0px) !important;
  min-height: calc(100dvh - var(--wp-admin-bar-height)) !important;
  text-rendering: optimizeSpeed;
  word-wrap: anywhere; /* 収まらない場合に折り返す */
  line-break: strict; /* 禁則処理を厳格に適用 */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
}

main {
  flex: 1;
}

/* pcの電話番号発信対応 */

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

a:where([target=_blank]) {
  font-size: 1rem;
  font-size: var(--font-size, 1rem);
}

a:where([target=_blank])::after {
  aspect-ratio: 1;
  background: url(../images/common/icon_external.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  height: 1rem;
  height: var(--icon-size, 1rem);
  margin-left: 0.375rem;
  translate: 0 calc((1rem - 1rem) / -2 + 2px);
  translate: 0 calc((var(--font-size, 1rem) - var(--icon-size, 1rem)) / -2 + 2px);
}

*, *::before, *::after {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea,
a,
[tabindex],
[role=button] {
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

a:focus,
a:active,
a:focus-visible {
  background-color: inherit;
  border: none;
  box-shadow: none;
  color: inherit;
  opacity: 0.8;
  outline: none;
  transform: none;
}

.l-breadcrumb {
  margin-top: 0.75rem;
}

.l-contact {
  position: relative;
  width: 100%;
}

.l-drawer {
  bottom: 0;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease-out;
  translate: 100% 0;
  z-index: 1000;
}

.l-drawer[aria-hidden=false] {
  translate: 0 0;
}

.l-feature {
  position: relative;
  width: 100%;
}

.l-footer {
  margin-top: 0;
}

.l-header {
  bottom: auto;
  height: 3.75rem;
  height: var(--header-height);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1001;
}

.l-hero-caption {
  margin-top: 1.375rem;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 75rem;
  padding-left: 3.125rem;
  padding-right: 3.125rem;
  width: 100%;
}

.l-mv {
  margin-top: 3.75rem;
  margin-top: var(--header-height);
  position: relative;
  width: 100%;
}

.l-schedule {
  position: relative;
  z-index: 1;
}

.l-solution {
  margin-top: -9.375rem;
  position: relative;
  width: 100%;
}

.l-voice {
  position: relative;
  width: 100%;
}

.js-fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  translate: 0 1.25rem;
}
.js-fade-in.is-visible {
  opacity: 1;
  translate: 0 0;
}
.no-js .js-fade-in {
  opacity: 1;
  translate: 0 0;
}

.js-fade-in-item {
  opacity: 0;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  translate: 0 0.9375rem;
}
.js-fade-in-item.is-visible {
  opacity: 1;
  translate: 0 0;
}
.no-js .js-fade-in-item {
  opacity: 1;
  translate: 0 0;
}

.js-fade-in-light {
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  translate: 0 0.625rem;
}
.js-fade-in-light.is-visible {
  opacity: 1;
  translate: 0 0;
}
.no-js .js-fade-in-light {
  opacity: 1;
  translate: 0 0;
}

.js-fade-in-scale {
  opacity: 0;
  scale: 0.95;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  translate: 0 1.875rem;
}
.js-fade-in-scale.is-visible {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}
.no-js .js-fade-in-scale {
  opacity: 1;
  scale: 1;
  translate: 0 0;
}

.js-fade-in-left {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  translate: -2.5rem 0;
}
.js-fade-in-left.is-visible {
  opacity: 1;
  translate: 0 0;
}
.no-js .js-fade-in-left {
  opacity: 1;
  translate: 0 0;
}

.js-fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  translate: 2.5rem 0;
}
.js-fade-in-right.is-visible {
  opacity: 1;
  translate: 0 0;
}
.no-js .js-fade-in-right {
  opacity: 1;
  translate: 0 0;
}

.js-fade-in,
.js-fade-in-item,
.js-fade-in-light,
.js-fade-in-scale,
.js-fade-in-left,
.js-fade-in-right {
  will-change: opacity, transform;
}
.js-fade-in.is-visible,
.js-fade-in-item.is-visible,
.js-fade-in-light.is-visible,
.js-fade-in-scale.is-visible,
.js-fade-in-left.is-visible,
.js-fade-in-right.is-visible {
  animation: remove-will-change 0.1s ease-out 1s forwards;
}

@keyframes remove-will-change {
  to {
    will-change: auto;
  }
}
.is-loading .js-fade-in,
.is-loading .js-fade-in-item,
.is-loading .js-fade-in-light,
.is-loading .js-fade-in-scale,
.is-loading .js-fade-in-left,
.is-loading .js-fade-in-right {
  opacity: 0;
}

/**
 * 共通画像コンポーネント - シンプル設計
 * HTMLで最大3クラスまでの制限
 */
.c-image {
  display: block;
  overflow: hidden;
  position: relative;
}
.c-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  display: block;
     object-fit: cover;
}

.c-image-icon {
  display: block;
  overflow: hidden;
  position: relative;
}
.c-image-icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  background: transparent;
  display: block;
     object-fit: contain;
}

.c-image-photo {
  display: block;
  overflow: hidden;
  position: relative;
}
.c-image-photo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
  display: block;
     object-position: center;
}

.c-square {
  aspect-ratio: 1/1;
}

.c-photo {
  aspect-ratio: 4/3;
}

.c-wide {
  aspect-ratio: 16/9;
}

.c-full {
  width: 100%;
}

.c-small {
  width: 5rem;
}

.c-medium {
  width: 12.5rem;
}

.c-large {
  width: 25rem;
}

.c-section-decoration {
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  position: absolute;
  z-index: 1;
}

.c-section-decoration--bottom-left {
  aspect-ratio: 491/350;
  background-image: url("../../assets/images/common/section-decoration-01.png");
  bottom: 0;
  left: 0;
  width: 30.6875rem;
}

.c-section-decoration--top-right {
  aspect-ratio: 491/350;
  background-image: url("../../assets/images/common/section-decoration-02.png");
  right: 0;
  top: 0;
  width: 30.6875rem;
}

.c-section-decoration--small {
  width: 21.875rem;
}

.c-section-decoration--medium {
  width: 26.25rem;
}

.c-section-decoration--large {
  width: 34.375rem;
}

.c-section-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.125rem;
}

.c-section-title__text {
  color: #111;
  color: var(--color-black);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  margin: 0;
  text-align: center;
}

.c-text-xs {
  font-size: 0.75rem;
  line-height: 1.5;
}

.c-text-sm {
  font-size: 0.875rem;
  line-height: 1.5;
}

.c-text-base {
  font-size: 1rem;
  line-height: 1.5;
}

.c-text-md {
  font-size: 1.125rem;
  line-height: 1.4;
}

.c-text-lg {
  font-size: 1.25rem;
  line-height: 1.4;
}

.c-text-xl {
  font-size: 1.5rem;
  line-height: 1.2;
}

.c-text-2xl {
  font-size: 1.875rem;
  line-height: 1.2;
}

.c-text-3xl {
  font-size: 2.625rem;
  line-height: 1.2;
}

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

.c-text--uppercase {
  text-transform: uppercase;
}

.c-text--lowercase {
  text-transform: lowercase;
}

.c-text--capitalize {
  text-transform: capitalize;
}

.c-text--tracking-tight {
  letter-spacing: -0.025em;
}

.c-text--tracking-normal {
  letter-spacing: 0;
}

.c-text--tracking-wide {
  letter-spacing: 0.1em;
}

.c-timeline {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-timeline__item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.c-timeline__time {
  color: #111;
  color: var(--color-black);
  flex-shrink: 0;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-weight: 700;
  text-align: left;
  width: 3.5rem;
}

.c-timeline__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 0.9375rem;
  position: relative;
}

.c-timeline__content::before {
  background-color: rgb(243, 160, 27);
  background-color: var(--color-accent-orange);
  content: "";
  height: calc(100% + 3.125rem);
  left: 0;
  position: absolute;
  top: 0.1875rem;
  width: 1px;
}

.c-timeline__content::after {
  background-color: rgb(243, 160, 27);
  background-color: var(--color-accent-orange);
  border-radius: 50%;
  content: "";
  height: 0.4375rem;
  left: -0.1875rem;
  position: absolute;
  top: 0.1875rem;
  width: 0.4375rem;
}

.c-timeline__item:last-child .c-timeline__content::before {
  height: 100%;
}

.c-timeline__title {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-weight: 700;
  margin: 0;
}

.c-timeline__description {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.c-timeline__description p {
  color: rgb(130, 130, 130);
  color: var(--color-gray);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-weight: 400;
  margin: 0;
}

.p-404 {
  align-items: center;
  background-color: var(--color-background-light);
  display: flex;
  justify-content: center;
  min-height: 25rem;
  padding: 2.5rem 0;
}

.p-404__inner {
  margin: 0 auto;
  max-width: 50rem;
  padding: 0 1.25rem;
  width: 100%;
}

.p-404__content {
  padding: 1.25rem 2.5rem 0.625rem 2.5rem;
  text-align: center;
}

.p-404__error-code {
  margin-bottom: 2rem;
}

.p-404__error-number {
  background: linear-gradient(135deg, rgb(0, 146, 215), var(--color-accent-blue));
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-blue));
  color: rgb(0, 146, 215);
  color: var(--color-primary);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.p-404__title-area {
  margin-bottom: 2.5rem;
}

.p-404__title {
  color: #111;
  color: var(--color-text-primary);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 1rem 0;
}

.p-404__description {
  color: var(--color-text-secondary);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.p-404__suggestions {
  margin-bottom: 2.5rem;
}

.p-404__suggestions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-404__suggestions-item {
  align-items: center;
  background-color: var(--color-background-light);
  border-radius: 0.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  padding: 1rem;
  transition: all 0.3s ease;
}

.p-404__suggestions-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
}

.p-404__suggestions-text {
  color: #111;
  color: var(--color-text-primary);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
}

.p-404__actions {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.p-404__button {
  align-items: center;
  background-color: rgb(243, 160, 27);
  background-color: var(--color-accent-orange);
  border-radius: 6.1875rem;
  display: flex;
  justify-content: center;
  padding: 0.9375rem 2.5rem;
  -webkit-text-decoration: none;
  border: 0.125rem solid rgb(243, 160, 27);
  border: 0.125rem solid var(--color-accent-orange);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.p-404__button:active, .p-404__button:focus {
  background-color: #fff;
  background-color: var(--color-white);
  border: 0.125rem solid rgb(243, 160, 27);
  border: 0.125rem solid var(--color-accent-orange);
  opacity: 1;
}
.p-404__button:active .p-404__button-text, .p-404__button:focus .p-404__button-text {
  color: rgb(243, 160, 27);
  color: var(--color-accent-orange);
}

.p-404__button-text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}
.p-breadcrumb span[property=itemListElement]:nth-child(n+2) {
  margin-left: 0.625rem;
}

.p-breadcrumb span[property=itemListElement]:nth-child(n+2)::before {
  aspect-ratio: 5/7;
  background: url(../images/common/breadcrumb-arrow.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  height: auto;
  margin-right: 0.625rem;
  width: 0.375rem;
}

.p-contact {
  align-items: center;
  background-color: rgb(73, 176, 220);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 5rem 0 6.25rem 0;
  position: relative;
  width: 100%;
}

.p-contact__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  width: 100%;
}

.p-contact__title-area {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-contact__title {
  color: #fff;
  color: var(--color-white);
  display: inline-block;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.45;
  position: relative;
  text-align: center;
}

.p-contact__title::before {
  aspect-ratio: 40/40;
  background-image: url("../../assets/images/common/solution02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: -1.1em;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 2.5rem;
}

.p-contact__title::after {
  aspect-ratio: 40/40;
  background-image: url("../../assets/images/common/solution03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: -1.1em;
  top: 50%;
  translate: 0 -50%;
  width: 2.5rem;
}

.p-contact__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 100%;
}

.p-contact__description {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-contact__text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.p-contact__text-highlight {
  color: #FEF391;
}

.p-contact__form-container {
  margin: 0 auto;
  max-width: 100%;
  width: 36.25rem;
}

.p-contact__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.p-contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
}

.p-contact__field:last-child {
  margin-bottom: 0;
}

.p-contact__label {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-contact__required {
  background-color: rgb(228, 106, 57);
  border-radius: 0.3125rem;
  color: #fff;
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.8;
  margin-left: 0.5rem;
  padding: 0.125rem 0.625rem;
}

.p-contact__input,
.p-contact__textarea,
.p-contact__select,
.wpcf7-form-control.wpcf7-select,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-date {
  background-color: #fff;
  background-color: var(--color-white);
  border: none;
  border-radius: 0.3125rem;
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1rem 1.25rem;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.p-contact__input:focus,
.p-contact__textarea:focus,
.p-contact__select:focus,
.wpcf7-form-control.wpcf7-select:focus,
.wpcf7-form-control.wpcf7-text:focus,
.wpcf7-form-control.wpcf7-textarea:focus,
.wpcf7-form-control.wpcf7-email:focus,
.wpcf7-form-control.wpcf7-tel:focus,
.wpcf7-form-control.wpcf7-date:focus {
  box-shadow: 0 0 0 0.125rem rgba(255, 255, 255, 0.5);
  outline: none;
}

.p-contact__input::-moz-placeholder, .p-contact__textarea::-moz-placeholder, .p-contact__select::-moz-placeholder, .wpcf7-form-control::-moz-placeholder {
  color: #DDDDDD;
}

.p-contact__input::placeholder,
.p-contact__textarea::placeholder,
.p-contact__select::placeholder,
.wpcf7-form-control::placeholder,
.wpcf7-form-control.wpcf7-select option:first-child,
.wpcf7-form-control.wpcf7-select option[value=""] {
  color: #DDDDDD;
}

.p-contact__select,
.wpcf7-form-control.wpcf7-select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(130, 130, 130)' stroke-width='2'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 3rem;
}
.p-contact__select option,
.wpcf7-form-control.wpcf7-select option {
  background-color: #fff;
  background-color: var(--color-white);
  color: #111;
  color: var(--color-black);
}
.p-contact__select option:first-child,
.p-contact__select option[value=""],
.wpcf7-form-control.wpcf7-select option:first-child,
.wpcf7-form-control.wpcf7-select option[value=""] {
  color: #DDDDDD;
}

.p-contact__textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.p-contact__privacy-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.p-contact__privacy-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.p-contact__privacy-title {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.p-contact__privacy-description {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.p-contact__privacy-agreement {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-contact__checkbox-label {
  align-items: center;
  color: #fff;
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.625rem;
  justify-content: center;
  line-height: 1.2;
  padding: 0.3125rem;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.p-contact__checkbox {
  background-color: #fff;
  background-color: var(--color-white);
  border: none;
  border-radius: 0.125rem;
  cursor: pointer;
  height: 0.9375rem;
  width: 0.9375rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  position: relative;
}

.p-contact__checkbox:checked {
  background-color: #fff;
  background-color: var(--color-white);
}

.p-contact__checkbox:checked::after {
  color: rgb(73, 176, 220);
  content: "✔";
  font-size: 0.625rem;
  font-weight: 700;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
}

.p-contact__checkbox:focus {
  box-shadow: 0 0 0 0.125rem rgba(255, 255, 255, 0.5);
  outline: none;
}

.p-contact__checkbox-text {
  color: #fff;
  color: var(--color-white);
}

.p-contact__checkbox-text a {
  color: #fff;
  color: var(--color-white);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.p-contact__privacy-link {
  color: #FEF391;
  -webkit-text-decoration: underline;
  font-size: 0.875rem;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}
.p-contact__privacy-link::after {
  display: none;
}

.p-contact__privacy-agreement {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.wpcf7-form-control-wrap[data-name=privacy_agreement] {
  display: inline-block;
  vertical-align: top;
}

.wpcf7-form-control.wpcf7-acceptance {
  display: inline-block;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.p-contact__privacy-agreement input[type=checkbox] {
  accent-color: #111 !important;
  accent-color: var(--color-black) !important;
  background-color: #fff !important;
  background-color: var(--color-white) !important;
  border: none !important;
  border-radius: 0.125rem !important;
  cursor: pointer !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
  height: 0.9375rem !important;
  margin: 0 !important;
  position: relative !important;
  vertical-align: top !important;
  width: 0.9375rem !important;
}

.p-contact__privacy-agreement input[type=checkbox]:checked {
  background-color: #fff !important;
  background-color: var(--color-white) !important;
}

.p-contact__privacy-agreement input[type=checkbox]:checked::after {
  color: rgb(73, 176, 220) !important;
  content: "✔" !important;
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  left: 50% !important;
  line-height: 1 !important;
  pointer-events: none !important;
  position: absolute !important;
  top: 50% !important;
  translate: -50% -50% !important;
  z-index: 20 !important;
}

/* より強いセレクタでチェックマーク表示を確実に */
.p-contact__privacy-agreement input[type=checkbox][aria-invalid=false]:checked::after,
.p-contact__privacy-agreement input[name=privacy_agreement]:checked::after {
  color: rgb(73, 176, 220) !important;
  content: "✔" !important;
  display: block !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  left: 50% !important;
  line-height: 1 !important;
  pointer-events: none !important;
  position: absolute !important;
  top: 50% !important;
  translate: -50% -50% !important;
  z-index: 20 !important;
}

.p-contact__privacy-agreement input[type=checkbox]:focus {
  box-shadow: none !important;
  outline: none !important;
}

.p-contact__submit-area {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  width: 100%;
}

.p-contact__submit-btn {
  background-color: rgb(243, 160, 27);
  border: none;
  border-radius: 3.125rem;
  color: #fff;
  color: var(--color-white);
  cursor: pointer;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  min-width: 12.5rem;
  padding: 1.125rem 3rem;
  transition: all 0.3s ease;
}

.p-contact__submit-btn:active {
  scale: 0.98;
}
.p-contact__decoration--bottom-left {
  aspect-ratio: 491/350;
  background-image: url("../../assets/images/common/section-decoration-01.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  width: 30.6875rem;
  z-index: 0;
}

.p-contact__decoration--top-right {
  aspect-ratio: 491/350;
  background-image: url("../../assets/images/common/section-decoration-02.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  width: 30.6875rem;
  z-index: 1;
}

/* （the_content()で出力したものへのスタイル） */
.p-content h2 {
  font-size: 140%;
  font-weight: 700;
}

.p-content h3 {
  font-size: 130%;
  font-weight: 700;
}

.p-content h4 {
  font-size: 120%;
  font-weight: 700;
}

.p-content h2:nth-of-type(1) {
  margin-top: 1.5625rem;
}

.p-content h2:nth-of-type(n + 2) {
  margin-top: 4rem;
}

.p-content figure:nth-child(n+2) {
  margin-top: 2.625rem;
}

.wp-block-file,
.p-content p:nth-child(n+2),
.p-content h3:nth-child(n+2),
.p-content h4:nth-child(n+2),
.p-content h2 + ul:nth-of-type(n + 2),
.p-content h2 + ol:nth-of-type(n + 2),
.p-content ol > li > ol:nth-of-type(n + 2),
.p-content figure {
  margin-top: 1.375rem;
  max-width: 100%;
}

.p-content img {
  width: auto;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  margin-left: auto;
}

.p-content > ol {
  counter-reset: number 0;
}

.p-content > ol > li {
  padding-left: 1.5rem;
  text-indent: -1rem;
}

.p-content > ol > li:nth-child(n+10) {
  text-indent: -1.5rem;
}

.p-content > ol > li::before {
  content: counter(number) ". ";
  counter-increment: number 1;
}

.p-content > ol > li > ol {
  counter-reset: number 0;
}

.p-content > ol > li > ol > li {
  padding-left: 1.5rem;
  text-indent: -1rem;
}

.p-content > ol > li > ol > li::before {
  content: counter(number, lower-alpha) ". ";
  counter-increment: number 1;
}

.p-content > ol > li > ol > li > ol {
  counter-reset: number 0;
}

.p-content > ol > li > ol > li > ol > li {
  padding-left: 1.375rem;
}

.p-content > ol > li > ol > li > ol > li:nth-child(1) {
  text-indent: -0.75rem;
}

.p-content > ol > li > ol > li > ol > li:nth-child(2) {
  text-indent: -1rem;
}

.p-content > ol > li > ol > li > ol > li:nth-child(n+3) {
  text-indent: -1.25rem;
}

.p-content > ol > li > ol > li > ol > li::before {
  content: counter(number, lower-roman) ". ";
  counter-increment: number 1;
}

.p-content ul > li {
  padding-left: 1em;
  text-indent: -1em;
}

.p-content ul > li::before {
  content: "・";
}

.p-content ul > li ol {
  counter-reset: number 0;
}

.p-content ul > li ol > li {
  padding-left: 2em;
  text-indent: -2em;
}

.p-content ul > li ol > li::before {
  content: "(" counter(number) ") ";
  counter-increment: number 1;
}

.p-content th {
  border: none;
  padding: 0.5rem 1rem;
  text-align: left;
}

.p-content td {
  border: none;
  padding: 0.5rem 1rem;
}

.p-content tr:nth-child(odd) th,
.p-content tr:nth-child(odd) td {
  background-color: #f9f9fb;
}

.p-content tr:nth-child(even) th,
.p-content tr:nth-child(even) td {
  background-color: #e5e8ed;
}

.p-content .wp-block-table thead {
  border-bottom: none;
}

.p-content figure.aligncenter,
.p-content img.aligncenter {
  float: none;
  margin-left: auto;
  margin-right: auto;
}

.p-content figure.alignright,
.p-content img.alignright {
  float: none;
  margin-left: auto;
}

.p-content a {
  word-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-content .wp-block-group {
  background-color: #f7f8f8;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  padding: 1.5rem;
}

.p-content cite {
  font-style: normal;
}

.wp-block-file:not(.wp-element-button) a {
  align-content: flex-start;
  display: flex;
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.wp-block-file:not(.wp-element-button) a::before {
  aspect-ratio: 1/1;
  background: url(../images/common/icon_pdf.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  flex-shrink: 0;
  height: auto;
  margin-right: 0.25rem;
  margin-top: 0.5rem;
  translate: 0 -0.5rem;
  width: 1.5rem;
}

.p-drawer {
  background-color: #fff;
  background-color: var(--color-white);
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow: auto;
  padding-top: 7.5rem;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease-out;
  width: 100%;
  z-index: 100;
}

.p-drawer[aria-hidden=false] {
  opacity: 1;
  pointer-events: all;
}

.p-drawer__inner.l-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-start;
}

.p-drawer__nav-items {
  align-items: center;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.p-drawer__nav-item {
  border-bottom: 1px solid rgb(221, 221, 221);
  border-bottom: 1px solid var(--color-gray-light);
  text-align: center;
  width: 100%;
}

.p-drawer__nav-item:last-child {
  border-bottom: none;
}

.p-drawer__nav-link {
  align-items: center;
  color: #111;
  color: var(--color-black);
  display: flex;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
  -webkit-text-decoration: none;
  border: none;
  outline: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

.p-drawer__nav-link::after {
  color: rgb(130, 130, 130);
  color: var(--color-gray);
  content: ">";
  font-size: 1.25rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.p-drawer__nav-link:focus {
  border: none;
  color: rgb(0, 146, 215);
  color: var(--color-primary);
  outline: none;
}

.p-drawer__nav-link:focus::after {
  color: rgb(0, 146, 215);
  color: var(--color-primary);
}
.p-education-card {
  align-items: center;
  background-color: #fff;
  background-color: var(--color-white);
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem 1.5rem;
  width: 21.75rem;
}

.p-education-card__illustration {
  align-items: center;
  align-items: center;
  aspect-ratio: 1/1;
  background-color: rgb(255, 209, 102);
  border-radius: 50%;
  display: flex;
  display: flex;
  justify-content: center;
  justify-content: center;
  width: 7.8125rem;
}

.p-education-card__icon {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  width: 4.1875rem;
}

.p-education-card__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  width: 18.75rem;
}

.p-education-card__title {
  color: rgb(0, 0, 0);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.p-education-card__step {
  align-items: center;
  border-bottom: 0.0625rem solid rgb(243, 160, 27);
  border-top: 0.0625rem solid rgb(243, 160, 27);
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.5rem 0;
  width: 100%;
}

.p-education-card__step-text {
  color: rgb(243, 160, 27);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.p-education-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.p-education-card__list-item {
  align-items: flex-start;
  display: flex;
  gap: 0.625rem;
  width: 100%;
}

.p-education-card__check-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 1.375rem;
  justify-content: center;
  width: 1.375rem;
}
.p-education-card__check-icon svg {
  height: 100%;
  width: 100%;
}

.p-education-card__list-text {
  color: rgb(51, 51, 51);
  flex: 1;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: left;
}

.p-education {
  padding: 5rem 0 6.25rem 0;
  position: relative;
  width: 100%;
}

.p-education__inner.l-inner {
  position: relative;
}

.p-education__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.125rem;
}

.p-education__title-text {
  color: #111;
  color: var(--color-black);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.p-education__title-text span {
  white-space: nowrap;
}

.p-education__content {
  align-items: stretch;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.p-faq {
  background-color: rgb(247, 247, 247);
  padding: 5rem 0 6.25rem;
}

.p-faq__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

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

.p-faq__title-text {
  color: rgb(50, 50, 50);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.p-faq__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 53.75rem;
  width: 100%;
}

.p-faq__item {
  background-color: #fff;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  overflow: hidden;
  padding-left: 3rem;
  padding-right: 3rem;
}

.p-faq__question {
  align-items: center;
  background-color: #fff;
  background-color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  padding: 2rem 0;
  transition: background-color 0.3s ease;
  width: 100%;
}

.p-faq__question-content {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 1.5rem;
}

.p-faq__question-label {
  color: rgb(243, 160, 27);
  color: var(--color-accent-orange);
  flex-shrink: 0;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-faq__question-text {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.p-faq__question-icon {
  flex-shrink: 0;
  height: 1.125rem;
  position: relative;
  width: 1.125rem;
}

.p-faq__question-icon-line {
  background-color: rgb(243, 160, 27);
  background-color: var(--color-accent-orange);
  border-radius: 0.0625rem;
  position: absolute;
  transition: transform 0.3s ease;
}

.p-faq__question-icon-line--horizontal {
  height: 0.125rem;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1.125rem;
}

.p-faq__question-icon-line--vertical {
  height: 1.125rem;
  left: 50%;
  top: 0;
  transition: transform 0.3s ease;
  translate: -50% 0;
  width: 0.125rem;
}

.p-faq__question[aria-expanded=true] .p-faq__question-icon-line--vertical {
  rotate: 90deg;
  scale: 0;
  translate: -50% 0;
}

.p-faq__answer {
  background-color: #fff;
  background-color: var(--color-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.p-faq__answer-content {
  align-items: flex-start;
  border-top: 0.0625rem solid rgb(221, 221, 221);
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
}

.p-faq__answer-label {
  color: rgb(243, 160, 27);
  color: var(--color-accent-orange);
  flex-shrink: 0;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.p-faq__answer-text {
  flex: 1;
}

.p-faq__answer-text p {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.p-faq__item.is-open .p-faq__answer {
  max-height: 25rem;
}

.p-feature {
  position: relative;
  width: 100%;
}

.p-feature__title-band {
  background-color: rgb(0, 146, 215);
  background-color: var(--color-primary);
  height: 4.961875rem;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
}

.p-feature__title-band-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 90rem;
  position: relative;
}

.p-feature__title-band-text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  position: relative;
  text-align: center;
  z-index: 2;
}

.p-feature__title-band-text span {
  font-size: 1.375rem;
  line-height: 1.2;
}

.p-feature__main::after {
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  border-top: 0.9375rem solid rgb(0, 146, 215);
  border-top: 0.9375rem solid var(--color-primary);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 0;
  translate: -50% 0;
  width: 0;
  z-index: 1;
}

.p-feature__main {
  background-color: rgb(241, 248, 250);
  background-color: var(--color-primary-bg);
  padding: 3.125rem 0 6.25rem 0;
  position: relative;
}

.p-feature__main::before {
  aspect-ratio: 391/296;
  background-image: url("../../assets/images/common/feature01.png");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 0;
  position: absolute;
  top: -0.3125rem;
  width: 24.4375rem;
  z-index: 0;
}

.p-feature__inner.l-inner {
  position: relative;
  z-index: 2;
}

.p-feature__title {
  align-items: flex-start;
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-bottom: 3.125rem;
  position: relative;
}

.p-feature__title-number {
  color: rgb(243, 160, 27);
  color: var(--color-accent-orange);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  position: relative;
}

.p-feature__title-number::after {
  aspect-ratio: 20/20;
  background-image: url("../../assets/images/common/feature02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: -1rem;
  top: 0;
  width: 1.25rem;
}

.p-feature__title-text {
  color: #111;
  color: var(--color-black);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 2.625rem;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 1.125rem;
}

.p-feature__content {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.p-feature__item {
  align-items: flex-start;
  background-color: #fff;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.5rem 3rem 1.5rem;
  position: relative;
  text-align: left;
  width: 20rem;
}

.p-feature__item-point {
  align-items: center;
  display: flex;
  left: 1.5rem;
  position: absolute;
  top: -1rem;
  z-index: 3;
}

.p-feature__item-point-icon {
  background-image: url("../../assets/images/common/feature03.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 5.125rem;
  position: relative;
  width: 5.25rem;
}

.p-feature__item-point-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  left: 50%;
  position: absolute;
  top: 45%;
  translate: -50% -50%;
  z-index: 4;
}

.p-feature__item-point-label {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.5625rem;
  font-weight: 900;
  line-height: 1;
  margin: 0;
}

.p-feature__item-point-number {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.p-feature__item-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  justify-content: flex-start;
  margin-top: 4.25rem;
}

.p-feature__item-title {
  margin: 0;
}

.p-feature__item-title-highlight {
  color: rgb(0, 146, 215);
  color: var(--color-primary);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.p-feature__item-title-highlight::after {
  background-color: rgb(254, 243, 145);
  background-color: var(--color-highlight-yellow);
  bottom: 0.125rem;
  content: "";
  height: 0.5625rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.p-feature__item-title-text {
  color: rgb(0, 146, 215);
  color: var(--color-primary);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-feature__item-description {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.p-footer {
  background-color: #fff;
  background-color: var(--color-white);
  padding: 2.5rem 0 1.5rem;
}

.p-footer__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.p-footer__main-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.p-footer__logo {
  align-items: center;
  display: flex;
  justify-content: center;
}
.p-footer__logo img {
  aspect-ratio: 40/9;
  width: 15rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__company-info {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.p-footer__company-name {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.p-footer__company-details {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.p-footer__nav-section {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-footer__nav {
  align-items: center;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.p-footer__nav-link {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.3s ease;
}
.p-footer__tiktok-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.p-footer__tiktok-link::after {
  display: none !important;
}
.p-footer__tiktok-icon {
  height: 2rem;
  width: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__copyright-section {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-footer__copyright {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

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

.wpcf7-spinner {
  display: none;
}

.p-form__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.9375rem;
  gap: 0.9375rem;
}

.p-form__item {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.1875rem;
  gap: 0.1875rem;
}
.p-form__item:first-of-type {
  gap: 0.625rem;
  margin-bottom: 2.125rem;
}

.p-form__dt {
  letter-spacing: 0.1em;
  line-height: 1.5384615385;
}

.p-form__item:first-of-type .p-form__dt {
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-form__dd .wpcf7-checkbox,
.p-form__dd .wpcf7-radio {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 0.4375rem;
  gap: 0.4375rem;
}

.p-form__dd label {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  line-height: 1.4285714286;
}
.p-form__dd input:not([type=radio]):not([type=checkbox]),
.p-form__dd textarea {
  background-color: #fff;
  background-color: var(--color-white);
  border: 1px solid;
  border-radius: 0.375rem;
  display: block;
  padding: 0.3125rem 0.625rem;
  width: 100%;
}

.p-form__dd input::-moz-placeholder, .p-form__dd textarea::-moz-placeholder {
  color: rgb(130, 130, 130);
  color: var(--color-gray);
}

.p-form__dd input::placeholder,
.p-form__dd textarea::placeholder {
  color: rgb(130, 130, 130);
  color: var(--color-gray);
}

.p-form__dd input[type=checkbox] + span,
.p-form__dd input[type=radio] + span {
  align-items: flex-start;
  display: flex;
  gap: 0.375rem;
  position: relative;
}

.p-form__dd input[type=radio] + span::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  background-color: var(--color-white);
  border: 1px solid #111;
  border: 1px solid var(--color-black);
  border-radius: 50%;
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: auto;
  margin-right: 0.625rem;
  width: 1.25rem;
}
.p-form__dd input[type=radio]:checked + span::after {
  aspect-ratio: 1/1;
  background-color: #111;
  background-color: var(--color-black);
  border-radius: 50%;
  bottom: 0;
  content: "";
  display: inline-block;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  scale: 0.5;
  top: 0;
  width: 1.25rem;
}

.p-form__dd input[type=checkbox] + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #111;
  border: 1px solid var(--color-black);
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: auto;
  margin-right: 0.625rem;
  margin-top: 0.375rem;
  width: 0.75rem;
}

.p-form__dd input[type=checkbox]:checked + span::after {
  border-bottom: 2px solid #111;
  border-bottom: 2px solid var(--color-black);
  border-right: 2px solid #111;
  border-right: 2px solid var(--color-black);
  content: "";
  display: inline-block;
  height: 0.75rem;
  left: 0.25rem;
  margin: auto;
  position: absolute;
  rotate: 45deg;
  top: 0.125rem;
  width: 0.375rem;
}

.p-form__dd textarea {
  height: 9.125rem;
}

.p-form__acceptance {
  font-style: normal;
  margin-top: 1.1875rem;
  text-align: justify;
}

.p-form__acceptance input + span {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.p-form__acceptance input + span::before {
  aspect-ratio: 1/1;
  border: 1px solid #111;
  border: 1px solid var(--color-black);
  content: "";
  display: inline-flex;
  flex-shrink: 0;
  height: auto;
  margin-right: 0.625rem;
  margin-top: 0.375rem;
  width: 0.75rem;
}

.p-form__acceptance input:checked + span::after {
  border-bottom: 2px solid #111;
  border-bottom: 2px solid var(--color-black);
  border-right: 2px solid #111;
  border-right: 2px solid var(--color-black);
  content: "";
  display: inline-block;
  height: 0.75rem;
  left: 0.25rem;
  margin: auto;
  position: absolute;
  rotate: 45deg;
  top: 0.125rem;
  width: 0.375rem;
}

.p-form__policy-description {
  margin-top: 1.75rem;
}

.p-form__policy-description a {
  color: #111;
  color: var(--color-black);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}

.p-form__send {
  align-items: center;
  display: flex;
  gap: 1.6875rem;
  justify-content: center;
  margin: 2.375rem auto 0;
  max-width: 13.5rem;
  position: relative;
  width: 100%;
}

.p-form__send input {
  background-color: #111;
  background-color: var(--color-black);
  border-radius: 100vh;
  color: #fff;
  color: var(--color-white);
  display: block;
  letter-spacing: 0.06em;
  min-height: 2.5625rem;
  padding: 0 2.1875rem 0 1.6875rem;
  transition: opacity 0.3s ease-in-out;
  width: 100%;
}

/* フォーカスされている要素を明確に示 */
/* Contact Form 7 レスポンスメッセージ */
.wpcf7-response-output {
  background-color: #fff !important;
  background-color: var(--color-white) !important;
  /* borderとcolorはデフォルトのままにする（削除） */
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 1.25rem 0;
  padding: 0.9375rem;
  text-align: center;
}

/* 送信後の状態でも背景色を白に、ボーダーも白に */
.wpcf7 form.sent .wpcf7-response-output {
  background-color: #fff !important;
  background-color: var(--color-white) !important;
  border-color: #fff !important;
  border-color: var(--color-white) !important;
}

/* 送信成功メッセージ（デフォルトスタイルを活かす） */
/* エラーメッセージ（より視認性を向上） */
.wpcf7-mail-sent-ng,
.wpcf7-validation-errors {
  background-color: rgba(204, 0, 0, 0.1);
  border: 1px solid #cc0000;
  border-radius: 0.375rem;
  color: #cc0000;
  font-weight: 600;
  padding: 0.75rem 1rem;
}

/* スパム検出メッセージ（警告色で統一） */
.wpcf7-spam-blocked {
  background-color: rgba(228, 106, 57, 0.1);
  border: 1px solid rgb(228, 106, 57);
  border: 1px solid var(--color-accent-orange-dark);
  border-radius: 0.375rem;
  color: rgb(228, 106, 57);
  color: var(--color-accent-orange-dark);
  font-weight: 600;
  padding: 0.75rem 1rem;
}

/* その他のメッセージ（基本色で統一） */
.wpcf7-aborted {
  background-color: rgba(50, 50, 50, 0.1);
  border: 1px solid rgb(221, 221, 221);
  border: 1px solid var(--color-border-gray);
  border-radius: 0.375rem;
  color: #111;
  color: var(--color-text-primary);
  padding: 0.75rem 1rem;
}

/* 入力デバイスのいずれかにhoverに対応している入力デバイスが含まれる場合に適用 */
.p-header {
  background-color: #fff;
  background-color: var(--color-white);
  transition: background-color 0.3s ease-in-out;
}

.p-header.is-show {
  background-color: #fff;
  background-color: var(--color-white);
}

.p-header__inner {
  padding: 1rem 3.4375rem;
}

.p-header__contents {
  align-items: center;
  display: flex;
  gap: 0.9375rem;
  justify-content: space-between;
  width: 100%;
}

.p-header__logo-section {
  align-items: center;
  display: flex;
  flex-shrink: 0;
}

.p-header__logo {
  align-items: center;
  aspect-ratio: 240/54;
  display: flex;
  width: 15rem;
}

.p-header__logo-link {
  height: inherit;
  width: 100%;
}

.p-header__logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__menu {
  align-items: center;
  display: none;
  gap: 1rem;
}

.p-header__nav {
  align-items: center;
  display: flex;
}

.p-header__nav-items {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-header__nav-link {
  align-items: center;
  color: #111;
  color: var(--color-text-primary);
  display: flex;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  height: 100%;
  line-height: 1.2;
  padding: 1rem 0.75rem;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.p-header__cta {
  align-items: center;
  display: flex;
}

.p-header__cta-button {
  align-items: center;
  background-color: rgb(243, 160, 27);
  background-color: var(--color-accent-orange);
  border-radius: 6.1875rem;
  display: flex;
  justify-content: center;
  padding: 0.9375rem 2.5rem;
  -webkit-text-decoration: none;
  border: 0.125rem solid rgb(243, 160, 27);
  border: 0.125rem solid var(--color-accent-orange);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.p-header__cta-button:active,
.p-header__cta-button:focus {
  background-color: #fff !important;
  background-color: var(--color-white) !important;
  border: 0.125rem solid rgb(243, 160, 27) !important;
  border: 0.125rem solid var(--color-accent-orange) !important;
  opacity: 1 !important;
}
.p-header__cta-button:active .c-button__text,
.p-header__cta-button:focus .c-button__text {
  color: rgb(243, 160, 27) !important;
  color: var(--color-accent-orange) !important;
}

.c-button__text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}

.p-header__menu-button {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  height: 3rem;
  justify-content: center;
  margin-left: auto;
  padding: 0.75rem;
  position: relative;
  width: 3rem;
  z-index: 101;
}
.p-header__menu-button span {
  background-color: #111;
  background-color: var(--color-black);
  border-radius: 0.0625rem;
  display: block;
  height: 0.125rem;
  position: relative;
  transition: all 0.3s ease;
  width: 1.5rem;
}

.p-header__menu-button span::before,
.p-header__menu-button span::after {
  background-color: #111;
  background-color: var(--color-black);
  border-radius: 0.0625rem;
  content: "";
  height: 0.125rem;
  left: 0;
  position: absolute;
  transition: all 0.3s ease;
  width: 100%;
}

.p-header__menu-button span::before {
  top: -0.5rem;
}

.p-header__menu-button span::after {
  top: 0.5rem;
}

.p-header__menu-button[aria-expanded=true] span {
  background-color: transparent;
}

.p-header__menu-button[aria-expanded=true] span::before {
  background-color: #111;
  background-color: var(--color-black);
  rotate: 45deg;
  top: 0;
}

.p-header__menu-button[aria-expanded=true] span::after {
  background-color: #111;
  background-color: var(--color-black);
  rotate: -45deg;
  top: 0;
}

.p-hero-caption {
  display: flex;
  font-size: 3.125rem;
  gap: 1em;
  max-width: 100vw;
  overflow: hidden;
  white-space: nowrap;
  white-space: nowrap;
}

.p-hero-caption__text {
  animation: marquee 45s linear infinite;
  color: #F1F1F1;
}

@keyframes marquee {
  0% {
    translate: 0 0;
  }
  100% {
    translate: calc(-100% - 1em) 0;
  }
}
.p-job {
  background-color: #fff;
  background-color: var(--color-white);
  padding: 5rem 0 6.25rem;
}

.p-job__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}

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

.p-job__title-text {
  color: rgb(50, 50, 50);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.p-job__content {
  display: flex;
  flex-direction: column;
  max-width: 53.75rem;
  width: 100%;
}

.p-job__item {
  border-bottom: 0.0625rem solid rgb(221, 221, 221);
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0;
}

.p-job__item:first-child {
  padding-top: 0;
}

.p-job__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-job__label {
  color: rgb(61, 128, 181);
  flex-shrink: 0;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  width: 11.25rem;
}

.p-job__item-label {
  flex-shrink: 0;
  text-align: left;
  width: 11.25rem;
}

.p-job__item-label-text {
  color: rgb(61, 128, 181);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.p-job__detail {
  flex: 1;
  margin: 0;
}

.p-job__detail-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-job__detail-text {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.p-job__detail-note {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.p-pagenavi .nav-links,
.p-pagenavi .wp-pagenavi {
  align-items: center;
  display: flex;
  gap: 1.0625rem;
  justify-content: center;
}

.p-pagenavi .previouspostslink,
.p-pagenavi .nextpostslink {
  display: inline-block;
}
.p-pagenavi .previouspostslink {
  margin-right: 0.625rem;
  order: -1;
}

.p-pagenavi .nextpostslink {
  margin-left: 0.625rem;
  order: 2;
}

.p-pavinavi__prev,
.p-pavinavi__next {
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  display: block;
  height: auto;
  width: 1.125rem;
}

.p-pavinavi__prev {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
  scale: -1 1;
}

.p-pavinavi__next {
  background-image: url(../images/common/icon-arrow-right-orange2.svg);
}

.p-pavinavi__prev.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  scale: 1 1;
}

.p-pavinavi__next.is-disabled {
  background-image: url(../images/common/icon-arrow-left-beige.svg);
  scale: -1 1;
}

.p-schedule {
  background-color: rgb(241, 248, 250);
  background-color: var(--color-primary-bg);
  overflow: hidden;
  padding: 5rem 0 6.25rem 0;
  position: relative;
  width: 100%;
}

.p-schedule::before {
  aspect-ratio: 1440/540;
  background-image: url("../../assets/images/common/schedule05.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 0;
  translate: -50% 0;
  width: 105%;
  z-index: 1;
}

.p-schedule__inner.l-inner {
  position: relative;
  z-index: 2;
}

.p-schedule__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-bottom: 3.125rem;
}

.p-schedule__title-text {
  color: #111;
  color: var(--color-black);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.p-schedule__title-part--normal {
  color: #111;
  color: var(--color-black);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
}

.p-schedule__title-part--highlight {
  color: #111;
  color: var(--color-black);
  display: inline-block;
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  position: relative;
}

.p-schedule__title-part--highlight::after {
  aspect-ratio: 100/20;
  background-image: url("../../assets/images/common/schedule04.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -1.75rem;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.p-schedule__content {
  align-items: center;
  display: flex;
  gap: 3.75rem;
  justify-content: center;
}

.p-schedule__timeline {
  flex: 1;
  max-width: 28.125rem;
}

.p-schedule__timeline-list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-schedule__timeline-item {
  display: flex;
  gap: 2.25rem;
  position: relative;
}

.p-schedule__time {
  color: #111;
  color: var(--color-black);
  flex-shrink: 0;
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-weight: 500;
  text-align: left;
  width: 3.5rem;
}

.p-schedule__timeline-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 2.375rem;
  position: relative;
}

.p-schedule__timeline-content::before {
  background-color: rgb(243, 160, 27);
  background-color: var(--color-accent-orange);
  content: "";
  height: calc(100% + 3.125rem);
  left: 0;
  position: absolute;
  top: 0.1875rem;
  width: 1px;
}

.p-schedule__timeline-content::after {
  background-color: #fff;
  background-color: var(--color-white);
  border: 4px solid rgb(243, 160, 27);
  border: 4px solid var(--color-accent-orange);
  border-radius: 50%;
  content: "";
  height: 1.375rem;
  left: -0.625rem;
  position: absolute;
  top: 0.1875rem;
  width: 1.375rem;
}

.p-schedule__timeline-item:last-child .p-schedule__timeline-content::before {
  display: none;
}

.p-schedule__timeline-title {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-weight: 500;
  margin: 0;
}

.p-schedule__timeline-description {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.p-schedule__timeline-description p {
  color: rgb(130, 130, 130);
  color: var(--color-gray);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-weight: 400;
  margin: 0;
}

.p-schedule__timeline-image {
  margin-top: 0.75rem;
}

.p-schedule__images {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 1.25rem;
  width: 31.25rem;
}

.p-schedule__image-item--01 {
  aspect-ratio: 371/244;
  width: 23.1875rem;
}

.p-schedule__image-item--02 {
  align-self: flex-end;
  aspect-ratio: 400/224;
  width: 25rem;
}

.p-schedule__image-item--03 {
  align-self: flex-start;
  aspect-ratio: 260/220;
  width: 16.25rem;
}

.p-solution {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-solution__wrapper {
  background-color: rgb(73, 176, 220);
  background-color: var(--color-primary-light);
  clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0, 50% 6.25rem);
}

.p-solution__inner.l-inner {
  padding-bottom: 5rem;
  padding-top: 5rem;
  position: relative;
}

.p-solution__bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-solution__bg-decoration {
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  position: absolute;
}

.p-solution__bg-decoration--left {
  aspect-ratio: 491/350;
  background-image: url("../../assets/images/common/section-decoration-01.png");
  bottom: 0;
  left: 0;
  width: 30.6875rem;
}

.p-solution__bg-decoration--right {
  aspect-ratio: 491/350;
  background-image: url("../../assets/images/common/section-decoration-02.png");
  right: 0;
  top: 0;
  width: 30.6875rem;
}

.p-solution__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-top: 6.25rem;
  position: relative;
  z-index: 2;
}

.p-solution__title {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.p-solution__title-text {
  color: #fff;
  color: var(--color-white);
  display: block;
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  position: relative;
  text-align: center;
}

.p-solution__title-text span {
  white-space: nowrap;
}

.p-solution__title-text::before {
  aspect-ratio: 23/27;
  background-image: url("../../assets/images/common/solution02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: -1.1em;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.4375rem;
}

.p-solution__title-text::after {
  aspect-ratio: 23/27;
  background-image: url("../../assets/images/common/solution03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: -1.1em;
  top: 50%;
  translate: 0 -50%;
  width: 1.4375rem;
}

.p-solution__person-image {
  aspect-ratio: 819/380;
  width: 51.1875rem;
}

.p-solution__demo-bubble {
  align-items: center;
  display: flex;
  height: 8.1875rem;
  justify-content: center;
  left: 50%;
  margin-left: -3.75rem;
  position: absolute;
  top: 1.25rem;
  width: 7.5rem;
  z-index: 3;
}

.p-solution__demo-bubble-bg {
  background-color: rgb(243, 160, 27);
  border-radius: 50%;
  height: 7.5rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 7.5rem;
}

.p-solution__demo-bubble-bg::after {
  background-color: rgb(243, 160, 27);
  bottom: -0.6875rem;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  content: "";
  height: 1.0625rem;
  left: 50%;
  margin-left: -0.65625rem;
  position: absolute;
  width: 1.3125rem;
}

.p-solution__demo-bubble-text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 2.25rem;
  font-weight: 400;
  left: 0;
  line-height: 1.2;
  position: absolute;
  text-align: center;
  top: 50%;
  translate: 0 -50%;
  width: 100%;
  z-index: 4;
}

.p-solution__balloons {
  display: none;
  position: relative;
  width: 51.1875rem;
}

.p-solution__balloon-content {
  background-color: #fff;
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 5px 5px 0px 0px rgb(254, 243, 145);
  padding: 0.875rem 1.125rem;
  position: relative;
}

.p-solution__balloon-text {
  color: rgb(50, 50, 50);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.p-solution__balloon-text-color {
  color: rgb(243, 160, 27);
  color: var(--color-accent-orange);
}

.p-solution__balloon-tail {
  background-color: #fff;
  background-color: var(--color-white);
  border-radius: 0.1875rem;
  height: 1.25rem;
  position: absolute;
  width: 1.25rem;
  z-index: -1;
}

.p-tab__menu-items {
  display: flex;
}

.p-tab__button {
  display: block;
  position: relative;
}

.p-tab__button.is-active {
  background-color: rgb(248, 173, 143);
  background-color: var(--color-light-orange);
}

/* タブコンテンツ */
.p-tab__content {
  display: none;
}

.p-tab__content.is-active {
  animation: fade 0.5s ease;
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-mv {
  height: calc(100vh - 3.75rem);
  height: calc(100vh - var(--header-height));
  height: calc(100svh - 3.75rem);
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  position: relative;
  width: 100%;
}

.p-mv__inner {
  height: 100%;
  position: relative;
  width: 100%;
}

.p-mv__content {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  padding: 0 3.4375rem;
  position: relative;
  width: 100%;
  z-index: 2;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    translate: 0 1.875rem;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    translate: -3.125rem 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    translate: 3.125rem 0;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
.p-mv__bg {
  animation: fadeIn 1.5s ease-out;
  aspect-ratio: 16/9;
  height: 100%;
  left: 0;
  min-height: 43.75rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-mv__bg-image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv__bg-overlay {
  background-color: rgba(0, 0, 0, 0.2);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-mv__title-area {
  animation: fadeIn 1.2s ease-out 0.5s both;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 48rem;
  z-index: 3;
}

.typewriter-char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.1s ease-out;
}

.p-mv__title {
  color: #fff;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  font-weight: 400;
  gap: 0.9375rem;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  rotate: -5deg;
  text-align: center;
  z-index: 5;
}

.p-mv__title-sub {
  display: inline-block;
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.9375rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.p-mv__title-sub::before {
  aspect-ratio: 23/27;
  background-image: url("../../assets/images/common/mv05.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: -1.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transition: opacity 0.5s ease-out;
  translate: 0 -50%;
  width: 1.4375rem;
}

.p-mv__title-sub::after {
  aspect-ratio: 23/27;
  background-image: url("../../assets/images/common/mv06.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0;
  position: absolute;
  right: -1.1em;
  top: 50%;
  transition: opacity 0.5s ease-out;
  translate: 0 -50%;
  width: 1.4375rem;
}

.p-mv__title-sub.show-decorations::before,
.p-mv__title-sub.show-decorations::after {
  opacity: 1;
}

.p-mv__title-main {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 3.5rem;
}

.p-mv__title-main-sub {
  font-size: 2.5rem;
}

.p-mv__title-question {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 2.875rem;
}

.p-mv__title-image {
  aspect-ratio: 380/258;
  left: 50%;
  position: absolute;
  top: 50%;
  translate: -50% -50%;
  width: 23.75rem;
  z-index: 1;
}

.p-mv__person {
  bottom: 0;
  overflow: hidden;
  position: absolute;
  z-index: 2;
}
.p-mv__person img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  display: block;
     object-fit: cover;
}

.p-mv__person--left {
  animation: slideInLeft 1s ease-out 1s both;
  aspect-ratio: 340/270;
  left: 5rem;
  width: 21.25rem;
}

.p-mv__person--right {
  animation: slideInRight 1s ease-out 1.2s both;
  aspect-ratio: 239/275;
  right: 5rem;
  width: 14.9375rem;
}

.p-mv__person-comment {
  bottom: -1.875rem;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  z-index: 3;
}

.p-mv__comment-bubble {
  background-color: #fff;
  background-color: var(--color-white);
  border-radius: 5.625rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm);
  min-width: 17.5rem;
  padding: 0.9375rem 1.25rem;
  position: relative;
}

.p-mv__comment-bubble::after {
  border-bottom: 0.625rem solid #fff;
  border-bottom: 0.625rem solid var(--color-white);
  border-left: 0.625rem solid transparent;
  border-right: 0.625rem solid transparent;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: -0.5rem;
  translate: -50% 0;
  width: 0;
}

.p-mv__comment-text {
  color: #111;
  color: var(--color-text-primary);
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.p-voice {
  background-color: #fff;
  background-color: var(--color-white);
  padding: 5rem 0 6.25rem 0;
  position: relative;
  width: 100%;
}

.p-voice__inner.l-inner {
  position: relative;
}

.p-voice__title {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 3.125rem;
}

.p-voice__title-wrapper {
  align-items: center;
  display: flex;
  gap: 0.625rem;
}

.p-voice__title-text {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-voice__title-main {
  color: #111;
  color: var(--color-black);
  display: block;
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
  text-align: center;
}

.p-voice__title-main::before {
  aspect-ratio: 23/27;
  background-image: url("../../assets/images/common/voice01.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: -1.1em;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 1.4375rem;
}

.p-voice__title-main::after {
  aspect-ratio: 23/27;
  background-image: url("../../assets/images/common/voice02.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  position: absolute;
  right: -1.1em;
  top: 50%;
  translate: 0 -50%;
  width: 1.4375rem;
}

.p-voice__title-sub {
  color: rgb(243, 160, 27);
  color: var(--color-accent-orange);
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.p-voice__content {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.p-voice__item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 31.25rem;
}

.p-voice__item-video {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  overflow: hidden;
  width: 100%;
}

.p-voice__video-wrapper {
  height: 100%;
  position: relative;
  width: 100%;
}

.p-voice__video-wrapper iframe {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-voice__item-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-voice__item-header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.p-voice__item-badge {
  background-color: rgb(0, 146, 215);
  background-color: var(--color-primary);
  border-radius: 0rem;
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.25rem 1rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.p-voice__item-name {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.p-voice__item-name-sub {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.p-voice__item-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.p-voice__item-title {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.p-voice__item-description {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.p-voice__tiktok-button {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.4375rem;
  margin-top: 3.75rem;
}

.p-voice__tiktok-caption {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.p-voice__tiktok-btn {
  align-items: center;
  background-color: #111;
  background-color: var(--color-black);
  border: 0.125rem solid #111;
  border: 0.125rem solid var(--color-black);
  border-radius: 6.1875rem;
  display: inline-flex;
  height: 3.3125rem;
  justify-content: center;
  width: 16.875rem;
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
.p-voice__tiktok-btn::after {
  display: none !important;
}
.p-voice__tiktok-btn-content {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}

.p-voice__tiktok-icon {
  align-items: center;
  display: flex;
  height: 1.25rem;
  justify-content: center;
  width: 1.125rem;
}

.p-voice__tiktok-logo {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-voice__tiktok-text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.p-worry {
  background-image: url("../../assets/images/common/worry05.png");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
  padding: 3.75rem 0 12.5rem;
  width: 100%;
}

.p-worry__inner.l-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.p-worry__title-text {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: "Zen Kurenaido", sans-serif;
  font-family: var(--title-font-family);
  font-weight: 400;
  gap: 0.25rem;
  justify-content: center;
  margin: 0;
  text-align: center;
}

.p-worry__title-part--normal {
  color: #111;
  color: var(--color-text-primary);
  font-size: 1.875rem;
  line-height: 1.2;
}

.p-worry__title-part--highlight {
  color: rgb(0, 146, 215);
  color: var(--color-primary);
  display: inline-block;
  font-size: 2.625rem;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
}

.p-worry__title-part--highlight::after {
  aspect-ratio: 100/20;
  background-image: url("../../assets/images/common/worry03.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -2rem;
  content: "";
  left: 0;
  position: absolute;
  width: 100%;
}

.p-worry__content {
  margin-left: auto;
  margin-right: auto;
  margin-top: 5rem;
  max-width: 53.75rem;
  width: 100%;
}

.p-worry__card {
  align-items: flex-end;
  background-color: #fff;
  background-color: var(--color-white);
  border-radius: 0.625rem;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
  padding: 3rem 3.5rem 0 3.5rem;
  position: relative;
}

.p-worry__image {
  aspect-ratio: 240/303;
  flex: 0 0 15rem;
  width: 15rem;
}

.p-worry__image {
  display: block;
  overflow: hidden;
  position: relative;
}
.p-worry__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  display: block;
     object-fit: contain;
}

.p-worry__list-container {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
}

.p-worry__list-area {
  padding: 0 0 2.5rem 0;
}

.p-worry__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-worry__list-item {
  align-items: center;
  border-bottom: 1px dashed #111;
  border-bottom: 1px dashed var(--color-black);
  display: flex;
  gap: 0.625rem;
  padding: 0 2rem 1.5rem 2rem;
}

.p-worry__list-item:first-child {
  border-top: 1px dashed #111;
  border-top: 1px dashed var(--color-black);
  padding-top: 1.5rem;
}

.p-worry__check-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 1.375rem;
  justify-content: center;
  width: 1.375rem;
}

.p-worry__check-svg {
  display: block;
  height: 100%;
  width: 100%;
}

.p-worry__list-text {
  color: #111;
  color: var(--color-black);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
}

.p-worry__list-text--color {
  color: rgb(228, 106, 57);
  color: var(--color-accent-orange-dark);
}

.p-worry__balloon {
  left: 3.5rem;
  position: absolute;
  top: -1.25rem;
  z-index: 10;
}

.p-worry__balloon-content {
  align-items: center;
  background-color: rgb(130, 130, 130);
  background-color: var(--color-gray);
  border-radius: 5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  position: relative;
}

.p-worry__balloon-content::after {
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.75rem solid rgb(130, 130, 130);
  border-top: 0.75rem solid var(--color-gray);
  bottom: -0.625rem;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  translate: -50% 0;
  width: 0;
}

.p-worry__balloon-icon {
  align-items: center;
  aspect-ratio: 10/13;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 1.25rem;
}

.p-worry__balloon-icon {
  display: block;
  overflow: hidden;
  position: relative;
}
.p-worry__balloon-icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  display: block;
     object-fit: contain;
}

.p-worry__balloon-text {
  color: #fff;
  color: var(--color-white);
  font-family: "Noto Sans JP VF", sans-serif;
  font-family: var(--base-font-family);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  white-space: nowrap;
}

@media screen and (min-width: 768px){
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
  html {
    font-size: 1.3333333333vw;
  }
  :root {
    --header-height: 5.375rem;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  .l-breadcrumb {
    margin-top: 1.0625rem;
  }
  .l-drawer {
    display: none;
  }
  .l-hero-caption {
    margin-top: -1.375rem;
  }
  .p-content h2:nth-of-type(1) {
    margin-top: 2.125rem;
  }
  .p-content figure:nth-child(n+2) {
    margin-top: 2.375rem;
  }
  .wp-block-file,
  .p-content p:nth-child(n+2),
  .p-content h3:nth-child(n+2),
  .p-content h4:nth-child(n+2),
  .p-content h2 + ul:nth-of-type(n + 2),
  .p-content h2 + ol:nth-of-type(n + 2),
  .p-content ol > li > ol:nth-of-type(n + 2),
  .p-content figure {
    margin-top: 2.5rem;
  }
  .p-content .wp-block-group {
    padding: 1.5rem 1.875rem;
  }
  .wp-block-file:not(.wp-element-button) a::before {
    margin-right: 0.5rem;
    margin-top: 1rem;
    width: 2rem;
  }
  .p-form__items {
    gap: 0.75rem;
  }
  .p-form__item:first-of-type {
    gap: 1rem;
    margin-bottom: 1.6875rem;
  }
  .p-form__dt {
    padding-right: 1.5rem;
    padding-top: 0.5rem;
  }
  .p-form__dd input:not([type=radio]):not([type=checkbox]),
  .p-form__dd textarea {
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
  }
  .p-form__dd input[type=checkbox] + span,
  .p-form__dd input[type=radio] + span {
    gap: 0.875rem;
  }
  .p-form__dd input[type=checkbox] + span::before {
    margin-top: 0.1875rem;
    width: 1rem;
  }
  .p-form__dd textarea {
    height: 11.75rem;
  }
  .p-form__acceptance {
    margin-top: 1.625rem;
  }
  .p-form__acceptance input + span::before {
    margin-top: 0.4375rem;
  }
  .p-form__policy-description {
    margin-top: 2.625rem;
  }
  .p-form__send {
    margin-top: 3.5rem;
    max-width: 20.75rem;
  }
  .p-form__send input {
    min-height: 3.9375rem;
    padding: 0 3.375rem 0 2.625rem;
  }
  .wpcf7-response-output {
    font-size: 1rem;
    margin: 1.5rem 0;
    padding: 1.125rem;
  }
  .wpcf7-mail-sent-ng,
  .wpcf7-validation-errors {
    padding: 1rem 1.25rem;
  }
  .wpcf7-spam-blocked {
    padding: 1rem 1.25rem;
  }
  .wpcf7-aborted {
    padding: 1rem 1.25rem;
  }
  .p-header__menu {
    display: flex;
  }
  .p-hero-caption__text {
    font-size: 6.25rem;
  }
  .p-pagenavi .nav-links,
  .p-pagenavi .wp-pagenavi {
    gap: 1.375rem;
  }
  .p-pagenavi .previouspostslink {
    margin-right: 0.75rem;
  }
  .p-pagenavi .nextpostslink {
    margin-left: 0.75rem;
  }
  .p-pavinavi__prev,
  .p-pavinavi__next {
    width: 1.5rem;
  }
}

@media (max-width: 375px){
  html {
    font-size: 4.2666666667vw;
  }
}

@media (min-width: 1200px){
  html {
    font-size: 16px;
  }
}

@media (max-width: 782px){
  :root:has(.admin-bar) {
    --wp-admin-bar-height: 46px;
  }
}

@media (max-width: 600px){
  #wpadminbar {
    position: fixed !important;
  }
}

@media screen and (max-width: 767px){
  .l-inner {
    max-width: 36.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .c-section-decoration {
    display: none;
  }
  .c-section-title {
    margin-bottom: 2.5rem;
  }
  .c-text-xs {
    font-size: 0.625rem;
  }
  .c-text-sm {
    font-size: 0.75rem;
  }
  .c-text-base {
    font-size: 0.875rem;
  }
  .c-text-md {
    font-size: 1rem;
  }
  .c-text-lg {
    font-size: 1rem;
  }
  .c-text-xl {
    font-size: 1.125rem;
  }
  .c-text-2xl {
    font-size: 1.5rem;
  }
  .c-text-3xl {
    font-size: 1.75rem;
  }
  .c-timeline {
    gap: 2.5rem;
  }
  .c-timeline__item {
    gap: 1rem;
  }
  .c-timeline__content::before {
    height: calc(100% + 2.5rem);
  }
  .p-404 {
    min-height: 18.75rem;
    padding: 0.9375rem 0;
  }
  .p-404__content {
    padding: 0.625rem 1.25rem 0.3125rem 1.25rem;
  }
  .p-404__error-code {
    margin-bottom: 1.5rem;
  }
  .p-404__error-number {
    font-size: 5rem;
  }
  .p-404__title-area {
    margin-bottom: 2rem;
  }
  .p-404__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .p-404__description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-404__suggestions {
    margin-bottom: 2rem;
  }
  .p-404__suggestions-list {
    gap: 0.75rem;
  }
  .p-404__suggestions-item {
    gap: 0.625rem;
    padding: 0.75rem;
  }
  .p-404__suggestions-icon {
    font-size: 1.25rem;
  }
  .p-404__suggestions-text {
    font-size: 0.875rem;
  }
  .p-404__button {
    padding: 0.75rem 2rem;
  }
  .p-404__button-text {
    font-size: 0.8125rem;
  }
  .p-contact {
    padding: 3.75rem 0 5rem 0;
  }
  .p-contact__inner {
    gap: 2.5rem;
  }
  .p-contact__title {
    font-size: 1.625rem;
    line-height: 1.4;
    white-space: nowrap;
  }
  .p-contact__title::before {
    display: none;
  }
  .p-contact__title::after {
    display: none;
  }
  .p-contact__content {
    gap: 1.875rem;
  }
  .p-contact__text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-contact__form-container {
    padding: 0 1.25rem;
    width: 100%;
  }
  .p-contact__label {
    font-size: 0.875rem;
  }
  .p-contact__input,
  .p-contact__textarea,
  .p-contact__select,
  .wpcf7-form-control.wpcf7-select,
  .wpcf7-form-control.wpcf7-text,
  .wpcf7-form-control.wpcf7-textarea,
  .wpcf7-form-control.wpcf7-email,
  .wpcf7-form-control.wpcf7-tel,
  .wpcf7-form-control.wpcf7-date {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }
  .p-contact__submit-btn {
    font-size: 1rem;
    min-width: 11.25rem;
    padding: 1rem 2rem;
  }
  .p-contact__decoration--bottom-left {
    display: none;
  }
  .p-contact__decoration--top-right {
    display: none;
  }
  .p-education-card {
    gap: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 25rem;
    padding: 1.5rem 1.25rem;
    width: 100%;
  }
  .p-education-card__illustration {
    width: 5rem;
  }
  .p-education-card__icon {
    width: 3.125rem;
  }
  .p-education-card__content {
    gap: 1.25rem;
    width: 100%;
  }
  .p-education-card__step {
    padding: 0.375rem 0;
  }
  .p-education-card__list {
    gap: 0.625rem;
  }
  .p-education-card__list-item {
    gap: 0.5rem;
  }
  .p-education {
    padding: 3.75rem 0 5rem 0;
  }
  .p-education__title {
    margin-bottom: 2.5rem;
  }
  .p-education__content {
    flex-direction: column;
    gap: 1.5rem;
  }
  .p-faq {
    padding: 3.75rem 0 5rem;
  }
  .p-faq__inner {
    gap: 2.5rem;
  }
  .p-faq__title-text {
    font-size: 2rem;
  }
  .p-faq__content {
    gap: 1.25rem;
  }
  .p-faq__item {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .p-faq__question {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .p-faq__question-content {
    gap: 1rem;
  }
  .p-faq__question-label {
    font-size: 1.25rem;
  }
  .p-faq__question-text {
    font-size: 1rem;
  }
  .p-faq__answer-content {
    gap: 1rem;
    padding: 1.5rem 0;
  }
  .p-faq__answer-label {
    font-size: 1.25rem;
  }
  .p-faq__answer-text p {
    font-size: 1rem;
  }
  .p-faq__item.is-open .p-faq__answer {
    max-height: 31.25rem;
  }
  .p-feature__title-band {
    height: 3.75rem;
  }
  .p-feature__title-band-text {
    font-size: 1.125rem;
    line-height: 1.2;
  }
  .p-feature__title-band-text span {
    font-size: 1rem;
    line-height: 1.2;
  }
  .p-feature__main::after {
    border-left-width: 0.5rem;
    border-right-width: 0.5rem;
    border-top-width: 0.625rem;
  }
  .p-feature__main {
    padding: 2.5rem 0 5rem 0;
  }
  .p-feature__main::before {
    display: none;
  }
  .p-feature__title {
    gap: 0.375rem;
    margin-bottom: 2.5rem;
  }
  .p-feature__title-number {
    font-size: 2.625rem;
    line-height: 1.2;
  }
  .p-feature__title-text {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-top: 0.75rem;
  }
  .p-feature__content {
    flex-direction: column;
    gap: 1.875rem;
  }
  .p-feature__item {
    margin-left: auto;
    margin-right: auto;
    max-width: 25rem;
    padding: 1.25rem 1.5rem 1.875rem 1.5rem;
    width: 100%;
  }
  .p-feature__item-point {
    top: -0.8125rem;
  }
  .p-feature__item-point-icon {
    height: 3.875rem;
    width: 3.75rem;
  }
  .p-feature__item-point-label {
    font-size: 0.4375rem;
    line-height: 1;
  }
  .p-feature__item-point-number {
    font-size: 1.5rem;
    line-height: 1;
  }
  .p-feature__item-content {
    gap: 0.75rem;
    margin-top: 2.5rem;
  }
  .p-feature__item-title-highlight {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .p-feature__item-title-text {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  .p-feature__item-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .p-footer__inner {
    gap: 1.5rem;
  }
  .p-footer__main-section {
    gap: 1.25rem;
  }
  .p-footer__logo img {
    width: 12.5rem;
  }
  .p-footer__company-name {
    font-size: 0.875rem;
  }
  .p-footer__company-details {
    font-size: 0.75rem;
    letter-spacing: 0;
    line-height: 1.7;
  }
  .p-footer__nav {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .p-footer__nav-link {
    font-size: 0.875rem;
  }
  .p-footer__copyright {
    font-size: 0.6875rem;
  }
  .p-header__inner {
    padding: 0.375rem 1.25rem;
  }
  .p-header__logo {
    width: 7.5rem;
  }
  .p-header__menu-button {
    display: flex;
  }
  .p-job {
    padding: 3.75rem 0 5rem;
  }
  .p-job__inner {
    gap: 2.5rem;
  }
  .p-job__title-text {
    font-size: 2rem;
  }
  .p-job__item {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }
  .p-job__label {
    font-size: 0.9375rem;
    width: 100%;
  }
  .p-job__item-label {
    width: 100%;
  }
  .p-job__item-label-text {
    font-size: 0.9375rem;
  }
  .p-job__detail-content {
    gap: 0.75rem;
  }
  .p-job__detail-text {
    font-size: 0.9375rem;
  }
  .p-job__detail-note {
    font-size: 0.8125rem;
  }
  .p-schedule {
    padding: 3.75rem 0 5rem 0;
  }
  .p-schedule::before {
    aspect-ratio: 390/146;
  }
  .p-schedule__title {
    margin-bottom: 2.5rem;
  }
  .p-schedule__title-part--highlight::after {
    bottom: -1.5rem;
  }
  .p-schedule__content {
    flex-direction: column;
    gap: 2.5rem;
  }
  .p-schedule__timeline {
    max-width: 100%;
  }
  .p-schedule__timeline-list {
    gap: 1.875rem;
  }
  .p-schedule__timeline-item {
    gap: 1rem;
  }
  .p-schedule__timeline-content::before {
    height: calc(100% + 2.5rem);
  }
  .p-schedule__timeline-image {
    max-width: 17.5rem;
    width: 100%;
  }
  .p-schedule__images {
    display: none;
    gap: 1rem;
    width: 100%;
  }
  .p-schedule__image-item--01 {
    width: 17.5rem;
  }
  .p-schedule__image-item--02 {
    align-self: center;
    width: 18.75rem;
  }
  .p-schedule__image-item--03 {
    align-self: center;
    width: 12.5rem;
  }
  .p-solution__wrapper {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0, 50% 3.125rem);
  }
  .p-solution__inner.l-inner {
    clip-path: polygon(0 1.875rem, 50% 0, 100% 1.875rem, 100% 100%, 0 100%);
    padding-bottom: 3.75rem;
    padding-top: 3.75rem;
  }
  .p-solution__content {
    gap: 2.5rem;
    padding-top: 3.125rem;
  }
  .p-solution__title-text {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .p-solution__title-text::before {
    display: none;
  }
  .p-solution__title-text::after {
    display: none;
  }
  .p-solution__person-image {
    aspect-ratio: 300/300;
    width: 18.75rem;
  }
  .p-solution__demo-bubble {
    height: 4.0625rem;
    margin-left: -1.875rem;
    width: 3.75rem;
  }
  .p-solution__demo-bubble-bg {
    height: 3.75rem;
    width: 3.75rem;
  }
  .p-solution__demo-bubble-text {
    font-size: 1.5rem;
  }
  .p-solution__balloons {
    display: block;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 18.75rem;
  }
  .p-solution__balloon-content {
    max-width: 18.75rem;
    padding: 0.75rem 1rem;
  }
  .p-solution__balloon-text {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  .p-solution__balloon-tail {
    display: none;
  }
  .p-mv__content {
    flex-direction: column;
    gap: 1.875rem;
    justify-content: center;
    padding: 2.5rem 1.25rem;
  }
  .p-mv__bg {
    min-height: 32.5rem;
  }
  .p-mv__title-area {
    width: 21.875rem;
  }
  .p-mv__title-sub {
    font-size: 1rem;
  }
  .p-mv__title-sub::before {
    aspect-ratio: 16/18;
    width: 1rem;
  }
  .p-mv__title-sub::after {
    aspect-ratio: 16/18;
    width: 1rem;
  }
  .p-mv__title-main {
    font-size: 1.875rem;
  }
  .p-mv__title-main-sub {
    font-size: 1.3125rem;
  }
  .p-mv__title-question {
    font-size: 1.625rem;
  }
  .p-mv__title-image {
    aspect-ratio: 280/190;
    width: 17.5rem;
  }
  .p-mv__person {
    align-self: center;
  }
  .p-mv__person--left {
    aspect-ratio: 203/135;
    left: 0.3125rem;
    width: 12.6875rem;
  }
  .p-mv__person--right {
    aspect-ratio: 134/142;
    right: 0.3125rem;
    width: 8.375rem;
  }
  .p-mv__person-comment {
    bottom: -1.25rem;
  }
  .p-mv__comment-bubble {
    min-width: 13.75rem;
    padding: 0.75rem 1rem;
  }
  .p-mv__comment-bubble::after {
    border-bottom-width: 0.5rem;
    border-left-width: 0.5rem;
    border-right-width: 0.5rem;
    top: -0.375rem;
  }
  .p-mv__comment-text {
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .p-voice {
    padding: 3.75rem 0 5rem 0;
  }
  .p-voice__title {
    margin-bottom: 2.5rem;
  }
  .p-voice__title-main {
    font-size: 1.25rem;
    line-height: 1.2;
  }
  .p-voice__title-sub {
    font-size: 1.75rem;
    line-height: 1.2;
  }
  .p-voice__content {
    flex-direction: column;
    gap: 1.875rem;
  }
  .p-voice__item {
    gap: 1.25rem;
    width: 100%;
  }
  .p-voice__item-content {
    gap: 1rem;
  }
  .p-voice__item-badge {
    font-size: 0.625rem;
    line-height: 1.5;
    padding: 0.1875rem 0.75rem;
  }
  .p-voice__item-name {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .p-voice__item-name-sub {
    font-size: 1rem;
  }
  .p-voice__item-text {
    gap: 0.75rem;
  }
  .p-voice__item-title {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-voice__item-description {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .p-voice__tiktok-button {
    gap: 0.375rem;
    margin-top: 2.5rem;
  }
  .p-voice__tiktok-caption {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .p-voice__tiktok-btn {
    height: 3rem;
    width: 15rem;
  }
  .p-voice__tiktok-btn-content {
    gap: 0.375rem;
  }
  .p-voice__tiktok-icon {
    height: 1.125rem;
    width: 1rem;
  }
  .p-voice__tiktok-text {
    font-size: 0.875rem;
    line-height: 1.2;
  }
  .p-worry {
    padding: 2.5rem 0 12.5rem;
  }
  .p-worry__title-text {
    gap: 0.125rem;
    letter-spacing: 0;
  }
  .p-worry__title-part--normal {
    font-size: 1.25rem;
  }
  .p-worry__title-part--highlight {
    font-size: 1.625rem;
  }
  .p-worry__title-part--highlight::after {
    bottom: -1.125rem;
  }
  .p-worry__content {
    margin-top: 3.75rem;
  }
  .p-worry__card {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 2.8125rem 1.25rem 0 1.25rem;
  }
  .p-worry__image {
    width: 11.875rem;
  }
  .p-worry__list-area {
    padding: 0 0 1.875rem 0;
  }
  .p-worry__list {
    gap: 1.25rem;
  }
  .p-worry__list-item {
    gap: 0.5rem;
    padding: 0 1.25rem 1rem 1.25rem;
  }
  .p-worry__list-item:first-child {
    padding-top: 1rem;
  }
  .p-worry__list-text {
    font-size: 1rem;
  }
  .p-worry__balloon {
    left: 50%;
    top: -0.625rem;
    translate: -50% 0;
  }
  .p-worry__balloon-content {
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
  }
  .p-worry__balloon-content::after {
    border-left-width: 0.375rem;
    border-right-width: 0.375rem;
    border-top-width: 0.625rem;
    left: 50%;
    translate: -50% 0;
  }
  .p-worry__balloon-icon {
    aspect-ratio: 4/5;
    width: 1rem;
  }
  .p-worry__balloon-text {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .js-fade-in,
  .js-fade-in-item,
  .js-fade-in-light,
  .js-fade-in-scale,
  .js-fade-in-left,
  .js-fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (hover: hover) and (pointer: fine){
  .p-404__button:hover {
    background-color: #fff;
    background-color: var(--color-white);
    border: 0.125rem solid rgb(243, 160, 27);
    border: 0.125rem solid var(--color-accent-orange);
    opacity: 1;
  }
  .p-404__button:hover .p-404__button-text {
    color: rgb(243, 160, 27);
    color: var(--color-accent-orange);
  }
  .p-contact__checkbox-text a:hover {
    opacity: 1;
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }
  .p-contact__privacy-link:hover {
    opacity: 0.8;
  }
  .p-contact__submit-btn:hover {
    background-color: #fff;
    background-color: var(--color-white);
    color: rgb(243, 160, 27);
  }
  .p-drawer__nav-link:hover {
    color: rgb(0, 146, 215);
    color: var(--color-primary);
  }
  .p-drawer__nav-link:hover::after {
    color: rgb(0, 146, 215);
    color: var(--color-primary);
  }
  .p-footer__nav-link:hover {
    color: rgb(61, 128, 181);
  }
  .p-footer__tiktok-link:hover {
    opacity: 0.8;
  }
  .p-header__nav-link:hover {
    color: rgb(0, 146, 215);
    color: var(--color-primary);
  }
  .p-header__cta-button:hover {
    background-color: #fff !important;
    background-color: var(--color-white) !important;
    border: 0.125rem solid rgb(243, 160, 27) !important;
    border: 0.125rem solid var(--color-accent-orange) !important;
    opacity: 1 !important;
  }
  .p-header__cta-button:hover .c-button__text {
    color: rgb(243, 160, 27) !important;
    color: var(--color-accent-orange) !important;
  }
  .p-voice__tiktok-btn:hover {
    background-color: #fff;
    background-color: var(--color-white);
    border-color: #111;
    border-color: var(--color-black);
  }
  .p-voice__tiktok-btn:hover .p-voice__tiktok-text {
    color: #111;
    color: var(--color-black);
  }
}

@media (max-width: 480px){
  .p-education__title-text span {
    display: block;
    white-space: normal;
  }
}
/*# sourceMappingURL=style.css.map */
