@charset "UTF-8";
/* リキッドレイアウト対応 */
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

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

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

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

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

body.is-fixed {
  height: 100%;
  overflow: hidden !important;
}

body {
  font-family: "IBM Plex Sans JP", sans-serif;
  color: #30416B;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
  counter-reset: number 0; /* number のカウンタを 0 にセット */
}

body.home {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.content {
  opacity: 0;
  pointer-events: none;
}

body.appear .content {
  -webkit-animation-name: PageAnime-content;
          animation-name: PageAnime-content;
  -webkit-animation-duration: 0.55s;
          animation-duration: 0.55s;
  -webkit-animation-delay: 0.55s;
          animation-delay: 0.55s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}

.animation .content {
  opacity: 1;
  pointer-events: auto;
}

@-webkit-keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.fade .animation-bg {
  background: #f1f4f8;
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-animation-name: PageAnime-fade;
          animation-name: PageAnime-fade;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  pointer-events: none;
}

@-webkit-keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
*,
*::before,
*::after {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

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

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

button {
  padding: 0;
  color: inherit;
}

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-btn {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 12.5rem;
  padding-block: 0.8125rem 0.625rem;
  padding-left: 0.875rem;
  background-color: #1a57b1;
  color: #fff;
  border-radius: 7.1875rem;
  transition: 0.3s;
}
.c-btn::before {
  width: 0;
  height: 0;
  content: "";
  background: url("../images/btn_arrow.svg") no-repeat center center/contain;
  transition: 0.3s;
}
.c-btn::after {
  content: "";
  width: 0.6875rem;
  height: 0.6875rem;
  margin-bottom: 2px;
  margin-left: 1rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .c-btn:hover {
    padding-left: 0;
    background-color: #1E293B;
  }
  .c-btn:hover::before {
    width: 1.3125rem; /* ホバー時に表示 */
    height: 0.5rem;
    margin-bottom: 2px;
    margin-right: 0.75rem;
  }
  .c-btn:hover::after {
    width: 0; /* ホバー時に表示 */
    height: 0;
    margin-left: 0;
    background-color: transparent;
  }
}

/* ハンバーガーボタン
------------------------------------------------ */
.c-hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    padding: 0;
    position: relative;
    z-index: 21;
  }
}

.c-hamburger span {
  position: relative;
  display: block;
  height: 0.125rem;
  width: 1.75rem;
  margin-inline: auto;
  background-color: #30416B;
  border-radius: 2px;
  transition: 0.3s ease-in-out;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}

.c-hamburger span:nth-child(2) {
  margin: 0.375rem auto;
}

.c-hamburger span:nth-child(3) {
  top: 0;
}

.c-hamburger.open span:nth-child(1) {
  top: 0.5rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
  background-color: transparent;
  box-shadow: none;
}

.c-hamburger.open span:nth-child(3) {
  top: -0.5rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-modal {
  width: 90%;
  max-width: 60rem;
  padding: 1rem 2rem 2rem;
  border-radius: 0.75rem;
  border: none;
  color: #1E293B;
  box-shadow: 0px 0px 17.88px 0px rgba(0, 0, 0, .1);
}
@media screen and (max-width: 767px) {
  .c-modal {
    padding: 1rem 1.25rem 1.25rem;
  }
}

.c-modal__row {
  display: grid;
  grid-template-columns: 30% 65%;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-modal__row {
    display: block;
    margin-top: 0.5rem;
  }
}

.c-modal__img {
  overflow: hidden;
}
.c-modal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}

@media screen and (max-width: 767px) {
  .c-modal__block {
    margin-top: 1rem;
  }
}

.c-modal__position {
  font-size: 1.125rem;
  font-weight: 500;
}

.c-modal__name {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.c-modal__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-modal__text {
    margin-top: 2rem;
  }
}

.c-modal__history {
  margin-top: 1rem;
}

.c-modal__history-title {
  font-size: 1rem;
}

.c-modal__dl {
  margin-top: 0.5rem;
}

.c-modal__dl-wrap {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-modal__dl-wrap {
    flex-direction: column;
    gap: 0;
  }
}
.c-modal__dl-wrap + .c-modal__dl-wrap {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .c-modal__dl-wrap + .c-modal__dl-wrap {
    margin-top: 0.5rem;
  }
}
.c-modal__dl-wrap dt, .c-modal__dl-wrap dd {
  line-height: 1.8;
}
.c-modal__dl-wrap dt {
  font-weight: 500;
  flex-shrink: 0;
}

.c-modal__close {
  font-size: 1.5rem;
  display: block;
  margin-left: auto;
}

.c-pagetop {
  text-align: right;
}
.c-pagetop a {
  display: inline-flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.5rem;
  color: #30416B;
  font-family: "Heebo", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .c-pagetop a {
    font-size: 1rem;
    gap: 0.4375rem;
  }
}
.c-pagetop a::after {
  content: "";
  display: block;
  width: 0.6875rem;
  height: 0.4375rem;
  background: url(../images/icon_pagetop.svg) no-repeat center/100% auto;
}
@media (any-hover: hover) {
  .c-pagetop a:hover {
    opacity: 0.7;
  }
}

.c-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}

.c-title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.5rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 1010px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 632px;
    padding-inline: 16px;
  }
}

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

