@charset "UTF-8";
:root {
  --header-height: 71px;
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 60px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1d1d1d;
  background: #fff;
}

html {
  font-size: 16px;
}
@media (max-width: 1180px) {
  html {
    font-size: 1.3559322034vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

.body--progress {
  opacity: 0.6;
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

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

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

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

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          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;
}

.c-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0.625rem 2rem 0.75rem 1rem;
  background: #fbb901;
  border-radius: 100vmax;
  font-size: 1.125rem;
  font-weight: 900;
  color: #fff;
  -webkit-box-shadow: 0 0.125rem 0 #dc9832;
          box-shadow: 0 0.125rem 0 #dc9832;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-button {
    max-width: 21.5625rem;
  }
}

@media (hover: hover) {
  .c-button:hover {
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0.125rem);
            transform: translateY(0.125rem);
  }
}
.c-button__tag {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1d1d1d;
  background: #fff;
  padding: 0.0625rem 0.75rem 0.1875rem;
  border-radius: 100vmax;
}

.c-button__time {
  font-size: 1.25rem;
  font-family: "Helvetica", "Arial", sans-serif;
}

.c-button::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  will-change: transform;
  width: 0.5rem;
  height: 0.8125rem;
  right: 1rem;
}

.c-cta-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 25.125rem;
  height: 6.5625rem;
  background: #fbb901;
  border-radius: 100vmax;
  font-size: 1.875rem;
  font-weight: 900;
  color: #fff;
  -webkit-box-shadow: 0 0.375rem 0 #dc9832;
          box-shadow: 0 0.375rem 0 #dc9832;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  letter-spacing: 0.01em;
  -webkit-filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767px) {
  .c-cta-button {
    max-width: 21.5625rem;
    width: 100%;
    height: 4.5rem;
    font-size: 1.5rem;
    padding-top: 0.5rem;
    -webkit-box-shadow: 0 0.125rem 0 #dc9832;
            box-shadow: 0 0.125rem 0 #dc9832;
  }
}

@media (hover: hover) {
  .c-cta-button:hover {
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0.375rem);
            transform: translateY(0.375rem);
  }
}
.c-cta-button__tag {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1d1d1d;
  background: #fff;
  padding: 0.1875rem 1.625rem 0.34375rem;
  border: 1px solid #fbb901;
  border-radius: 100vmax;
  position: absolute;
  top: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-cta-button__tag {
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 0.375rem 1.25rem;
    top: -1rem;
  }
}

.c-cta-button__time {
  font-size: 1.6875rem;
  font-family: "Helvetica", "Arial", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-cta-button__time {
    font-size: 1.375rem;
  }
}

.c-cta-button::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  will-change: transform;
  width: 0.9375rem;
  height: 1.5rem;
  right: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-cta-button::after {
    width: 0.5rem;
    height: 0.875rem;
    right: 3.0625rem;
  }
}

.c-requirement-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 25.125rem;
  height: 6.5625rem;
  background: #fff;
  border-radius: 100vmax;
  font-size: 1.875rem;
  font-weight: 700;
  color: #00a7b5;
  -webkit-box-shadow: 0 0.375rem 0 #96bbbe;
          box-shadow: 0 0.375rem 0 #96bbbe;
  text-align: center;
  -webkit-transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .c-requirement-button {
    max-width: 21.5625rem;
    width: 100%;
    height: 4.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-box-shadow: 0 0.125rem 0 #96bbbe;
            box-shadow: 0 0.125rem 0 #96bbbe;
  }
}

@media (hover: hover) {
  .c-requirement-button:hover {
    opacity: 1;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(0.375rem);
            transform: translateY(0.375rem);
  }
}
.c-requirement-button__tag {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1d1d1d;
  background: #fff;
  padding: 0.1875rem 1.625rem 0.34375rem;
  border: 1px solid #fbb901;
  border-radius: 100vmax;
  position: absolute;
  top: -0.9375rem;
}

.c-requirement-button::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #00a7b5;
  will-change: transform;
  width: 0.9375rem;
  height: 1.5rem;
  right: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-requirement-button::after {
    width: 0.5rem;
    height: 0.875rem;
    right: 3.0625rem;
  }
}

.c-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.8;
  position: relative;
  display: inline-block;
  padding-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.375rem;
    padding-bottom: 1rem;
  }
}

.c-section-title::before {
  content: "";
  position: absolute;
  background: #00a7b5;
  width: 0.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  bottom: 0;
  left: calc(50% - 0.625rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    width: 0.625rem;
  }
}

.c-section-title::after {
  content: "";
  position: absolute;
  background: #fbb901;
  width: 0.75rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  bottom: 0;
  right: calc(50% - 0.625rem);
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .c-section-title::after {
    width: 0.625rem;
  }
}

.c-section-title--white {
  color: #fff;
}

.c-section-title--white::before {
  background: #fff;
}

.c-section-title--white::after {
  background: #fff;
}

.l-inner {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1240px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 15px;
    max-width: 600px;
  }
}

.l-narrow-inner {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1052px;
}
@media screen and (max-width: 767px) {
  .l-narrow-inner {
    padding: 0 15px;
    max-width: 600px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
}

.l-main {
  padding-top: var(--header-height);
}

.l-footer {
  margin-top: -5.625rem;
  padding-top: 8.125rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: -3.9375rem;
    padding-top: 7.1875rem;
  }
}

.l-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.l-section--mv {
  padding-top: 2.5rem;
  padding-bottom: 4.0625rem;
}
@media screen and (max-width: 767px) {
  .l-section--mv {
    padding-top: 1rem;
    padding-bottom: 3.75rem;
  }
}

.l-section--feature {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-section--feature {
    padding-top: 3.75rem;
    padding-bottom: 6.5625rem;
  }
}

