@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
/*
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
    @since 25/02/05
    @update t-ooishi / 25/02/26
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  line-height: 1.5;
  min-height: 100dvh;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

a {
  word-break: break-all;
  text-decoration: none;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 2.5ex;
}

ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

:root {
  --base-font-family: Noto Sans JP, sans-serif; /* メインフォント */
  --header-height: 68px; /* ヘッダー - 高さ */
  --header-top: 0.9375rem; /* ヘッダー - 上余白 */
  --header-gutter: min(25px, var(--gutter, 0px)); /* ヘッダーガイド */
  --gutter: clamp(20px, 7.5vw, 60px); /* コンテンツガイド */
  --contents-spacer: 120px; /* コンテンツ間隔 */
}
@media screen and (width <= 963px) {
  :root {
    --contents-spacer: 60px; /* コンテンツ間隔 */
  }
}
@media screen and (width <= 768px) {
  :root {
    --header-height: 60px; /* ヘッダー - 高さ */
    --gutter: clamp(10px, 5.3333333333vw, 80px); /* コンテンツガイド */
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-block: var(--header-height);
}

body {
  position: relative;
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, rgba(140, 196, 235, 0.2)), to(#ffffff));
  background: -webkit-linear-gradient(top, #ffffff 0%, rgba(140, 196, 235, 0.2) 50%, #ffffff 100%);
  background: linear-gradient(to bottom, #ffffff 0%, rgba(140, 196, 235, 0.2) 50%, #ffffff 100%);
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #13264B;
  font-family: var(--base-font-family), sans-serif;
  min-height: 100dvh;
  background-color: #ffffff;
}
@media screen and (width <= 768px) {
  body {
    font-size: 0.875rem;
  }
}

.pc-none {
  display: none;
}
@media screen and (width <= 963px) {
  .pc-none {
    display: unset;
  }
}

@media screen and (width <= 963px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (width <= 768px) {
  .sp-none {
    display: none;
  }
}

:where(.js-tab-container) {
  display: grid;
}
:where(.js-tab-container) .js-tab-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
:where(.js-tab-container) .js-tab-button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
}
:where(.js-tab-container) .js-tab-contents {
  position: relative;
  display: grid;
  grid-template-areas: "tab-content";
}
:where(.js-tab-container) .js-tab-content {
  z-index: 0;
  display: grid;
  visibility: hidden;
  grid-template-rows: 0fr;
  grid-area: tab-content;
  opacity: 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: visibility, opacity, z-index, grid-template-rows;
  transition-property: visibility, opacity, z-index, grid-template-rows;
  transition-property: visibility, opacity, z-index, grid-template-rows, -ms-grid-rows;
}
:where(.js-tab-container) .js-tab-content.is-active {
  z-index: 1;
  visibility: visible;
  grid-template-rows: 1fr;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 1;
}
:where(.js-tab-container) .js-tab-content[aria-hidden=true] {
  display: none;
}
:where(.js-tab-container) .js-tab-content-inn {
  overflow: hidden;
}

.js-tab-container.tab-theme-default {
  gap: 8px;
}
.js-tab-container.tab-theme-default .js-tab-buttons {
  gap: 8px;
}
.js-tab-container.tab-theme-default .js-tab-button {
  font-size: 0.875rem;
  padding: 8px 16px;
  color: #333333;
  border-radius: 20px;
  background-color: #f0f0f0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
}
.js-tab-container.tab-theme-default .js-tab-button:hover {
  opacity: 0.9;
}
.js-tab-container.tab-theme-default .js-tab-button.is-active {
  color: #ffffff;
  background-color: #004b8d;
}
.js-tab-container.tab-theme-default .js-tab-button:focus {
  outline: 2px solid rgba(0, 75, 141, 0.5);
  outline-offset: 2px;
}
.js-tab-container.tab-theme-default .js-tab-button:focus:not(:focus-visible) {
  outline: none;
}
.js-tab-container.tab-theme-default .js-tab-contents {
  padding: 8px;
}

.js-scroll-fade-up-trr {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 4px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  width: 100%;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 15px;
}
.c-breadcrumb__item {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: var(--breadcrumb-color, #13264B);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-weight: 500;
}
.c-breadcrumb__item a:hover {
  opacity: 0.7;
}
.c-breadcrumb__item::after {
  display: inline-block;
  content: "・";
}
.c-breadcrumb__item:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-box-orient: vertical;
  text-decoration: none;
  -webkit-line-clamp: 1;
  color: #7D96CA;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}

.c-btn-main {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #F1986C;
  padding: 10px 11px 10px 14px;
  background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#F2E9E3));
  background: -webkit-linear-gradient(left, #FFF 0%, #F2E9E3 100%);
  background: linear-gradient(90deg, #FFF 0%, #F2E9E3 100%);
  border-radius: 6px;
  margin-top: 30px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  color: #13264B;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main span {
  width: 31px;
  height: 31px;
  background: #F1986C;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.c-btn-main span:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 13px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main span:after {
  position: absolute;
  content: "";
  width: 12px;
  height: 13px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: calc(50% - 22px);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-btn-main:hover {
  color: rgba(19, 38, 75, 0.5019607843);
  background: -webkit-gradient(linear, left top, right top, from(#FFF), color-stop(40%, #F2E9E3));
  background: -webkit-linear-gradient(left, #FFF 0%, #F2E9E3 40%);
  background: linear-gradient(90deg, #FFF 0%, #F2E9E3 40%);
}
.c-btn-main:hover span:before {
  left: calc(50% + 22px);
}
.c-btn-main:hover span:after {
  left: 50%;
}

.l-form__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #F1986C;
  padding: 10px 11px 10px 14px;
  background: #F2E9E3;
  border-radius: 6px;
  margin-top: 30px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  color: #13264B;
}
@media screen and (width <= 768px) {
  .l-form__button {
    margin-top: 15px;
  }
}
.l-form__button span {
  width: 31px;
  height: 31px;
  background: #F1986C;
  border-radius: 5px;
  position: relative;
}
.l-form__button span:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 13px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-pagination__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
     -moz-column-gap: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
          column-gap: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
}
.c-pagination__card {
  --pagination-card-width: clamp(30px, 26.9387755102px + 0.8163265306vw, 40px);
  --pagination-card-ratio: calc(4 / 4.5);
  font-size: clamp(12px, 10.7755102041px + 0.3265306122vw, 16px);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1em;
  color: #2E5AB1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: var(--pagination-card-width);
  height: calc(var(--pagination-card-width) / var(--pagination-card-ratio));
  padding: 0.25em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  border: 1px solid #2E5AB1;
  border-radius: calc(var(--pagination-card-width) * 0.1);
  background-color: #ffffff;
}
.c-pagination__card:focus-visible {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #ffffff;
  background-color: rgb(67.6816143498, 114.2466367713, 206.3183856502);
}
@media (any-hover: hover) {
  .c-pagination__card:hover {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #ffffff;
    background-color: rgb(67.6816143498, 114.2466367713, 206.3183856502);
  }
}
.c-pagination__card.is-active {
  pointer-events: none;
  color: #ffffff;
  border-color: #2E5AB1;
  background-color: #2E5AB1;
}
.c-pagination__dot {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: #2E5AB1;
}
.c-pagination--inverted .c-pagination__card {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #2E5AB1;
}
.c-pagination--inverted .c-pagination__card:focus-visible {
  color: #2E5AB1;
  background-color: rgb(229.5, 229.5, 229.5);
}
@media (any-hover: hover) {
  .c-pagination--inverted .c-pagination__card:hover {
    color: #2E5AB1;
    background-color: rgb(229.5, 229.5, 229.5);
  }
}
.c-pagination--inverted .c-pagination__card.is-active {
  color: #2E5AB1;
  border-color: #ffffff;
  background-color: #ffffff;
}
.c-pagination--inverted .c-pagination__dot {
  color: #ffffff;
}

.l-header {
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: var(--header-height, 0);
  padding: 11.5px 40px;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}
@media screen and (width <= 963px) {
  .l-header {
    padding: 7.5px 15px 7.5px 15px;
  }
}
.l-header__inner {
  position: relative;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.l-header__main {
  grid-column: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__logo {
  display: inline flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.625rem, fs(10), 1.25rem);
     -moz-column-gap: clamp(0.625rem, fs(10), 1.25rem);
          column-gap: clamp(0.625rem, fs(10), 1.25rem);
}
.l-header__logo-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  width: 215px;
}
@media screen and (width <= 963px) {
  .l-header__logo-link {
    width: 160px;
  }
}
.l-header__logo-link > img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__logo-tag {
  font-size: 0.875rem;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #13264B;
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (width <= 768px) {
  .l-header__logo-tag {
    font-size: 0.75rem;
  }
}
.l-header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (width <= 768px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 963px) {
  .l-header__nav {
    gap: 20px;
  }
}
.l-header__nav-item {
  position: relative;
}
.l-header__nav-item a {
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  color: #13264B;
  font-weight: 500;
}
.l-header__nav-item:hover {
  opacity: 0.7;
}
.l-header__nav-item.-plus {
  padding-right: 21px;
  padding-block: 22px;
  cursor: pointer;
  /* 横・縦それぞれの線を疑似要素で作る */
  /* 縦線（90度回転） */
  /* 横線（0度） */
  /* hover / focus で縦線を消して「−」にする */
  /* keyboard 用フォーカス可視化（お好みで調整） */
}
.l-header__nav-item.-plus::before, .l-header__nav-item.-plus::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 14px; /* 線の長さ（アイコン幅比）*/
  height: 1px;
  background: #C8CED8;
  -webkit-transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
  transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
  transition: transform 0.18s ease, opacity 0.18s ease;
  transition: transform 0.18s ease, opacity 0.18s ease, -webkit-transform 0.18s ease;
  border-radius: 2px;
}
.l-header__nav-item.-plus::before {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.l-header__nav-item.-plus::after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}
.l-header__nav-item.-plus:hover::before, .l-header__nav-item.-plus:focus::before {
  opacity: 0;
  -webkit-transform: translate(0, -50%) rotate(90deg) scaleY(0.05);
          transform: translate(0, -50%) rotate(90deg) scaleY(0.05);
}
.l-header__nav-item.-plus:focus {
  outline: 2px solid rgba(0, 0, 0, 0.12);
  outline-offset: 4px;
}
.l-header__nav-item.-plus:hover {
  opacity: 1;
}
.l-header__nav-item.-plus:hover .l-header__nav-item-submenu {
  opacity: 1;
  z-index: 1;
  pointer-events: all;
}
.l-header__nav-item-submenu {
  display: block;
  position: absolute;
  top: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background: rgb(245, 245, 245);
}
.l-header__nav-item-submenu a {
  display: block;
  padding: 15px;
  padding-right: 50px;
  background: rgb(245, 245, 245);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  border-bottom: 1px solid #DEDEDE;
  position: relative;
}
.l-header__nav-item-submenu a:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #13264B;
  right: 18px;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__nav-item-submenu a:hover {
  opacity: 0.7;
}
.l-header__contact {
  border-radius: 3px;
  background: #506ea6;
  padding-right: 60px;
  padding-left: 12px;
  height: 42px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
}
.l-header__contact:before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../images/common/contact.svg);
          mask-image: url(../images/common/contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #13264B;
  right: 18px;
  z-index: 1;
}
.l-header__contact:after {
  position: absolute;
  content: "";
  width: 29px;
  height: 29px;
  right: 11px;
  border-radius: 3px;
  background: #fff;
}
.l-header__contact:hover {
  opacity: 0.7;
}
.l-header_toggleDrawer {
  display: none;
}
@media screen and (width <= 768px) {
  .l-header_toggleDrawer {
    z-index: 10000;
    display: block;
    position: relative;
    height: 44px;
    aspect-ratio: 1;
    cursor: pointer;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2))), radial-gradient(255.07% 291.25% at -98.39% -98.39%, #13264B 7.98%, #9EBEFF 28.42%, #13264B 95.42%);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), -webkit-radial-gradient(-98.39% -98.39%, 255.07% 291.25%, #13264B 7.98%, #9EBEFF 28.42%, #13264B 95.42%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), radial-gradient(255.07% 291.25% at -98.39% -98.39%, #13264B 7.98%, #9EBEFF 28.42%, #13264B 95.42%);
    border-radius: 4px;
    position: absolute;
    right: 8px;
    top: 8px;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn {
    all: unset;
  }
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span {
    display: block;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0;
    width: 42px;
    border-top: solid #fff 2.5px;
    height: 0;
    margin: auto;
    background-color: #fff;
    border-radius: 50px;
    -webkit-transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, -webkit-transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, -webkit-transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, transform 0.15s ease;
    transition: background-color 0.25s ease, top 0.15s 0.15s ease, bottom 0.15s 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
    cursor: pointer;
  }
}
@media screen and (width <= 768px) and (width <= 768px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span {
    width: 28px;
    border-top: solid #fff 1.5px;
    height: 0;
  }
}
@media screen and (width <= 768px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -22.5px;
  }
}
@media screen and (width <= 768px) and (width <= 768px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:first-child {
    top: -15px;
  }
}
@media screen and (width <= 768px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    top: 22.5px;
  }
}
@media screen and (width <= 768px) and (width <= 768px) {
  .l-header_toggleDrawer .l-header_toggleDrawer_btn span:last-child {
    top: 15px;
  }
}
@media screen and (width <= 768px) {
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:first-child {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  .l-header_toggleDrawer.open .l-header_toggleDrawer_btn span:last-child {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.l-spmenu {
  display: none;
  position: fixed;
  right: 0;
  top: var(--header-height);
  width: 100%;
  height: calc(100vh - var(--header-height));
}
.l-spmenu.open {
  display: block;
  z-index: 1000;
}
.l-spmenu-nav {
  padding: 40px 5% 120px;
  height: calc(100vh - var(--header-height));
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#edf7ff));
  background: -webkit-linear-gradient(top, #fff 0%, #edf7ff 100%);
  background: linear-gradient(180deg, #fff 0%, #edf7ff 100%);
  overflow-y: scroll;
}
.l-spmenu .l-header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  font-size: 18px;
  padding: 0;
  width: 100%;
}
.l-spmenu .l-header__tell {
  display: block;
  margin-top: 40px;
}
.l-spmenu .l-header__tell-link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 30px;
}
.l-spmenu .l-header__tell-link img {
  width: 33px;
}
.l-spmenu .l-header__tell-text {
  font-size: 14px;
}
.l-spmenu .l-header__contact {
  max-width: 200px;
  margin: 30px auto 0;
}

.l-footer {
  padding: 60px 0 50px;
  padding-inline: var(--gutter, 0px);
  background: -webkit-gradient(linear, right top, left top, color-stop(4.01%, rgba(187, 219, 247, 0.4)), color-stop(34.28%, rgba(222, 242, 255, 0.4)), color-stop(94.2%, rgba(200, 216, 229, 0.4)));
  background: -webkit-linear-gradient(right, rgba(187, 219, 247, 0.4) 4.01%, rgba(222, 242, 255, 0.4) 34.28%, rgba(200, 216, 229, 0.4) 94.2%);
  background: linear-gradient(270deg, rgba(187, 219, 247, 0.4) 4.01%, rgba(222, 242, 255, 0.4) 34.28%, rgba(200, 216, 229, 0.4) 94.2%);
  -webkit-backdrop-filter: blur(33.0999984741px);
          backdrop-filter: blur(33.0999984741px);
  border-radius: 20px 20px 0 0;
  margin-top: 100px;
  z-index: 2;
  position: relative;
}
@media screen and (width <= 768px) {
  .l-footer {
    padding-bottom: 15px;
  }
}
.l-footer__inner {
  width: min(100%, 1400px);
  margin: 0 auto;
}
.l-footer__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}
@media screen and (width <= 963px) {
  .l-footer__flex {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 50px 5%;
  }
}
@media screen and (width <= 768px) {
  .l-footer__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
  }
}
@media screen and (width <= 768px) {
  .l-footer__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 50px;
  }
}
.l-footer__logo {
  max-width: 200px;
}
.l-footer__logo > img {
  width: auto;
}
.l-footer__sns-icon > img {
  width: 100%;
}
.l-footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 17px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px 80px;
  width: calc(20em + 80px);
}
@media screen and (width <= 1300px) {
  .l-footer__nav {
    gap: 30px 40px;
    width: calc(20em + 40px);
  }
}
@media screen and (width <= 768px) {
  .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 30px;
    margin-left: 0;
  }
}
.l-footer__nav-item {
  width: 10em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 768px) {
  .l-footer__nav-item {
    width: 11em;
  }
}
.l-footer__nav-item > a {
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: 500;
}
.l-footer__nav-item > a.-sub {
  display: block;
  margin-top: 17px;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  padding-left: 15px;
  position: relative;
  color: #13264B;
}
.l-footer__nav-item > a.-sub:before {
  position: absolute;
  content: "";
  width: 10.5px;
  height: 0px;
  border-top: 1px solid #F1986C;
  background: #F1986C;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.l-footer__nav-item > p {
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  font-weight: 500;
}
.l-footer__nav-item > p.-sub {
  display: block;
  margin-top: 17px;
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  padding-left: 15px;
  position: relative;
  color: #13264B;
}
.l-footer__nav-item > p.-sub:before {
  position: absolute;
  content: "";
  width: 10.5px;
  height: 0px;
  border-top: 1px solid #F1986C;
  background: #F1986C;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.l-footer__location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 55px;
}
@media screen and (width <= 768px) {
  .l-footer__location {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin: 0;
  }
}
.l-footer__location-head {
  font-weight: 500;
  margin-bottom: 7.5px;
}
.l-footer__other {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (width <= 768px) {
  .l-footer__other {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 25px;
  }
}
.l-footer__copyright {
  font-size: 12px;
}
.l-footer__tell {
  position: relative;
  padding-left: 33px;
  color: #13264B;
  font-weight: 500;
  pointer-events: none;
}
@media screen and (width <= 963px) {
  .l-footer__tell {
    pointer-events: all;
  }
}
.l-footer__tell:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  -webkit-mask-image: url(../images/common/tell.svg);
          mask-image: url(../images/common/tell.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #13264B;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.l-footer a:hover {
  opacity: 0.7;
}

.c-parts-twinmobius {
  position: relative;
  bottom: 0;
  height: 1px;
  width: min(100%, 1400px);
  margin: 0 auto;
  z-index: 1;
}
@media screen and (width >= 1601px) {
  .c-parts-twinmobius {
    max-width: none;
    width: 100%;
  }
}
.c-parts-twinmobius__left {
  width: 800px;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  position: absolute;
  left: -330px;
  top: -100px;
}
@media screen and (width >= 1601px) {
  .c-parts-twinmobius__left {
    left: -12%;
  }
}
@media screen and (width <= 963px) {
  .c-parts-twinmobius__left {
    width: 600px;
    top: -45px;
  }
}
@media screen and (width <= 768px) {
  .c-parts-twinmobius__left {
    width: 400px;
    top: 5px;
    left: -180px;
  }
}
.c-parts-twinmobius__right {
  width: 800px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  position: absolute;
  right: -250px;
  top: -50px;
}
@media screen and (width >= 1601px) {
  .c-parts-twinmobius__right {
    right: -10%;
  }
}
@media screen and (width <= 963px) {
  .c-parts-twinmobius__right {
    width: 600px;
    top: -5px;
  }
}
@media screen and (width <= 768px) {
  .c-parts-twinmobius__right {
    width: 400px;
    top: 35px;
    right: -93px;
  }
}

.l-glb-menu {
  position: fixed;
  z-index: 9990;
  top: 0px;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  height: 100dvh;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  translate: 100% 0;
  opacity: 0;
  pointer-events: auto;
  visibility: hidden;
}
.l-glb-menu.is-active {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
}
.l-glb-menu__wrapper {
  overflow: clip;
  width: min(800px, 100%);
  min-height: 100%;
  padding-block: calc(var(--header-height, 0) + var(--header-after, 0)) 56px;
  -ms-overflow-style: none;
}
.l-glb-menu__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (width <= 768px) {
  .l-glb-menu__wrapper {
    padding-inline: var(--gutter, 0);
    -webkit-padding-after: 24px;
            padding-block-end: 24px;
  }
}
.l-main {
  position: relative;
  width: 100%;
  margin-top: var(--header-height, 0);
}

.l-page-head {
  position: relative;
  overflow: clip;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin-bottom: 50px;
  padding-inline: var(--gutter, 0);
}
.l-page-head__inner {
  padding-block: 15px 45px;
  border-radius: 20px 20px 0 0;
  width: min(100%, 1400px);
  margin: 0 auto;
}
@media screen and (width <= 768px) {
  .l-page-head__inner {
    padding-block: 15px 15px;
  }
}
.l-page-head__title > .en {
  background: -webkit-radial-gradient(20.98% 57.81%, 79.29% 130.54%, #024F93 0%, #13264B 71.63%);
  background: radial-gradient(79.29% 130.54% at 20.98% 57.81%, #024F93 0%, #13264B 71.63%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: clamp(2.5rem, 1.5433673469rem + 4.0816326531vw, 5.625rem);
  font-weight: 500;
  line-height: 1.5;
}
.l-page-head__title > .ja {
  font-weight: 500;
  font-size: clamp(1rem, 0.8469387755rem + 0.6530612245vw, 1.5rem);
  padding: 0 18px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (width <= 963px) {
  .l-page-head__title > .ja {
    font-size: 16px;
    margin-top: 10px;
  }
}
.l-page-head__title > .ja:before {
  position: absolute;
  content: "";
  width: 9px;
  height: 20px;
  -webkit-mask-image: url(../images/common/subtitle_left.svg);
          mask-image: url(../images/common/subtitle_left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  left: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.l-page-head__title > .ja:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 20px;
  -webkit-mask-image: url(../images/common/subtitle_right.svg);
          mask-image: url(../images/common/subtitle_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  right: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.l-section {
  width: 100%;
  padding-inline: var(--gutter, 0px);
  overflow-x: clip;
}
.l-section__inner {
  width: min(100%, 1400px);
  margin: 0 auto;
}
.l-cta-contact {
  background: -webkit-gradient(linear, left top, right top, from(#FFF6F2), color-stop(50.65%, #FFDECE), color-stop(104.54%, #FF9B69));
  background: -webkit-linear-gradient(left, #FFF6F2 0%, #FFDECE 50.65%, #FF9B69 104.54%);
  background: linear-gradient(90deg, #FFF6F2 0%, #FFDECE 50.65%, #FF9B69 104.54%);
  margin-top: 100px;
  border: 3px solid #F1986C;
  border-radius: 20px;
  padding: 50px 0;
  padding-inline: var(--gutter, 0px);
}
@media screen and (width <= 768px) {
  .l-cta-contact {
    margin-top: 80px;
    padding-block: 30px;
  }
}
.l-cta-contact__inner {
  width: min(100%, 1400px);
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 30px 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (width <= 768px) {
  .l-cta-contact__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 10px 20px 20px;
  }
}
.l-cta-contact__inner .p-front-title {
  margin: 0 0 20px;
}
.l-cta-contact__text {
  margin: 0;
  color: #fff;
  max-width: 370px;
}
@media screen and (width <= 768px) {
  .l-cta-contact__text {
    margin: 0;
  }
}
.l-cta-contact__arrow {
  width: 74px;
  height: 74px;
  margin-top: 15px;
  background: #fff;
  border-radius: 10px;
  position: relative;
  margin-left: auto;
}
@media screen and (width <= 768px) {
  .l-cta-contact__arrow {
    width: 42px;
    height: 42px;
  }
}
.l-cta-contact__arrow:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  -webkit-mask-image: url(../images/common/contact.svg);
          mask-image: url(../images/common/contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #13264B;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 768px) {
  .l-cta-contact__arrow:before {
    width: 22px;
    height: 23px;
    top: 55%;
  }
}

.l-footer__contact {
  background: #628BD7;
  border-radius: 20px;
}
@media screen and (width <= 963px) {
  .l-footer__contact {
    margin: 0 auto;
  }
}
.l-footer__contact .p-front-title__en {
  color: #fff;
  font-size: clamp(2.5rem, 1.9260204082rem + 2.4489795918vw, 4.375rem);
}
.l-footer__contact .p-front-title__jp {
  color: #fff;
}
.l-footer__contact .p-front-title__jp:before {
  background-color: #fff;
}
.l-footer__contact .p-front-title__jp:after {
  background-color: #fff;
}

.l-single__tags {
  font-size: clamp(0.625rem, 3.2vw, 0.75rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: #13264B;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 5px 10px;
}
.l-single__categories {
  display: inline flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
}
.l-single__category {
  font-weight: 500;
  padding: 0.416em 1.33em;
  color: #ffffff;
  border-radius: 0.25em;
  background-color: #2E5AB1;
}
@media screen and (width <= 768px) {
  .l-single__category {
    font-size: max(0.75rem, 0.75em);
  }
}
.l-single__date {
  font-family: "Work Sans", sans-serif;
}
.l-single__title {
  font-size: clamp(1rem, 4.2666666667vw, 1.375rem);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #2E5AB1;
  width: 100%;
  margin-top: 0.54em;
  padding-bottom: 0.54em;
  border-bottom: 2px solid #2E5AB1;
}
.l-single__contents {
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: 24px;
}
.l-single__contents :where(:not(html, iframe, canvas, img, svg, video, audio, input, textarea):not(svg *, symbol *)) {
  all: revert;
}
@media screen and (width <= 768px) {
  .l-single__contents {
    margin-top: 12px;
  }
}
.l-single__btn {
  margin-top: 80px;
  width: min(100%, 320px);
  margin-inline: auto;
}
@media screen and (width <= 768px) {
  .l-single__btn {
    margin-top: 40px;
  }
}

.p-front-fv {
  aspect-ratio: 16/8;
  height: auto;
  max-height: 850px;
  width: 100%;
  position: relative;
  overflow-x: clip;
}
@media screen and (width <= 768px) {
  .p-front-fv {
    aspect-ratio: 3/4;
  }
}
.p-front-fv__back {
  position: absolute;
  bottom: 0%;
  margin: 0 auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  width: 95vw;
  max-width: 120vw;
  left: 60%;
  max-height: 900px;
}
@media screen and (width <= 768px) {
  .p-front-fv__back {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    bottom: unset;
  }
}
.p-front-fv__copy {
  padding-top: 50px;
}
.p-front-fv__copy-jp {
  background: -webkit-radial-gradient(20.98% 57.81%, 79.29% 130.54%, #024F93 0%, #13264B 71.63%);
  background: radial-gradient(79.29% 130.54% at 20.98% 57.81%, #024F93 0%, #13264B 71.63%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: clamp(2.0625rem, 1.2397959184rem + 3.5102040816vw, 4.75rem);
  letter-spacing: 7px;
  line-height: 1.5;
}
@media screen and (width <= 963px) {
  .p-front-fv__copy-jp {
    letter-spacing: 2px;
  }
}
.p-front-fv__copy-en {
  color: #7D96CA;
  font-size: clamp(0.75rem, 0.5969387755rem + 0.6530612245vw, 1.25rem);
  margin-top: 15px;
  letter-spacing: 2px;
}
@media screen and (width <= 963px) {
  .p-front-fv__copy-en {
    letter-spacing: 0px;
  }
}
.p-front-fv__scroll {
  height: 160px;
  position: relative;
  margin-top: 250px;
  border-left: 1px solid #B1BACD;
  padding-left: 15px;
}
@media screen and (width <= 963px) {
  .p-front-fv__scroll {
    margin-top: 100px;
  }
}
@media screen and (width <= 768px) {
  .p-front-fv__scroll {
    margin-top: unset;
    bottom: 0;
    position: absolute;
    height: 100px;
  }
}
@-webkit-keyframes scrollDown {
  0% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  10% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  60% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  90% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  100% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
}
@keyframes scrollDown {
  0% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  10% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  50% {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  60% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  90% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
  100% {
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
  }
}
.p-front-fv__scroll:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  left: -1px;
  width: 0;
  border-left: 2px solid #2E5AB1;
  -webkit-animation-name: scrollDown;
          animation-name: scrollDown;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.p-front-fv__scroll p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-weight: bold;
  color: #2E5AB1;
}

.p-front-about {
  position: relative;
  margin-top: var(--contents-spacer, 0);
  margin-bottom: var(--contents-spacer, 0);
}
.p-front-about__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  position: relative;
}
@media screen and (width <= 963px) {
  .p-front-about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.p-front-about__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 963px) {
  .p-front-about__left .c-btn-main {
    display: none;
  }
}
.p-front-about__right .c-btn-main {
  display: none;
}
@media screen and (width <= 963px) {
  .p-front-about__right .c-btn-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto 0;
  }
}
.p-front-about__heading {
  font-size: clamp(1.5rem, 1.193877551rem + 1.306122449vw, 2.5rem);
  letter-spacing: 6px;
  font-weight: bold;
  margin-bottom: 30px;
  white-space: nowrap;
}
@media screen and (width <= 768px) {
  .p-front-about__heading {
    letter-spacing: 2px;
  }
}
.p-front-about__text {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  letter-spacing: 2.5px;
}
.p-front-about__img {
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
  bottom: -140%;
  width: 800px;
  right: -200px;
}
@media screen and (width <= 963px) {
  .p-front-about__img {
    bottom: -40%;
    width: 600px;
    right: -150px;
  }
}
@media screen and (width <= 768px) {
  .p-front-about__img {
    bottom: -25%;
    width: 400px;
    right: -110px;
  }
}

.p-front-title__en {
  background: -webkit-radial-gradient(20.98% 57.81%, 79.29% 130.54%, #024F93 0%, #13264B 71.63%);
  background: radial-gradient(79.29% 130.54% at 20.98% 57.81%, #024F93 0%, #13264B 71.63%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline;
  font-size: clamp(2.5rem, 1.5433673469rem + 4.0816326531vw, 5.625rem);
  font-weight: 500;
  line-height: 1;
}
.p-front-title__en.-white {
  color: #fff;
}
.p-front-title__jp {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding: 0 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 7px;
}
.p-front-title__jp:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 16px;
  -webkit-mask-image: url(../images/common/subtitle_left.svg);
          mask-image: url(../images/common/subtitle_left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  left: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-front-title__jp:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 16px;
  -webkit-mask-image: url(../images/common/subtitle_right.svg);
          mask-image: url(../images/common/subtitle_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  right: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-front-title__jp.-white {
  color: #fff;
}

.p-front-service {
  position: relative;
  padding: 36px 0 112px;
  padding-inline: var(--gutter, 0px);
  overflow: hidden;
}
.p-front-service .bg {
  width: 100%;
  height: auto;
}
.p-front-service .blur-area {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(33px);
          backdrop-filter: blur(33px);
  -webkit-mask-position-x: center;
  /* SVG の形状でマスクする（これが重要） */
  -webkit-mask-image: url(../images/front/service.svg);
  mask-image: url(../images/front/service.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background: -webkit-linear-gradient(178deg, rgba(182, 206, 255, 0.3) 0.1%, rgba(225, 244, 255, 0.3) 42.18%, rgba(182, 206, 255, 0.3) 81.93%);
  background: linear-gradient(272deg, rgba(182, 206, 255, 0.3) 0.1%, rgba(225, 244, 255, 0.3) 42.18%, rgba(182, 206, 255, 0.3) 81.93%);
}
@media screen and (width <= 963px) {
  .p-front-service .blur-area {
    -webkit-mask-image: url(../images/front/service_sp.svg);
            mask-image: url(../images/front/service_sp.svg);
  }
}
@media screen and (width <= 963px) {
  .p-front-service {
    padding: 60px 0 80px;
    padding-inline: var(--gutter, 0px);
  }
}
.p-front-service.-second {
  padding: 36px 0 72px;
  padding-inline: var(--gutter, 0px);
  border-radius: 30px;
  margin-top: -40px;
  z-index: 1;
  position: relative;
  -webkit-backdrop-filter: blur(33.0999984741px);
          backdrop-filter: blur(33.0999984741px);
  background: -webkit-gradient(linear, right top, left top, color-stop(3.94%, rgba(187, 219, 247, 0.4)), color-stop(34.23%, rgba(222, 242, 255, 0.4)), color-stop(94.2%, rgba(200, 216, 229, 0.4)));
  background: -webkit-linear-gradient(right, rgba(187, 219, 247, 0.4) 3.94%, rgba(222, 242, 255, 0.4) 34.23%, rgba(200, 216, 229, 0.4) 94.2%);
  background: linear-gradient(270deg, rgba(187, 219, 247, 0.4) 3.94%, rgba(222, 242, 255, 0.4) 34.23%, rgba(200, 216, 229, 0.4) 94.2%);
}
@media screen and (width <= 768px) {
  .p-front-service.-second {
    padding: 30px 0;
    padding-inline: var(--gutter, 0px);
  }
}
.p-front-service__inner {
  position: relative;
}
.p-front-service__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  margin-top: 60px;
}
@media screen and (width <= 963px) {
  .p-front-service__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
    gap: 30px;
  }
}
.p-front-service__flex.-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (width <= 963px) {
  .p-front-service__flex.-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-front-service__flex.-reverse .p-front-service__list-head {
  width: 12em;
}
@media screen and (width <= 768px) {
  .p-front-service__flex.-reverse .p-front-service__list-head {
    width: auto;
  }
}
.p-front-service__left {
  width: 28%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 963px) {
  .p-front-service__left {
    display: none;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (width <= 768px) {
  .p-front-service__left {
    display: block;
  }
}
.p-front-service__img {
  border-radius: 15px;
}
@media screen and (width <= 963px) {
  .p-front-service__img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-front-service__right {
  width: 100%;
}
.p-front-service__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .p-front-service__heading-img {
    width: 60px;
  }
}
.p-front-service__heading-text {
  margin: 0 auto 0 16px;
}
.p-front-service__heading-text h4 {
  font-size: clamp(1.5rem, 1.193877551rem + 1.306122449vw, 2.5rem);
  margin-bottom: 9px;
}
.p-front-service__heading-text p {
  font-size: clamp(0.875rem, 0.7602040816rem + 0.4897959184vw, 1.25rem);
  font-weight: 500;
  padding: 0 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-front-service__heading-text p:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 15px;
  -webkit-mask-image: url(../images/common/subtitle_left.svg);
          mask-image: url(../images/common/subtitle_left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  left: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-front-service__heading-text p:after {
  position: absolute;
  content: "";
  width: 7px;
  height: 15px;
  -webkit-mask-image: url(../images/common/subtitle_right.svg);
          mask-image: url(../images/common/subtitle_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  right: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-front-service__heading .c-btn-main {
  margin: 0;
  margin-left: auto;
}
@media screen and (width <= 768px) {
  .p-front-service__heading .c-btn-main {
    display: none;
  }
}
@media screen and (width <= 963px) {
  .p-front-service__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 30px;
    gap: 5%;
  }
}
.p-front-service__main .p-front-service__img {
  display: none;
}
@media screen and (width <= 963px) {
  .p-front-service__main .p-front-service__img {
    display: block;
    aspect-ratio: unset;
    width: 35%;
    height: auto;
  }
}
@media screen and (width <= 768px) {
  .p-front-service__main .p-front-service__img {
    display: none;
  }
}
.p-front-service__list {
  margin: 35px 0;
}
@media screen and (width <= 963px) {
  .p-front-service__list {
    margin-top: 0;
  }
}
.p-front-service__list-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 20px;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .p-front-service__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-front-service__list-head {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  font-weight: bold;
  width: 9em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 768px) {
  .p-front-service__list-head {
    width: auto;
  }
}
.p-front-service__achievements {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (width <= 768px) {
  .p-front-service__achievements {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-front-service__achievements-head {
  background: #fff;
  line-height: 1;
  padding: 2px 20px 4.5px;
  border-radius: 50px;
  color: #13264B;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
  border: 1px solid #3498DB;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 768px) {
  .p-front-service__achievements-head {
    width: 100%;
    text-align: center;
  }
}
.p-front-service__achievements .c-btn-main {
  display: none;
}
@media screen and (width <= 768px) {
  .p-front-service__achievements .c-btn-main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 20px auto 0;
  }
}

.p-front-strengths {
  position: relative;
}
.p-front-strengths .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
}
.p-front-strengths__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5%;
  position: relative;
  z-index: 2;
}
@media screen and (width <= 768px) {
  .p-front-strengths__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.p-front-strengths__list-item {
  width: 30%;
}
@media screen and (width <= 768px) {
  .p-front-strengths__list-item {
    width: 100%;
  }
}
.p-front-strengths__img {
  position: relative;
}
@media screen and (width <= 768px) {
  .p-front-strengths__img {
    width: 200px;
    margin: 0 auto;
  }
}
.p-front-strengths__img img {
  margin: 0 auto;
}
.p-front-strengths__num {
  position: absolute;
  right: 15%;
  top: 2.5%;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 38, 75, 0.2)), to(rgba(45, 90, 177, 0.04)));
  background: -webkit-linear-gradient(top, rgba(19, 38, 75, 0.2) 0%, rgba(45, 90, 177, 0.04) 100%);
  background: linear-gradient(180deg, rgba(19, 38, 75, 0.2) 0%, rgba(45, 90, 177, 0.04) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
  font-size: clamp(3.125rem, 2.6084183673rem + 2.2040816327vw, 4.8125rem);
  font-weight: 500;
}
@media screen and (width <= 1250px) {
  .p-front-strengths__num {
    right: 5%;
    top: 2.5%;
  }
}
@media screen and (width <= 768px) {
  .p-front-strengths__num {
    bottom: -10px;
  }
}
.p-front-strengths__head {
  text-align: center;
  font-size: clamp(1.25rem, 1.1734693878rem + 0.3265306122vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 8px;
  margin-top: -30px;
  white-space: nowrap;
}
@media screen and (width <= 768px) {
  .p-front-strengths__head {
    margin: -15px 0 8px;
  }
}
.p-front-strengths__text {
  width: 90%;
  margin: 0 auto;
}
.p-front-strengths .c-btn-main {
  margin: 50px auto 0;
}

.p-page-about-greeting {
  margin-bottom: var(--contents-spacer, 0);
}
.p-page-about-greeting__main {
  background: -webkit-gradient(linear, right top, left top, color-stop(3.94%, rgba(187, 219, 247, 0.4)), color-stop(34.23%, rgba(222, 242, 255, 0.4)), color-stop(94.2%, rgba(200, 216, 229, 0.4)));
  background: -webkit-linear-gradient(right, rgba(187, 219, 247, 0.4) 3.94%, rgba(222, 242, 255, 0.4) 34.23%, rgba(200, 216, 229, 0.4) 94.2%);
  background: linear-gradient(270deg, rgba(187, 219, 247, 0.4) 3.94%, rgba(222, 242, 255, 0.4) 34.23%, rgba(200, 216, 229, 0.4) 94.2%);
  -webkit-backdrop-filter: blur(33.0999984741px);
          backdrop-filter: blur(33.0999984741px);
  padding: 15px 50px 50px;
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (width <= 963px) {
  .p-page-about-greeting__main {
    width: 100%;
    padding: 15px 30px 30px;
  }
}
@media screen and (width <= 768px) {
  .p-page-about-greeting__main {
    width: 100%;
    padding: 15px 20px 30px;
  }
}
.p-page-about-greeting__main:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../../assets/images/about/mobius.svg);
  right: 0;
  z-index: -1;
  opacity: 0.2;
  bottom: 0;
  background-repeat: no-repeat;
  background-position-x: right;
  background-position-y: bottom;
}
@media screen and (width <= 963px) {
  .p-page-about-greeting__main:before {
    background-size: contain;
  }
}
.p-page-about-greeting__head {
  color: #13264B;
  margin: 40px 0 30px;
  font-size: clamp(1.5rem, 1.193877551rem + 1.306122449vw, 2.5rem);
  line-height: 1.5em;
}
@media screen and (width <= 768px) {
  .p-page-about-greeting__head {
    width: 100%;
  }
}
.p-page-about-greeting__text {
  color: #13264B;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
  margin: 40px 0 0;
}
.p-page-about-greeting__img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 75%;
  right: -200px;
  border-radius: 20px;
}
@media screen and (width <= 963px) {
  .p-page-about-greeting__img {
    height: 330px;
    right: 30px;
    -webkit-transform: unset;
            transform: unset;
    top: -75px;
  }
}
@media screen and (width <= 768px) {
  .p-page-about-greeting__img {
    display: none;
  }
}

.p-page-about-philosophy {
  margin-bottom: var(--contents-spacer, 0);
}
.p-page-about-philosophy .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-page-about-philosophy__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
@media screen and (width <= 768px) {
  .p-page-about-philosophy__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-page-about-philosophy__list-item {
  width: 100%;
  background: -webkit-linear-gradient(178deg, rgba(182, 206, 255, 0.3) 0.1%, rgba(225, 244, 255, 0.3) 42.18%, rgba(182, 206, 255, 0.3) 81.93%);
  background: linear-gradient(272deg, rgba(182, 206, 255, 0.3) 0.1%, rgba(225, 244, 255, 0.3) 42.18%, rgba(182, 206, 255, 0.3) 81.93%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 4% 40px;
  border-radius: 20px;
  gap: 5%;
}
@media screen and (width <= 963px) {
  .p-page-about-philosophy__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 30px 30px;
    gap: 10px;
  }
}
@media screen and (width <= 768px) {
  .p-page-about-philosophy__list-item {
    width: 100%;
  }
}
.p-page-about-philosophy__list-item.-value {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-page-about-philosophy__list-item.-value .p-page-about-philosophy__subtext {
  margin: 20px 0;
}
@media screen and (width <= 768px) {
  .p-page-about-philosophy__list-item.-value .p-page-about-philosophy__subtext {
    margin: 10px 0;
  }
}
.p-page-about-philosophy__head {
  font-size: clamp(1.875rem, 1.3010204082rem + 2.4489795918vw, 3.75rem);
  font-weight: 500;
  background: -webkit-linear-gradient(329deg, #B1ECF7 2.51%, #5880D2 99.48%);
  background: linear-gradient(121deg, #B1ECF7 2.51%, #5880D2 99.48%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  width: 3.5em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  text-align: left;
}
.p-page-about-philosophy__text {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  color: #13264B;
  font-weight: bold;
  width: 13em;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 963px) {
  .p-page-about-philosophy__text {
    width: 100%;
    margin-bottom: 10px;
  }
}
.p-page-about-philosophy__subtext {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: 500;
  line-height: 1.75;
}

.p-page-about-quality {
  background: -webkit-linear-gradient(186deg, rgba(140, 196, 235, 0.3) 7.95%, rgba(225, 244, 255, 0.3) 27.38%, rgba(200, 229, 255, 0.3) 44.04%, rgba(225, 244, 255, 0.3) 60.91%, rgba(140, 196, 235, 0.3) 93.59%, rgba(228, 242, 255, 0.3) 105.44%);
  background: linear-gradient(264deg, rgba(140, 196, 235, 0.3) 7.95%, rgba(225, 244, 255, 0.3) 27.38%, rgba(200, 229, 255, 0.3) 44.04%, rgba(225, 244, 255, 0.3) 60.91%, rgba(140, 196, 235, 0.3) 93.59%, rgba(228, 242, 255, 0.3) 105.44%);
  padding-block: 50px 90px;
}
.p-page-about-quality .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-page-about-quality__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}
@media screen and (width <= 768px) {
  .p-page-about-quality__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.p-page-about-quality__list-item {
  width: calc((100% - 60px) / 3);
  background: -webkit-linear-gradient(178deg, rgba(255, 255, 255, 0.8) 17.58%, rgba(225, 244, 255, 0.8) 63.57%, rgba(187, 223, 254, 0.8) 107.03%);
  background: linear-gradient(272deg, rgba(255, 255, 255, 0.8) 17.58%, rgba(225, 244, 255, 0.8) 63.57%, rgba(187, 223, 254, 0.8) 107.03%);
  position: relative;
  padding: 60px 5% 25px;
  border-radius: 20px;
}
@media screen and (width <= 768px) {
  .p-page-about-quality__list-item {
    width: 100%;
  }
}
.p-page-about-quality__step {
  background: -webkit-linear-gradient(329deg, #B1ECF7 2.51%, #5880D2 99.48%);
  background: linear-gradient(121deg, #B1ECF7 2.51%, #5880D2 99.48%);
  width: 150px;
  position: absolute;
  padding: 10px 25px;
  left: 0;
  border-radius: 10px;
  top: -21px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
.p-page-about-quality__img {
  margin: 0 auto;
}
.p-page-about-quality__head {
  text-align: center;
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  font-weight: 500;
  margin: 20px 0;
}
.p-page-about-quality__text {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: 500;
}

.p-page-strengths-main__list-item {
  margin-bottom: 60px;
}
.p-page-strengths-main__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (width <= 963px) {
  .p-page-strengths-main__head {
    gap: 40px;
  }
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
}
.p-page-strengths-main__head-img {
  width: 180px;
  height: 180px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-page-strengths-main__head-img:before {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  border-radius: 180px;
  background: rgba(96, 154, 228, 0.21);
  -webkit-filter: blur(37.6500015259px);
          filter: blur(37.6500015259px);
}
@media screen and (width <= 963px) {
  .p-page-strengths-main__head-img:before {
    width: 150px;
    height: 150px;
  }
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__head-img:before {
    width: 200px;
    height: 200px;
  }
}
.p-page-strengths-main__head-img .icon1 {
  height: 140px;
}
@media screen and (width <= 963px) {
  .p-page-strengths-main__head-img {
    width: 150px;
    height: 150px;
  }
  .p-page-strengths-main__head-img img {
    width: 100px;
  }
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__head-img {
    width: 200px;
    height: 200px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .p-page-strengths-main__head-img img {
    width: 100px;
    height: auto;
  }
}
.p-page-strengths-main__head-main {
  position: relative;
}
.p-page-strengths-main__head-title {
  font-size: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  margin-bottom: 15px;
  letter-spacing: 4px;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-page-strengths-main__head-num {
  position: absolute;
  right: -0.8em;
  z-index: -1;
  font-size: 125px;
  top: -55px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 38, 75, 0.2)), to(rgba(45, 90, 177, 0.04)));
  background: -webkit-linear-gradient(top, rgba(19, 38, 75, 0.2) 0%, rgba(45, 90, 177, 0.04) 100%);
  background: linear-gradient(180deg, rgba(19, 38, 75, 0.2) 0%, rgba(45, 90, 177, 0.04) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-family: "Hanken Grotesk", sans-serif;
}
@media screen and (width <= 963px) {
  .p-page-strengths-main__head-num {
    font-size: 90px;
    right: -10%;
  }
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__head-num {
    font-size: 100px;
    top: -70px;
    right: 0;
  }
}
.p-page-strengths-main__details-item {
  background: -webkit-linear-gradient(177deg, rgba(182, 206, 255, 0.3) 1.7%, rgba(225, 244, 255, 0.3) 43.59%, rgba(182, 206, 255, 0.3) 83.17%);
  background: linear-gradient(273deg, rgba(182, 206, 255, 0.3) 1.7%, rgba(225, 244, 255, 0.3) 43.59%, rgba(182, 206, 255, 0.3) 83.17%);
  padding: 30px;
  border-radius: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 963px) {
  .p-page-strengths-main__details-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
    padding: 20px;
  }
}
.p-page-strengths-main__details-title {
  border: 1px solid #3498DB;
  background: #fff;
  padding: 7px 30px;
  border-radius: 50px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  font-weight: bold;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__details-title {
    padding: 5px 20px;
  }
}
.p-page-strengths-main__details-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 25px 50px;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__details-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-page-strengths-main__details-list-item {
  width: calc(50% - 25px);
  padding-left: 1em;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__details-list-item {
    width: 100%;
  }
}
.p-page-strengths-main__details-list-item:before {
  position: absolute;
  content: "・";
  left: 0;
}
.p-page-strengths-main__details.-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 30px;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__details.-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-page-strengths-main__details.-flex .p-page-strengths-main__details-item {
  width: calc(50% - 16px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
@media screen and (width <= 963px) {
  .p-page-strengths-main__details.-flex .p-page-strengths-main__details-item {
    width: 100%;
    gap: 25px;
  }
}

.p-page-strengths-main__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 1250px) {
  .p-page-strengths-main__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-page-strengths-main__link a {
  width: 47.5%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (width <= 1250px) {
  .p-page-strengths-main__link a {
    width: 100%;
    max-width: 550px;
  }
}
.p-page-strengths-main__link-img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-page-strengths-main__link-textarea {
  position: relative;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__link-textarea {
    gap: 12px;
    padding: 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-page-strengths-main__link-icon {
  width: 90px;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__link-icon {
    width: 50px;
  }
}
.p-page-strengths-main__link-head {
  margin-left: 24px;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__link-head {
    margin: 0;
  }
}
.p-page-strengths-main__link-head-title {
  font-size: clamp(1.25rem, 0.9630102041rem + 1.2244897959vw, 2.1875rem);
  color: #13264B;
  letter-spacing: 0;
  margin: 0;
  font-weight: bold;
}
.p-page-strengths-main__link-head-text {
  font-size: clamp(1rem, 0.9234693878rem + 0.3265306122vw, 1.25rem);
  color: #13264B;
  padding: 0 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__link-head-text {
    font-size: 11px;
    padding: 0 10px;
  }
}
.p-page-strengths-main__link-head-text:before {
  position: absolute;
  content: "";
  width: 6px;
  height: 13px;
  -webkit-mask-image: url(../images/common/subtitle_left.svg);
          mask-image: url(../images/common/subtitle_left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  left: 0;
  top: 55%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-page-strengths-main__link-head-text:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 13px;
  -webkit-mask-image: url(../images/common/subtitle_right.svg);
          mask-image: url(../images/common/subtitle_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  right: 0;
  top: 55%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-page-strengths-main__link .l-cta-contact__arrow {
  width: 56px;
  height: 56px;
  background: #F1986C;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
@media screen and (width <= 768px) {
  .p-page-strengths-main__link .l-cta-contact__arrow {
    width: 42px;
    height: 42px;
    margin-top: 0;
  }
}
.p-page-strengths-main__link .l-cta-contact__arrow:before {
  position: absolute;
  content: "";
  width: 19px;
  height: 21px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-page-strengths-main__link .l-cta-contact__arrow:after {
  position: absolute;
  content: "";
  width: 19px;
  height: 21px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: calc(50% - 50px);
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-page-strengths-main__link a:hover .p-page-strengths-main__link-img {
  opacity: 0.7;
}
.p-page-strengths-main__link a:hover .l-cta-contact__arrow:before {
  left: calc(50% + 50px);
}
.p-page-strengths-main__link a:hover .l-cta-contact__arrow:after {
  left: 50%;
}

.p-page-service-system {
  margin-bottom: 75px;
}
@media screen and (width <= 768px) {
  .p-page-service-system .p-front-service__heading {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.p-page-service-system .p-front-service__heading-text {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-page-service-system .p-front-service__heading-text h2 {
  font-size: clamp(1.125rem, 0.7040816327rem + 1.7959183673vw, 2.5rem);
  margin-bottom: 5px;
}
.p-page-service-system__head-text {
  margin-left: 5%;
}
@media screen and (width <= 768px) {
  .p-page-service-system__head-text {
    margin: 20px 0 0 0;
  }
}
.p-page-service-system__main {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}
@media screen and (width <= 963px) {
  .p-page-service-system__main {
    grid-template-columns: repeat(1, 1fr);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 50px;
  }
}
@media screen and (width <= 768px) {
  .p-page-service-system__main {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-page-service-system__content {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}
@media screen and (width <= 963px) {
  .p-page-service-system__content {
    width: 100%;
    display: unset;
    grid-template-rows: unset;
    grid-row: span unset;
  }
}
.p-page-service-system__title p {
  font-size: clamp(2.625rem, 1.8214285714rem + 3.4285714286vw, 5.25rem);
  text-align: center;
  background: -webkit-linear-gradient(178deg, rgba(182, 206, 255, 0.3) 0.1%, rgba(225, 244, 255, 0.3) 42.18%, rgba(182, 206, 255, 0.3) 81.93%);
  background: linear-gradient(272deg, rgba(182, 206, 255, 0.3) 0.1%, rgba(225, 244, 255, 0.3) 42.18%, rgba(182, 206, 255, 0.3) 81.93%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.p-page-service-system__title h3 {
  font-size: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  text-align: center;
  margin-top: -55px;
  z-index: 1;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-page-service-system__title h3 {
    margin: -20px;
  }
}
.p-page-service-system__card {
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  border-radius: 20px;
  margin-top: 35px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr 1.5fr;
}
@media screen and (width <= 768px) {
  .p-page-service-system__card {
    grid-template-rows: 1fr auto;
  }
}
.p-page-service-system__point {
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  padding: 35px 4% 20px;
  margin-bottom: 0;
  display: grid;
  grid-template-rows: 1fr 1fr;
  row-gap: 20px;
}
@media screen and (width <= 768px) {
  .p-page-service-system__point {
    padding: 30px 20px;
  }
}
.p-page-service-system__point-item {
  background: -webkit-linear-gradient(329deg, #B1ECF7 2.51%, #5880D2 99.48%);
  background: linear-gradient(121deg, #B1ECF7 2.51%, #5880D2 99.48%);
  border-radius: 18px;
  padding: 30px 25px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  position: relative;
}
.p-page-service-system__point-item:before {
  position: absolute;
  content: "";
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  z-index: 0;
  background: #fff;
  border-radius: 17px;
  left: 2.5px;
  top: 2.5px;
}
@media screen and (width <= 768px) {
  .p-page-service-system__point-item {
    padding: 20px;
    gap: 20px;
  }
}
.p-page-service-system__point-head {
  font-size: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  line-height: 1;
  font-weight: 500;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-page-service-system__point-head {
    text-align: center;
    line-height: 1.5;
  }
}
.p-page-service-system__point-head span {
  font-size: 16px;
  display: block;
  font-weight: 400;
  margin: 0 auto;
}
@media screen and (width <= 768px) {
  .p-page-service-system__point-head span {
    font-size: 14px;
  }
}
.p-page-service-system__point-textarea {
  position: relative;
}
.p-page-service-system__point-textarea-head {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 5px;
}
.p-page-service-system__point-textarea-text {
  font-weight: 500;
}
.p-page-service-system__voice {
  padding: 30px 4% 0px;
}
@media screen and (width <= 768px) {
  .p-page-service-system__voice {
    padding: 20px 20px 0px;
  }
}
.p-page-service-system__voice-img {
  position: relative;
  bottom: -21px;
}
@media screen and (width <= 768px) {
  .p-page-service-system__voice-img {
    width: 66px;
  }
}
.p-page-service-system__voice-title {
  text-align: center;
  font-size: clamp(1.25rem, 1.1734693878rem + 0.3265306122vw, 1.5rem);
  font-weight: bold;
  padding: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 7px auto 30px;
}
.p-page-service-system__voice-title:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 23px;
  -webkit-mask-image: url(../images/common/subtitle_left.svg);
          mask-image: url(../images/common/subtitle_left.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  left: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-page-service-system__voice-title:after {
  position: absolute;
  content: "";
  width: 10px;
  height: 23px;
  -webkit-mask-image: url(../images/common/subtitle_right.svg);
          mask-image: url(../images/common/subtitle_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #7D96CA;
  right: 0;
  top: 53%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-page-service-system__voice-item {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-page-service-system__voice-item:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-page-service-system__voice-textarea {
  padding: 20px 30px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #3498db;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-page-service-system__voice-textarea {
    padding: 15px 20px;
  }
}
.p-page-service-system__voice-textarea-text {
  font-weight: 500;
}
.p-page-service-system__voice-textarea-name {
  color: #3498db;
  font-weight: 500;
  text-align: right;
  margin-top: 15px;
}
.p-page-service-system__voice-hukidasi {
  position: absolute;
  bottom: -21px;
}
.p-page-service-system__voice-hukidasi.-re {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  right: 35px;
}
.p-page-service-system__card.-partner {
  background: -webkit-linear-gradient(179deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
  background: linear-gradient(271deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
}
.p-page-service-system__card.-partner .p-page-service-system__point {
  background: -webkit-linear-gradient(179deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
  background: linear-gradient(271deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
}

.p-page-service-area {
  border-radius: 26px;
  background: -webkit-linear-gradient(166deg, #fff -62.48%, #edf7ff 100.74%);
  background: linear-gradient(284deg, #fff -62.48%, #edf7ff 100.74%);
  padding-block: 30px 50px;
}
@media screen and (width <= 768px) {
  .p-page-service-area {
    padding-block: 30px 30px;
  }
}
.p-page-service-area .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (width <= 768px) {
  .p-page-service-area .p-front-title {
    margin-bottom: 40px;
  }
}
.p-page-service-area__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  grid-column-end: span 4;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 45px;
}
@media screen and (width <= 768px) {
  .p-page-service-area__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }
}
.p-page-service-area__head-title {
  font-size: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  background: -webkit-radial-gradient(20.98% 57.81%, 79.29% 130.54%, #024F93 0%, #13264B 71.63%);
  background: radial-gradient(79.29% 130.54% at 20.98% 57.81%, #024F93 0%, #13264B 71.63%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-page-service-area__list {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr max-content 1fr;
}
.p-page-service-area__item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column-end: span 4;
  margin-bottom: 70px;
}
.p-page-service-area__content {
  display: grid;
  grid-template-columns: subgrid;
  grid-column-end: span 4;
  gap: 20px clamp(20px, 7.5vw, 120px);
}
@media screen and (width <= 963px) {
  .p-page-service-area__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (width <= 768px) {
  .p-page-service-area__content {
    gap: 30px;
  }
}
.p-page-service-area__content-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column-end: span 2;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media screen and (width <= 963px) {
  .p-page-service-area__content-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media screen and (width <= 768px) {
  .p-page-service-area__content-item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media screen and (width <= 768px) {
  .p-page-service-area__content-item p {
    width: 100%;
  }
}
.p-page-service-area__content .p-page-strengths-main__details-title {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  padding: 5px 18px;
  min-width: 186px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 7px 18px 8.5px;
  line-height: 1;
}
.p-page-service-area__voice-head {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  margin: 35px 0 8px;
}
.p-page-service-area__voice-item {
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  margin-top: 10px;
  padding: 28px 8%;
  border-radius: 20px;
}
@media screen and (width <= 768px) {
  .p-page-service-area__voice-item {
    padding: 20px;
  }
}
.p-page-service-area__voice-text {
  font-weight: 500;
}
.p-page-service-area__voice-sub {
  text-align: right;
  margin-top: 10px;
  color: #3498db;
  font-weight: 500;
  white-space: nowrap;
}

.p-page-service-works {
  background: #fff;
  border-radius: 20px;
  margin-top: -30px;
  padding-block: 80px 120px;
}
@media screen and (width <= 963px) {
  .p-page-service-works {
    padding-block: 40px 60px;
  }
}
.p-page-service-works__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 963px) {
  .p-page-service-works__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 20px;
  }
}
.p-page-service-works__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (width <= 768px) {
  .p-page-service-works__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-page-service-works__item {
  width: calc((100% - 80px) / 3);
  padding-left: 1em;
  position: relative;
  font-weight: 500;
}
@media screen and (width <= 768px) {
  .p-page-service-works__item {
    width: 100%;
  }
}
.p-page-service-works__item:before {
  position: absolute;
  content: "・";
  left: 0;
}

.-consulting .p-front-service__heading-text {
  margin-right: 0;
}

.p-page-service-area__example {
  border: 1px solid #7d96ca;
  border-radius: 10px;
  padding: 35px 40px 50px;
  margin: 30px 0 60px;
}
@media screen and (width <= 768px) {
  .p-page-service-area__example {
    padding: 20px;
  }
}
.p-page-service-area__example-top {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
}
.p-page-service-area__example-bottom {
  margin: 5px 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-page-service-area__example-head-title {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
}
.p-page-service-area__example-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-page-service-area__example-item {
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  border-radius: 15px;
  overflow: hidden;
  width: calc(50% - 12.5px);
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-item {
    width: 100%;
  }
}
.p-page-service-area__example-item.-second {
  background: -webkit-linear-gradient(179deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
  background: linear-gradient(271deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
}
.p-page-service-area__example-item.-second .p-page-service-area__example-title {
  background: -webkit-linear-gradient(179deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
  background: linear-gradient(271deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
}
.p-page-service-area__example-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  border-radius: 15px 15px 0 0;
  padding: 8px 0;
  color: #13264B;
  font-weight: bold;
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  height: 66px;
}
.p-page-service-area__example-content {
  padding: 30px 10% 20px;
  height: calc(100% - 66px);
}
.p-page-service-area__example-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p-page-service-area__example-list-item {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
}
.p-page-service-area__example-list-item:before {
  position: absolute;
  content: "・";
  left: 0;
}
.p-page-service-area__example-strong {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 25px;
}
.p-page-service-area__example-check-item {
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
}
.p-page-service-area__example-check-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border: 1px solid #7d96ca;
  border-radius: 50px;
  background: #fff;
}
.p-page-service-area__example-check-item:after {
  position: absolute;
  content: url(../images/common/check.svg);
  left: -1px;
  top: -1px;
}
.p-page-service-area__example-arrow {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  left: 50%;
  top: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-linear-gradient(329deg, #b1ecf7 2.51%, #5880d2 99.48%);
  background: linear-gradient(121deg, #b1ecf7 2.51%, #5880d2 99.48%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-arrow {
    display: none;
  }
}
.p-page-service-area__example-arrow:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 44px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-arrow:before {
    width: 12px;
    height: 13px;
  }
}
.p-page-service-area__example-lineup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 50px;
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-lineup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-page-service-area__example-lineup-item {
  width: calc(50% - 25px);
  font-weight: 500;
}
@media screen and (width <= 768px) {
  .p-page-service-area__example-lineup-item {
    width: 100%;
  }
}

.p-page-consulting-area {
  border-radius: 26px;
  background: -webkit-linear-gradient(166deg, #fff -62.48%, #edf7ff 100.74%);
  background: linear-gradient(284deg, #fff -62.48%, #edf7ff 100.74%);
  padding-block: 30px 50px;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area {
    padding-block: 30px 30px;
  }
}
.p-page-consulting-area .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area .p-front-title {
    margin-bottom: 40px;
  }
}
.p-page-consulting-area__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  grid-column-end: span 4;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
  margin-bottom: 45px;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }
}
.p-page-consulting-area__head-title {
  font-size: clamp(1.25rem, 0.8673469388rem + 1.6326530612vw, 2.5rem);
  background: -webkit-radial-gradient(20.98% 57.81%, 79.29% 130.54%, #024f93 0%, #13264b 71.63%);
  background: radial-gradient(79.29% 130.54% at 20.98% 57.81%, #024f93 0%, #13264b 71.63%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-page-consulting-area__head-title:before {
  position: absolute;
  content: "";
  width: 117px;
  height: 117px;
  border-radius: 117px;
  background: rgba(96, 154, 228, 0.21);
  -webkit-filter: blur(37.6500015259px);
          filter: blur(37.6500015259px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -30px;
}
.p-page-consulting-area__list {
  display: block;
}
.p-page-consulting-area__item {
  display: block;
  margin-bottom: 150px;
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__item {
    margin-bottom: 75px;
  }
}
.p-page-consulting-area__item:last-child {
  margin-bottom: 50px;
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__item:last-child {
    margin-bottom: 25px;
  }
}
.p-page-consulting-area__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px clamp(20px, 7.5vw, 120px);
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__content {
    gap: 30px;
  }
}
.p-page-consulting-area__content-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__content-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__content-item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__content-item p {
    width: 100%;
  }
}
.p-page-consulting-area__content .p-page-strengths-main__details-title {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  padding: 5px 18px;
  min-width: 186px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 7px 18px 8.5px;
  line-height: 1;
}
.p-page-consulting-area__voice-head {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  font-weight: bold;
  text-align: center;
  margin: 35px 0 8px;
}
.p-page-consulting-area__voice-item {
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  margin-top: 10px;
  padding: 28px 17%;
  border-radius: 20px;
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__voice-item {
    padding: 28px 8%;
  }
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__voice-item {
    padding: 20px;
  }
}
.p-page-consulting-area__voice-text {
  font-weight: 500;
}
.p-page-consulting-area__voice-sub {
  text-align: right;
  margin-top: 10px;
  color: #3498db;
  font-weight: 500;
  white-space: nowrap;
}
.p-page-consulting-area__voice .p-page-consulting-area__content {
  display: block;
  margin-top: 40px;
}
.p-page-consulting-area__voice .p-page-consulting-area__content-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__voice .p-page-consulting-area__content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.p-page-consulting-area__example {
  border: 1px solid #7d96ca;
  border-radius: 10px;
  padding: 35px 40px 50px;
  margin: 30px 0 60px;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__example {
    padding: 20px;
  }
}
.p-page-consulting-area__example-top {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
}
.p-page-consulting-area__example-bottom {
  margin: 5px 0 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__example-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
}
.p-page-consulting-area__example-head-title {
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-page-consulting-area__example-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  position: relative;
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__example-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-page-consulting-area__example-item {
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  border-radius: 15px;
  overflow: hidden;
  width: calc(50% - 12.5px);
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__example-item {
    width: 100%;
  }
}
.p-page-consulting-area__example-item.-second {
  background: -webkit-linear-gradient(179deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
  background: linear-gradient(271deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
}
.p-page-consulting-area__example-item.-second .p-page-service-area__example-title {
  background: -webkit-linear-gradient(179deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
  background: linear-gradient(271deg, rgba(187, 219, 247, 0.4) 3.9%, rgba(222, 242, 255, 0.4) 34%, rgba(200, 216, 229, 0.4) 93.58%);
}
.p-page-consulting-area__example-item.-full {
  width: 100%;
}
.p-page-consulting-area__example-item.-full .p-page-consulting-area__example-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-page-consulting-area__example-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  border-radius: 15px 15px 0 0;
  padding: 8px 0;
  color: #13264B;
  font-weight: bold;
  font-size: clamp(1.125rem, 1.0102040816rem + 0.4897959184vw, 1.5rem);
  height: 66px;
}
.p-page-consulting-area__example-content {
  padding: 30px 10% 20px;
  height: calc(100% - 66px);
}
.p-page-consulting-area__example-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.p-page-consulting-area__example-list-item {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
}
.p-page-consulting-area__example-list-item:before {
  position: absolute;
  content: "・";
  left: 0;
}
.p-page-consulting-area__example-strong {
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
  margin-bottom: 25px;
  max-width: 450px;
  margin: 0 auto 25px;
}
.p-page-consulting-area__example-check-item {
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  margin-bottom: 10px;
}
.p-page-consulting-area__example-check-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 21px;
  height: 21px;
  border: 1px solid #7d96ca;
  border-radius: 50px;
  background: #fff;
}
.p-page-consulting-area__example-check-item:after {
  position: absolute;
  content: url(../images/common/check.svg);
  left: -1px;
  top: -1px;
}
.p-page-consulting-area__example-arrow {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50px;
  left: 50%;
  top: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-linear-gradient(329deg, #b1ecf7 2.51%, #5880d2 99.48%);
  background: linear-gradient(121deg, #b1ecf7 2.51%, #5880d2 99.48%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}
@media screen and (width <= 963px) {
  .p-page-consulting-area__example-arrow {
    display: none;
  }
}
.p-page-consulting-area__example-arrow:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 44px;
  -webkit-mask-image: url(../images/common/arrow_right.svg);
          mask-image: url(../images/common/arrow_right.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  background-color: #fff;
  left: 50%;
  top: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__example-arrow:before {
    width: 12px;
    height: 13px;
  }
}
.p-page-consulting-area__example-lineup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 15px 50px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__example-lineup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-page-consulting-area__example-lineup-item {
  width: 100%;
  font-weight: 500;
}
@media screen and (width <= 768px) {
  .p-page-consulting-area__example-lineup-item {
    width: 100%;
  }
}

.p-page-consulting-area__example-text {
  font-weight: 500;
}

.p-page-company-overview {
  margin-bottom: var(--contents-spacer, 0);
}
.p-page-company-overview .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
.p-page-company-overview__list {
  max-width: 1200px;
}
@media screen and (width <= 768px) {
  .p-page-company-overview__list {
    margin: 40px auto;
  }
}
.p-page-company-overview__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 25px;
  padding-bottom: 25px;
  position: relative;
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (width <= 768px) {
  .p-page-company-overview__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.p-page-company-overview__item:before {
  position: absolute;
  content: "";
  width: 40px;
  height: 0;
  border-top: 1px solid #13264B;
  bottom: 0;
  left: 0;
}
.p-page-company-overview__title {
  width: 170px;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 768px) {
  .p-page-company-overview__title {
    width: 7em;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
.p-page-company-overview__text {
  font-weight: 500;
}

.p-page-company-partner__inner {
  padding: 10px 5% 50px;
  border-radius: 20px;
}
.p-page-company-partner .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
.p-page-company-partner__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 60px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (width <= 768px) {
  .p-page-company-partner__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-page-company-partner__item {
  font-size: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
  font-weight: 500;
}
.p-page-company-partner__memo {
  margin-top: 15px;
  text-align: right;
  font-size: 14px;
}

.p-page-company-access {
  position: relative;
  margin-top: 80px;
  padding-bottom: 80px;
}
@media screen and (width <= 963px) {
  .p-page-company-access {
    margin-top: 40px;
    padding-bottom: 0;
  }
}
.p-page-company-access__inner {
  z-index: 1;
  position: relative;
}
.p-page-company-access__inner:before {
  position: absolute;
  content: "";
  height: calc(100% - 198px);
  width: 0;
  border-left: 1px solid #DDDDDD;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (width <= 963px) {
  .p-page-company-access__inner:before {
    display: none;
  }
}
.p-page-company-access .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (width <= 768px) {
  .p-page-company-access .p-front-title {
    margin-bottom: 40px;
  }
}
.p-page-company-access__flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8%;
  margin-bottom: 50px;
}
@media screen and (width <= 963px) {
  .p-page-company-access__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-page-company-access__main {
  width: 46%;
}
@media screen and (width <= 963px) {
  .p-page-company-access__main {
    width: 100%;
  }
}
.p-page-company-access__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
@media screen and (width <= 768px) {
  .p-page-company-access__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
}
.p-page-company-access__head-title {
  border: 1px solid #3498DB;
  border-radius: 50px;
  background: #fff;
  padding: 5px 15px 6.5px;
  font-size: clamp(1rem, 0.9617346939rem + 0.1632653061vw, 1.125rem);
  font-weight: bold;
  line-height: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-page-company-access__head-text {
  font-size: clamp(1.125rem, 1.0867346939rem + 0.1632653061vw, 1.25rem);
  font-weight: bold;
}
.p-page-company-access__item {
  padding-left: 1em;
  position: relative;
  font-weight: 500;
  margin-top: 15px;
}
.p-page-company-access__item:before {
  position: absolute;
  content: "・";
  left: 0;
}
.p-page-company-access iframe {
  width: 100%;
}
@media screen and (width <= 963px) {
  .p-page-company-access iframe {
    border: 0;
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    margin-top: 20px;
  }
}

.p-page-company-recruit {
  margin-bottom: 120px;
}
@media screen and (width <= 768px) {
  .p-page-company-recruit {
    margin-bottom: 20px;
  }
}
.p-page-company-recruit .p-front-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (width <= 768px) {
  .p-page-company-recruit .p-front-title {
    margin: 0 auto 40px;
  }
}
.p-page-company-recruit .p-page-service-area__item {
  margin: 0;
}

.l-form {
  gap: 16px;
}

.l-form__name.required::before {
  background-color: #13264B;
}

.l-form__name.optional::before {
  background-color: #949494;
}

.l-form__input[type=text], .l-form__input[type=number] {
  border: 1px #13264B solid;
  border-radius: 5px;
}

.l-form__select-box, .l-form__textarea {
  border: 1px #13264B solid;
  border-radius: 5px;
}

.l-form__select-box option:checked {
  background-color: #13264B;
  color: #fff;
}

#inquiry-form {
  max-width: 1200px;
  margin: 0 auto;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #949494 !important;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #949494 !important;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #949494 !important;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #949494 !important;
}

input::placeholder, textarea::placeholder {
  color: #949494 !important;
}

.l-form__accept-label a {
  text-decoration: underline;
}

.l-form__accept-input:checked + .l-form__accept-label::before {
  background-color: #13264B;
}

.l-form__label {
  font-size: 18px;
  color: #2E5AB1;
}

.l-form__wrap {
  gap: 75px;
}
@media screen and (width <= 768px) {
  .l-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.l-form__button--return {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.l-form__button--return span {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.l-form__accept .l-form__error {
  text-align: center;
}

.p-contact .p-forbidden__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}

.p-forbidden__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-forbidden__title {
  font-size: clamp(1.5rem, 1.193877551rem + 1.306122449vw, 2.5rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
}
.p-forbidden .c-btn-main {
  margin: 50px auto 0;
}

.p-page-privacy__inner {
  margin-top: 80px;
  padding: 80px 6%;
  border-radius: 15px;
  background: -webkit-linear-gradient(174deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
  background: linear-gradient(276deg, rgba(140, 196, 235, 0.3) 1.16%, rgba(225, 244, 255, 0.3) 23.46%, rgba(200, 229, 255, 0.3) 42.58%, rgba(225, 244, 255, 0.3) 61.94%, rgba(140, 196, 235, 0.3) 99.43%, rgba(228, 242, 255, 0.3) 113.03%);
}
@media screen and (width <= 768px) {
  .p-page-privacy__inner {
    margin-top: 40px;
    padding: 30px 20px;
  }
}
.p-page-privacy__item {
  padding: 30px;
  border-bottom: 1px solid #628BD8;
}
@media screen and (width <= 768px) {
  .p-page-privacy__item {
    padding: 15px;
  }
}
.p-page-privacy__title {
  font-size: clamp(1.125rem, 1.0867346939rem + 0.1632653061vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 15px;
}

@media screen and (width > 768px) {
  .u-dn-md-min {
    display: none;
  }
}

@media screen and (width <= 768px) {
  .u-dn-md-max {
    display: none;
  }
}

.u-cf::after {
  display: block;
  clear: both;
  content: "";
}/*# sourceMappingURL=style.css.map */