.l-sub-mv {
  margin-top: 7.4375rem;
  padding-block: 4rem 7.5rem;
}
@media screen and (min-width: 1920px) {
  .l-sub-mv {
    margin-top: 10.125rem;
  }
}
@media screen and (max-width: 767px) {
  .l-sub-mv {
    margin-top: 82px;
    padding-block: 1.5rem 4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-sub-mv.--privacy .l-sub-mv__title-ja {
    font-size: 1.5rem;
  }
}

.l-sub-mv__title span {
  display: block;
}

.l-sub-mv__title-en {
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.25;
  text-transform: capitalize;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-sub-mv__title-en {
    font-size: 1rem;
    padding-left: 0.8375rem;
  }
}
.l-sub-mv__title-en::before {
  content: "";
  display: block;
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(../images/title_deco.svg) no-repeat center/100% auto;
  -webkit-transform: rotate(-67.86deg);
          transform: rotate(-67.86deg);
  position: absolute;
  top: -0.3125rem;
  left: -2rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-sub-mv__title-en::before {
    width: 2.135625rem;
    height: 2.051875rem;
    top: -0.209375rem;
    left: -0.25125rem;
  }
}

.l-sub-mv__title-ja {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .l-sub-mv__title-ja {
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }
}

/* -----------------------------------------------------------------
  swiper カスタマイズ
----------------------------------------------------------------- */
/* スライドの動き等速 */
/* 前ページ、次ページボタン共通のスタイル */
/* -----------------------------------------------------------------
  ドロワーメニュー
----------------------------------------------------------------- */
.p-drawer {
  background-color: #f1f4f8;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.p-drawer.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.p-drawer__wrap {
  padding: 1rem 2rem;
}

.p-drawer__nav {
  padding-top: 5.125rem;
}

.p-drawer__nav-item {
  height: 100%;
}
.p-drawer__nav-item + .p-drawer__nav-item {
  margin-top: 1rem;
}
.p-drawer__nav-item a {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-top: 0.125rem;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item a {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-drawer__nav-item a:hover {
    opacity: 0.7;
  }
}
.p-drawer__nav-item.--blank {
  margin-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item.--blank {
    margin-left: 0;
  }
}
.p-drawer__nav-item.--blank span:not([class]) {
  padding-right: 1.4375rem;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--blank span:not([class]) {
    padding-right: 2.1875rem;
  }
}
.p-drawer__nav-item.--blank span:not([class])::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -webkit-mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
          mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
  background-color: currentColor;
  position: absolute;
  bottom: 0.1875rem;
  right: 0;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--blank span:not([class])::before {
    width: 1.3125rem;
    height: 1.3125rem;
    bottom: 0.3125rem;
  }
}
.p-drawer__nav-item.--blank .--text-small {
  display: block;
  font-size: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--blank .--text-small {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item.--blank .--text-small {
    text-align: left;
  }
}
.p-drawer__nav-item.--btn-blank {
  width: 100%;
  max-width: 10.3125rem;
  margin-left: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--btn-blank {
    max-width: 12.5rem;
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item.--btn-blank {
    margin-left: 0;
  }
}
.p-drawer__nav-item.--btn-blank a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid #1E293B;
  border-radius: 5.4375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item.--btn-blank a {
    padding-block: 0.625rem 0.4375rem;
  }
}
.p-drawer__nav-item.--btn-blank a::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -webkit-mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
          mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
  background-color: currentColor;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--btn-blank a::after {
    width: 1.3125rem;
    height: 1.3125rem;
  }
}
@media (any-hover: hover) {
  .p-drawer__nav-item.--btn-blank a:hover {
    background-color: #1E293B;
    color: #fff;
    opacity: 1;
  }
}
.p-drawer__nav-item.--btn-circle {
  width: 100%;
  max-width: 10.3125rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--btn-circle {
    max-width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item.--btn-circle {
    margin-left: 0;
  }
}
.p-drawer__nav-item.--btn-circle a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 0.8125rem 0.625rem;
  padding-left: 0.875rem;
  background-color: #1a57b1;
  color: #fff;
  border-radius: 7.1875rem;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--btn-circle a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-drawer__nav-item.--btn-circle a {
    padding-block: 0.6875rem 0.5rem;
  }
}
.p-drawer__nav-item.--btn-circle a::before {
  width: 0;
  height: 0;
  content: "";
  background: url("../images/btn_arrow.svg") no-repeat center center/contain;
  transition: 0.3s;
}
.p-drawer__nav-item.--btn-circle a::after {
  content: "";
  width: 0.5625rem;
  height: 0.5625rem;
  margin-bottom: 2px;
  margin-left: 0.875rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-drawer__nav-item.--btn-circle a::after {
    width: 0.6875rem;
    height: 0.6875rem;
    margin-left: 1rem;
  }
}
@media (any-hover: hover) {
  .p-drawer__nav-item.--btn-circle a:hover {
    padding-left: 0;
    background-color: #1E293B;
    opacity: 1;
  }
  .p-drawer__nav-item.--btn-circle a:hover::before {
    width: 1.3125rem; /* ホバー時に表示 */
    height: 0.5rem;
    margin-bottom: 2px;
    margin-right: 0.75rem;
  }
  .p-drawer__nav-item.--btn-circle a:hover::after {
    width: 0; /* ホバー時に表示 */
    height: 0;
    margin-left: 0;
    background-color: transparent;
  }
}

body.form .p-footer,
body.confirm .p-footer,
body.thanks .p-footer,
body.privacy .p-footer {
  margin-top: 0;
}

.p-footer {
  color: #1E293B;
  background-color: rgba(246, 246, 246, .87);
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    margin-top: 4rem;
  }
}

.p-footer__inner {
  padding-inline: 3.4722222222%;
}
@media screen and (min-width: 1920px) {
  .p-footer__inner {
    padding-inline: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-inline: 16px;
  }
}