.l-section--requirement {
  padding-top: 4.0625rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .l-section--requirement {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.l-section--staff {
  padding-top: 4.375rem;
  padding-bottom: 7.8125rem;
}
@media screen and (max-width: 767px) {
  .l-section--staff {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.l-section--company {
  padding-top: 5rem;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-section--company {
    padding-top: 3.75rem;
    padding-bottom: 0;
  }
}

.p-header {
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  background-color: #fff;
  -webkit-filter: drop-shadow(0 0 34px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0 0 34px rgba(0, 0, 0, 0.15));
  height: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .p-header {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
    height: 3.75rem;
  }
}

.p-header__inner {
  padding-left: clamp(1rem, -4rem + 8vw, 3.125rem);
  padding-right: clamp(1rem, -4rem + 8vw, 3.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.p-header__logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(0.9375rem, 1.1vw);
}
@media screen and (max-width: 767px) {
  .p-header__logo-wrap {
    gap: 0.5rem;
  }
}

.p-header__logo {
  width: min(13.125rem, 15vw);
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 10.625rem;
  }
}

.p-header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.p-header__link img {
  -o-object-fit: contain;
     object-fit: contain;
  width: auto;
  height: inherit;
}

.p-header__logo-tag {
  font-size: 1rem;
  font-weight: 700;
  color: #1BA1C4;
  padding: 0.21875rem 0.5rem;
  border: 1px solid #1BA1C4;
}
@media screen and (max-width: 767px) {
  .p-header__logo-tag {
    font-size: 0.875rem;
    padding: 0.125rem 0.375rem;
  }
}

.p-header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger {
  z-index: 9999;
  margin-left: auto;
}

.p-header__hamburger-bar {
  position: relative;
  display: block;
  width: 1.34375rem;
  height: 0.09375rem;
  background-color: #1d1d1d;
  border-radius: 100vmax;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}

.p-header__hamburger:nth-child(1) {
  top: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(1) {
  top: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-header__hamburger-bar:nth-child(2) {
  margin: 0.46875rem 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.p-header__hamburger-bar:nth-child(3) {
  top: 0;
}

.p-header__hamburger.is-open .p-header__hamburger-bar:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-header__nav {
  display: block;
  margin-left: auto;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.25rem, 1.4vw);
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item--contact {
  height: auto;
}

.p-header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-header__nav-span {
  display: inline-block;
  position: relative;
}

.p-header__nav-span::after {
  content: "";
  position: absolute;
  background: #1d1d1d;
  bottom: -0.3125rem;
  left: 0;
  width: 100%;
  height: 1px;
  scale: 0;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

@media (hover: hover) {
  .p-header__nav-link:hover {
    opacity: 1;
  }
  .p-header__nav-span:hover::after {
    scale: 1;
  }
}
.p-drawer {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: calc(100vh - 3.125rem);
    height: calc(100svh - 3.125rem);
    width: 100%;
    display: none;
    background: #fff;
    padding-top: 2.5rem;
    padding-bottom: 6.25rem;
    overflow-y: auto;
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-drawer__inner {
    max-width: 37.5rem;
    padding: 0 1rem;
  }
}

.p-drawer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  gap: 0 0.125rem;
}

.p-drawer__item {
  width: 100%;
}

.p-drawer__item--contact {
  margin-top: 3.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-drawer__link {
  display: block;
  width: 100%;
  padding: 0.9375rem;
  font-weight: 500;
}

.p-footer {
  background-color: #00a7b5;
  color: #fff;
}

.p-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 0 1rem;
  }
}

.p-footer__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}

.p-footer__copy {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    font-size: 0.875rem;
    margin-top: 2.5rem;
  }
}

.p-mv {
  position: relative;
  overflow-x: clip;
}

.p-mv::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: 70%;
  left: calc(50% - min(44vw, 38.125rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  .p-mv::before {
    width: 6.25rem;
    top: auto;
    bottom: -15%;
    left: 0;
    z-index: 1;
  }
}

.p-mv::after {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: 56%;
  right: calc(50% - min(42vw, 36.5625rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 50deg;
}
@media screen and (max-width: 767px) {
  .p-mv::after {
    width: 6.25rem;
    top: auto;
    bottom: -7%;
    right: 0;
    z-index: 1;
  }
}

.p-mv__inner {
  position: relative;
  max-width: calc(80rem + 60px);
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    max-width: 37.5rem;
    padding: 0 15px;
  }
}

.p-mv__inner::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/mv.webp");
  background-size: cover;
  background-position: center;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 96%;
  aspect-ratio: 1280/541;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-mv__inner::before {
    background-image: url("../img/common/mv_sp.webp");
    aspect-ratio: 375/322;
    width: 100%;
  }
}

.p-mv__content {
  padding-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__content {
    padding-top: 13.6875rem;
  }
}

.p-mv__title-top {
  font-size: 2.1875rem;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.5;
  background: #fff;
  padding: 0.0625rem 1.25rem;
  border: 3px solid #fff;
  border-radius: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-transform: translateX(-12px);
          transform: translateX(-12px);
}
@media screen and (max-width: 767px) {
  .p-mv__title-top {
    font-size: 1.25rem;
    line-height: 1;
    padding: 0.1875rem 0.25rem;
  }
}

.p-mv__title-top-span {
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title-top-span {
    font-size: 1rem;
  }
}

.p-mv__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #00a7b5;
  line-height: 1.5;
  letter-spacing: 0.01em;
  background: #fff;
  padding: 0 1.125rem;
  border: 3px solid #fff;
  border-radius: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -0.75rem;
  margin-inline: auto;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 1.75rem;
    letter-spacing: 0.02em;
    padding: 0.125rem 0.25rem;
    margin-top: -0.3125rem;
    gap: 2.1875rem;
  }
}

.p-mv__title-span::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/scissors.svg");
  background-size: contain;
  background-position: center;
  top: 65%;
  left: 49%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7.5rem;
  aspect-ratio: 120/119;
}
@media screen and (max-width: 767px) {
  .p-mv__title-span::before {
    width: 3.125rem;
    top: 50%;
    left: 50%;
  }
}

.p-mv__title-span {
  color: #fbb901;
}

.p-mv__title-small {
  font-size: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title-small {
    font-size: 1rem;
  }
}

.p-mv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: min(3.25rem, 3.6vw);
}
@media screen and (max-width: 767px) {
  .p-mv__items {
    margin-top: 0.4375rem;
  }
}

.p-mv__item {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  width: 8.375rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgba(0, 167, 181, 0.95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__item {
    font-size: 1rem;
    width: 6.875rem;
    line-height: 1.4;
  }
}

.p-mv__item-span {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__item-span {
    font-size: 1rem;
  }
}

.p-mv__item::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/dashed-circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 7.625rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-mv__item::before {
    width: 6.1875rem;
  }
}

.p-mv__cta-wrap {
  margin-top: min(2.5rem, 2.8vw);
  max-width: 58rem;
  width: 100%;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 40px rgba(0, 167, 181, 0.15);
          box-shadow: 0 4px 40px rgba(0, 167, 181, 0.15);
}
@media screen and (max-width: 767px) {
  .p-mv__cta-wrap {
    margin-top: 0.6875rem;
  }
}

.p-mv__flex {
  padding: 1.625rem 3.25rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__flex {
    padding: 1.25rem 1.25rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 2.125rem;
  }
}

.p-mv__cta-img {
  width: 22.5369458128%;
  height: auto;
  aspect-ratio: 183/214;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-img {
    width: 53.1353135314%;
    margin-inline: auto;
  }
}

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

.p-mv__cta-items {
  width: 69.7044334975%;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-items {
    width: 100%;
  }
}

.p-mv__cta-item {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1d1d1d;
  line-height: 1.5;
  padding-left: 2.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-item {
    font-size: 1rem;
    padding-left: 1.75rem;
    word-break: keep-all;
  }
}

.p-mv__cta-item::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.75rem;
  height: 1.5625rem;
  top: 0.4375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-item::before {
    width: 1.125rem;
    height: 0.9375rem;
  }
}

