@charset "UTF-8";
.c-bgdrad-dark, .p-recruit-cta::before {
  background: linear-gradient(270deg, #7ABAF1, #3D7EC8);
  background-size: 200% 200%;
  -webkit-animation: bgGrad 5s ease infinite;
          animation: bgGrad 5s ease infinite;
}

.c-bgdrad-thin, .p-visual::before {
  background: linear-gradient(90deg, #fcfeff, #ECF4FC, #c4d8ef);
  background-size: 200% 200%;
  -webkit-animation: bgGrad 5s ease infinite;
          animation: bgGrad 5s ease infinite;
}

/* リキッドレイアウト対応 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: vw(375, 16);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: vw(strip-unit(75rem), 16);
  }
}
@media (min-width: 768px) and (max-width: 1400px) {
  html,
:root {
    font-size: 100px;
    font-size: 1.07vw;
  }
}
/* pcの電話番号発信対応 */
@media screen and (min-width: 768px), print {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: text;
  }
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    -webkit-text-decoration-skip-ink: inherit;
            text-decoration-skip-ink: inherit;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px), print {
  a:hover {
    opacity: 0.8;
  }
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  color: #1E2226;
  overflow-x: hidden;
  font-family: "nsans_jp_r", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  letter-spacing: 0.08em;
  position: relative;
  word-wrap: break-word;
  word-break: break-all;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  body {
    overflow-wrap: break-word;
    line-height: 1.8;
    font-size: 4vw;
    letter-spacing: 0.04em;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .u-hidden-pc {
    display: none;
  }
}

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

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

@font-face {
  font-family: "zenmin_m";
  src: url("../fonts/zenmin_m.woff2") format("woff2"), url("../fonts/zenmin_m.otf") format("opentype"), url("../fonts/zenmin_m.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "zenmin_b";
  src: url("../fonts/zenmin_b.woff2") format("woff2"), url("../fonts/zenmin_b.otf") format("opentype"), url("../fonts/zenmin_b.ttf") format("truetype");
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* 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%;
  -webkit-backface-visibility: hidden;
  height: auto;
}

/* 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]) {
  filter: blur(10px);
}

iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

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

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;
}

picture {
  display: block;
}

.l-body {
  position: relative;
}

#l-wrapper {
  overflow: hidden;
}

.l-header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .l-header {
    min-height: 12vw;
  }
}
@media screen and (max-width: 767px) {
  body.open .l-header {
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(4vw);
            backdrop-filter: blur(4vw);
  }
}
@media screen and (min-width: 768px), print {
  body.p-scroll .l-header {
    background: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(1.875rem);
            backdrop-filter: blur(1.875rem);
  }
}
.l-header__inner {
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .l-header__inner {
    width: calc(100% - 1.875rem - 1.875rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 15rem auto;
    align-items: center;
    padding: 1.25rem 0;
  }
}
.l-header__logo {
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  .l-header__logo {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    height: 18.67vw;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    padding-left: 4vw;
  }
}
.l-header__logo dt {
  margin: 0 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo dt {
    font-size: 2.8vw;
  }
}
.l-header__logo dd {
  width: 14.375rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo dd {
    width: 29vw;
  }
}

@media screen and (min-width: 768px), print {
  .l-inner {
    max-width: 75rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 6.67vw;
  }
}

.l-footer {
  background: #fff;
}
.l-footer__logo {
  text-align: center;
  margin-top: 10.67vw;
}
@media screen and (min-width: 768px), print {
  .l-footer__logo {
    width: 15rem;
    margin: 5rem auto 0 auto;
  }
}
.l-footer__logo dd {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo dd {
    width: 40vw;
    margin: 2.67vw auto 0 auto;
  }
}

.l-copy {
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .l-copy {
    font-size: 1rem;
    padding: 5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .l-copy {
    font-size: 3.33vw;
    padding: 10.67vw 4vw 4vw;
  }
}
.l-copy a {
  text-decoration: underline;
}

.p-cta__items {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
  margin-top: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-cta__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__items {
    margin-top: 10.67vw;
  }
}
.p-cta__items:before {
  content: "";
  display: block;
  position: absolute;
  background-color: rgba(30, 34, 38, 0.15);
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .p-cta__items:before {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta__item {
    padding: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__item {
    padding: 6.67vw 4vw;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__item + .p-cta__item:before {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(30, 34, 38, 0.15);
    width: 100%;
    height: 1px;
    transform: translate(-50%, 0%);
    left: 50%;
    top: 0;
  }
}
.p-cta__title-en {
  color: #2D51B2;
  font-size: 1.875rem;
  font-family: begum, sans-serif;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__title-en {
    font-size: 4.67vw;
  }
}
.p-cta__title-ja {
  font-weight: 400;
}
@media screen and (min-width: 768px), print {
  .p-cta__title-ja {
    font-size: 1.25rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title-ja {
    text-align: center;
    font-size: 4vw;
  }
}
.p-cta__office {
  display: grid;
  grid-gap: 1.25rem 0.9375rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__office {
    display: grid;
    grid-gap: 2vw;
    margin-top: 4vw;
  }
}
.p-cta__office dt {
  font-family: klee-one, sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  .p-cta__office dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__office dt {
    text-align: center;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta__office dt {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta__office dt:nth-child(3) {
    grid-row: 2/3;
  }
}
.p-cta__office dd {
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .p-cta__office dd {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__office dd {
    text-align: center;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta__office dd:nth-child(4) {
    grid-row: 2/3;
  }
}
.p-cta__office dd a {
  font-size: 1.875rem;
  color: #1E2226;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-cta__office dd a {
    font-size: 5.5vw;
  }
}
.p-cta__office dd a:before {
  width: 1.5625rem;
  aspect-ratio: 1;
  display: inline-block;
  margin: 0 0.3125rem -0.125rem 0;
  background: url(../../../../assets/images/common/icon_tel01.svg) center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-cta__office dd a:before {
    width: 5.33vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-cta__btn {
    width: 17.5rem;
    margin: 1.875rem auto 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__btns {
    margin: 4vw;
  }
}

@media screen and (min-width: 768px), print {
  .p-dropdown {
    z-index: -2;
    position: absolute;
    left: 0;
    right: 0;
    line-height: 0;
    opacity: 0;
    transition: 0.3s ease-in-out;
    padding: 0;
    overflow: hidden;
    top: 6.25rem;
    font-size: 0;
    margin: 0 auto;
    height: 0;
    width: 100%;
  }
}
@media screen and (min-width: 768px), print {
  body.p-scroll .p-dropdown {
    top: 3.75rem;
  }
}
.p-dropdown__inner {
  padding: 8.125rem 0 0 0;
}
@media screen and (min-width: 768px), print {
  .p-dropdown__inner {
    width: 75rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__inner {
    padding: 0;
  }
}
@media screen and (min-width: 768px), print {
  .p-dropdown__inner:last-child {
    padding-bottom: 8.125rem;
  }
}
* + .p-dropdown__inner {
  padding: 1.875rem 0 0 0;
}
@media screen and (max-width: 767px) {
  * + .p-dropdown__inner {
    padding: 0;
  }
}
@media screen and (min-width: 768px), print {
  .l-header__nav-item:hover a + .p-dropdown {
    opacity: 1;
    line-height: normal;
    font-size: inherit;
    height: auto;
  }
}
@media screen and (min-width: 768px), print {
  .p-dropdown::before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.38);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
}
.p-dropdown__item {
  position: relative;
}
@media screen and (min-width: 768px), print {
  .p-dropdown__items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__items {
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px), print {
  * + .p-dropdown__item {
    padding-left: 0.3125rem;
  }
}
* + .p-dropdown__item::before {
  content: "/";
  display: block;
  position: absolute;
  transform: translate(0, -50%);
  left: 0;
  top: 50%;
  color: #fff;
}
@media screen and (max-width: 767px) {
  * + .p-dropdown__item::before {
    display: none;
  }
}
@media screen and (min-width: 768px), print {
  .p-dropdown__item-title {
    display: inline-flex;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__item-title {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__item-title::before, .p-dropdown__item-title::after {
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    position: absolute;
    background-color: #fff;
    transition: all 0.3s ease-out;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__item-title::before {
    width: 1.25rem;
    height: 0.125rem;
    right: 6.67vw;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__item-title::after {
    width: 0.125rem;
    height: 1.25rem;
    right: 8.75vw;
  }
}
.p-dropdown__item-title.active::after {
  transform: rotate(90deg);
  background-color: #fff;
}
* + .p-dropdown__item-title {
  padding-top: 0;
}
.p-dropdown__item-title a,
.p-dropdown__item-title span {
  color: #fff;
  height: auto;
  font-size: 1.125rem;
  line-height: 1.3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (min-width: 768px), print {
  .p-dropdown__item-title a,
.p-dropdown__item-title span {
    background-color: #1E2226;
    justify-content: center;
    text-align: center;
    padding: 0.625rem 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__item-title a,
.p-dropdown__item-title span {
    padding: 2vw 10.67vw;
  }
}
@media screen and (max-width: 767px) {
  .p-dropdown__item-title a {
    pointer-events: none;
    text-align: left;
  }
}
.p-dropdown__item a {
  color: #fff;
  height: auto;
  padding: 0.3125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-dropdown__item a {
    padding: 0.5vw 10.67vw 0.5vw 17.33vw;
  }
}
.p-dropdown__item-title.active + .p-dropdown__items {
  height: auto;
  overflow: inherit;
  opacity: 1;
  transition: height 0.5s 0s ease, opacity 0.5s 0s ease;
}

.p-faq__item + * {
  border-top: 1px solid #C6DBF1;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item + * {
    margin-top: 4vw;
  }
}
.p-faq__accordion-header, .p-faq__accordion-content {
  position: relative;
}
.p-faq__accordion-header {
  cursor: pointer;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-header {
    margin-top: 4vw;
  }
}
.p-faq__accordion-header::before, .p-faq__accordion-header::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 1.875rem;
  height: 2px;
  margin: auto;
  background: #2D51B2;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-header::before, .p-faq__accordion-header::after {
    width: 3.33vw;
  }
}
.p-faq__accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.p-faq__accordion-header.active::after {
  transform: rotate(0deg);
}
.p-faq__icon {
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 1.875rem;
  width: 3.125rem;
  aspect-ratio: 1;
  border-radius: 3.125rem;
  text-align: center;
  font-family: klee-one, sans-serif;
  line-height: 1;
  background: linear-gradient(#3d7ec8 0%, #7abaf1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  padding: 0 0 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-faq__icon {
    width: 6.93vw;
    font-size: 4.67vw;
    padding: 0 0 0.4vw;
    top: 0.67vw;
  }
}
.p-faq__accordion-header .p-faq__text {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .p-faq__accordion-header .p-faq__text {
    padding: 0.3125rem 3.125rem 0.3125rem 4.375rem;
    letter-spacing: 0.02em;
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-header .p-faq__text {
    padding: 2vw 5.33vw 2vw 9.33vw;
    font-size: 4.27vw;
    letter-spacing: 0;
  }
}
.p-faq__accordion-header .p-faq__icon {
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-header .p-faq__icon {
    top: 1.67vw;
  }
}
.p-faq__accordion-content {
  display: none;
  margin-top: 0.625rem;
}
.p-faq__accordion-content .p-faq__text {
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .p-faq__accordion-content .p-faq__text {
    padding: 1.0625rem 3.125rem 1.0625rem 4.375rem;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__accordion-content .p-faq__text {
    padding: 3vw 5.33vw 3vw 9.33vw;
    font-size: 3.73vw;
  }
}
.p-faq__accordion-content .p-faq__icon {
  background: none;
  background-color: #9F9F9F;
  top: 0.5rem;
}

.p-post__inner .p-form {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form {
    margin: 6.67vw 0 0;
  }
}
.p-post__inner .p-form input[type=checkbox], .p-post__inner .p-form input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  cursor: pointer;
}
.p-post__inner .p-form input:checked + .wpcf7-list-item-label {
  color: #1E2226;
}
.p-post__inner .p-form input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-post__inner .p-form input[type=email]::-moz-placeholder, .p-post__inner .p-form input[type=tel]::-moz-placeholder, .p-post__inner .p-form input[type=text]::-moz-placeholder, .p-post__inner .p-form textarea::-moz-placeholder, .p-post__inner .p-form__select select::-moz-placeholder {
  color: #f5f5f5;
}
.p-post__inner .p-form input[type=email]:-ms-input-placeholder, .p-post__inner .p-form input[type=tel]:-ms-input-placeholder, .p-post__inner .p-form input[type=text]:-ms-input-placeholder, .p-post__inner .p-form textarea:-ms-input-placeholder, .p-post__inner .p-form__select select:-ms-input-placeholder {
  color: #f5f5f5;
}
.p-post__inner .p-form input[type=email]::placeholder,
.p-post__inner .p-form input[type=tel]::placeholder,
.p-post__inner .p-form input[type=text]::placeholder,
.p-post__inner .p-form textarea::placeholder, .p-post__inner .p-form__select select::placeholder {
  color: #f5f5f5;
}
.p-post__inner .p-form input[type=email],
.p-post__inner .p-form input[type=tel],
.p-post__inner .p-form input[type=text],
.p-post__inner .p-form textarea, .p-post__inner .p-form__select, .p-post__inner .p-form__select select {
  width: 100%;
  font-size: 100%;
}
.p-post__inner .p-form input[type=email],
.p-post__inner .p-form input[type=tel],
.p-post__inner .p-form input[type=text],
.p-post__inner .p-form textarea, .p-post__inner .p-form__select,
.p-post__inner .p-form .wpcf7-list-item-label {
  box-sizing: border-box;
  border-radius: 0.625rem;
  background-color: #f5f5f5;
}
.p-post__inner .p-form input[type=email],
.p-post__inner .p-form input[type=tel],
.p-post__inner .p-form input[type=text],
.p-post__inner .p-form textarea, .p-post__inner .p-form__select select,
.p-post__inner .p-form .wpcf7-list-item-label {
  padding: 1.25rem;
}
.p-post__inner .p-form input[type=email],
.p-post__inner .p-form input[type=tel],
.p-post__inner .p-form input[type=text], .p-post__inner .p-form__select,
.p-post__inner .p-form .wpcf7-list-item-label {
  min-height: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form input[type=email],
.p-post__inner .p-form input[type=tel],
.p-post__inner .p-form input[type=text], .p-post__inner .p-form__select,
.p-post__inner .p-form .wpcf7-list-item-label {
    min-height: 17.33vw;
  }
}
.p-post__inner .p-form__select,
.p-post__inner .p-form .wpcf7-list-item-label {
  overflow: hidden;
}
.p-post__inner .p-form__select {
  display: block;
  position: relative;
}
.p-post__inner .p-form__select::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.125rem;
  border: 2px solid;
  border-color: #2D51B2 #2D51B2 transparent transparent;
  transform: translateY(-50%) rotate(45deg);
  transform: translate(0, -50%) rotate(135deg);
  top: 46%;
  border-color: #1E2226 #1E2226 transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__select::after {
    width: 2vw;
    height: 2vw;
    right: 4vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-post__inner .p-form__select::after {
    right: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__select::after {
    right: 5vw;
  }
}
.p-post__inner .p-form__select select {
  width: 100%;
  height: 100%;
  display: block;
}
.p-post__inner .p-form .h-adr .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.625rem;
}
.p-post__inner .p-form__postcode {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__postcode .wpcf7-form-control-wrap {
    margin-top: 0;
  }
}
.p-post__inner .p-form__postcode input[type=text] {
  width: 18.125rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__postcode input[type=text] {
    width: 62vw;
    margin-left: 1vw;
  }
}
.p-post__inner .p-form__postcode-locality {
  margin: 0.625rem 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__postcode-locality {
    margin: 2vw 0;
  }
}
.p-post__inner .p-form .wpcf7-form-control {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33.3333333333%, 1fr));
  grid-gap: 10px;
  grid-gap: 0.625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-form-control {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-form-control.wpcf7-radio {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-form-control.wpcf7-validates-as-required {
    display: block;
    width: 100%;
  }
}
.p-post__inner .p-form .wpcf7-form-control.wpcf7-validates-as-required .wpcf7-list-item {
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-form-control.wpcf7-validates-as-required .wpcf7-list-item {
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-form-control.wpcf7-validates-as-required.p-postal-code {
    width: 62vw;
    margin-left: 1vw;
  }
}
.p-post__inner .p-form .wpcf7-form-control .wpcf7-acceptance .wpcf7-list-item-label {
  align-items: center;
  padding: 0;
  justify-content: center;
}
.p-post__inner .p-form .wpcf7-form-control .wpcf7-acceptance .wpcf7-list-item-label::before {
  margin: 0 0.625rem 0 0;
  position: inherit;
  transform: none;
  left: auto;
  top: auto;
}
.p-post__inner .p-form .wpcf7-form-control .wpcf7-acceptance .wpcf7-list-item-label::after {
  transform: translate(-50%, -50%) rotate(45deg);
  left: 21%;
  top: 44%;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-form-control .wpcf7-acceptance .wpcf7-list-item-label::after {
    top: 7vw;
    left: 14.5vw;
  }
}
.p-post__inner .p-form .wpcf7-list-item {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  margin: 0;
}
.p-post__inner .p-form .wpcf7-list-item label {
  height: 100%;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  display: block;
}
.p-post__inner .p-form .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 3.125rem;
  display: flex;
  align-items: center;
  line-height: 1.5;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-list-item-label {
    padding: 4vw 4vw 4vw 13vw;
    min-height: 17.33vw;
  }
}
.p-post__inner .p-form .wpcf7-list-item-label::before, .p-post__inner .p-form .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  margin: auto;
}
.p-post__inner .p-form .wpcf7-list-item-label::before {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #f5f5f5;
  transform: translateY(-50%);
  left: 1.25rem;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-list-item-label::before {
    width: 4vw;
    height: 4vw;
  }
}
.p-post__inner .p-form .wpcf7-list-item-label::after {
  top: 0.625rem;
  width: 1rem;
  height: 2rem;
  border: 2px solid;
  border-color: transparent #CB1B45 #CB1B45 transparent;
  transform: rotate(45deg);
  left: 1.4375rem;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form .wpcf7-list-item-label::after {
    top: 4vw;
    left: 5vw;
    width: 4vw;
    height: 6.67vw;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__table {
    border-bottom: none;
    margin-bottom: 6.67vw;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__table th,
.p-post__inner .p-form__table td {
    display: block;
  }
}
.p-post__inner .p-form__table th {
  vertical-align: top;
}
@media screen and (min-width: 768px), print {
  .p-post__inner .p-form__table th {
    width: 18.125rem;
    text-align: left;
  }
}
.p-post__inner .p-form__table textarea {
  resize: none;
  height: 15.625rem;
}
.p-post__inner .p-form__agree {
  text-align: center;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px), print {
  .p-post__inner .p-form__agree {
    margin: 3.125rem auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__agree {
    margin-top: 4vw;
  }
}
.p-post__inner .p-form__agree .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  transition: all 0.1s ease;
  cursor: pointer;
  background-color: #fff;
  margin: 0 auto;
  min-height: 5rem;
}
@media screen and (min-width: 768px), print {
  .p-post__inner .p-form__agree .wpcf7-list-item-label {
    width: 23.75rem;
    border-radius: 6.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__agree .wpcf7-list-item-label {
    width: 100%;
    padding: 0 0 0 10.67vw;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 17.33vw;
  }
}
.p-post__inner .p-form__alert {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px), print {
  .p-post__inner .p-form__alert {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__alert {
    margin-top: 4vw;
  }
}
.p-post__inner .p-form__icon-wrap {
  display: grid;
  grid-template-columns: auto 3.125rem;
  grid-gap: 0.625rem;
  justify-content: space-between;
}
.p-post__inner .p-form__icon-hissu, .p-post__inner .p-form__icon-nini {
  color: #fff;
  display: block;
  padding: 0.375rem 0.3125rem 0.3125rem 0.3125rem;
  line-height: 1.3;
  font-size: 0.875rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__icon-hissu, .p-post__inner .p-form__icon-nini {
    font-size: 3.5vw;
    padding: 1vw 2vw;
  }
}
.p-post__inner .p-form__icon-hissu {
  background-color: #CB1B45;
}
.p-post__inner .p-form__icon-nini {
  background-color: #2D51B2;
}
.p-post__inner .p-form__btn.c-btn__contact {
  position: relative;
  margin-top: 1.875rem;
}
.p-post__inner .p-form__btn.c-btn__contacts {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__btn.c-btn__contacts {
    margin-top: 10.67vw;
  }
}
.p-post__inner .p-form__btn.c-btn__contact span {
  background-color: #CB1B45;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: auto;
  width: auto;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__btn.c-btn__contact span {
    width: 100%;
  }
}
.p-post__inner .p-form__btn.c-btn__contact span::after {
  border-color: #fff #fff transparent transparent;
}
.p-post__inner .p-form__btn.c-btn__contact input {
  background-color: transparent;
  font-size: 100%;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .p-post__inner .p-form__btn.c-btn__contact input {
    width: 23.75rem;
    height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__btn.c-btn__contact input {
    height: 17.33vw;
    width: 100%;
  }
}
.p-post__inner .p-form__btn.c-btn__contact input:disabled {
  background-color: rgba(255, 255, 255, 0.38);
}
.p-post__inner .p-form__btn.c-btn__contact .wpcf7-spinner {
  display: inline;
  position: absolute;
  bottom: -3.125rem;
}
.p-post__inner .p-form__btn-file-wrap {
  margin-top: 0.625rem;
  display: block;
}
.p-post__inner .p-form__btn-file-wrap .wpcf7-form-control-wrap {
  display: block;
  background-color: #f5f5f5;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 4.375rem;
  box-sizing: border-box;
  padding: 0 1.25rem;
}
.p-post__inner .p-form__btn-file-wrap .wpcf7-form-control-wrap input {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.p-post__inner .p-form__privacy {
  margin-top: 5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy {
    margin-top: 0;
    padding: 4vw 0;
  }
}
.p-post__inner .p-form__privacy-inner {
  height: 15.625rem;
  padding: 3.125rem;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy-inner {
    padding: 6.67vw;
    height: 50vw;
  }
}
.p-post__inner .p-form__privacy-title {
  text-align: center;
  color: #1E2226;
  padding: 0;
  margin: 0;
  max-width: none;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy-title {
    font-size: 5vw;
  }
}
.p-post__inner .p-form__privacy-title::before, .p-post__inner .p-form__privacy-title::after {
  display: none;
}
.p-post__inner .p-form__privacy-subtitle {
  color: #1E2226;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy-subtitle {
    margin-top: 4vw;
    font-size: 4.5vw;
  }
}
.p-post__inner .p-form__privacy-subtitle::before {
  background-color: #f5f5f5;
}
.p-post__inner .p-form__privacy .c-tel a::before {
  width: 1rem;
  height: 1rem;
}
.p-post__inner .p-form__privacy-text {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy-text {
    margin-top: 2vw;
  }
}
.p-post__inner .p-form__privacy ul {
  margin: 0 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy ul {
    margin-top: 2vw;
  }
}
.p-post__inner .p-form__privacy ul li {
  background-color: transparent;
  padding: 0 0 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy ul li {
    padding-left: 4vw;
  }
}
.p-post__inner .p-form__privacy ul li::before {
  left: 0;
  top: 0.625rem;
}
.p-post__inner .p-form__privacy-table {
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy-table {
    margin-top: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-post__inner .p-form__privacy-table tbody {
    display: block;
  }
}
.p-post__inner .p-form__privacy-table tr:nth-child(1) th {
  border-top: 1px solid #f5f5f5;
}
.p-post__inner .p-form__privacy-table tr:last-child th {
  border-bottom: 1px solid #f5f5f5;
}
.p-post__inner .p-form__privacy-table tr td {
  background-color: #f5f5f5;
}

.p-recruit-cta {
  position: relative;
  padding: 5.625rem 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta {
    padding: 17.33vw 0;
  }
}
.p-recruit-cta::before, .p-recruit-cta::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.p-recruit-cta::before {
  z-index: -2;
}
.p-recruit-cta::after {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../../assets/images/common/bg_recruit01.png);
  z-index: -1;
  mix-blend-mode: multiply;
}
.p-recruit-cta__inner {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px), print {
  .p-recruit-cta__inner {
    display: grid;
    grid-template-columns: 18.125rem auto 15.625rem;
    align-items: center;
  }
}
.p-recruit-cta__inner::before, .p-recruit-cta__inner::after {
  width: 12.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__inner::before, .p-recruit-cta__inner::after {
    width: 33.33vw;
  }
}
.p-recruit-cta__inner::before {
  background-image: url(../../assets/images/common/pic_recruit01.png);
  top: -9.375rem;
  left: -14.375rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__inner::before {
    top: -20vw;
    left: auto;
    right: 16vw;
  }
}
.p-recruit-cta__inner::after {
  background-image: url(../../assets/images/common/pic_recruit02.png);
  bottom: -9.375rem;
  right: -15.625rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__inner::after {
    top: 2.07vw;
    bottom: auto;
    right: -4vw;
  }
}
@media screen and (min-width: 768px), print {
  .p-recruit-cta__title {
    border-right: 1px solid #fff;
  }
}
.p-recruit-cta__title-en,
.p-recruit-cta__title .c-sec-title__en {
  color: #fff;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__title-en,
.p-recruit-cta__title .c-sec-title__en {
    font-size: 4vw;
  }
}
.p-recruit-cta__title-ja {
  color: #fff;
  font-size: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__title-ja {
    font-size: 5.5vw;
  }
}
.p-recruit-cta__text {
  color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .p-recruit-cta__text {
    padding-left: 5rem;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__text {
    margin-top: 6.67vw;
    font-size: 4.27vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-cta__btns {
    margin-top: 6.67vw;
  }
}

#p-nav-toggle {
  z-index: 1000;
  position: fixed;
  top: 2.67vw;
  right: 2.67vw;
  height: 13.33vw;
  width: 13.33vw;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px), print {
  #p-nav-toggle {
    display: none;
  }
}
#p-nav-toggle::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100vw;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
#p-nav-toggle > div {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #p-nav-toggle > div::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
#p-nav-toggle span {
  width: 60%;
  height: 1px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  background: #1E2226;
  position: absolute;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  top: 0;
  bottom: 0;
}
#p-nav-toggle span:nth-child(1) {
  transform: translate(0, -1.33vw);
}
.open #p-nav-toggle span:nth-child(1) {
  transform: rotate(35deg);
}
.open #p-nav-toggle span:nth-child(2) {
  width: 0;
}
#p-nav-toggle span:nth-child(3) {
  transform: translate(0, 1.33vw);
}
.open #p-nav-toggle span:nth-child(3) {
  transform: rotate(-35deg);
  top: 0;
  bottom: 0;
}

.p-nav {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-nav {
    height: 0;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  body.open .p-nav {
    height: 100vh;
    overflow: inherit;
  }
}
.p-nav__inner {
  grid-gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-nav__inner {
    grid-gap: 0;
  }
}
@media screen and (min-width: 768px), print {
  body.p-scroll .p-nav__inner {
    width: auto;
  }
}
.p-nav__item {
  position: relative;
  color: #bababa;
}
@media screen and (min-width: 768px), print {
  .p-nav__items {
    display: flex;
    align-items: center;
    gap: 1.875rem;
  }
}
.l-header .p-nav__items {
  justify-content: flex-end;
}
.l-footer .p-nav__items {
  justify-content: center;
  padding-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-nav__items {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body.open .p-nav__items {
    display: flex;
    width: 100%;
    height: calc(100vh - 10.67vw);
    flex-flow: column;
    justify-content: center;
    gap: 6.67vw;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__item {
    text-align: center;
    font-size: 4.67vw;
  }
}
.p-nav__item a:not(.c-btn) {
  color: #1E2226;
}
@media screen and (min-width: 768px), print {
  .p-nav__item a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__item a {
    color: #fff;
  }
}
@media screen and (min-width: 768px), print {
  .p-nav__item .c-btn__contact {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-nav__item .c-btn__contact {
    width: calc(100% - 10.67vw);
    margin: 4vw auto 0;
  }
}
.l-footer .p-nav__item .c-btn__contact {
  background-color: transparent;
  font-size: 1.125rem;
  min-height: 0;
  min-width: 0;
  color: #1E2226;
  text-align: left;
}

.p-pagetop {
  position: fixed;
  display: none;
  z-index: 99;
  align-items: center;
}
@media screen and (min-width: 768px), print {
  .p-pagetop {
    position: fixed;
    right: 0;
    bottom: 0;
  }
}
.p-pagetop a {
  display: block;
  text-indent: 100%;
  overflow: hidden;
  background-color: #1E2226;
  width: 4.375rem;
  height: 4.375rem;
  position: relative;
}
.p-pagetop a::after {
  content: "";
  position: absolute;
  margin: auto;
  border: 1px solid;
  border-color: #fff #fff transparent transparent;
  width: 1.875rem;
  height: 1.875rem;
  transform: translate(-50%, -50%) rotate(-45deg);
  left: 50%;
  top: 65%;
}

@media screen and (max-width: 767px) {
  .p-topicpath {
    white-space: nowrap;
    z-index: 1;
    margin-bottom: 10.67vw;
  }
}
.p-topicpath > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .p-topicpath > ul {
    width: 75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-topicpath > ul {
    padding: 0 6.67vw;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.p-topicpath > ul > li {
  margin-right: 0.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-topicpath > ul > li {
    padding-left: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .p-topicpath > ul > li:first-child {
    padding-left: 0;
    margin-right: 0;
  }
}
.p-topicpath > ul > li + li {
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-topicpath > ul > li + li {
    margin-left: 2vw;
    padding-left: 4vw;
  }
}
.p-topicpath > ul > li + li::after {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 0.125rem;
  border: 2px solid;
  border-color: #2D51B2 #2D51B2 transparent transparent;
  transform: translateY(-50%) rotate(45deg);
  display: block;
  position: absolute;
  top: 50%;
  content: "";
  left: 0;
  border-color: #1E2226 #1E2226 transparent transparent;
}
@media screen and (max-width: 767px) {
  .p-topicpath > ul > li + li::after {
    width: 2vw;
    height: 2vw;
    right: 4vw;
  }
}
.p-topicpath > ul > li a,
.p-topicpath > ul > li span {
  display: flex;
  flex-wrap: wrap;
  height: 5rem;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .p-topicpath > ul > li a,
.p-topicpath > ul > li span {
    height: auto;
    font-size: 3vw;
  }
}

.p-visual {
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px), print {
  .p-visual {
    min-height: 33.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-visual {
    min-height: 60vw;
  }
}
.p-visual::before, .p-visual::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
}
.p-visual::before {
  z-index: -2;
}
.p-visual::after {
  background-image: url(../../assets/images/common//bg_visualt01.png);
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  mix-blend-mode: multiply;
}
.p-visual__title {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.p-visual__title::before {
  content: "";
  display: block;
  position: absolute;
  width: 150%;
  height: 31.25rem;
  bottom: -25rem;
  background-color: #fff;
  z-index: 1;
  border-radius: 100%;
  margin: 0 -25%;
  z-index: 1;
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .p-visual__title::before {
    height: 30vw;
    bottom: -25vw;
  }
}
.p-visual__title-en, .p-visual__title-ja {
  position: relative;
  display: inline-flex;
  line-height: 1.3;
  font-weight: normal;
  color: #fff;
  padding: 0.625rem 3.125rem;
  z-index: 0;
  margin: 0 auto;
}
.p-visual__title-en {
  color: #2D51B2;
  font-size: 1.875rem;
  font-family: begum, sans-serif;
}
@media screen and (max-width: 767px) {
  .p-visual__title-en {
    font-size: 4vw;
  }
}
.p-visual__title-ja {
  font-family: klee-one, sans-serif;
  font-size: 3.4375rem;
  color: #1E2226;
}
@media screen and (max-width: 767px) {
  .p-visual__title-ja {
    font-size: 8vw;
    padding: 0 0 8vw;
  }
}

.c-btn {
  text-align: center;
  position: relative;
  color: #fff;
  line-height: 1;
  padding: 0.3125rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 0;
  box-sizing: border-box;
  border-radius: 0.625rem;
  border: 2px solid #fff;
}
@media screen and (min-width: 768px), print {
  .c-btn {
    min-height: 3.75rem;
    min-width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    padding: 4vw;
    min-height: 16vw;
    max-width: 60vw;
    margin: 0 auto;
  }
}
.c-btn__contact {
  border: none;
  background-color: #C54F1A;
}
.c-btn-gradation {
  border: none;
  -o-border-image: linear-gradient(to right, #7ABAF1, #3D7EC8) 1;
     border-image: linear-gradient(to right, #7ABAF1, #3D7EC8) 1;
  border-radius: 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .c-btn-gradation {
    width: 15.625rem;
  }
}
.c-btn-gradation::before, .c-btn-gradation::after {
  content: "";
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.c-btn-gradation::before {
  background: linear-gradient(90deg, #7ABAF1 0%, #3D7EC8);
  width: 100%;
  height: 100%;
  z-index: -2;
  border-radius: 0.625rem;
}
.c-btn-gradation::after {
  z-index: -1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  border-radius: 0.5rem;
}
.c-btn-gradation span {
  background: linear-gradient(270deg, #7ABAF1 0%, #3D7EC8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-btn-gradation span {
    font-size: inherit;
  }
}

.c-color-red {
  color: #CB1B45;
}
.c-color-blue {
  color: #2D51B2;
}
.c-color-black {
  color: #1E2226;
}
.c-color-white {
  color: #fff;
}

.c-circle {
  position: relative;
}
.c-circle:before, .c-circle:after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(90deg, #fbfcff 0%, #ecf4fc 100%);
  z-index: -1;
  aspect-ratio: 1;
  border-radius: 50%;
  -webkit-animation: fuwafuwa 4s ease-in-out infinite alternate;
          animation: fuwafuwa 4s ease-in-out infinite alternate;
  transition: 2s ease-in-out;
  mix-blend-mode: multiply;
}
.c-circle:after {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.c-circle-white:after {
  background: none;
  background-color: #fff;
}

@-webkit-keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.c-list > li {
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-list > li {
    padding-left: 4vw;
  }
}
.c-list > li::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 0.3125rem;
  top: 1.0625rem;
  left: 0.3125rem;
  background-color: #1E2226;
}
@media screen and (max-width: 767px) {
  .c-list > li::before {
    top: 3vw;
  }
}

.c-link {
  text-decoration: underline;
  display: inline-flex;
  position: relative;
  padding-right: 1.25rem;
}
.c-link::before, .c-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border: 1px solid #1E2226;
  transform: translateX(-50%);
}
.c-link::before {
  top: 40%;
  right: 0;
}
.c-link::after {
  top: calc(40% - 3px);
  right: 4px;
  background-color: #fff;
}

.c-sec-title {
  position: relative;
}
.c-sec-title__en {
  color: #2D51B2;
  font-size: 1.875rem;
  font-family: begum, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .c-sec-title__en {
    font-size: 4vw;
    margin: 0 0 2.67vw;
  }
}
.c-sec-title__ja {
  font-family: klee-one, sans-serif;
  font-size: 2.8125rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-sec-title__ja {
    font-size: 6vw;
  }
}
body#top .c-sec-title__ja {
  font-size: 3.125rem;
}
@media screen and (max-width: 767px) {
  body#top .c-sec-title__ja {
    font-size: 6.67vw;
  }
}

.c-sec-subtitle {
  display: flex;
  align-items: center;
  font-size: 2.1875rem;
  text-align: center;
  font-family: klee-one, sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-sec-subtitle {
    font-size: 5.33vw;
    text-align: left;
  }
}
.c-sec-subtitle::before, .c-sec-subtitle::after {
  background: rgba(45, 81, 178, 0.4);
  content: "";
  height: 1px;
  width: auto;
  flex-grow: 1;
}
.c-sec-subtitle::before {
  margin-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-sec-subtitle::before {
    margin-right: 4vw;
    display: none;
  }
}
.c-sec-subtitle::after {
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .c-sec-subtitle::after {
    margin-left: 4vw;
  }
}
.c-sec-subtitle__add {
  font-size: 0.6em;
  font-feature-settings: "palt";
  position: relative;
  bottom: -0.3em;
}
@media screen and (max-width: 767px) {
  .c-sec-subtitle__add {
    bottom: -1.5em;
  }
}

.c-table--01 {
  width: 100%;
  border-collapse: separate;
  border: none;
}
@media screen and (max-width: 767px) {
  .c-table--01 {
    border-collapse: collapse;
    border-top: 1px solid rgba(45, 81, 178, 0.4);
  }
}
@media screen and (max-width: 767px) {
  .c-table--01 tbody,
.c-table--01 tr {
    display: block;
  }
}
@media screen and (min-width: 768px), print {
  .c-table--01 th,
.c-table--01 td {
    padding: 0.9375rem 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table--01 th,
.c-table--01 td {
    display: block;
  }
}
.c-table--01 th {
  color: #2D51B2;
  vertical-align: top;
  border-bottom: 1px solid #2D51B2;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .c-table--01 th {
    width: 23.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table--01 th {
    border-bottom: none;
    padding: 4vw 4vw 2.67vw;
    font-size: 4.67vw;
  }
}
.c-table--01 td {
  text-align: left;
  border-bottom: 1px solid rgba(45, 81, 178, 0.4);
}
@media screen and (max-width: 767px) {
  .c-table--01 td {
    padding: 0 4vw 4vw;
  }
}
.c-table--02 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-table--02 {
    border-spacing: 0.67vw;
  }
}
.c-table--02 th,
.c-table--02 td {
  padding: 1.25rem 1.875rem;
  text-align: center;
  font-weight: 400;
  line-height: 1.3;
  vertical-align: middle;
  position: relative;
}
@media screen and (min-width: 768px), print {
  .c-table--02 th,
.c-table--02 td {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-table--02 th,
.c-table--02 td {
    padding: 4vw 3.33vw;
  }
}
.c-table--02 thead th:not(:first-child) {
  background: linear-gradient(90deg, #3D7EC8 0%, #0040A1 100%);
  color: #fff;
}
.c-table--02 tbody th:nth-child(1) {
  background: linear-gradient(90deg, #7ABAF1 0%, #3D7EC8 100%);
  color: #fff;
}
.c-table--02 tbody th.c-table--02__th-second {
  background: linear-gradient(90deg, #E2F0FF 0%, #A2CCF8 100%);
  color: #2D51B2;
}
.c-table--02 tbody th span {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-table--02 tbody th span {
    font-size: 3.33vw;
    font-feature-settings: "palt";
  }
}
.c-table--02 tbody td {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-table--02__scrl-inner {
    overflow-x: scroll;
    position: relative;
    padding: 0 0 2vw;
  }
  .c-table--02__scrl:after {
    content: "スクロールしてご覧ください";
    font-size: 3.33vw;
    height: 7.67vw;
    background: url(../images/common/ico_scroll01.svg) right top/auto 7.67vw no-repeat;
    text-align: right;
    width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 2.67vw 10vw 0 0;
    margin-top: 1.33vw;
  }
}

.c-tel {
  z-index: 0;
}
.c-tel a {
  line-height: 1.2;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.c-tel a::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  width: 2.25rem;
  height: 2.25rem;
  background-image: url(../../assets/images/common/icon_tel01.svg);
}

.c-anchornav {
  box-shadow: 0 0.9375rem 0.9375rem rgba(0, 0, 0, 0.02);
  padding: 0 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .c-anchornav {
    padding: 0 0 6.67vw;
  }
}
.c-anchornav__item {
  padding: 0 1.875rem;
}
.c-anchornav__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-anchornav__items {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-anchornav__item {
    padding: 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-anchornav__item + .c-anchornav__item {
    border-left: 1px solid rgba(45, 81, 178, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .c-anchornav__item + .c-anchornav__item {
    border-top: 1px solid rgba(45, 81, 178, 0.2);
    margin-top: 4vw;
    padding-top: 4vw;
  }
}
@media screen and (min-width: 768px), print {
  .c-anchornav__item:nth-child(3n+1) {
    padding-left: 0;
    border-left: none;
  }
  .c-anchornav__item:nth-child(3n) {
    padding-right: 0;
  }
}
.c-anchornav__item a {
  display: grid;
  grid-template-columns: 5.625rem auto;
  gap: 0.3125rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-anchornav__item a {
    grid-template-columns: 17.33vw auto;
    gap: 0.67vw 4vw;
  }
}
.c-anchornav__item a:before {
  width: 1.25rem;
  aspect-ratio: 1;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  background: url(../images/common/ico_arrow01.svg) center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 767px) {
  .c-anchornav__item a:before {
    width: 3.33vw;
  }
}
.c-anchornav__img {
  grid-row: 1/3;
}
.c-anchornav__text-en {
  margin-top: auto;
  color: #2D51B2;
  font-size: 1rem;
  font-family: begum, sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-anchornav__text-en {
    font-size: initial;
  }
}
.c-anchornav__text-ja {
  font-size: 1.4375rem;
  font-family: klee-one, sans-serif;
  line-height: 1.3;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-anchornav__text-ja {
    font-size: 4.27vw;
  }
}
.c-note {
  font-size: 1rem;
  line-height: 1.5;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-note {
    font-size: 3.33vw;
  }
}

@-webkit-keyframes bgGrad {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bgGrad {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.u-blurIn {
  filter: blur(0.625rem);
  opacity: 0;
  transition: 1.3s;
  transition-property: filter, opacity;
  transition-delay: 0.3s;
}
.u-blurIn.is-active {
  filter: blur(0);
  opacity: 1;
}
.u-spinIn span {
  display: inline-block;
  transform: rotateY(90deg);
}
.u-spinIn.is-active span {
  -webkit-animation: spin 0.5s linear forwards;
          animation: spin 0.5s linear forwards;
}
.u-spinIn.is-active span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.u-spinIn.is-active span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.u-spinIn.is-active span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.u-spinIn.is-active span:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.u-spinIn.is-active span:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.u-spinIn.is-active span:nth-child(6) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.u-spinIn.is-active span:nth-child(7) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.u-spinIn.is-active span:nth-child(8) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.u-spinIn.is-active span:nth-child(9) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.u-spinIn.is-active span:nth-child(10) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.u-spinIn.is-active span:nth-child(11) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.u-spinIn.is-active span:nth-child(12) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.u-spinIn.is-active span:nth-child(13) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.u-spinIn.is-active span:nth-child(14) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.u-spinIn.is-active span:nth-child(15) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.u-spinIn.is-active span:nth-child(16) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.u-spinIn.is-active span:nth-child(17) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.u-spinIn.is-active span:nth-child(18) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.u-spinIn.is-active span:nth-child(19) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.u-spinIn.is-active span:nth-child(20) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(2) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(3) {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(4) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(5) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(6) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(7) {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(8) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(9) {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(10) {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(11) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(12) {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(13) {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(14) {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(15) {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(16) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(17) {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(18) {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(19) {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}
.u-spinIn.is-active + .u-spinIn.is-active span:nth-child(20) {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}
@-webkit-keyframes spin {
  0% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.u-imgHidden {
  position: relative;
  visibility: visible;
  overflow: hidden;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.u-imgHidden:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #2D51B2;
  transform: translate3d(0%, 0, 0);
}
.u-imgHidden.is-active:before {
  -webkit-animation: imgBgSlide 1s cubic-bezier(0.6, 0, 0.4, 1);
          animation: imgBgSlide 1s cubic-bezier(0.6, 0, 0.4, 1);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes imgBgSlide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate3d(calc(100% + 1px), 0, 0);
  }
}
@keyframes imgBgSlide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate3d(calc(100% + 1px), 0, 0);
  }
}/*# sourceMappingURL=styles.css.map */