.p-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding-block: 4rem 5.375rem;
}
@media screen and (min-width: 1920px) {
  .p-footer__main {
    padding-block: 4.5rem 6.375rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-footer__main {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    display: block;
    padding-block: 2rem;
  }
}

.p-footer__logo {
  max-width: 5.5rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-footer__logo {
    max-width: 6.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__logo {
    max-width: 4.25rem;
  }
}
.p-footer__logo a {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-footer__logo a:hover {
    opacity: 0.7;
  }
}

.p-footer__nav {
  height: 100%;
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-footer__nav {
    width: 100%;
  }
}
.p-footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2.625rem;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-list {
    height: 3.125rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-footer__nav-list {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-list {
    flex-direction: column;
    align-items: initial;
    gap: 1rem;
    height: 100%;
    margin-top: 2rem;
  }
}

.p-footer__nav-item {
  height: 100%;
}
.p-footer__nav-item a {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-top: 0.125rem;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item a {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.7;
  }
}
.p-footer__nav-item.--company {
  margin-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--company {
    margin-left: 0;
  }
}
.p-footer__nav-item.--blank {
  margin-left: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--blank {
    margin-left: 0;
  }
}
.p-footer__nav-item.--blank span:not([class]) {
  padding-right: 1.4375rem;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--blank span:not([class]) {
    padding-right: 2.1875rem;
  }
}
.p-footer__nav-item.--blank span:not([class])::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -webkit-mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
          mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
  background-color: currentColor;
  position: absolute;
  bottom: 0.1875rem;
  right: 0;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--blank span:not([class])::before {
    width: 1.3125rem;
    height: 1.3125rem;
    bottom: 0.3125rem;
  }
}
.p-footer__nav-item.--blank .--text-small {
  display: block;
  font-size: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--blank .--text-small {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--blank .--text-small {
    text-align: left;
  }
}
.p-footer__nav-item.--btn-blank {
  width: 100%;
  max-width: 10.3125rem;
  margin-left: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-blank {
    max-width: 12.5rem;
    margin-left: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--btn-blank {
    margin-left: 0;
  }
}
.p-footer__nav-item.--btn-blank a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid #1E293B;
  border-radius: 5.4375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 100%;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-blank a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--btn-blank a {
    padding-block: 0.625rem 0.4375rem;
  }
}
.p-footer__nav-item.--btn-blank a::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -webkit-mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
          mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
  background-color: currentColor;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-blank a::after {
    width: 1.3125rem;
    height: 1.3125rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-blank a span {
    padding-top: 0.125rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item.--btn-blank a:hover {
    background-color: #1E293B;
    color: #fff;
    opacity: 1;
  }
}
.p-footer__nav-item.--btn-circle {
  width: 100%;
  max-width: 10.3125rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-circle {
    max-width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--btn-circle {
    margin-left: 0;
  }
}
.p-footer__nav-item.--btn-circle a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 0.8125rem 0.625rem;
  padding-left: 0.875rem;
  background-color: #1a57b1;
  color: #fff;
  border-radius: 7.1875rem;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-circle a {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav-item.--btn-circle a {
    padding-block: 0.6875rem 0.5rem;
  }
}
.p-footer__nav-item.--btn-circle a::before {
  width: 0;
  height: 0;
  content: "";
  background: url("../images/btn_arrow.svg") no-repeat center center/contain;
  transition: 0.3s;
}
.p-footer__nav-item.--btn-circle a::after {
  content: "";
  width: 0.5625rem;
  height: 0.5625rem;
  margin-bottom: 2px;
  margin-left: 0.875rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-footer__nav-item.--btn-circle a::after {
    width: 0.6875rem;
    height: 0.6875rem;
    margin-left: 1rem;
  }
}
@media (any-hover: hover) {
  .p-footer__nav-item.--btn-circle a:hover {
    padding-left: 0;
    background-color: #1E293B;
    opacity: 1;
  }
  .p-footer__nav-item.--btn-circle a:hover::before {
    width: 1.3125rem; /* ホバー時に表示 */
    height: 0.5rem;
    margin-bottom: 2px;
    margin-right: 0.75rem;
  }
  .p-footer__nav-item.--btn-circle a:hover::after {
    width: 0; /* ホバー時に表示 */
    height: 0;
    margin-left: 0;
    background-color: transparent;
  }
}

.p-footer__other {
  padding-block: 2.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid #e1e7ee;
}
@media screen and (min-width: 1920px) {
  .p-footer__other {
    padding-block: 3.75rem;
    margin-top: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__other {
    padding-block: 1.5rem;
    margin-top: 1rem;
  }
}

.p-footer__other-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__other-wrap {
    flex-direction: column-reverse;
    justify-content: initial;
    align-items: initial;
    gap: 2rem;
  }
}

.p-footer__copy small {
  font-size: 0.6875rem;
  font-weight: 400;
}
@media screen and (min-width: 1920px) {
  .p-footer__copy small {
    font-size: 0.8125rem;
  }
}

.p-footer__policy {
  flex-grow: 1;
}

.p-footer__policy-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
@media screen and (min-width: 1920px) {
  .p-footer__policy-wrap {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__policy-wrap {
    flex-direction: column-reverse;
    align-items: initial;
    justify-content: initial;
    gap: 1rem;
  }
}
.p-footer__policy-wrap a {
  display: block;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: underline;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-footer__policy-wrap a {
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .p-footer__policy-wrap a:hover {
    opacity: 0.7;
  }
}

.p-footer__list {
  display: flex;
  gap: 1rem;
}
.p-footer__list li {
  max-width: 3.75rem;
}
@media screen and (min-width: 1920px) {
  .p-footer__list li {
    max-width: 4.5rem;
  }
}
.p-footer__list li a {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-footer__list li a:hover {
    opacity: 0.7;
  }
}

.p-header {
  width: 100%;
  height: 7.4375rem;
  padding-block: 1.375rem;
  padding-inline: 1.875rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: 0.5s;
}
@media screen and (min-width: 1920px) {
  .p-header {
    height: 10.125rem;
    padding-block: 2.125rem;
    padding-inline: 3.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 82px;
    padding: 16px;
  }
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0.75rem 1.25rem;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .p-header__inner {
    padding: 1.0625rem 1.875rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-header__inner {
    padding: 0.75rem 0;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 0;
  }
}
.p-header__inner::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.4375rem;
  background-color: rgba(255, 255, 255, .5);
  backdrop-filter: blur(9.6000003815px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-header__logo {
  max-width: 5.5rem;
}
@media screen and (min-width: 1920px) {
  .p-header__logo {
    max-width: 6.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 4.25rem;
  }
}
.p-header__logo a {
  display: block;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-header__logo a:hover {
    opacity: 0.7;
  }
}

.p-header__nav {
  height: 100%;
  padding-block: 0.375rem;
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.p-header__nav-item {
  height: 100%;
}
.p-header__nav-item a {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-top: 0.125rem;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item a {
    font-size: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-header__nav-item a:hover {
    opacity: 0.7;
  }
}
.p-header__nav-item.--blank {
  margin-left: 2.25rem;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--blank {
    margin-left: 2.375rem;
  }
}
.p-header__nav-item.--blank span:not([class]) {
  padding-right: 1.4375rem;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--blank span:not([class]) {
    padding-right: 2.1875rem;
  }
}
.p-header__nav-item.--blank span:not([class])::before {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../images/icon_blank.svg) no-repeat center/100% auto;
  position: absolute;
  bottom: 0.1875rem;
  right: 0;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--blank span:not([class])::before {
    width: 1.3125rem;
    height: 1.3125rem;
    bottom: 0.3125rem;
  }
}
.p-header__nav-item.--blank .--text-small {
  display: block;
  font-size: 0.625rem;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--blank .--text-small {
    font-size: 0.75rem;
  }
}
.p-header__nav-item.--btn-blank {
  width: 100%;
  max-width: 10.3125rem;
  max-height: 2.625rem;
  margin-left: 1rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-blank {
    max-width: 12.5rem;
    max-height: 3.125rem;
    margin-left: 1.25rem;
  }
}
.p-header__nav-item.--btn-blank a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  border: 1px solid #30416B;
  border-radius: 5.4375rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 100%;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-blank a {
    font-size: 1.125rem;
  }
}
.p-header__nav-item.--btn-blank a::after {
  content: "";
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  -webkit-mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
          mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
  background-color: currentColor;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-blank a::after {
    width: 1.3125rem;
    height: 1.3125rem;
  }
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-blank a span {
    padding-top: 0.125rem;
  }
}
@media (any-hover: hover) {
  .p-header__nav-item.--btn-blank a:hover {
    background-color: #30416B;
    color: #fff;
    opacity: 1;
  }
}
.p-header__nav-item.--btn-circle {
  width: 100%;
  max-width: 10.3125rem;
  max-height: 2.625rem;
  margin-left: 0.25rem;
  flex-shrink: 0;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-circle {
    max-width: 12.5rem;
    max-height: 3.125rem;
  }
}
.p-header__nav-item.--btn-circle a {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-block: 0.8125rem 0.625rem;
  padding-left: 0.875rem;
  background-color: #1a57b1;
  color: #fff;
  border-radius: 7.1875rem;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-circle a {
    font-size: 1.125rem;
  }
}
.p-header__nav-item.--btn-circle a::before {
  width: 0;
  height: 0;
  content: "";
  background: url("../images/btn_arrow.svg") no-repeat center center/contain;
  transition: 0.3s;
}
.p-header__nav-item.--btn-circle a::after {
  content: "";
  width: 0.5625rem;
  height: 0.5625rem;
  margin-bottom: 2px;
  margin-left: 0.875rem;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
@media screen and (min-width: 1920px) {
  .p-header__nav-item.--btn-circle a::after {
    width: 0.6875rem;
    height: 0.6875rem;
    margin-left: 1rem;
  }
}
@media (any-hover: hover) {
  .p-header__nav-item.--btn-circle a:hover {
    padding-left: 0;
    background-color: #1E293B;
    opacity: 1;
  }
  .p-header__nav-item.--btn-circle a:hover::before {
    width: 1.3125rem; /* ホバー時に表示 */
    height: 0.5rem;
    margin-bottom: 2px;
    margin-right: 0.75rem;
  }
  .p-header__nav-item.--btn-circle a:hover::after {
    width: 0; /* ホバー時に表示 */
    height: 0;
    margin-left: 0;
    background-color: transparent;
  }
}

.p-company__message {
  background-color: #f1f4f8;
}

.p-company__title span {
  display: block;
}

.p-company__title-en {
  font-family: "Heebo", sans-serif;
  color: #1a57b1;
  font-size: 1.25rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-company__title-en {
    font-size: 1rem;
  }
}

.p-company__title-ja {
  font-size: 2rem;
  margin-top: 0.25em;
}
@media screen and (max-width: 767px) {
  .p-company__title-ja {
    font-size: 1.5rem;
  }
}

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

.p-company__message-text {
  line-height: 1.8;
}

.p-company__message-name {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__message-name {
    font-size: 1.25rem;
    margin-top: 1.5rem;
  }
}

.p-company__overview-dl {
  margin-top: 2rem;
  border-top: 1px solid #f1f4f8;
}
@media screen and (max-width: 767px) {
  .p-company__overview-dl {
    margin-top: 1.5rem;
  }
}

.p-company__overview-wrap {
  display: grid;
  grid-template-columns: 25% 75%;
  border-bottom: 1px solid #f1f4f8;
}
@media screen and (max-width: 767px) {
  .p-company__overview-wrap {
    display: block;
  }
}
.p-company__overview-wrap dt,
.p-company__overview-wrap dd {
  font-size: 1rem;
  line-height: 1.8;
  padding: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__overview-wrap dt,
  .p-company__overview-wrap dd {
    padding: 1rem 0;
  }
}
.p-company__overview-wrap dt {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__overview-wrap dt {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company__overview-wrap dd {
    padding-top: 0;
  }
}
.p-company__overview-wrap dd span {
  display: block;
}
.p-company__overview-wrap dd span + span {
  margin-top: 1.5rem;
}
.p-company__overview-wrap a {
  display: block;
  width: -webkit-fit-content;
  width: fit-content;
  padding-right: 1.5em;
  position: relative;
  transition: 0.3s;
}
.p-company__overview-wrap a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask: url(../images/company/icon_blank.webp) no-repeat center/cover;
          mask: url(../images/company/icon_blank.webp) no-repeat center/cover;
  background-color: currentColor;
  position: absolute;
  top: 0.25em;
  right: 0;
}
@media (any-hover: hover) {
  .p-company__overview-wrap a:hover {
    opacity: 0.7;
  }
}

.p-company__executive {
  background-color: #f1f4f8;
}

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

.p-company__executive-item {
  border-radius: 1.25rem;
  box-shadow: 0px 0px 17.88px 0px rgba(0, 0, 0, .1);
  overflow: hidden;
  position: relative;
}

.p-company__executive-button {
  width: 100%;
  height: 100%;
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
}
@media (any-hover: hover) {
  .p-company__executive-button:hover + .p-company__executive-item-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.p-company__executive-item-img {
  max-height: 15.625rem;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-company__executive-item-img {
    max-height: 66.6666666667vw;
  }
}
.p-company__executive-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.p-company__executive-item-wrap {
  background-color: #fff;
  padding: 1rem 1.5rem;
}

.p-company__executive-item-position {
  font-size: 1.125rem;
  font-weight: 500;
}

.p-company__executive-item-name {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.p-company__executive-item-more {
  color: #1a57b1;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.p-company__executive-item-more::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.625rem;
  margin-bottom: 1px;
  -webkit-mask: url(../images/btn_arrow02.svg) no-repeat center/100% auto;
          mask: url(../images/btn_arrow02.svg) no-repeat center/100% auto;
  background-color: currentColor;
}

.p-company__history-wrap {
  display: grid;
  grid-template-columns: 65% 30%;
  gap: 5%;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__history-wrap {
    display: block;
    margin-top: 1.5rem;
  }
}

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

.p-company__history-dl-wrap {
  display: grid;
  grid-template-columns: 20% 75%;
  gap: 5%;
}
.p-company__history-dl-wrap dt,
.p-company__history-dl-wrap dd {
  padding-block: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-company__history-dl-wrap dt,
  .p-company__history-dl-wrap dd {
    padding-block: 0.75rem;
  }
}
.p-company__history-dl-wrap dt {
  font-weight: 500;
}
.p-company__history-dl-wrap dt span {
  display: inline-block;
}
.p-company__history-dl-wrap dd {
  padding-left: 1.5rem;
  border-left: 0.25rem solid #f1f4f8;
  position: relative;
}
.p-company__history-dl-wrap dd::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  position: absolute;
  top: 1.375rem;
  left: -0.5rem;
  background-color: #1a57b1;
  border-radius: 50%;
}

.p-company__client {
  background-color: #f1f4f8;
}
.p-company__client p {
  font-size: 0.875rem;
  margin-top: 1rem;
}

.p-company__client-wrap {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-company__client-wrap {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
}

.p-company__client-item {
  font-size: 1rem;
  line-height: 1.8;
  list-style-type: disc;
  margin-left: 1em;
}
.p-company__client-item + .p-company__client-item {
  margin-top: 0.5rem;
}

.p-company__access {
  padding-bottom: 0;
}

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

.p-company__access-item + .p-company__access-item {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-company__access-item + .p-company__access-item {
    margin-top: 3rem;
  }
}

.p-company__access-item-title {
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-company__access-item-title {
    font-size: 1.125rem;
  }
}

.p-company__access-item-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 0.5rem;
}
.p-company__access-item-text span {
  display: inline-block;
}

.p-company__access-item-map {
  width: 100%;
  margin-top: 0.5rem;
}
.p-company__access-item-map iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

.p-form {
  color: #1E293B;
  background-color: #f1f4f8;
  padding-block: 8.75rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    padding-block: 4rem;
  }
}
.p-form.--confirm .formTable th,
.p-form.--confirm .formTable td {
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-form.--confirm .formTable th,
  .p-form.--confirm .formTable td {
    display: block;
  }
}
.p-form.--confirm .formTable th {
  min-width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-form.--confirm .formTable td {
    padding-top: 0;
  }
}
.p-form.--confirm .formTable tbody tr:last-of-type {
  display: none;
}

.p-form__section {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 3rem 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__section {
    padding: 2rem 1.25rem;
  }
}
.p-form__section + .p-form__section {
  margin-top: 4rem;
}

.p-form__section-title {
  color: #30416B;
}

@media screen and (max-width: 767px) {
  .p-form__section-text {
    text-align: left;
  }
}
.p-form__section-text + .p-form__section-text {
  margin-top: 0.5rem;
}

.p-form__section-body {
  width: 90%;
  margin-inline: auto;
  margin-top: 5rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-form__section-body {
    width: 100%;
    margin-top: 3rem;
  }
}

.p-form__item {
  display: grid;
  grid-template-columns: 35% 65%;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-form__item {
    display: block;
  }
}
.p-form__item + .p-form__item {
  margin-top: 1.5rem;
}
.p-form__item.--flex-start {
  align-items: flex-start;
}

.p-form__wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__wrap {
    gap: 0.5rem;
  }
}

.p-form__label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 0.25rem;
}

.p-form__required {
  width: 2.8125rem;
  padding: 0.125rem 0.25rem 0;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__required {
    padding: 0.125rem 0.25rem 0;
  }
}

.p-form__required {
  background-color: #1a57b1;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .p-form__field {
    margin-top: 0.5rem;
  }
}
.p-form__field input[type=text],
.p-form__field input[type=tel],
.p-form__field input[type=email],
.p-form__field textarea {
  font-size: 1rem;
  border-radius: 0.25rem;
  background-color: #f1f4f8;
  width: 100%;
  max-width: 100%;
  padding: 1rem 1.5rem 0.875rem;
}
.p-form__field textarea {
  min-height: 10rem;
}

.p-form__policy {
  margin-top: 4rem;
  margin-top: 3rem;
}

.p-form__policy-text {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.p-form__policy-section {
  border: 2px solid #f1f4f8;
  height: 18.75rem;
  padding: 3rem 2rem;
  margin-top: 1.5rem;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-form__policy-section {
    height: 15.625rem;
    padding: 2rem 1.5rem;
  }
}

.p-form__policy-section-title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__policy-section-title {
    font-size: 1.25rem;
  }
}

.p-form__policy-section-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-form__policy-section-text {
    font-size: 0.875rem;
  }
}

.p-form__policy-section-list {
  margin-top: 2rem;
}

.p-form__policy-section-item ul {
  margin-top: 1rem;
}
.p-form__policy-section-item ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-form__policy-section-item ul li {
    font-size: 0.875rem;
  }
}
.p-form__policy-section-item + .p-form__policy-section-item {
  margin-top: 1.5rem;
}

.p-form__policy-section-item-title {
  font-size: 1.125rem;
  font-weight: 500;
}
.p-form__policy-section-item-title + .p-form__policy-section-text {
  margin-top: 0.5rem;
}

.p-form__policy-section-contact {
  margin-top: 1.5rem;
}

.p-form__recaptcha {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 4rem;
}
.p-form__recaptcha a {
  color: #1a57b1;
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-form__recaptcha a:hover {
    opacity: 0.7;
  }
}

.p-form__acceptance {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
}
.p-form__acceptance input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.p-form__acceptance input[type=checkbox] + span {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 1rem;
  cursor: pointer;
}
.p-form__acceptance input[type=checkbox] + span:before {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-right: 0.625rem;
  margin-bottom: 0.1875rem;
  border: 1px solid #1a57b1;
}
.p-form__acceptance input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.p-form__acceptance input[type=checkbox]:checked + span:before {
  content: "";
  background-color: #1a57b1;
}
.p-form__acceptance input[type=checkbox]:checked + span:after {
  content: "";
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  display: block;
  height: 0.625rem;
  left: 0.375rem;
  position: absolute;
  top: 0.25rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.3125rem;
}

.p-form__btn {
  max-width: 25rem;
  margin-inline: auto;
  margin-top: 3rem;
  position: relative;
}
.p-form__btn input[type=submit] {
  border-radius: 6.25rem;
  border: 1px solid #1a57b1;
  background-color: #1a57b1;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0.9375rem 0.9375rem 0.8125rem;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-form__btn input[type=submit]:hover {
    background-color: #fff;
    color: #1a57b1;
  }
}
.p-form__btn input[type=submit]:disabled {
  cursor: not-allowed;
  background-color: #ccc;
  border-color: #ccc;
}
.p-form__btn input[type=submit]:disabled:hover {
  background-color: #ccc;
  color: #fff;
}
.p-form__btn.--column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 39.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-form__btn.--column {
    grid-template-columns: 1fr;
  }
}
.p-form__btn.--column .sendinput[type=submit] {
  border-radius: 6.25rem;
  border: 1px solid #1a57b1;
  background-color: #1a57b1;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0.9375rem 0.9375rem 0.8125rem;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-form__btn.--column .sendinput[type=submit]:hover {
    background-color: #fff;
    color: #1a57b1;
  }
}
.p-form__btn.--column .back {
  border-radius: 6.25rem;
  border: 1px solid #f1f4f8;
  background-color: #f1f4f8;
  color: #1E293B;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0.9375rem 0.9375rem 0.8125rem;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-form__btn.--column .back:hover {
    background-color: #1E293B;
    color: #f1f4f8;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

.p-form__error {
  max-width: 37.5rem;
  margin-inline: auto;
  padding-inline: 1rem;
  color: #e01e5a;
}
@media screen and (max-width: 767px) {
  .p-form__error {
    text-align: left;
  }
}

.p-form__error-title {
  font-size: 1.25rem;
}

.p-form__error-content {
  margin-top: 3rem;
}

.error_messe + .error_messe {
  margin-top: 0.5rem;
}

.p-form__error-back {
  text-align: center;
  margin-top: 4rem;
}
.p-form__error-back .back {
  border-radius: 6.25rem;
  border: 1px solid #f1f4f8;
  background-color: #f1f4f8;
  color: #1E293B;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 25rem;
  padding: 0.9375rem 0.9375rem 0.8125rem;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-form__error-back .back:hover {
    background-color: #1E293B;
    color: #f1f4f8;
  }
}

.p-form__confirm-recaptcha {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 25rem;
  margin-inline: auto;
  margin-top: 2rem;
}
.p-form__confirm-recaptcha p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.p-thanks {
  color: #1E293B;
  background-color: #f1f4f8;
  padding-block: 8.75rem;
}

.p-thanks__wrap {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__wrap {
    text-align: left;
  }
}

.p-thanks__title {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 1.5rem;
  }
}

.p-thanks__text {
  margin-top: 2rem;
}
.p-thanks__text + .p-thanks__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
}

.p-thanks__back {
  text-align: center;
  margin-top: 3rem;
}
.p-thanks__back a {
  border-radius: 6.25rem;
  border: 1px solid #1a57b1;
  background-color: #1a57b1;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  width: 100%;
  max-width: 12.5rem;
  padding: 0.9375rem 0.9375rem 0.8125rem;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-thanks__back a:hover {
    background-color: #fff;
    color: #1a57b1;
  }
}

.p-privacy {
  background-color: #f1f4f8;
  padding-block: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy {
    padding-block: 4rem;
  }
}

.p-privacy__section + .p-privacy__section {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__section + .p-privacy__section {
    margin-top: 5rem;
  }
}

.p-privacy__section-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
}