.p-mv__cta-item:not(:first-child)::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #c3c3c3, #c3c3c3 6px, transparent 6px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 12px 4px;
  width: 100%;
  height: 1px;
  top: -0.75rem;
  left: 0;
}

.p-mv__cta-item + .p-mv__cta-item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__cta-item + .p-mv__cta-item {
    margin-top: 1.75rem;
  }
}

.p-mv__cta-item-span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(65%, transparent), color-stop(65%, #FFD93F), to(#FFD93F));
  background-image: linear-gradient(180deg, transparent 0%, transparent 65%, #FFD93F 65%, #FFD93F 100%);
}

.p-mv__button-wrap {
  background: #00a7b5;
  padding: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-mv__button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.125rem 1rem 1.625rem;
    margin-top: -1.25rem;
    position: relative;
    gap: 1rem;
  }
}

.p-feature {
  border-radius: 3.75rem 3.75rem 0 0;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#edf9fa), color-stop(78%, #edf9fa), color-stop(78%, #00a7b5), to(#00a7b5));
  background: linear-gradient(180deg, #edf9fa 0%, #edf9fa 78%, #00a7b5 78%, #00a7b5 100%);
}
@media screen and (max-width: 767px) {
  .p-feature {
    background: -webkit-gradient(linear, left top, left bottom, from(#edf9fa), color-stop(95%, #edf9fa), color-stop(95%, #00a7b5), to(#00a7b5));
    background: linear-gradient(180deg, #edf9fa 0%, #edf9fa 95%, #00a7b5 95%, #00a7b5 100%);
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

.p-feature::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/feature-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 1440/500;
  bottom: -0.3125rem;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-feature::after {
    background-image: url(../img/common/feature-bg_sp.webp);
    aspect-ratio: 375/500;
  }
}

.p-feature__inner {
  position: relative;
  z-index: 1;
}

.p-feature__title-block {
  text-align: center;
}

.p-feature__items {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__items {
    margin-top: 2rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.p-feature__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
  -webkit-box-shadow: 0 4px 30px rgba(0, 167, 181, 0.07);
          box-shadow: 0 4px 30px rgba(0, 167, 181, 0.07);
}

.p-feature__item-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background: #00a7b5;
  text-align: center;
  padding: 0.653125rem 0.625rem;
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-feature__item-title {
    font-size: 1.25rem;
    padding: 0.5rem;
    border-radius: 0.9375rem 0.9375rem 0 0;
  }
}

.p-feature__item-content {
  background: #fff;
  padding: 2.1875rem 2.375rem;
  border-radius: 0 0 1.25rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
  }
}

.p-feature__item-icon {
  max-width: 7.25rem;
  width: 100%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-feature__item-icon {
    max-width: 4.75rem;
  }
}

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

.p-feature__text-block {
  width: 69%;
}
@media screen and (max-width: 767px) {
  .p-feature__text-block {
    width: 100%;
  }
}

.p-feature__list-item {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.7;
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-feature__list-item {
    font-size: 1rem;
  }
}

.p-feature__list-item::before {
  content: "";
  position: absolute;
  background: #00a7b5;
  width: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 0.6875rem;
  left: 0;
}

.p-feature__list-item + .p-feature__list-item {
  margin-top: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-feature__list-item + .p-feature__list-item {
    margin-top: 0.125rem;
  }
}

.p-feature__item-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-feature__item-text {
    font-size: 1rem;
  }
}

.p-feature__item-text-span {
  font-weight: 700;
}

.p-feature__item-note {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1d1d1d;
  line-height: 1.7;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-feature__item-note {
    font-size: 1rem;
  }
}

.p-feature__data-items {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature__data-items {
    margin-top: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.p-feature__data-item {
  background: #fff;
  padding: 1.25rem 1.875rem 1.5625rem;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 14px 20px rgba(0, 167, 181, 0.08);
          box-shadow: 0 14px 20px rgba(0, 167, 181, 0.08);
}
@media screen and (max-width: 767px) {
  .p-feature__data-item {
    padding: 1.125rem 1.125rem;
  }
}

.p-feature__data-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00a7b5;
  line-height: 1.5;
  letter-spacing: -0.05em;
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-feature__data-item-title {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
  }
}

.p-feature__data-item-title-span {
  font-size: 1rem;
}

.p-feature__data-item-title::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #00a7b5, #00a7b5 4px, transparent 4px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 4px;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
}

.p-feature__data-item-content {
  margin-top: 1.25rem;
  max-width: 20.75rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__data-item-content {
    margin-top: 0.625rem;
  }
}

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

.p-feature-bottom {
  background: #00a7b5;
  padding-top: 2.5rem;
  padding-bottom: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom {
    padding-top: 1.4375rem;
    padding-bottom: 3.75rem;
  }
}

.p-feature-bottom__content {
  background: #fff;
  padding: 2.5rem 4.375rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__content {
    padding: 1.5rem;
    border-radius: 0.9375rem;
  }
}

.p-feature-bottom__head-wrap {
  text-align: center;
}

.p-feature-bottom__head {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #00a7b5;
  position: relative;
  display: inline-block;
  padding: 0 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__head {
    font-size: 1.25rem;
    padding: 0 0.625rem;
  }
}

.p-feature-bottom__head::before {
  content: "";
  position: absolute;
  background: #00a7b5;
  width: 3rem;
  height: 0.3125rem;
  border-radius: 100vmax;
  top: 50%;
  left: -1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 62deg;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__head::before {
    width: 1.75rem;
    height: 0.125rem;
  }
}

.p-feature-bottom__head::after {
  content: "";
  position: absolute;
  background: #00a7b5;
  width: 3rem;
  height: 0.3125rem;
  border-radius: 100vmax;
  top: 50%;
  right: -1.25rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  rotate: -62deg;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__head::after {
    width: 1.75rem;
    height: 0.125rem;
  }
}

.p-feature-bottom__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
  }
}

.p-feature-bottom__items {
  width: 53.8461538462%;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__items {
    width: 100%;
  }
}

.p-feature-bottom__item {
  font-size: 1.5625rem;
  font-weight: 700;
  padding-left: 2.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__item {
    font-size: 1rem;
    line-height: 1.7;
    padding-left: 1.4375rem;
  }
}

.p-feature-bottom__item::before {
  content: "";
  position: absolute;
  background: #00a7b5;
  width: 1.1875rem;
  height: 1.1875rem;
  border-radius: 50%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__item::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.p-feature-bottom__item:not(:first-child):after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #c3c3c3, #c3c3c3 4px, transparent 4px, transparent 2px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 8px 4px;
  width: 100%;
  height: 1px;
  top: -0.625rem;
  left: 0;
}

.p-feature-bottom__item + .p-feature-bottom__item {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__item + .p-feature-bottom__item {
    margin-top: 1.25rem;
  }
}

.p-feature-bottom__item-span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, transparent), color-stop(80%, #FFD93F), to(#FFD93F));
  background-image: linear-gradient(180deg, transparent 0%, transparent 80%, #FFD93F 80%, #FFD93F 100%);
}

.p-feature-bottom__img {
  width: 43.0769230769%;
}
@media screen and (max-width: 767px) {
  .p-feature-bottom__img {
    width: 100%;
  }
}

.p-requirement {
  position: relative;
  overflow-x: clip;
}

.p-requirement::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: 9.3125rem;
  left: calc(50% - min(55vw, 49.5rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 52deg;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-requirement::before {
    width: 6.25rem;
    top: 2.5%;
    left: 1.25rem;
    rotate: -40deg;
  }
}

.p-requirement::after {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: 20.625rem;
  right: calc(50% - min(53vw, 47.6875rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: -30deg;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-requirement::after {
    width: 6.25rem;
    top: 1%;
    right: 0;
    rotate: 30deg;
    z-index: 0;
  }
}

.p-requirement__title-block {
  text-align: center;
}

.p-requirement__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-requirement__text {
    margin-top: 2.125rem;
    text-align: left;
  }
}

.p-requirement__content {
  margin-top: 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-requirement__content {
    margin-top: 13.25rem;
  }
}

.p-requirement__content::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/requirement-illust.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 23.625rem;
  aspect-ratio: 378/304;
  top: -18.9375rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-requirement__content::before {
    background-image: url("../img/common/requirement-illust_sp.webp");
    width: 19.8125rem;
    aspect-ratio: 317/236;
    top: -14.6875rem;
    left: 52%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1;
  }
}

.p-requirement__content-item {
  border: 3px solid #00a7b5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #00a7b5;
  -webkit-box-shadow: 0 4px 30px rgba(0, 167, 181, 0.14);
          box-shadow: 0 4px 30px rgba(0, 167, 181, 0.14);
}
@media screen and (max-width: 767px) {
  .p-requirement__content-item {
    border: 2px solid #00a7b5;
    border-radius: 0.625rem;
  }
}

.p-requirement__content-item + .p-requirement__content-item {
  margin-top: 1.5rem;
}

.p-requirement__content-title {
  padding: 1.375rem 1.875rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-requirement__content-title::-webkit-details-marker {
  display: none;
}
@media (hover: hover) {
  .p-requirement__content-title:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-requirement__content-title {
    padding: 1rem;
  }
}

.p-requirement__content-title-span {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-requirement__content-title-span {
    font-size: 1.25rem;
  }
}

.p-requirement__content-title-btn {
  position: relative;
}

.p-requirement__content-title-btn::before {
  content: "";
  position: absolute;
  width: 1.9375rem;
  height: 0.1875rem;
  border-radius: 100vmax;
  background: #fff;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-requirement__content-title-btn::before {
    width: 1.4375rem;
    height: 0.125rem;
  }
}

.p-requirement__content-title-btn::after {
  content: "";
  position: absolute;
  width: 1.9375rem;
  height: 0.1875rem;
  border-radius: 100vmax;
  background: #fff;
  top: 50%;
  right: 0.09375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .p-requirement__content-title-btn::after {
    width: 1.4375rem;
    height: 0.125rem;
  }
}

.p-requirement__content-title-btn.is-opened::after {
  rotate: 0deg;
}

.p-requirement__body {
  overflow: hidden;
  background: #fff;
}

.p-requirement__body-inner {
  padding: 3.125rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__body-inner {
    padding: 1.5rem 1rem;
  }
}

.p-requirement__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-requirement__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-requirement__list-item:not(:first-child):after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #c3c3c3, #c3c3c3 6px, transparent 6px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 12px 4px;
  width: 100%;
  height: 1px;
  top: -1rem;
  left: 0;
}

.p-requirement__list-item + .p-requirement__list-item {
  margin-top: 1.84375rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__list-item + .p-requirement__list-item {
    margin-top: 2.34375rem;
  }
}

.p-requirement__list-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #00a7b5;
  padding-left: 1.75rem;
  width: 10.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-requirement__list-title {
    padding-left: 0.9375rem;
  }
}