.p-privacy__section-main {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-main {
    margin-top: 3rem;
  }
}

.p-privacy__section-main-title {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-main-title {
    font-size: 1.25rem;
  }
}
.p-privacy__section-main-title + ul {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-main-title + ul {
    margin-top: 1.5rem;
  }
}

.p-privacy__section-main-wrap {
  background-color: #fff;
  border: 2px solid #f1f4f8;
  height: 18.75rem;
  padding: 3rem 2rem;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-main-wrap {
    height: 15.625rem;
    padding: 2rem 1.5rem;
  }
}

.p-privacy__section-main-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 0.5rem;
}
.p-privacy__section-main-text + .p-privacy__section-main-text {
  margin-top: 1.5rem;
}

.p-privacy__section-main-list {
  margin-top: 2rem;
}

.p-privacy__section-main-item + .p-privacy__section-main-item {
  margin-top: 1.5rem;
}
.p-privacy__section-main-item a {
  color: #1a57b1;
  text-decoration: underline;
  transition: 0.3s;
}
@media (any-hover: hover) {
  .p-privacy__section-main-item a:hover {
    opacity: 0.7;
  }
}
.p-privacy__section-main-item table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid currentColor;
}
.p-privacy__section-main-item table th, .p-privacy__section-main-item table td {
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.p-privacy__section-main-item table th {
  background-color: #f1f4f8;
}

.p-privacy__section-main-item-table {
  margin-top: 1.5rem;
  overflow-x: auto;
}

.p-privacy__section-main-item-title {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-main-item-title {
    font-size: 1.125rem;
  }
}

.p-privacy__section-main-children {
  margin-top: 0.5rem;
  padding-left: 1em;
}
.p-privacy__section-main-children ul {
  padding-left: 1em;
}

.p-privacy__section-main-child {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-main-child {
    font-size: 0.875rem;
  }
}
.p-privacy__section-main-child + .p-privacy__section-main-child {
  margin-top: 0.5rem;
}

.p-privacy__section-sub {
  margin-top: 2rem;
}

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

.p-privacy__section-sub-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-privacy__section-sub-text {
    font-size: 0.875rem;
  }
}

.p-privacy__section-main-name {
  margin-top: 1rem;
  text-align: right;
}

.p-top-company {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    margin-top: 6.25rem;
  }
}
.p-top-company .l-inner {
  max-width: calc(70rem + 50px);
}
@media screen and (max-width: 767px) {
  .p-top-company .l-inner {
    max-width: 632px;
  }
}

.p-top-company__wrap {
  background-color: #f1f4f9;
  border-radius: 1.125rem;
  padding: 7.5rem 5rem 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__wrap {
    border-radius: 1rem;
    padding: 1.5rem;
  }
}

.p-top-company__title {
  display: flex;
  align-items: flex-start;
  gap: 1.6875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-company__title {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}

.p-top-company__title-ja {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-company__title-ja {
    font-size: 1.5rem;
  }
}

.p-top-company__title-en {
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.25;
  text-transform: capitalize;
  margin-top: 0.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-company__title-en {
    font-size: 1rem;
    margin-inline: 0 auto;
    padding-left: 0.8375rem;
  }
}
.p-top-company__title-en::before {
  content: "";
  display: block;
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(../images/title_deco.svg) no-repeat center/100% auto;
  -webkit-transform: rotate(-67.86deg);
          transform: rotate(-67.86deg);
  position: absolute;
  top: -0.4375rem;
  left: -1.625rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-company__title-en::before {
    width: 2.135625rem;
    height: 2.051875rem;
    top: -0.209375rem;
    left: -0.25125rem;
  }
}

.p-top-company__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__text {
    margin-top: 1rem;
  }
}