.p-requirement__list-title::before {
  content: "";
  position: absolute;
  background: #fbb901;
  width: 0.625rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 0.4375rem;
  left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__list-title::before {
    width: 0.5rem;
    left: 0;
  }
}

.p-requirement__list-text {
  font-size: 1rem;
  line-height: 1.7;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-requirement__list-text {
    padding-left: 1rem;
  }
}

.p-requirement__list-text-note {
  font-size: 0.75rem;
  line-height: 1.7;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__list-text-note {
    font-size: 0.875rem;
  }
}

.p-requirement__form-wrap {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-requirement__form-wrap {
    margin-top: 1.5rem;
  }
}

.p-entry {
  padding: 1.875rem;
  background: #fff4d7;
  border-radius: 1.25rem;
  color: #1d1d1d;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry {
    padding: 1.25rem 0.75rem;
    border-radius: 0.625rem;
  }
}

.p-entry__circle {
  position: absolute;
  top: -1.75rem;
  left: -0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #dc9832;
  text-align: center;
  background: #fff;
  padding: 0.84375rem 1.5rem;
  border-radius: 100vmax;
  border: 3px solid #fbb901;
  rotate: -20deg;
}
@media screen and (max-width: 767px) {
  .p-entry__circle {
    top: -1.25rem;
    left: -0.625rem;
    font-size: 0.875rem;
    padding: 0.625rem 1.125rem;
    border: 2px solid #fbb901;
  }
}