.p-top-company__btn {
  text-align: right;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-company__btn {
    margin-top: 1rem;
  }
}
.p-top-company__btn a {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}
.p-top-company__btn a::after {
  content: "";
  display: block;
  width: 3.625rem;
  height: 3.625rem;
  background: url(../images/btn_arrow_circle.png) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .p-top-company__btn a::after {
    width: 3rem;
    height: 3rem;
  }
}
@media (any-hover: hover) {
  .p-top-company__btn a:hover span::before {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-top-company__btn span {
  margin-top: 0.25rem;
  position: relative;
}
.p-top-company__btn span::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left;
          transform-origin: left;
  transition: 0.3s;
}

.p-top-contact {
  margin-top: 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-contact {
    margin-top: 5rem;
  }
}

.p-top-contact__title {
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-contact__title {
    font-size: 1.25rem;
  }
}

.p-top-contact__text {
  color: #1E293B;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__text {
    line-height: 1.8;
  }
}

.p-top-contact__btn {
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn {
    margin-top: 1.5rem;
  }
}
.p-top-contact__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  max-width: 24.5625rem;
  padding: 1rem 0 0.8125rem;
  border: 1px solid #1a57b1;
  background-color: #1a57b1;
  border-radius: 4.625rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-contact__btn a {
    font-size: 1.125rem;
  }
}
.p-top-contact__btn a::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.75rem;
  margin-bottom: 1px;
  -webkit-mask: url(../images/btn_arrow02.svg) no-repeat center/100% auto;
          mask: url(../images/btn_arrow02.svg) no-repeat center/100% auto;
  background-color: currentColor;
}
@media (any-hover: hover) {
  .p-top-contact__btn a:hover {
    background-color: #fff;
    color: #1a57b1;
  }
}