.p-entry__circle-time {
  font-size: 2.0625rem;
  font-family: "Helvetica", "Arial", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-entry__circle-time {
    font-size: 1.5625rem;
  }
}

.p-entry__inner {
  max-width: 39rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-entry__head {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-entry__head {
    font-size: 1.15625rem;
  }
}

.p-entry__form {
  margin-top: 1.75rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-entry__form {
    margin-top: 1.4375rem;
  }
}

.p-entry__form-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}

.p-entry__form-label {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-entry__form-label {
    font-size: 1rem;
  }
}

.p-entry__form-input--select {
  position: relative;
}

.p-entry__form-input--select::after {
  content: "";
  position: absolute;
  background-image: url(../img/common/select-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 0.75rem;
  aspect-ratio: 1/1;
  top: 30px;
  right: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-entry__form-input--select::after {
    width: 0.625rem;
    top: 26px;
  }
}

.p-entry__form-submit-container {
  text-align: center;
  margin-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form-submit-container {
    margin-top: 1.25rem;
  }
}

.p-entry__form-submit-btn {
  display: inline-block;
  position: relative;
}

.p-entry__form-submit-btn::after {
  content: "";
  position: absolute;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  will-change: transform;
  top: 52%;
  right: 1.5625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.9375rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-entry__form-submit-btn::after {
    width: 0.5rem;
    height: 0.75rem;
    right: 1.25rem;
  }
}

.p-entry__note {
  font-size: 0.75rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry__note {
    margin-top: 1.5rem;
  }
}

.p-entry__note-link {
  text-decoration: underline;
}

.p-job__top {
  background-color: #edf9fa;
  padding-top: 5rem;
  padding-bottom: 3.75rem;
  border-radius: 3.75rem 3.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-job__top {
    padding-top: 2.5rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }
}

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

.p-job__items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-job__items {
    margin-top: 2rem;
  }
}

.p-job__item {
  -webkit-filter: drop-shadow(0 4px 30px rgba(0, 167, 181, 0.14));
          filter: drop-shadow(0 4px 30px rgba(0, 167, 181, 0.14));
}

.p-job__item + .p-job__item {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-job__item + .p-job__item {
    margin-top: 2rem;
  }
}

.p-job__head {
  background: #00a7b5;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  padding: 1.25rem;
  border-radius: 1.25rem 1.25rem 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-job__head {
    font-size: 1.25rem;
    padding: 1rem;
  }
}

.p-job__body {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0 0 1.25rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-job__body {
    padding: 1.5rem 1rem;
  }
}

.p-job__text {
  font-size: 1rem;
  line-height: 2;
}

.p-job__text--blue {
  color: #00a7b5;
  font-weight: 700;
}

.p-job__text-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: #1d1d1d;
  line-height: 1.4;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-job__text-note {
    margin-top: 0.625rem;
  }
}

.p-job__text-span {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(70%, transparent), color-stop(70%, #ffd93f), to(#ffd93f));
  background-image: linear-gradient(180deg, transparent 0%, transparent 70%, #ffd93f 70%, #ffd93f 100%);
  font-weight: 700;
}

.p-job__img-wrap {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-job__img-wrap {
    margin-top: 0.625rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-job__img-wrap img {
  aspect-ratio: 228/160;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-job__recommend-items {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-job__recommend-items {
    margin-top: 2rem;
  }
}

.p-job__recommend-item + .p-job__recommend-item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-job__recommend-item + .p-job__recommend-item {
    margin-top: 1.5rem;
  }
}

.p-job__recommend-head {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #00a7b5;
  padding: 0.1875rem 1rem;
  border-radius: 100vmax;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-job__recommend-head {
    font-size: 1rem;
    padding: 0.125rem 1rem;
  }
}

.p-job__recommend-head--orange {
  background: #fbb901;
}

.p-job__recommend-text {
  font-size: 0.875rem;
  line-height: 2;
  padding: 1.25rem;
  background: #edf9fa;
  border-radius: 0.625rem;
  margin-top: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-job__recommend-text {
    font-size: 1rem;
    margin-top: -0.875rem;
    padding: 1.875rem 1rem 1.25rem;
  }
}

.p-job__voice-items {
  font-size: 0.875rem;
  line-height: 2;
  padding: 1.25rem;
  background: #fff4d7;
  border-radius: 0.625rem;
  margin-top: -0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-job__voice-items {
    font-size: 1rem;
    line-height: 1.7;
    padding: 2.5rem 1rem 1.25rem;
    margin-top: -1.625rem;
  }
}

.p-job__voice-item + .p-job__voice-item {
  margin-top: 1.25rem;
}

.p-job__voice-item {
  position: relative;
}

.p-job__voice-item:not(:first-child)::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, rgba(251, 185, 1, 0.5), rgba(251, 185, 1, 0.5) 6px, transparent 6px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 12px 4px;
  width: 100%;
  height: 1px;
  top: -0.625rem;
  left: 0;
}

.p-job__schedule {
  margin-top: 1.25rem;
}

.p-job__schedule-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-job__schedule-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
  }
}

.p-job__schedule-flex:not(:last-child)::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  background-image: linear-gradient(to bottom, #c3c3c3, #c3c3c3 6px, transparent 6px, transparent 4px);
  background-repeat: repeat-y;
  background-position: top left;
  background-size: 4px 12px;
  width: 1px;
  height: 100%;
  top: 2.1875rem;
  left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-job__schedule-flex:not(:last-child)::before {
    left: 0.625rem;
  }
}

.p-job__schedule-flex + .p-job__schedule-flex {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-job__schedule-flex + .p-job__schedule-flex {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-job__schedule-item {
    padding-left: 1.625rem;
  }
}

.p-job__time {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #fbb901;
  padding: 0.0625rem 0.875rem 0.0625rem 0.9375rem;
  border-radius: 100vmax;
  width: 4.5rem;
}

.p-job__schedule-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-job__schedule-title {
    font-size: 1rem;
  }
}

.p-job__schedule-text {
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-job__schedule-text {
    font-size: 0.875rem;
  }
}

.p-job__schedule-span {
  font-size: 0.875rem;
  display: block;
}

.p-job__note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.625rem;
  background: #fff4d7;
  border-radius: 0.625rem;
  padding: 0.75rem 1.25rem 0 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-job__note {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    padding: 0.625rem 0.625rem 0;
  }
}

.p-job__note-img {
  width: 12.3425692695%;
  aspect-ratio: 124/144;
}
@media screen and (max-width: 767px) {
  .p-job__note-img {
    width: 46.6165413534%;
    margin-top: -0.3125rem;
  }
}

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

.p-job__note-text {
  width: 84.8866498741%;
  font-size: 0.875rem;
  line-height: 2;
  padding-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-job__note-text {
    width: 100%;
    font-size: 0.75rem;
    padding-bottom: 0;
  }
}

.p-job__bottom {
  background: #00a7b5;
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
  border-radius: 0 0 3.75rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-job__bottom {
    border-radius: 0 0 1.25rem 1.25rem;
  }
}

.p-job__bottom-content {
  background: #fff;
  padding: 2.5rem 3.125rem 5rem;
  border-radius: 1.25rem;
  position: relative;
  margin-top: 1.875rem;
  height: 36.5625rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-job__bottom-content {
    padding: 1.25rem 1.25rem 5rem;
  }
}

.p-job__bottom-content.is-open {
  height: auto;
}

.p-job__bottom-title {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #00a7b5;
  text-align: center;
}

.p-job__bottom-items {
  margin-top: 1.875rem;
}

.p-job__bottom-item {
  position: relative;
  padding: 1.875rem 2.5rem;
  background: #edf9fa;
  border-radius: 0.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-job__bottom-item {
    padding: 1.25rem;
  }
}

.p-job__bottom-item::before {
  content: "";
  position: absolute;
  background-image: url(../img/common/flow-triangle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  aspect-ratio: 82/77;
  top: -0.625rem;
  left: -0.625rem;
}
@media screen and (max-width: 767px) {
  .p-job__bottom-item::before {
    width: 3.125rem;
    top: -0.4375rem;
    left: -0.4375rem;
  }
}

.p-job__bottom-item + .p-job__bottom-item {
  margin-top: 1.25rem;
}

.p-job__bottom-item-number {
  font-size: 1.375rem;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-job__bottom-item-number {
    font-size: 1.25rem;
  }
}

.p-job__bottom-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #00a7b5;
}

.p-job__bottom-item-text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 0.625rem;
}

.p-job__button-wrapper {
  position: absolute;
  bottom: 0rem;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), color-stop(18%, rgba(255, 255, 255, 0.1)), color-stop(79%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 18%, rgb(255, 255, 255) 79%, rgb(255, 255, 255) 100%);
  width: 100%;
  height: 4.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0 0 1.25rem 1.25rem;
}

.p-job__button {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  display: inline-block;
  padding: 0.625rem 3.5rem;
  background: #00a7b5;
  border-radius: 100vmax;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-job__button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-job__button {
    padding: 1rem 4.6875rem;
  }
}

.p-staff {
  overflow-x: clip;
}

.p-staff__title-block {
  text-align: center;
}

.p-staff__items {
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-staff__items {
    margin-top: 2rem;
  }
}

.p-staff__item {
  border-radius: 1.25rem;
  padding: 1.625rem 1.625rem 2.5rem;
  width: 78.6440677966%;
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0 4px 30px rgba(0, 167, 181, 0.08);
          box-shadow: 0 4px 30px rgba(0, 167, 181, 0.08);
}
@media screen and (max-width: 767px) {
  .p-staff__item {
    width: 100%;
    padding: 2rem 1rem 1.65625rem;
  }
}

.p-staff__item::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 13.1875rem;
  aspect-ratio: 211/191;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-staff__item::before {
    width: 7.1875rem;
  }
}

.p-staff__item:nth-of-type(4n + 1)::before {
  background-image: url(../img/common/ornament-blue.webp);
  top: -8.75rem;
  left: -5.125rem;
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  .p-staff__item:nth-of-type(4n + 1)::before {
    top: -3.125rem;
    left: -3.125rem;
  }
}

.p-staff__item:nth-of-type(4n + 2)::before {
  background-image: url(../img/common/ornament-orange.webp);
  top: -1.875rem;
  right: -8.875rem;
  rotate: 66deg;
}
@media screen and (max-width: 767px) {
  .p-staff__item:nth-of-type(4n + 2)::before {
    top: -1.6875rem;
    right: -5rem;
    rotate: 48deg;
  }
}

.p-staff__item:nth-of-type(4n + 3)::before {
  background-image: url(../img/common/ornament-blue.webp);
  top: -5.875rem;
  left: -5.125rem;
  rotate: -45deg;
}
@media screen and (max-width: 767px) {
  .p-staff__item:nth-of-type(4n + 3)::before {
    top: -2.5rem;
    left: -3.5rem;
  }
}

.p-staff__item:nth-of-type(4n + 4)::before {
  background-image: url(../img/common/ornament-orange.webp);
  top: 0;
  right: -8.875rem;
  rotate: 66deg;
}
@media screen and (max-width: 767px) {
  .p-staff__item:nth-of-type(4n + 4)::before {
    top: -1.875rem;
    right: -4.0625rem;
  }
}

.p-staff__item::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -4.0625rem;
  right: 1.75rem;
  width: 5.4375rem;
  aspect-ratio: 87/118;
}
@media screen and (max-width: 767px) {
  .p-staff__item::after {
    width: 3.25rem;
    top: -2.375rem;
    right: 0;
  }
}

.p-staff__item:nth-of-type(2n + 1)::after {
  background-image: url(../img/common/clip-orange.svg);
}

.p-staff__item:nth-of-type(2n)::after {
  background-image: url(../img/common/clip-blue.svg);
}

.p-staff__item:nth-of-type(2n + 1) {
  margin-right: auto;
  border: 4px solid #00a7b5;
}
@media screen and (max-width: 767px) {
  .p-staff__item:nth-of-type(2n + 1) {
    border: 2px solid #00a7b5;
  }
}

.p-staff__item:nth-of-type(2n) {
  margin-left: auto;
  border: 4px solid #fbb901;
}
@media screen and (max-width: 767px) {
  .p-staff__item:nth-of-type(2n) {
    border: 2px solid #fbb901;
  }
}

.p-staff__item + .p-staff__item {
  margin-top: 3.875rem;
}
@media screen and (max-width: 767px) {
  .p-staff__item + .p-staff__item {
    margin-top: 2.5rem;
  }
}

.p-staff__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 2.875rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #c6e1e4;
}
@media screen and (max-width: 767px) {
  .p-staff__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.375rem;
    border-bottom: none;
    padding-bottom: 0;
  }
}

.p-staff__img {
  width: 23.1481481481%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-staff__img {
    width: 12.5rem;
    margin-inline: auto;
  }
}