.p-top-feature {
  background-color: #f1f4f8;
  padding-block: 7.875rem 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature {
    padding-block: 4rem;
  }
}

.p-top-feature__title {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-feature__title {
    text-align: left;
  }
}
.p-top-feature__title span {
  display: block;
}

.p-top-feature__title-en {
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.25;
  text-transform: capitalize;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-feature__title-en {
    font-size: 1rem;
    margin-inline: 0 auto;
    padding-left: 0.8375rem;
  }
}
.p-top-feature__title-en::before {
  content: "";
  display: block;
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(../images/title_deco.svg) no-repeat center/100% auto;
  -webkit-transform: rotate(-67.86deg);
          transform: rotate(-67.86deg);
  position: absolute;
  top: -0.375rem;
  left: -1.875rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-feature__title-en::before {
    width: 2.135625rem;
    height: 2.051875rem;
    top: -0.209375rem;
    left: -0.25125rem;
  }
}

.p-top-feature__title-ja {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__title-ja {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

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

.p-top-feature__item {
  display: grid;
  grid-template-columns: minmax(0, 29.375rem) minmax(0, 27.5rem);
  align-items: center;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item {
    display: block;
  }
}
.p-top-feature__item:nth-child(even) .p-top-feature__item-block {
  order: 2;
}
.p-top-feature__item:nth-child(even) .p-top-feature__item-img {
  order: 1;
}
.p-top-feature__item + .p-top-feature__item {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item + .p-top-feature__item {
    margin-top: 1.5rem;
  }
}

.p-top-feature__item-block {
  padding-top: 4.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-block {
    padding-top: 3rem;
  }
}

.p-top-feature__item-title {
  font-size: 1.6875rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-title {
    font-size: 1.25rem;
  }
}

.p-top-feature__item-number {
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-size: 10rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.03em;
  position: absolute;
  top: 0.5rem;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-feature__item-number {
    font-size: 7.5rem;
    top: 0.25rem;
    right: 1rem;
  }
}

.p-top-feature__item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-top-feature__item-img {
    margin-top: 1rem;
  }
}
.p-top-feature__item-img img {
  border-radius: 0.3125rem;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .2);
}

.p-top-message {
  background-color: #f1f4f8;
  padding-block: 8.125rem 8.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-message {
    padding-block: 4rem;
  }
}

.p-top-message__title {
  position: relative;
}
.p-top-message__title span {
  display: block;
}
.p-top-message__title::before {
  content: "";
  display: block;
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(../images/title_deco.svg) no-repeat center/100% auto;
  -webkit-transform: rotate(-67.86deg);
          transform: rotate(-67.86deg);
  position: absolute;
  top: -0.1875rem;
  left: -0.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__title::before {
    width: 2.135625rem;
    height: 2.051875rem;
    top: -0.125625rem;
    left: -0.25125rem;
  }
}

.p-top-message__title-en {
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.25;
  text-transform: capitalize;
  padding-left: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-message__title-en {
    font-size: 1rem;
    padding-left: 0.8375rem;
  }
}

.p-top-message__title-ja {
  max-width: 23.875rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__title-ja {
    max-width: 14.325rem;
    margin-top: 1.5rem;
  }
}

.p-top-message__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.04em;
  width: -webkit-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__text {
    line-height: 2;
    letter-spacing: 0.02em;
    margin-top: 3rem;
    margin-left: 0;
  }
}

.p-top-message__slider {
  margin-top: 8.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider {
    margin-top: 4rem;
  }
}
.p-top-message__slider .swiper {
  overflow: visible;
}
.p-top-message__slider .swiper-wrapper {
  min-height: 21.875rem;
  transition-timing-function: linear !important;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-wrapper {
    min-height: 15.625rem;
  }
}
.p-top-message__slider .swiper-slide img {
  border-radius: 0.3125rem;
}
.p-top-message__slider .swiper-slide:nth-child(odd) {
  margin-bottom: auto;
}
.p-top-message__slider .swiper-slide:nth-child(even) {
  margin-top: auto;
}
.p-top-message__slider .swiper-slide:nth-child(6n+1) {
  max-width: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-slide:nth-child(6n+1) {
    max-width: 6.4875rem;
  }
}
.p-top-message__slider .swiper-slide:nth-child(6n+2) {
  max-width: 18.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-slide:nth-child(6n+2) {
    max-width: 11.025rem;
  }
}
.p-top-message__slider .swiper-slide:nth-child(6n+3) {
  max-width: 16.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-slide:nth-child(6n+3) {
    max-width: 10.0875rem;
  }
}
.p-top-message__slider .swiper-slide:nth-child(6n+4) {
  max-width: 22.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-slide:nth-child(6n+4) {
    max-width: 13.5375rem;
  }
}
.p-top-message__slider .swiper-slide:nth-child(6n+5) {
  max-width: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-slide:nth-child(6n+5) {
    max-width: 6.4875rem;
  }
}
.p-top-message__slider .swiper-slide:nth-child(6n+6) {
  max-width: 18.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-message__slider .swiper-slide:nth-child(6n+6) {
    max-width: 11.025rem;
  }
}