.p-staff__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-staff__head-text {
  width: 71.5277777778%;
}
@media screen and (max-width: 767px) {
  .p-staff__head-text {
    width: 100%;
  }
}

.p-staff__label {
  font-size: 1rem;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.8;
}

.p-staff__label--blue {
  color: #01a7b5;
}

.p-staff__label--orange {
  color: #fbb901;
}

.p-staff__label-number {
  font-size: 1.75rem;
}

.p-staff__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-staff__item-title {
    font-size: 1.25rem;
  }
}

.p-staff__name {
  font-size: 1rem;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
}

.p-staff__body {
  height: 25rem;
  overflow: hidden;
  position: relative;
  margin-top: 1.5rem;
  padding-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-staff__body {
    height: 41.6875rem;
  }
}

.p-staff__body.is-open {
  height: auto;
}

.p-staff__body-title {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Helvetica", "Arial", sans-serif;
  padding: 0.625rem 2rem;
  border-radius: 0.625rem;
  position: relative;
  margin-top: 1.5rem;
}
.p-staff__body-title:first-child {
  margin-top: 0;
}
.p-staff__body-title--blue {
  background: #edf9fa;
}
.p-staff__body-title--blue::before {
  background-color: #fbb901;
}
.p-staff__body-title--orange {
  background: #fff4d7;
}
.p-staff__body-title--orange::before {
  background-color: #00a7b5;
}
.p-staff__body-title::before {
  content: "";
  position: absolute;
  width: 0.875rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 0.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-staff__body-text-item {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
  padding: 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-staff__body-text-item {
    padding: 0 1rem;
  }
}

.p-staff__button-wrapper {
  position: absolute;
  bottom: -1.25rem;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), color-stop(50%, rgba(255, 255, 255, 0.6)), color-stop(50%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
  width: 100%;
  height: 5.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-staff__button-wrapper {
    height: 6.75rem;
  }
}

.p-staff__button {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  display: inline-block;
  padding: 0.625rem 3.5rem;
  border-radius: 100vmax;
  position: relative;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .p-staff__button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-staff__button {
    padding: 1rem 4.6875rem;
  }
}

.p-staff__button--blue {
  background: #00a7b5;
}

.p-staff__button--orange {
  background: #fbb901;
}

.p-flow {
  background: #00a7b5;
}

@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-inline: 2.5rem;
  }
}

.p-flow__title-block {
  text-align: center;
}

.p-flow__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-top: 2.5rem;
  text-align: center;
}

.p-flow__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.875rem;
  margin-top: 2.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-flow__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.p-flow__item {
  aspect-ratio: 274/124;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    aspect-ratio: 295/130;
  }
}

.p-flow__item::before {
  position: absolute;
  top: 0;
  left: 0;
}

.p-flow__item::before {
  content: "";
  position: absolute;
  background-image: url(../img/common/flow-triangle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.125rem;
  aspect-ratio: 82/77;
  top: -0.25rem;
  left: -0.375rem;
}
@media screen and (max-width: 767px) {
  .p-flow__item::before {
    width: 4.875rem;
  }
}

.p-flow__item::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-image: url(../img/common/flow-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  aspect-ratio: 274/124;
  top: 0;
  left: 0;
  -webkit-filter: drop-shadow(0 10px 32px rgba(0, 167, 181, 0.15));
          filter: drop-shadow(0 10px 32px rgba(0, 167, 181, 0.15));
}
@media screen and (max-width: 767px) {
  .p-flow__item::after {
    aspect-ratio: 295/130;
    background-image: url(../img/common/flow-arrow_sp.svg);
  }
}

.p-flow__item-number {
  font-size: 1.75rem;
  font-family: "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 0.5rem;
  left: 0.3125rem;
  z-index: 1;
}

.p-flow__item-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-flow__item-text {
    padding-bottom: 0.625rem;
  }
}

.p-flow__note {
  margin-top: 1.25rem;
  font-weight: 700;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}

.p-faq {
  overflow-x: clip;
}

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

.p-faq__items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__items {
    margin-top: 2rem;
  }
}

.p-faq__item {
  border: 3px solid #00a7b5;
  border-radius: 0.625rem;
  overflow: hidden;
  background: #00a7b5;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    border: 2px solid #00a7b5;
  }
}

.p-faq__item + .p-faq__item {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item + .p-faq__item {
    margin-top: 1rem;
  }
}

.p-faq__question-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__question-left {
    gap: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-faq__question {
  padding: 0.625rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  color: #fff;
}
.p-faq__question::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    padding: 0.625rem 0.9375rem;
  }
}
@media (hover: hover) {
  .p-faq__question:hover {
    cursor: pointer;
  }
}

.p-faq__question-span {
  display: inline-block;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Arial", "Helvetica", sans-serif;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-faq__question-span {
    font-size: 1.5rem;
  }
}

.p-faq__question-text {
  font-size: 1.375rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 1rem;
    padding-right: 2rem;
  }
}

.p-faq__question-btn {
  position: relative;
}

.p-faq__question-btn::before {
  content: "";
  position: absolute;
  width: 1.9375rem;
  height: 0.1875rem;
  border-radius: 100vmax;
  background: #fff;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-faq__question-btn::before {
    width: 1.375rem;
    height: 0.125rem;
  }
}

.p-faq__question-btn::after {
  position: absolute;
  content: "";
  width: 1.9375rem;
  height: 0.1875rem;
  border-radius: 100vmax;
  background: #fff;
  top: 50%;
  right: 0.0625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  rotate: 90deg;
}
@media screen and (max-width: 767px) {
  .p-faq__question-btn::after {
    width: 1.375rem;
    height: 0.125rem;
  }
}

.p-faq__question-btn.is-opened::after {
  rotate: 0deg;
}

.p-faq__answer {
  overflow: hidden;
  background: #fff;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    line-height: 1.7;
  }
}

.p-faq__answer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem;
  }
}

.p-faq__answer-span {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbb901;
  line-height: 1;
  font-family: "Arial", "Helvetica", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-span {
    font-size: 1.875rem;
  }
}

.p-message {
  background: #edf9fa;
  border-radius: 3.75rem;
  position: relative;
  overflow-x: clip;
}
@media screen and (max-width: 767px) {
  .p-message {
    border-radius: 1.25rem;
  }
}