.p-top-mv {
  aspect-ratio: 1440/780;
  padding-block: 19.625rem 17.5rem;
  background: url(../images/mv_bg.webp) no-repeat center center/cover;
}
@media screen and (min-width: 1920px) {
  .p-top-mv {
    aspect-ratio: 1920/960;
    padding-block: 14.84375vw 21.25vw;
    background: url(../images/mv_bg_large.webp) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    aspect-ratio: initial;
    height: 37.5rem;
    padding-block: 9.375rem 15.625rem;
    background: url(../images/mv_bg_large.webp) no-repeat center center/cover;
  }
}

.p-top-mv__inner {
  width: 100%;
  max-width: 1010px;
  padding-inline: 25px;
  margin-inline: auto;
}
@media screen and (min-width: 1920px) {
  .p-top-mv__inner {
    max-width: 1580px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__inner {
    max-width: 632px;
    padding-inline: 16px;
  }
}

.p-top-mv__title {
  max-width: 26.25rem;
}
@media screen and (min-width: 1920px) {
  .p-top-mv__title {
    max-width: 39.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__title {
    width: 70%;
    max-width: 20rem;
  }
}

.p-top-mv__text {
  font-family: "Heebo", sans-serif;
  font-size: 1.625rem;
  font-weight: 200;
  line-height: 1.4;
  letter-spacing: 0.08em;
  padding-left: 3.4375rem;
  margin-top: 1rem;
  position: relative;
}
@media screen and (min-width: 1920px) {
  .p-top-mv__text {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__text {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    padding-left: 2.5rem;
  }
}
.p-top-mv__text::before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 1.0625rem;
}
@media screen and (min-width: 1920px) {
  .p-top-mv__text::before {
    width: 3.1875rem;
    top: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv__text::before {
    width: 2rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.p-top-service {
  padding-block: 7.1875rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding-block: 4rem;
  }
}

.p-top-service__title {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-service__title {
    text-align: left;
  }
}
.p-top-service__title span {
  display: block;
}

.p-top-service__title-en {
  font-family: "Heebo", sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.25;
  text-transform: capitalize;
  width: -webkit-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-service__title-en {
    font-size: 1rem;
    margin-inline: 0 auto;
    padding-left: 0.8375rem;
  }
}
.p-top-service__title-en::before {
  content: "";
  display: block;
  width: 3.1875rem;
  height: 3.0625rem;
  background: url(../images/title_deco.svg) no-repeat center/100% auto;
  -webkit-transform: rotate(-67.86deg);
          transform: rotate(-67.86deg);
  position: absolute;
  top: -0.3125rem;
  left: -2rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-service__title-en::before {
    width: 2.135625rem;
    height: 2.051875rem;
    top: -0.209375rem;
    left: -0.25125rem;
  }
}

.p-top-service__title-ja {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-top: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__title-ja {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

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

.p-top-service__about-wrap {
  border-radius: 1.5rem;
  border: 0.83px solid rgb(214, 227, 240);
  display: flex;
  align-items: center;
  gap: 3.125rem;
  padding: 3.75rem 5rem 4.0625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__about-wrap {
    border-radius: 1rem;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
}

.p-top-service__about-logo {
  max-width: 24.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__about-logo {
    width: 80%;
    max-width: 18.75rem;
  }
}

.p-top-service__about-title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
}
.p-top-service__about-title span {
  display: block;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__about-title span {
    font-size: 1.75rem;
  }
}

.p-top-service__about-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.08em;
  margin-top: 0.9375rem;
}

.p-top-service__text01 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__text01 {
    margin-top: 4rem;
  }
}
.p-top-service__text01 span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-service__text01 span {
    font-size: 1.5rem;
  }
}

.p-top-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 0.5rem;
    margin-inline: auto;
    margin-top: 1.5rem;
  }
}

.p-top-service__item {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 1.25rem;
  box-shadow: 0px 0px 17.88px 0px rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  height: 15rem;
}
.p-top-service__item:nth-child(1) .p-top-service__item-icon {
  max-width: 6.1875rem;
}
.p-top-service__item:nth-child(2) .p-top-service__item-icon {
  max-width: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item:nth-child(2) .p-top-service__item-icon {
    max-width: 3.5rem;
  }
}
.p-top-service__item:nth-child(3) .p-top-service__item-icon {
  max-width: 6.25rem;
}
.p-top-service__item:nth-child(4) .p-top-service__item-icon {
  max-width: 4.375rem;
}

.p-top-service__item-number {
  background-color: #30416B;
  border-radius: 1.25rem 1.25rem 0 0;
  color: #fff;
  font-family: "Heebo", sans-serif;
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 1.4545454545;
  text-align: center;
  padding-top: 0.125rem;
}

.p-top-service__item-wrap {
  background-color: #fff;
  border-radius: 0 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1.25rem 0.5rem 2.4375rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-wrap {
    padding: 1.25rem 0.25rem 1.875rem;
  }
}
.p-top-service__item-wrap span {
  display: block;
  text-align: center;
}

.p-top-service__item-icon {
  margin-inline: auto;
}

.p-top-service__text02 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__text02 {
    font-size: 1.25rem;
    margin-top: 4rem;
  }
}
.p-top-service__text02 span {
  font-size: 2.5rem;
  font-weight: 500;
  margin-inline: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__text02 span {
    font-size: 2rem;
  }
}

.p-top-service__text03 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__text03 {
    line-height: 1.8;
    text-align: left;
  }
}

.p-top-service__btn {
  margin-top: 2rem;
  text-align: center;
}
.p-top-service__btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 29.375rem;
  padding: 1rem 0 0.8125rem;
  border: 1px solid #1a57b1;
  background-color: #1a57b1;
  border-radius: 4.625rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-service__btn a {
    font-size: 1.125rem;
  }
}
.p-top-service__btn a::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 1px;
  -webkit-mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
          mask: url(../images/icon_blank.svg) no-repeat center/100% auto;
  background-color: currentColor;
}
@media (any-hover: hover) {
  .p-top-service__btn a:hover {
    background-color: #fff;
    color: #1a57b1;
  }
}
/*# sourceMappingURL=style.css.map */