.p-message::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: 0;
  left: calc(50% - min(55vw, 49rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 40deg;
}
@media screen and (max-width: 767px) {
  .p-message::before {
    width: 6.25rem;
    top: 9%;
    left: 0.25rem;
    rotate: -45deg;
  }
}

.p-message::after {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: -40%;
  right: calc(50% - min(56vw, 50.625rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: -58deg;
}
@media screen and (max-width: 767px) {
  .p-message::after {
    width: 6.5625rem;
    top: 3%;
    right: 1rem;
    rotate: 45deg;
  }
}

.p-message__title-block {
  text-align: center;
}

.p-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-message__content {
    margin-top: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-message__text-block {
  padding: 2.625rem 2rem;
  width: 58.7701612903%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-message__text-block {
    padding: 1.5rem 1rem;
    width: 100%;
  }
}

.p-message__text {
  font-size: 1rem;
  line-height: 1.7;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-message__company-name {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 0.625rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-message__company-name {
    margin-top: 1.5rem;
  }
}

.p-message__name {
  font-size: 1rem;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0.625rem;
}

.p-message__name-span {
  font-size: 1.375rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-message__name-span {
    font-size: 1.25rem;
  }
}

.p-message__img {
  width: 41.2298387097%;
  aspect-ratio: 409/426;
}
@media screen and (max-width: 767px) {
  .p-message__img {
    width: 100%;
    aspect-ratio: 343/276;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-company {
  position: relative;
  overflow-x: clip;
}

.p-company::before {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  top: 11%;
  left: calc(50% - min(44vw, 39.0625rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: -55deg;
}
@media screen and (max-width: 767px) {
  .p-company::before {
    width: 6.25rem;
    z-index: -1;
    top: 5%;
    left: 0.1875rem;
    rotate: -45deg;
  }
}

.p-company::after {
  content: "";
  position: absolute;
  background-image: url("../img/common/ornament-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 11.125rem;
  aspect-ratio: 211/191;
  bottom: 16%;
  right: calc(50% - min(45vw, 40.3125rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  rotate: 45deg;
}
@media screen and (max-width: 767px) {
  .p-company::after {
    width: 6.25rem;
    z-index: -1;
    top: 8%;
    right: 1.25rem;
    rotate: 50deg;
    bottom: auto;
  }
}

.p-company__title-block {
  text-align: center;
}

.p-company__wrap {
  background: #fff;
  border: 3px solid #00a7b5;
  border-radius: 1.875rem;
  padding: 2rem 4.1875rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-company__wrap {
    border: 2px solid #00a7b5;
    border-radius: 1.25rem;
    padding: 1.875rem 1rem;
  }
}

.p-company__content {
  margin-top: 2.5rem;
}

.p-company__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.p-company__item::before {
  content: "";
  position: absolute;
  background: #fbb901;
  width: 0.75rem;
  aspect-ratio: 1/1;
  top: 0.5rem;
  left: 0.625rem;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-company__item::before {
    width: 0.5rem;
    left: 0;
  }
}

.p-company__item:not(:last-child)::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(to right, #c3c3c3, #c3c3c3 6px, transparent 6px, transparent 4px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 12px 4px;
  width: 100%;
  height: 1px;
  bottom: -0.875rem;
  left: 0;
}

.p-company__item + .p-company__item {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-company__item + .p-company__item {
    margin-top: 2rem;
  }
}

.p-company__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #00a7b5;
  width: 10.5rem;
  padding-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-company__name {
    padding-left: 0.9375rem;
  }
}

.p-company__detail {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-company__detail {
    padding-left: 1rem;
  }
}

.p-company__detail-span {
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-company__detail-span {
    font-size: 1rem;
  }
}

.p-float-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 1.125rem 0.625rem 0.625rem;
  background-color: #00a7b5;
  z-index: 99998;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-float-cta {
    display: block;
  }
}

.p-float-cta__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.p-float-cta__button {
  font-size: 1rem;
  height: 3rem;
  padding-top: 0;
}

.p-float-cta__button::after {
  display: none;
}

.p-float-cta__button-tag {
  font-size: 0.75rem;
  padding: 0.125rem 0.75rem;
  top: -0.6875rem;
}

.p-float-cta__time {
  font-size: 1rem;
}

.js-float-cta {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.js-float-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.u-onlyPc {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-onlyPc {
    display: none;
  }
}

.u-onlySp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-onlySp {
    display: block;
  }
}

/*デフォルト色の指定*/
/*サイズ等の指定*/
/*ボタン系の指定*/
.form__control {
  /*↓リセットCSS */
  border: none;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  /*↓カスタム */
  margin-top: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.625rem 0.625rem;
  border: 1px solid #fff;
  width: 100%;
  max-width: 37.5rem;
  height: 46px;
  background: #fff;
  border-radius: 0.3125rem;
  cursor: pointer;
  /*↓↓選択されているときの色*/
}
.form__control:hover {
  border: 1px solid #fbb901;
}
.form__control:focus {
  border: 1px solid #fbb901;
}
.form__control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.form__control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.form__control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.form__control::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.form__control::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 767px) {
  .form__control {
    margin-top: 0.1875rem;
  }
}

[type=submit] {
  /*↓リセットCSS */
  margin: 0;
  background-image: none;
  width: auto;
  display: inline-block;
  text-decoration: none;
  border: none;
  border-radius: 0;
  /*↓カスタム */
  padding: 1.5rem 5.625rem;
  background: #fbb901;
  color: white;
  font-size: 1.5rem;
  font-weight: 900;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 100vmax;
  -webkit-box-shadow: 0 0.25rem 0 #dc9832;
          box-shadow: 0 0.25rem 0 #dc9832;
  line-height: 1;
  transition: 0.3s ease;
}
[type=submit]:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(0.25rem);
          transform: translateY(0.25rem);
}
@media screen and (max-width: 767px) {
  [type=submit] {
    font-size: 1.25rem;
    padding: 1.125rem 4.875rem;
  }
}

select {
  /*↓リセットCSS */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  font-family: inherit;
  color: inherit;
  border: none;
  cursor: pointer;
  width: 100%;
  /*↓カスタム */
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.625rem 0.5rem;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  select {
    margin-top: 0.1875rem;
    padding: 0.4375rem 0.625rem;
  }
}
select:hover {
  border: 1px solid #fbb901;
}
select:focus {
  border: 1px solid #fbb901;
}

/* エラーメッセージのスタイル */
.error-message {
  color: #ef2626;
  font-size: 14px;
  margin-top: 2px;
  font-weight: 700;
}

/* エラー時のinputスタイル */
.error-input {
  border: 1px solid red;
}

.u-font-small {
  font-size: 0.75em;
}

.u-font-medium {
  font-size: 1em;
}

.u-font-large {
  font-size: 1.25em;
}/*# sourceMappingURL=style.css.map */