@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edge/Safariなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/*==========================================================
# 幅の変数
=========================================================== */
/*==========================================================
# 色
=========================================================== */
/*==========================================================
# フォント
=========================================================== */
/*==========================================================
# 重なり順
=========================================================== */
@media screen and (max-width: 1099px) and (min-width: 768px) {
  html {
    font-size: max(16 / 1100 * 100vw, 14px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  font-family: "Fira Sans", "Noto Sans JP", "Roboto", sans-serif;
}

.l-inner {
  width: min(73.75rem, 100%);
  padding-inline: 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 1.25rem;
  }
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  padding-inline: 16px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding-inline: 20px;
    max-width: 23.4375rem;
  }
}
.l-header__inner {
  padding-block: 16px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-block: 14px 13px;
  }
}

:root {
  --scrollbar: 0;
}

body {
  margin: 0;
}

.l-page {
  overflow-x: clip;
}

.l-drawer-icon {
  position: absolute;
  top: 21px;
  right: 0;
}

.l-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title btn" "body body";
}
@media screen and (max-width: 767px) {
  .l-section__container {
    grid-template-areas: "title" "body" "btn";
    grid-template-columns: 1fr;
  }
}

.l-section__title {
  grid-area: title;
}

.l-section__body {
  grid-area: body;
}

.l-section__btn {
  grid-area: btn;
  text-align: right;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .l-section__btn {
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.l-front-news-card-container {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .l-front-news-card-container {
    margin-top: 3.75rem;
  }
}

.c-btn-header {
  display: inline-block;
  min-width: 11rem;
  padding-block: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 769px) and (max-width: 1240px) {
  .c-btn-header {
    padding-block: 0.625rem;
    min-width: 8.75rem;
  }
}
.c-btn-header span {
  position: relative;
  display: inline-block;
}
.c-btn-header.--white {
  color: #023E78;
  background: #fff;
  border: 1px solid #023E78;
}
@media (any-hover: hover) {
  .c-btn-header.--white:hover {
    color: #fff;
    background: #023E78;
  }
}
.c-btn-header.--navy {
  color: #fff;
  background: #023E78;
  border: 1px solid #023E78;
}
@media (any-hover: hover) {
  .c-btn-header.--navy:hover {
    color: #fff;
    background: #002a52;
  }
}

.c-btn-cta {
  display: inline-block;
  border: 3px solid #FEF251;
  padding-block: 2rem;
  padding-inline: 6.3125rem;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .c-btn-cta {
    padding-block: 1.6875rem;
    padding-inline: 6.75rem 6.8125rem;
    border: 2px solid #FEF251;
  }
}
.c-btn-cta__text {
  color: #FEF251;
  text-align: center;
  font-family: "Fira Sans";
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__text {
    font-size: 1rem;
  }
}
.c-btn-cta__arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: calc(100% + 3.0625rem);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__arrow {
    left: calc(100% + 4.4375rem);
  }
}
.c-btn-cta__arrow-icon {
  width: 1.25rem;
  height: 0.875rem;
}
@media (any-hover: hover) {
  .c-btn-cta:hover {
    background: #FEF251;
  }
  .c-btn-cta:hover .c-btn-cta__text {
    color: #1A1A1A;
  }
  .c-btn-cta:hover .c-btn-cta__arrow {
    left: calc(100% + 3.75rem);
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-btn-cta:hover .c-btn-cta__arrow {
    left: calc(100% + 5.3125rem);
  }
}
@media (any-hover: hover) {
  .c-btn-cta:hover .c-btn-cta__arrow path {
    fill: #1A1A1A;
  }
}

.c-btn-box-arrow {
  display: inline-block;
  padding-block: 1.4375rem;
  padding-inline: 4.9375rem;
  color: #023E78;
  border: 1px solid #023E78;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.c-btn-box-arrow.--service .c-btn-box-arrow__arrow {
  top: calc(50% - 0.5rem);
}
.c-btn-box-arrow.--case .c-btn-box-arrow__arrow {
  top: calc(50% - 2px);
}
@media screen and (max-width: 767px) {
  .c-btn-box-arrow {
    width: 18.4375rem;
    padding-inline: 0;
    display: grid;
    place-items: center;
  }
}
.c-btn-box-arrow__text {
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
@media screen and (max-width: 767px) {
  .c-btn-box-arrow__text {
    font-size: 0.875rem;
  }
}
.c-btn-box-arrow__arrow {
  position: absolute;
  width: 1.25rem;
  height: 0.875rem;
  translate: 0 -50%;
  right: 1.25rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn-box-arrow__arrow {
    width: 1.125rem;
    height: 0.75rem;
    right: 0.75rem;
  }
}
.c-btn-box-arrow__arrow svg {
  width: 1.25rem;
  height: 0.875rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-btn-box-arrow__arrow svg {
    width: 1.125rem;
    height: 0.75rem;
  }
}
@media (any-hover: hover) {
  .c-btn-box-arrow:hover {
    border: 1px solid #023E78;
    background: #023E78;
    color: #fff;
  }
  .c-btn-box-arrow:hover .c-btn-box-arrow__arrow {
    right: 0.625rem;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  .c-btn-box-arrow:hover .c-btn-box-arrow__arrow {
    right: 0.5rem;
  }
}

.c-btn-submit {
  text-align: center;
}
.c-btn-submit input[type=submit] {
  display: block;
  margin: 0 auto;
  background: #fff;
  color: #023E78;
  border: 1px solid #023E78;
  font-size: 1rem;
  line-height: normal;
  padding: 1.5rem 5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn-submit input[type=submit] {
    padding: 1.625rem 4.375rem;
    font-size: 0.875rem;
    width: 18.4375rem;
    height: 4.5rem;
  }
}
@media (any-hover: hover) {
  .c-btn-submit input[type=submit]:hover {
    background: #023E78;
    color: #fff;
    border: 1px solid #023E78;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.c-btn-next {
  display: inline-block;
  padding: calc(0.5rem - 1px) calc(1rem - 1px);
  color: #023E78;
  border: 1px solid #023E78;
  border-radius: 0.25rem;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}
.c-btn-next span {
  margin-left: 0.5rem;
}

.c-btn-prev {
  display: inline-block;
  padding: calc(0.5rem - 1px) calc(1rem - 1px);
  color: #023E78;
  border: 1px solid #023E78;
  border-radius: 0.25rem;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}
.c-btn-prev span {
  margin-right: 0.5rem;
}

.c-form-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-form-acceptance {
    gap: 0.375rem;
  }
}
.c-form-acceptance .wpcf7-list-item-label {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
  padding-left: 2.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-form-acceptance .wpcf7-list-item-label {
    padding-left: 2.375rem;
    font-size: 0.875rem;
  }
}
.c-form-acceptance .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #3E3E3E;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .c-form-acceptance .wpcf7-list-item-label::before {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.c-form-acceptance .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.625rem;
  width: 0.75rem;
  height: 0.4375rem;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  rotate: -45deg;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-form-acceptance .wpcf7-list-item-label::after {
    top: 0.375rem;
    left: 0.5rem;
  }
}
.c-form-acceptance .wpcf7-list-item-label a {
  margin-right: 0.625rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 767px) {
  .c-form-acceptance .wpcf7-list-item-label a {
    margin-right: 0.375rem;
    font-size: 0.875rem;
  }
}

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

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.c-title-page-top {
  color: #023E78;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-title-page-top__main {
  display: block;
  font-family: "Fira Sans", "sans-serif";
  background: #fff;
  font-size: 3.75rem;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-title-page-top__main {
    margin-left: 0.0625rem;
    font-size: 2rem;
  }
}
.c-title-page-top__sub {
  display: block;
  margin-top: 8px;
  font-family: "Noto Sans JP", "sans-serif";
  background: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-title-page-top__sub {
    font-size: 1rem;
  }
}

.c-title-section-top {
  display: block;
}
.c-title-section-top__main {
  display: block;
  font-family: "Fira Sans", "sans-serif";
  font-size: 6.25rem;
  font-style: italic;
  font-weight: 500;
  text-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .c-title-section-top__main {
    font-size: 3.25rem;
  }
}
.c-title-section-top__sub {
  display: block;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-title-section-top__sub {
    font-size: 1rem;
  }
}
.c-title-section-top.--navy .c-title-section-top__main,
.c-title-section-top.--navy .c-title-section-top__sub {
  color: #023E78;
}
.c-title-section-top.--white .c-title-section-top__main,
.c-title-section-top.--white .c-title-section-top__sub {
  color: #fff;
}

.u-underText__item {
  display: block;
}

.animated__underText {
  overflow: hidden;
}
.animated__underText span {
  translate: 0 100%;
  display: block;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.animated__underText.js-show span {
  translate: 0;
}

.c-header-logo {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  color: #023E78;
  font-size: 40px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-header-logo:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .c-header-logo {
    font-size: 28px;
  }
}

.c-footer-logo {
  font-family: Roboto;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  color: #fff;
  font-size: 3.25rem;
}
@media screen and (max-width: 767px) {
  .c-footer-logo {
    font-size: 2.5rem;
  }
}

.c-link-arrow {
  display: inline-block;
  padding-right: 8.75rem;
}
@media screen and (max-width: 767px) {
  .c-link-arrow {
    margin-top: 2.5rem;
    padding-right: 6rem;
  }
}
.c-link-arrow__text {
  display: inline-block;
  position: relative;
  overflow: visible;
  font-family: "Fira Sans", "sans-serif";
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-link-arrow__text {
    font-size: 1.25rem;
  }
}
.c-link-arrow__arrow {
  position: absolute;
  width: 5.9375rem;
  height: 2px;
  top: calc(50% + 3px);
  translate: 0 -50%;
  left: calc(100% + 1.25rem);
  z-index: 2;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
.c-link-arrow__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.9375rem;
  height: 2px;
  background: inherit;
  rotate: 40deg;
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
@media screen and (max-width: 767px) {
  .c-link-arrow__arrow {
    left: calc(100% + 0.8125rem);
    width: 4rem;
  }
}
.c-link-arrow__circle {
  position: absolute;
  width: 3.1875rem;
  height: 3.1875rem;
  top: 50%;
  translate: 0 -50%;
  left: calc(100% + 5.625rem);
  aspect-ratio: 1;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .c-link-arrow__circle {
    left: calc(100% + 3.4375rem);
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-link-arrow.--white .c-link-arrow__text {
  color: #fff;
}
.c-link-arrow.--white .c-link-arrow__arrow {
  background: #fff;
}
.c-link-arrow.--white .c-link-arrow__circle {
  border: 2px solid #FEF251;
}
.c-link-arrow.--black .c-link-arrow__text {
  color: #1A1A1A;
}
.c-link-arrow.--black .c-link-arrow__arrow {
  background: #1A1A1A;
}
.c-link-arrow.--black .c-link-arrow__circle {
  background: #FEF251;
}
@media (any-hover: hover) {
  .c-link-arrow:hover .c-link-arrow__arrow {
    width: 8.75rem;
  }
}

.c-heading-cta {
  color: #FFF;
  text-align: center;
  display: block;
}
.c-heading-cta__main {
  display: block;
  font-family: "Fira Sans", "sans-serif";
  font-size: 3.75rem;
  font-weight: 500;
  font-style: italic;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-heading-cta__main {
    font-size: 2.5rem;
  }
}
.c-heading-cta__sub {
  margin-top: 0.1875rem;
  display: block;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-heading-cta__sub {
    margin-top: 0.375rem;
  }
}

.c-footer-info {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
.c-footer-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
}

.c-btn-drawer {
  display: inline-block;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 500;
  padding-block: 1.375rem 1.3125rem;
  width: 18.4375rem;
}
.c-btn-drawer.--navy {
  color: #fff;
  background-color: #023E78;
  border: 1px solid #fff;
}
.c-btn-drawer.--white {
  color: #023E78;
  background-color: #fff;
  border: 1px solid #fff;
}

.c-news-link {
  display: block;
  padding-block: 1.3125rem 2rem;
  border-bottom: 1px solid #DDD;
}
@media screen and (max-width: 767px) {
  .c-news-link {
    padding-block: 16px 31px;
  }
  .c-news-link:first-child {
    padding-top: 0;
  }
}
.c-news-link__title {
  margin-top: 1rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  width: 100%; /* または具体的な幅を指定 */
  overflow: hidden; /* はみ出した部分を隠す */
  text-overflow: ellipsis; /* はみ出した部分を … にする */
  white-space: nowrap; /* 改行させない */
}
@media screen and (max-width: 767px) {
  .c-news-link__title {
    font-size: 14px;
    margin-top: 20px;
  }
}
.c-news-link__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-news-link__meta-category {
  display: inline-block;
  color: #D33365;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #D33365;
  padding: 5px 23px 6px;
}
@media screen and (max-width: 767px) {
  .c-news-link__meta-category {
    padding: 5px 19px 6px;
    font-size: 12px;
  }
}
.c-news-link__meta-date {
  display: inline-block;
  color: #888;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-weight: 500;
}

.c-news-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-news-item-meta__category {
  color: #D33365;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #D33365;
  padding: calc(0.5rem - 1px) calc(1.5rem - 1px);
}
.c-news-item-meta__date {
  color: #888;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}
.c-news-item-meta.is-new .tag-new {
  display: inline-block;
}

.tag-new {
  margin-left: 0.75rem;
  display: none;
  color: #E61264;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .tag-new {
    margin-left: 0.5rem;
    font-size: 0.875rem;
  }
}

.c-news-item-title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}

.c-front-case-card__img {
  width: 100%;
  max-width: 20rem;
  padding: 25px 67px;
  text-align: center;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .c-front-case-card__img {
    max-width: 100%;
    aspect-ratio: 335/251;
  }
}
.c-front-case-card__img img {
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  display: inline-block;
}
.c-front-case-card__body {
  margin-top: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-front-case-card__body {
    margin-top: 0.875rem;
  }
}
.c-front-case-card__company {
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}
.c-front-case-card__category {
  margin-top: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-front-case-card__category {
    margin-top: 0.625rem;
  }
}
@media (any-hover: hover) {
  .c-front-case-card__category:hover .c-front-case-card__link-icon {
    margin-right: 0;
  }
  .c-front-case-card__category:hover .c-front-case-card__link-icon svg path {
    fill: #FEF251;
  }
}
.c-front-case-card__category-label {
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-weight: 700;
  padding: 0.3125rem 0.9375rem;
  border: 1px solid #FFF;
}
.c-front-case-card__link-icon {
  margin-right: 0.5rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-front-case-card__link-icon {
    margin-right: 0;
  }
}
.c-front-case-card__link-icon svg {
  width: 1.875rem;
  display: block;
}

.c-breadcrumb {
  margin-top: 0.8125rem;
}
.c-breadcrumb__list {
  display: inline;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  white-space: normal;
  word-break: break-word;
}
.c-breadcrumb__list li {
  font-size: 0.75rem;
  color: #333;
  display: inline;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: normal;
  word-break: break-word;
  /* 2つ目以降のliの先頭に「＞」を表示 */
}
.c-breadcrumb__list li + li::before {
  content: "＞";
  margin: 0 0.375rem;
  color: #1A1A1A;
}

.c-breadcrumb__list li.current-item,
.c-breadcrumb__list li .current-item {
  color: #1A1A1A;
  font-weight: bold;
}

.c-breadcrumb__list li a,
.c-breadcrumb__list li span {
  display: inline;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

.c-news-widget-archive-link {
  padding-block: 1rem;
  padding-inline: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  border-bottom: 1px solid #DDD;
}
.c-news-widget-archive-link__text {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}

.p-news-widget-archive__items > .p-news-widget-archive__item:first-child > .c-news-widget-archive-link {
  border-top: 1px solid #DDD;
}

.c-news-widget-title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.25rem;
  font-weight: 700;
}

.c-news-entry-title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 125% */
}
@media screen and (max-width: 767px) {
  .c-news-entry-title {
    font-size: 1.25rem;
  }
}

.c-news-widget-recent-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-news-widget-recent-item__img {
  width: calc(35% - 5px);
}
@media screen and (max-width: 767px) {
  .c-news-widget-recent-item__img {
    width: 7.5rem;
    height: 5.625rem;
  }
}
.c-news-widget-recent-item__img img {
  width: 7.5rem;
  height: 7.82vw;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-news-widget-recent-item__img img {
    width: 100%;
    height: 100%;
    max-height: none;
  }
}
.c-news-widget-recent-item__body {
  padding-block: 0.1875rem;
  width: calc(65% - 5px);
}
@media screen and (max-width: 767px) {
  .c-news-widget-recent-item__body {
    padding-block: 0rem;
  }
}
.c-news-widget-recent-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-news-widget-recent-item__meta-tag {
  padding: calc(0.25rem - 1px) calc(0.75rem - 1px);
  color: #D33365;
  font-family: "Noto Sans CJK JP";
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #E61264;
}
.c-news-widget-recent-item__meta-date {
  color: #888;
  font-family: "Noto Sans CJK JP";
  font-size: 0.75rem;
  font-weight: 500;
}
.c-news-widget-recent-item__title {
  margin-top: 0.5rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.25rem; /* 142.857% */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* ← 表示する行数 */
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .c-news-widget-recent-item__title {
    margin-top: 0.25rem;
  }
}

.c-news-content__title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2.5rem; /* 125% */
}
@media screen and (max-width: 767px) {
  .c-news-content__title {
    font-size: 1.25rem;
    line-height: normal;
  }
}

.c-news-entry-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-news-entry-item {
    gap: 0.75rem;
  }
}

.c-news-entry-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-news-entry-item__meta-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-news-entry-item__meta-category {
    gap: 0.5rem;
  }
}
.c-news-entry-item__meta-category-name {
  color: #D33365;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #D33365;
  padding: 0.3125rem 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-news-entry-item__meta-category-name {
    padding: 0.1875rem 0.6875rem 0.25rem 0.6875rem;
    font-size: 0.75rem;
  }
}

.c-news-entry-item__meta-date {
  color: #888;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}

.c-news-entry-item__title {
  margin-top: 0.75rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-news-entry-item__title {
    margin-top: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.c-news-entry-item__img {
  width: calc(34.21% - 10px);
}
@media screen and (max-width: 767px) {
  .c-news-entry-item__img {
    width: 7.5rem;
    height: 5.625rem;
  }
}
.c-news-entry-item__img img {
  height: 12.1875vw;
  max-height: 156px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-news-entry-item__img img {
    width: 100%;
    height: 100%;
  }
}

.c-news-entry-item__body {
  padding-block: 0.625rem;
  width: calc(65.79% - 10px);
}
@media screen and (max-width: 767px) {
  .c-news-entry-item__body {
    width: calc(100% - 8.25rem);
    padding-block: 0;
  }
}

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__list {
    gap: 0.375rem;
  }
}
.c-pagination__item {
  display: grid;
  place-items: center;
  width: 3.125rem;
  height: 3.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #DDD;
  background: #F8F8F8;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-pagination__item {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-pagination__item:first-child {
  margin-right: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__item:first-child {
    margin-right: 0;
  }
}
.c-pagination__item:last-child {
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-pagination__item:last-child {
    margin-left: 0;
  }
}
.c-pagination__item a {
  display: grid;
  place-items: center;
  width: 3.125rem;
  height: 3.125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #888;
  background: #F8F8F8;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-pagination__item a {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.c-pagination__item a.current {
  background: #023E78;
  color: #fff;
}
.c-pagination__item.is-current a {
  background-color: #023E78;
  color: #fff;
}

.c-pagination__item.is-dots {
  color: #888;
  font-weight: normal;
}

.c-to-link {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans CJK JP";
}
.c-to-link__text {
  color: #1A1A1A;
  line-height: 1.5rem; /* 171.429% */
}
.c-to-link__link {
  margin-top: 0.875rem;
}
.c-to-link__link span {
  margin-right: 0.5rem;
}
.c-to-link__link a {
  color: #023E78;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.c-tag-category {
  display: inline-block;
  padding: calc(0.5rem - 1px) calc(1.5rem - 1px);
  color: #D33365;
  border: 1px solid #D33365;
  font-family: "Noto Sans CJK JP";
  font-weight: 500;
}

.c-single-title-h1 {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2rem; /* 133.333% */
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-single-title-h1 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

.c-single-title-h2 {
  padding: 0.4375rem 1.625rem 0.625rem;
  background: #F8F8F8;
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-single-title-h2 {
    padding: 0.4375rem 1.625rem 0.1875rem;
  }
}
.c-single-title-h2::before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 100%;
  background: #023E78;
  top: 0;
  left: 0;
}

.c-single-title-h3 {
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}
.c-single-title-h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #023E78;
  bottom: 0;
  left: 0;
}

.c-single-title-h4 {
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}

.c-single-list {
  list-style-type: disc;
  padding-left: 2.5rem;
}
.c-single-list__item {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.c-single-quote {
  width: min(40.375rem, 100%);
  margin-left: 2.5rem;
  padding: 2.0625rem 2.1875rem;
  color: #1A1A1A;
  background: #F8F8F8;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
  position: relative;
  z-index: 2;
}
.c-single-quote::before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 100%;
  background: #023E78;
  top: 0;
  left: 0;
}
.c-single-quote::after {
  content: "“";
  position: absolute;
  top: -2.5625rem;
  left: 0.875rem;
  color: #E8E8E8;
  font-family: "Yu Gothic";
  font-size: 163px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: -1;
}

.c-single-text {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}

.c-single-img {
  width: 100%;
  height: auto;
}
.c-single-img img img {
  width: 100%;
  height: 100%;
  display: block;
}

.c-case-tag {
  display: inline-block;
  padding-block: 0.75rem;
  color: #1A1A1A;
  border-radius: 4px;
  background: #EEE;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 700;
  width: 13rem;
}
@media screen and (max-width: 767px) {
  .c-case-tag {
    width: 18.375rem;
  }
}

.c-case-title {
  padding-left: 1.125rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .c-case-title {
    padding-block: 0.125rem 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0.0625rem;
  }
}
.c-case-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background: #023E78;
}
.c-case-title__main {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.75rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-case-title__main {
    font-size: 1.5rem;
  }
}
.c-case-title__sub {
  color: #023E78;
  font-family: "Fira Sans";
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-case-title__sub {
    font-size: 0.875rem;
    margin-left: 0.1875rem;
  }
}

.c-section-title-ja {
  color: #1A1A1A;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
}
.c-section-title-ja.--white {
  color: #fff;
}

.c-post-content h2 {
  margin-top: 2.5rem;
  padding: 0.4375rem 1.625rem 0.625rem;
  background: #F8F8F8;
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-post-content h2 {
    padding: 0.4375rem 1.625rem 0.5rem;
  }
}
.c-post-content h2::before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 100%;
  background: #023E78;
  top: 0;
  left: 0;
}
.c-post-content h3 {
  margin-top: 2.375rem;
  padding-bottom: 0.4375rem;
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-post-content h3 {
    margin-top: 2rem;
    padding-block: 0.5rem;
  }
}
.c-post-content h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #023E78;
  bottom: 0;
  left: 0;
}
.c-post-content h4 {
  margin-top: 2.4375rem;
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-post-content h4 {
    margin-top: 2rem;
    padding-top: 0.375rem;
  }
}
.c-post-content p {
  margin-top: 1.125rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
.c-post-content blockquote {
  margin-top: 2.5rem;
  width: min(40.375rem, 100%);
  margin-left: 2.5rem;
  padding: 2.0625rem 2.1875rem;
  color: #1A1A1A;
  background: #F8F8F8;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-post-content blockquote {
    margin-top: 3.5625rem;
    margin-left: 0;
    padding: 1.875rem 2rem 1.75rem;
    margin-bottom: 0;
  }
}
.c-post-content blockquote > p {
  margin-top: 0;
}
.c-post-content blockquote::before {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 100%;
  background: #023E78;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-post-content blockquote::before {
    width: 0.25rem;
  }
}
.c-post-content blockquote::after {
  content: "“";
  position: absolute;
  top: -2.5625rem;
  left: 0.875rem;
  color: #E8E8E8;
  font-family: "Yu Gothic";
  font-size: 163px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: -1;
}
.c-post-content ul {
  margin-top: 2.375rem;
  margin-left: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-post-content ul {
    margin-left: 0;
    gap: 1.25rem;
  }
}
.c-post-content ul li {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
.c-post-content ul li::before {
  content: "・";
}
.c-post-content ol {
  counter-reset: ol;
  margin-top: 2.375rem;
  margin-left: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-post-content ol {
    margin-left: 0;
    gap: 1.25rem;
  }
}
.c-post-content ol li {
  position: relative;
  padding-left: 1.75rem;
  list-style: none;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: normal;
}
.c-post-content ol li::before {
  counter-increment: ol;
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #023E78;
  font-weight: 700;
}

.c-tag-new {
  color: #E61264;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .c-tag-new {
    font-size: 0.875rem;
  }
}

.c-skew-bg {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
}
.c-skew-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #EDF3F8;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  z-index: -2;
}
.c-skew-bg--front-about {
  height: 50%;
}

.p-header {
  display: grid;
  grid-template-columns: 280px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header {
    grid-template-columns: 198px 1fr;
  }
}
.p-header__nav {
  justify-self: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (min-width: 769px) and (max-width: 1240px) {
  .p-header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 12px;
  }
}
@media screen and (max-width: 800px) {
  .p-header__nav {
    display: none;
  }
}
.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__list li a {
  padding-inline: 1rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .p-header__list li a:hover {
    opacity: 0.6;
  }
}
.p-header__list li:first-child a {
  padding-left: 0;
}
.p-header__list li:last-child a {
  padding-right: 0;
}
.p-header__btns {
  margin-left: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.p-header__list li:not(:last-child)::after {
  content: "／";
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 171.429% */
}

.p-footer__cta-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-footer__cta-content {
  padding-block: 3.4375rem 3.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-footer__cta-content {
    padding-block: 2.875rem 1.5625rem;
  }
}
.p-footer__cta-content.--download::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: auto;
  background: url(../img/bg-cta-download.png) no-repeat center center/cover;
}
.p-footer__cta-content.--download::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 62, 120, 0.8);
  z-index: -1;
}
.p-footer__cta-content.--contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: auto;
  background: url(../img/bg-cta-contact.png) no-repeat center center/cover;
}
.p-footer__cta-content.--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 62, 120, 0.8);
  z-index: -1;
}
.p-footer__bottom {
  position: relative;
  background: #1A1A1A;
  padding-block: 7.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-footer__bottom {
    padding-block: 4.375rem 0.8125rem;
  }
}
.p-footer__bottom-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.375rem;
}
.p-footer__to-top {
  position: absolute;
  right: 1.25rem;
  bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__to-top {
    right: 0.625rem;
    bottom: 1.25rem;
  }
}
.p-footer .p-footer__copyright {
  display: block;
  text-align: center;
  margin-top: 4.75rem;
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-footer .p-footer__copyright {
    margin-top: 2.375rem;
    font-size: 0.75rem;
    line-height: 1.25rem; /* 166.667% */
  }
}

.p-drawer {
  position: absolute;
  z-index: 101;
  top: 60px;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #023E78;
  overflow-y: scroll;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, transform 0.3s ease;
  transition: opacity 0.5s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-drawer.js-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3.75rem 2.5rem;
}
.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-drawer__list li a {
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 500;
}
.p-drawer__btns {
  margin-top: 2.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.875rem;
}
.p-drawer__icon {
  display: none;
}
@media screen and (max-width: 800px) {
  .p-drawer__icon {
    padding-block: 2px;
    width: 27px;
    height: 18px;
    top: 50%;
    translate: 0 -50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
.p-drawer__icon--bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 100vmax;
  background: #023E78;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 5.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -6.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-page-top {
  width: 100%;
  -webkit-padding-before: var(--header-h);
          padding-block-start: var(--header-h);
}
.p-page-top__inner {
  position: relative;
}
.p-page-top__img {
  position: relative;
}
.p-page-top__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-page-top__img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(2, 62, 120, 0.8);
  clip-path: polygon(0 0, 28.5% 0, 17% 100%, 0% 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-page-top__img::before {
    clip-path: polygon(0 0, 44% 0, 6% 100%, 0% 100%);
  }
}
.p-page-top__title {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 13.75rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-page-top__title {
    left: 1.25rem;
  }
}

.p-breadcrumb {
  margin-top: 0.6875rem;
}

.p-mv {
  -webkit-padding-before: var(--header-h);
          padding-block-start: var(--header-h);
}
.p-mv__inner {
  margin-inline: auto;
  position: relative;
}
.p-mv__swiper {
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  overflow: hidden;
}
.p-mv__swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc(100% - 5.625rem);
  margin-left: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-mv__swiper-slide img {
    margin-left: 2.5rem;
    width: calc(100% - 2.5rem);
  }
}
.p-mv__heading {
  position: absolute;
  z-index: 1;
  bottom: 3.75rem;
  left: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__heading {
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
.p-mv__heading-title span:nth-of-type(2) span {
  display: block;
  background: #fff;
}
.p-mv__heading-title.--main {
  color: #023E78;
  font-family: "Fira Sans", "sans-serif";
  font-size: 3.75rem;
  font-style: italic;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-mv__heading-title.--main .p-heading-line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  white-space: nowrap;
}
.p-mv__heading-title.--main .p-heading-line span {
  display: inline-block;
  background: #fff;
}
.p-mv__heading-title.--main .p-heading-block {
  display: block;
  margin-top: 1rem;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-mv__heading-title.--main {
    font-size: 2.5rem;
  }
  .p-mv__heading-title.--main .p-heading-line {
    display: block;
    background: none;
    margin-top: 0.5rem;
  }
  .p-mv__heading-title.--main .p-heading-line span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #fff;
    margin-top: 0.5rem;
  }
  .p-mv__heading-title.--main .p-heading-line span:first-of-type {
    margin-top: 0;
  }
  .p-mv__heading-title.--main .p-heading-block {
    margin-top: 0.5rem;
  }
}
.p-mv__heading-title.--sub {
  margin-top: 1rem;
  color: #fff;
  background: #023E78;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-mv__heading-title.--sub {
    font-size: 1rem;
  }
}

.animated__colorBox {
  position: relative;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --ink: #000;
  --wipe: #000;
  color: var(--ink);
  clip-path: inset(0 100% 0 0);
}
.animated__colorBox::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: var(--wipe);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox.js-show {
  -webkit-animation: 1.2s forwards ease-in-out textView;
          animation: 1.2s forwards ease-in-out textView;
}
.animated__colorBox.js-show::after {
  -webkit-animation: 1.2s forwards ease-in-out colorBox;
          animation: 1.2s forwards ease-in-out colorBox;
}

.animated__colorBox--navy {
  --ink: #023E78;
  --wipe: #023E78;
}

.animated__colorBox--white {
  --ink: #fff;
  --wipe: #fff;
}

@-webkit-keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@media (min-width: 768px) {
  .p-heading-line > .animated__colorBox {
    clip-path: none;
    -webkit-animation: none;
            animation: none;
  }
  .p-heading-line > .animated__colorBox::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .p-heading-line.animated__colorBox {
    clip-path: none;
    -webkit-animation: none;
            animation: none;
  }
  .p-heading-line.animated__colorBox::after {
    display: none;
  }
}
.animated__scaleImg {
  overflow: hidden;
}
.animated__scaleImg img {
  scale: 1.2;
  opacity: 0;
  -webkit-transition: scale 1s ease, opacity 3s ease;
  transition: scale 1s ease, opacity 3s ease;
}
.animated__scaleImg.js-show img {
  opacity: 1;
  scale: 1;
}

.p-front-about {
  padding-block: 9.375rem;
  position: relative;
}
.p-front-about::before {
  content: "";
  position: absolute;
  width: 39%;
  height: 100%;
  max-height: 800px;
  top: 9.375rem;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(2, 62, 120, 0.8)), to(rgba(2, 62, 120, 0.8))), url(../img/front-page/bg-about.png) no-repeat center center/cover;
  background: linear-gradient(rgba(2, 62, 120, 0.8), rgba(2, 62, 120, 0.8)), url(../img/front-page/bg-about.png) no-repeat center center/cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-front-about::before {
    width: 78.6666666667%;
    height: 22.625rem;
    top: 32.75rem;
  }
}
.p-front-about::after {
  content: "";
  position: absolute;
  top: 27%;
  left: 0;
  width: 100%;
  height: 52%;
  background: #edf3f8;
  z-index: -1;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg); /* 縦方向に傾ける */
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-front-about {
    padding-block: 3.75rem 11.3125rem;
  }
}
.p-front-about__inner {
  position: relative;
}
.p-front-about__container {
  padding-block: 6.5rem 5.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front-about__container {
    padding-block: 0;
  }
}
.p-front-about__body {
  margin-top: 1.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3.625rem;
    gap: 4.375rem;
  }
}
.p-front-about__text {
  padding-block: 4.6875rem 5.4375rem;
  max-width: 23.6875rem;
  color: #1a1a1a;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: max(24px, 1.5rem); /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-front-about__text {
    width: 100%;
    padding-block: 0;
  }
}
.p-front-about__img {
  max-width: 42.5625rem;
}
.p-front-about__img img {
  width: 100%;
  height: auto;
  display: block;
}
.p-front-about__btn {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (max-width: 767px) {
  .p-front-about__btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.animated__clipView {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
}
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.p-front-case {
  padding-block: 6.25rem 7.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-front-case {
    padding-block: 3.75rem 3.9375rem;
  }
}
.p-front-case::before, .p-front-case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-front-case::before {
  background: url(../img/front-page/bg-case.png) no-repeat center center/cover;
}
.p-front-case::after {
  background: rgba(2, 62, 120, 0.8);
}

.p-front-news {
  padding-block: 10.3125rem 10rem;
  position: relative;
}
.p-front-news::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #EDF3F8;
  z-index: -1;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg); /* 縦方向に傾ける */
}
@media screen and (max-width: 767px) {
  .p-front-news {
    padding-block: 3.75rem 13.1875rem;
  }
}

.p-front-service {
  padding-top: 7.4375rem;
  padding-bottom: 6.625rem;
  position: relative;
}
.p-front-service::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #EDF3F8;
  z-index: -1;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg); /* 縦方向に傾ける */
}
@media screen and (max-width: 767px) {
  .p-front-service {
    padding-top: 3.75rem;
    padding-bottom: 10.4375rem;
  }
}

.p-front-service__item {
  width: 100%;
  position: relative;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .p-front-service__item {
    margin-left: 1.0625rem;
  }
}
.p-front-service__item:nth-of-type(2) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-front-service__item:nth-of-type(2) {
    margin-top: 0;
  }
}
.p-front-service__item:nth-of-type(3) {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-service__item:nth-of-type(3) {
    margin-top: 0;
  }
}
.p-front-service__item::before {
  content: attr(data-number);
  position: absolute;
  color: #023E78;
  top: -3.4375rem;
  right: 3px;
  font-family: "Fira Sans";
  font-size: 6.25rem;
  font-style: italic;
  font-weight: 500;
  text-shadow: 3px 3px 0 #fff;
  z-index: 2;
  color: #023E78;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 1.2s ease-in-out;
  transition: clip-path 1.2s ease-in-out;
}
.p-front-service__item.js-show::before {
  clip-path: inset(0 0 0 0);
}
@media screen and (max-width: 767px) {
  .p-front-service__item {
    right: 0.25rem;
  }
}

.p-front-service__img {
  max-width: 20rem;
  height: auto;
  position: relative;
}
.p-front-service__img img {
  width: 100%;
  height: auto;
}

.p-front-service__title {
  position: absolute;
  left: -2rem;
  bottom: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .p-front-service__title {
    left: -0.9375rem;
    bottom: 2.125rem;
  }
}
.p-front-service__title span {
  display: block;
  color: #023E78;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Noto Sans CJK JP";
  font-size: 1.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.p-front-service__title span + span {
  margin-top: 0.5rem;
}

.p-front-service__text {
  margin-top: 0.875rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}

.animated__colorBox2 {
  position: relative;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --ink: #000;
  --wipe: #000;
  color: var(--ink);
  clip-path: inset(0 100% 0 0);
}
.animated__colorBox2::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background-color: var(--wipe);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
  pointer-events: none;
}
.animated__colorBox2.js-show {
  -webkit-animation: 1.2s forwards ease-in-out textView;
          animation: 1.2s forwards ease-in-out textView;
}
.animated__colorBox2.js-show::after {
  -webkit-animation: 1.2s forwards ease-in-out colorBox;
          animation: 1.2s forwards ease-in-out colorBox;
}

.animated__colorBox--navy {
  --ink: #023E78;
  --wipe: #023E78;
}

.animated__colorBox--white {
  --ink: #fff;
  --wipe: #fff;
}

@keyframes textView {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes colorBox {
  0%, 50% {
    -webkit-transform-origin: 0 50%;
            transform-origin: 0 50%;
  }
  60%, 100% {
    -webkit-transform-origin: 100% 50%;
            transform-origin: 100% 50%;
  }
  60% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
.p-front-service-items {
  margin-top: 5.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 4.5625rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-front-service-items {
    margin-top: 4.1875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4.5625rem;
  }
}

.p-front-news-card {
  background: #fff;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  width: 48rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-front-news-card {
    width: 20.9375rem;
  }
}
.p-front-news-card__inner {
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-front-news-card__inner {
    padding: 2.5rem 1.25rem;
  }
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.p-front-case__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.375rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-front-case__cards {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.5rem;
    margin-bottom: 1.875rem;
    row-gap: 3.25rem;
  }
}

.animated__fadeIn2 {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.3s ease, translate 0.3s ease;
  transition: opacity 0.3s ease, translate 0.3s ease;
}
.animated__fadeIn2.js-show {
  opacity: 1;
  translate: 0 0;
}

.p-news-content__breadcrumb {
  margin-top: 0.8125rem;
}
.p-news-content__body {
  margin-top: 5rem;
  padding-bottom: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 1000px) {
  .p-news-content__body {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news-content__body {
    margin-top: 3.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.25rem;
  }
}
.p-news-content__primary {
  width: calc(100% - 300px - 40px);
}
@media screen and (max-width: 767px) {
  .p-news-content__primary {
    width: 100%;
  }
}
.p-news-content__pagination {
  margin-top: 3.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-news-content__pagination {
    margin-top: 2.5rem;
  }
}
.p-news-content__secondary {
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-content__secondary {
    gap: 3.75rem;
    width: 100%;
  }
}

.p-news-entry__items {
  margin-top: 1.6875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-news-entry__items {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}
.p-news-entry__pagenation {
  margin-top: 3.75rem;
}

.p-news-widget-recent__items {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-news-widget-recent__items {
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}
.p-news-widget-archive {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-news-widget-archive {
    margin-top: 3.75rem;
  }
}
.p-news-widget-archive__items {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  width: 36.875rem;
  margin-bottom: 5.25rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-card {
    width: 100%;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.p-service-card::before {
  content: attr(data-number);
  position: absolute;
  color: #023E78;
  top: -3.3125rem;
  left: 3.625rem;
  font-family: "Fira Sans";
  font-size: 6.25rem;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-card::before {
    font-size: 4.25rem;
    left: 1.25rem;
  }
}
.p-service-card:nth-of-type(1) .p-service-card__inner {
  padding-top: 5.125rem;
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-of-type(1) .p-service-card__inner {
    padding-top: 2.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-of-type(1) .p-service-card__title-main {
    margin-bottom: 0.25rem;
  }
}
.p-service-card:nth-of-type(2) .p-service-card__inner {
  padding-top: 5.6875rem;
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-of-type(2) .p-service-card__inner {
    padding-top: 2.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-of-type(2) .p-service-card__title-main {
    margin-bottom: 0.4375rem;
  }
}
.p-service-card:nth-of-type(3) .p-service-card__inner {
  padding-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-of-type(3) .p-service-card__inner {
    padding-top: 2.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-of-type(3) .p-service-card__title-main {
    margin-bottom: 0.4375rem;
  }
}
.p-service-card:nth-child(1)::before {
  top: -3.3125rem;
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-child(1)::before {
    top: -2.71875rem;
  }
}
.p-service-card:nth-child(2)::before {
  top: -4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-child(2)::before {
    top: -2.625rem;
  }
}
.p-service-card:nth-child(3)::before {
  top: -3.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-card:nth-child(3)::before {
    top: -2.5625rem;
  }
}
.p-service-card__inner {
  padding-inline: 2.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-card__inner {
    padding: 2.625rem 1.25rem;
  }
}
.p-service-card__title {
  white-space: nowrap;
}
.p-service-card__title-main {
  display: block;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 2.5rem;
  font-weight: 700;
  text-wrap: no-wrap;
}
@media screen and (max-width: 767px) {
  .p-service-card__title-main {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
.p-service-card__title-sub {
  color: #023E78;
  font-family: "Fira Sans", "sans-serif";
  font-size: 1rem;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-service-card__title-sub {
    font-size: 0.875rem;
  }
}
.p-service-card__text {
  margin-top: 3.875rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-service-card__text {
    margin-top: 1.875rem;
  }
}
.p-service-card__info {
  margin-top: 3.625rem;
}
@media screen and (max-width: 767px) {
  .p-service-card__info {
    margin-top: 1.8125rem;
  }
}
.p-service-card__info-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.25rem;
  padding-top: 1.8125rem;
  padding-bottom: 1.8125rem;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-service-card__info-row {
    padding-block: 1.125rem;
  }
}
.p-service-card__info-row:first-child {
  border-top: 1px solid #ccc;
}
.p-service-card__info-term {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-weight: 700;
  line-height: 1.5rem; /* 171.429% */
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-service-card__info-term {
    width: 1.75rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.p-service-card__info-desc {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
.p-service-card__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3.75rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-service-card__btn {
    width: 100%;
    margin-top: 2rem;
  }
}

.p-service-card-item:nth-child(even) .p-service-card::before {
  left: auto;
  right: 2.75rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-child(even) .p-service-card::before {
    right: 1.25rem;
  }
}

.p-service-card-item:nth-of-type(2) .p-service-card__inner {
  padding-top: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-of-type(2) .p-service-card__inner {
    padding-top: 2.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-of-type(2) .p-service-card__title-main {
    margin-bottom: 0.4375rem;
  }
}
.p-service-card-item:nth-of-type(2) .p-service-card::before {
  top: -4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-of-type(2) .p-service-card::before {
    top: -2.625rem;
  }
}

.p-service-card-item:nth-of-type(3) .p-service-card__inner {
  padding-top: 4.6875rem;
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-of-type(3) .p-service-card__inner {
    padding-top: 2.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-of-type(3) .p-service-card__title-main {
    margin-bottom: 0.4375rem;
  }
}
.p-service-card-item:nth-of-type(3) .p-service-card::before {
  top: -4.0625rem;
}
@media screen and (max-width: 767px) {
  .p-service-card-item:nth-of-type(3) .p-service-card::before {
    top: -2.625rem;
  }
}

.p-service-card-list {
  padding-block: 5rem 10.0625rem;
  overflow-x: hidden;
  position: relative;
}
.p-service-card-list::after {
  content: "";
  position: absolute;
  top: 34.5%;
  left: 0;
  width: 100%;
  height: 28.5%;
  background: #EDF3F8;
  z-index: -2;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg); /* 縦方向に傾ける */
}
@media screen and (max-width: 767px) {
  .p-service-card-list {
    padding-block: 3.75rem;
  }
}
.p-service-card-list__inner {
  margin: 0 auto;
  width: min(65rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}
.p-service-card-list__title {
  color: #1A1A1A;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.5rem; /* 142.857% */
}
@media screen and (max-width: 767px) {
  .p-service-card-list__title {
    font-size: 1.25rem;
    line-height: 1.75rem; /* 140% */
  }
}
.p-service-card-list__wrap {
  margin-top: 4.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-service-card-list__wrap {
    margin-top: 13.25rem;
    gap: 14.4375rem;
  }
}
.p-service-card-list .p-service-card-item:nth-child(odd) {
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-service-card-list .p-service-card-item:nth-child(odd) {
    margin-right: 0;
  }
}
.p-service-card-list .p-service-card-item:nth-child(odd)::after {
  content: "";
  position: absolute;
  width: 35rem;
  height: 55.875rem;
  top: 7.5rem;
  right: -31.125rem;
}
@media screen and (max-width: 767px) {
  .p-service-card-list .p-service-card-item:nth-child(odd)::after {
    top: -9.5rem;
    right: -1.25rem;
    width: 11.75rem;
    height: 18.8125rem;
  }
}
.p-service-card-list .p-service-card-item:nth-child(even) {
  margin-left: auto;
  position: relative;
  margin-left: auto;
}
.p-service-card-list .p-service-card-item:nth-child(even)::after {
  content: "";
  position: absolute;
  width: 35rem;
  height: 55.875rem;
  top: 7.1875rem;
  right: calc(100% - 4rem);
  background: url(../img/service/img-service2.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-service-card-list .p-service-card-item:nth-child(even)::after {
    top: -9.5rem;
    right: auto;
    left: -1.25rem;
    width: 11.75rem;
    height: 18.8125rem;
  }
}
.p-service-card-list .p-service-card-item:nth-child(1)::after {
  background: url(../img/service/img-service1.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-card-list .p-service-card-item:nth-child(1)::after {
    background: url(../img/service/img-service1-sp.png) no-repeat center center/contain;
  }
}
.p-service-card-list .p-service-card-item:nth-child(2)::after {
  background: url(../img/service/img-service2.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-card-list .p-service-card-item:nth-child(2)::after {
    background: url(../img/service/img-service2-sp.png) no-repeat center center/contain;
  }
}
.p-service-card-list .p-service-card-item:nth-child(3)::after {
  background: url(../img/service/img-service3.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-service-card-list .p-service-card-item:nth-child(3)::after {
    background: url(../img/service/img-service3-sp.png) no-repeat center center/contain;
  }
}

.p-intro-flow {
  padding-block: 5rem 7.4375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-intro-flow {
    padding-block: 3.75rem 3.75rem;
  }
}
.p-intro-flow::before, .p-intro-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-intro-flow::before {
  background: url(../img/front-page/bg-case.png) no-repeat center center/cover;
}
.p-intro-flow::after {
  background: rgba(2, 62, 120, 0.8);
}
.p-intro-flow__items {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__items {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-intro-flow__step-number {
  color: #FEF251;
  font-family: "Fira Sans", "sans-serif";
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__step-number {
    width: 2.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-intro-flow__step-number span {
    display: block;
  }
}
.p-intro-flow__step-number span {
  font-size: 1.25rem;
  font-weight: 500;
}
.p-intro-flow__step-number span + span {
  font-size: 2.5rem;
  font-weight: 500;
}
.p-intro-flow__item {
  width: 17.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.9375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.p-intro-flow__item:nth-child(1) .p-intro-flow__content {
  background: #EDF3F8;
  padding-top: 2.875rem;
  padding-inline: 2.875rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__item:nth-child(1) .p-intro-flow__content {
    padding-top: 1.375rem;
    padding-inline: 1.25rem;
    height: 7.875rem;
  }
}
.p-intro-flow__item:nth-child(2) .p-intro-flow__content {
  background: #DDE8F0;
  padding-top: 2.875rem;
  padding-inline: 3.125rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__item:nth-child(2) .p-intro-flow__content {
    padding-top: 2.375rem;
    padding-inline: 1.25rem;
    height: 10.25rem;
  }
}
.p-intro-flow__item:nth-child(3) .p-intro-flow__content {
  background: #C7DBE9;
  padding-top: 2.875rem;
  padding-inline: 3.125rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__item:nth-child(3) .p-intro-flow__content {
    padding-top: 2.375rem;
    padding-inline: 1.25rem;
    height: 10.25rem;
  }
}
.p-intro-flow__item:nth-child(4) .p-intro-flow__content {
  background: #B0D0E5;
  padding-top: 2.875rem;
  padding-inline: 3.125rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__item:nth-child(4) .p-intro-flow__content {
    padding: 2.625rem 1.25rem 1.25rem 1.25rem;
    height: 11.9375rem;
  }
}
.p-intro-flow__item:nth-child(4) .p-intro-flow__content::after {
  display: none;
}
.p-intro-flow__content {
  height: 13.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__content {
    width: 17.1875rem;
  }
}
.p-intro-flow__content::after {
  content: "";
  position: absolute;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  height: 100%;
  width: 1.4375rem;
  top: 0;
  right: -1.375rem;
  background: inherit;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__content::after {
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 100%;
    height: 1.375rem;
    top: auto;
    left: 0;
    bottom: -1.375rem;
  }
}
.p-intro-flow__content-title {
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-intro-flow__content-title {
    font-size: 1.125rem;
    text-align: center;
  }
}
.p-intro-flow__content-text {
  margin-top: 1.125rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-intro-flow__content-text {
    margin-top: 0.4375rem;
  }
}
.p-intro-flow__content-text span {
  display: block;
  color: #D33365;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.p-service-faq {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-service-faq {
    padding-block: 3.75rem 6.25rem;
  }
}
.p-service-faq__inner {
  width: min(45.5rem, 100%);
  padding-inline: 1.25rem;
  margin-inline: auto;
}
.p-service-faq__title {
  color: #1A1A1A;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
}
.p-service-faq__items {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-service-faq__items {
    margin-top: 2.375rem;
  }
}
.p-service-faq__item {
  border-bottom: 1px solid #DDD;
}
.p-service-faq__question {
  display: block;
  padding-block: 2rem 1.9375rem;
  padding-right: 4.375rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-service-faq__question {
    font-size: 1rem;
    padding-block: 1rem 0.9375rem;
    padding-right: 4.5625rem;
  }
}
.p-service-faq__question::before, .p-service-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(50%, -50%) rotate(0deg);
          transform: translate(50%, -50%) rotate(0deg);
  background: #1A1A1A;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .p-service-faq__question::before, .p-service-faq__question::after {
    top: 1.625rem;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.p-service-faq__question::before {
  top: 2.875rem;
  right: 1.3125rem;
  width: 1.3125rem;
  height: 0.125rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-service-faq__question::before {
    top: 1.78125rem;
    right: 0.5625rem;
  }
}
.p-service-faq__question::after {
  right: 1.34375rem;
  width: 0.125rem;
  height: 1.3125rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-service-faq__question::after {
    top: 1.75rem;
    right: 1.125rem;
  }
}
@media (any-hover: hover) {
  .p-service-faq__question:hover {
    cursor: pointer;
  }
}
.p-service-faq__question-text {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-service-faq__answer {
  padding: 0rem 3.75rem 1.875rem 2.5rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
  white-space: pre-wrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-service-faq__answer {
    padding-inline: 0;
    padding-block: 0 0.875rem;
  }
}

.p-service-faq__item.is-opened .p-service-faq__question::before {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  background: #D33365;
}
@media screen and (max-width: 767px) {
  .p-service-faq__item.is-opened .p-service-faq__question::before {
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
  }
}
.p-service-faq__item.is-opened .p-service-faq__question::after {
  -webkit-transform: translate(50%, -50%) rotate(45deg);
          transform: translate(50%, -50%) rotate(45deg);
  background: #D33365;
}
@media screen and (max-width: 767px) {
  .p-service-faq__item.is-opened .p-service-faq__question::after {
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
  }
}
.p-service-faq__item.is-opened .p-service-faq__question {
  color: #D33365;
}

.p-download {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-download {
    padding-block: 3.75rem 6.25rem;
  }
}
.p-download__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-download__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.8125rem;
  }
}

.p-download-content {
  width: min(31.875rem, 100%);
}
.p-download-content__title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.5rem; /* 142.857% */
}
@media screen and (max-width: 767px) {
  .p-download-content__title {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.p-download-content__img {
  margin-top: 2.5625rem;
  margin-inline: auto;
  width: 17.1875rem;
  -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px 0 rgba(0, 0, 0, 0.16);
}
.p-download-content__img img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-download-content__text {
  margin-top: 2.375rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
.p-download-content__text p + p {
  margin-top: 1em;
}

.p-download-form {
  background: #EDF3F8;
  border-radius: 0.75rem;
  width: min(34.375rem, 100%);
}
.p-download-form__inner {
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-download-form__inner {
    padding-block: 2.5rem;
    padding-inline: 1.25rem;
  }
}
.p-download-form__title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-download-form__title {
    font-size: 1.5rem;
  }
}
.p-download-form__body {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-download-form__body {
    row-gap: 1.25rem;
  }
}
.p-download-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-download-form__row {
    row-gap: 0.5rem;
  }
}
.p-download-form__head {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-download-form__head {
    font-size: 0.875rem;
  }
}
.p-download-form__head span.--must {
  display: inline-block;
  position: relative;
}
.p-download-form__head span.--must::after {
  content: "必須";
  position: absolute;
  top: calc(50% + 2px);
  translate: 0 -50%;
  left: calc(100% + 0.5625rem);
  color: #fff;
  background: #D33365;
  font-family: "Noto Sans CJK JP";
  font-size: 0.75rem;
  white-space: nowrap;
  font-weight: 700;
  padding: 0.125rem 0.5rem 0.1875rem;
}
.p-download-form__data {
  border-radius: 0.3125rem;
  width: 100%;
  border: 1px solid #DDD;
  padding: 0.6875rem 1rem;
  background: #fff;
  font-size: 1rem;
  line-height: normal;
}
.p-download-form__data::-webkit-input-placeholder {
  color: #CCCCCC;
}
.p-download-form__data::-moz-placeholder {
  color: #CCCCCC;
}
.p-download-form__data:-ms-input-placeholder {
  color: #CCCCCC;
}
.p-download-form__data::-ms-input-placeholder {
  color: #CCCCCC;
}
.p-download-form__data::placeholder {
  color: #CCCCCC;
}
.p-download-form__acceptance {
  margin-top: 2.8125rem;
}
.p-download-form__submit {
  margin-top: 2.75rem;
}
input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-download-thanks {
  padding-block: 5rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-download-thanks {
    padding-block: 3.75rem 6.25rem;
  }
}
.p-download-thanks__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-download-thanks__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.8125rem;
  }
}

.p-download-form-thanks {
  background: #EDF3F8;
  border-radius: 12px;
  width: min(34.375rem, 100%);
  padding-block: 2.4375rem 35.875rem;
}
@media screen and (max-width: 767px) {
  .p-download-form-thanks {
    padding-block: 2.375rem 2.25rem;
  }
}
.p-download-form-thanks__inner {
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-download-form-thanks__inner {
    padding-inline: 1.25rem;
  }
}
.p-download-form-thanks__title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 2rem;
  font-weight: 700;
  line-height: 3rem; /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-download-form-thanks__title {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.p-download-form-thanks__link {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-download-form-thanks__link {
    margin-top: 2.25rem;
  }
}
.p-download-form-thanks__link-text {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}
.p-download-form-thanks__link span {
  margin-right: 0.5rem;
}
.p-download-form-thanks__link a {
  margin-top: 0.9375rem;
  color: #023E78;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.p-download-form-thanks__text {
  margin-top: 2.25rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75rem; /* 200% */
}

.p-contact {
  padding-block: 5rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-block: 3.75rem 6.25rem;
  }
}
.p-contact__inner {
  width: min(43rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding-inline: 1.25rem;
  }
}
.p-contact__title {
  margin-top: 5rem;
  text-align: center;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    margin-top: 3.625rem;
    font-size: 1.5rem;
  }
}
.p-contact-form {
  margin-top: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 1.9375rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    row-gap: 1.125rem;
    margin-top: 2.375rem;
  }
}
.p-contact-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__row {
    row-gap: 0.375rem;
  }
}
.p-contact-form__head {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-contact-form__head {
    font-size: 0.875rem;
  }
}
.p-contact-form__head span {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: inherit;
}
@media screen and (max-width: 767px) {
  .p-contact-form__head span {
    font-size: 0.875rem;
  }
}
.p-contact-form__head span.--must {
  position: relative;
  display: inline-block;
}
.p-contact-form__head span.--must::after {
  content: "必須";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: calc(100% + 0.8125rem);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: normal;
  display: inline-block;
  padding: 1px 0.5rem 2px;
  color: #fff;
  background: #D33365;
  white-space: nowrap;
}
.p-contact-form__data {
  width: 100%;
  padding: 0.75rem 1rem 0.6875rem;
  border: 1px solid #DDD;
  border-radius: 0.25rem;
  font-family: "Noto Sans JP";
}
.p-contact-form__select-wrap {
  position: relative;
  color: #DDD;
}
.p-contact-form__select-wrap svg {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 1rem;
  width: 10.814px;
  height: 6.807px;
  pointer-events: none;
  z-index: 1;
}
.p-contact-form__acceptance {
  margin-top: 2.6875rem;
}
.p-contact-form__submit {
  margin-top: 2.6875rem;
  text-align: center;
}
.p-contact h2 {
  margin-top: 5rem;
  text-align: center;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-contact h2 {
    margin-top: 3.75rem;
    font-size: 1.5rem;
  }
}
.p-contact p {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}

.wpcf7 input::-webkit-input-placeholder, .wpcf7 textarea::-webkit-input-placeholder {
  color: #CCC;
  font-size: 1rem;
}

.wpcf7 input::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #CCC;
  font-size: 1rem;
}

.wpcf7 input:-ms-input-placeholder, .wpcf7 textarea:-ms-input-placeholder {
  color: #CCC;
  font-size: 1rem;
}

.wpcf7 input::-ms-input-placeholder, .wpcf7 textarea::-ms-input-placeholder {
  color: #CCC;
  font-size: 1rem;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #CCC;
  font-size: 1rem;
}

.wpcf7-spinner {
  display: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  height: 15rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  textarea {
    height: 8.75rem;
  }
}

/* 親の色で制御する */
.p-contact-form__select-wrap {
  color: #000;
} /* 通常は黒 */
.p-contact-form__select-wrap select.p-contact-form__data {
  color: inherit !important;
}

/* 未選択（空値が選ばれている間）だけ薄色に */
.p-contact-form__select-wrap:has(select.p-contact-form__data option:checked[value=""]) {
  color: #999;
}

.p-contact-thanks__inner {
  margin-inline: auto;
  width: min(42.9375rem, 100%);
  padding-inline: 1.25rem;
}
.p-contact-thanks__content {
  padding-block: 5rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact-thanks__content {
    padding-block: 3.75rem 6.25rem;
  }
}

.p-single-content__category-tag {
  padding-right: 0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-single-content__category-tag {
    padding-right: 0;
  }
}
.p-single-content__h1 {
  margin-top: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-single-content__h1 {
    margin-top: 0;
  }
}
.p-single-content__img {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-content__img {
    margin-top: 1.5rem;
  }
}
.p-single-content__img img {
  width: 100%;
  height: auto;
}
.p-single-content__h2 {
  margin-top: 2.5rem;
}
.p-single-content__h3 {
  margin-top: 2.5rem;
}
.p-single-content__h4 {
  margin-top: 2.5rem;
}
.p-single-content__text {
  margin-top: 1.125rem;
}
.p-single-content__list {
  margin-top: 2.375rem;
}
.p-single-content__quote {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single-content__quote {
    margin-top: 3.5625rem;
  }
}
.p-single-content__btns {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-single {
  padding-block: 5rem 10.9375rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-block: 3.75rem;
  }
}
.p-single__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-single__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.25rem;
  }
}

.p-single-post-navigation {
  margin-top: 2.5rem;
}
.p-single-post-navigation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-single-post-navigation__prev a {
  display: inline-block;
  padding: calc(0.5rem - 1px) calc(1rem - 1px);
  color: #023E78;
  border: 1px solid #023E78;
  border-radius: 0.25rem;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}
.p-single-post-navigation__next a {
  display: inline-block;
  padding: calc(0.5rem - 1px) calc(1rem - 1px);
  color: #023E78;
  border: 1px solid #023E78;
  border-radius: 0.25rem;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 0.875rem;
  font-weight: 500;
}

.p-case-tag-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-case-tag-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}
.p-case-card {
  width: min(31.875rem, 100%);
  border-radius: 12px;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1000px) {
  .p-case-card {
    width: 100%;
  }
}
.p-case-card__head {
  padding: 1.125rem 2.5rem;
  background: #023E78;
  border-radius: 12px 12px 0px 0px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-case-card__head {
    padding: 1.125rem 1.25rem 1.1875rem;
  }
}
.p-case-card__head-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-case-card__head-title {
    gap: 0.1875rem;
  }
}
.p-case-card__head-title-sub {
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-case-card__head-title-sub {
    font-size: 0.75rem;
  }
}
.p-case-card__head-title-main {
  color: #FFF;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-case-card__head-title-main {
    font-size: 1rem;
  }
}
.p-case-card__head-title-main span {
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__head-title-main span {
    margin-left: 0.75rem;
    font-size: 0.875rem;
  }
}
.p-case-card__head-img {
  border-radius: 0.75rem;
  width: 10rem;
  height: 7rem;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 1.25rem;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  background: #fff;
  /* 画像を中央に置く */
  text-align: center;
  padding: 0.375rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__head-img {
    width: 5.625rem;
    height: 4.25rem;
    border-radius: 0.25rem;
    padding: 0.5rem 1.1875rem;
  }
}
.p-case-card__head-img img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}
.p-case-card__body {
  padding: 2.5625rem 2.5rem 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__body {
    padding: 1.375rem 1.25rem 1.0625rem;
  }
}
.p-case-card__course-title {
  padding-bottom: 0.6875rem;
  position: relative;
}
.p-case-card__course-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DDD;
}
.p-case-card__course-title span {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-weight: 700;
}
.p-case-card__summary {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__summary {
    margin-top: 1.125rem;
  }
}
.p-case-card__summary-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-case-card__summary-label {
    gap: 0.59375rem;
  }
}
.p-case-card__summary-label-icon svg {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-case-card__summary-label-icon svg {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
.p-case-card__summary-label-title {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-case-card__summary-label-title {
    font-size: 1rem;
  }
}
.p-case-card__summary-text {
  margin-top: 0.4375rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-case-card__summary-text {
    margin-top: 0.375rem;
  }
}

.p-case-cards {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-case-cards {
    margin-top: 1.5rem;
  }
}
.p-case-cards__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.125rem 5rem;
}
@media (max-width: 1000px) {
  .p-case-cards__inner {
    grid-template-columns: 1fr;
    row-gap: 3.375rem;
  }
}

.p-case {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-case {
    padding-bottom: 6.25rem;
  }
}
.p-case__tag {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-case__tag {
    margin-top: 3.75rem;
  }
}
.p-case__content {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-case__content {
    margin-top: 3.75rem;
  }
}
.p-case__title {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-case__title {
    margin-top: 3.75rem;
  }
}
.p-case__cards {
  margin-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-case__cards {
    margin-top: 1.5625rem;
  }
}
.p-case__btn {
  margin-top: 3.75rem;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-case__btn {
    margin-top: 2.625rem;
  }
}

.p-about-message {
  padding-bottom: 16.25rem;
}
@media screen and (max-width: 767px) {
  .p-about-message {
    padding-inline: 0;
    padding-bottom: 15.875rem;
  }
}
.p-about-message__inner {
  max-width: 68.75rem;
  width: min(71.25rem, 100%);
  margin-inline: auto;
}
.p-about-message__img {
  width: 68.75rem;
  height: 22.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-message__img {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 17.5625rem;
  }
}
.p-about-message__img img {
  width: 100%;
  height: 100%;
  display: block;
}
.p-about-message__title {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
}
.p-about-message__title-main {
  display: block;
  color: #FFF;
  font-family: "Fira Sans", "sans-serif";
  font-size: 6.25rem;
  font-style: italic;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-about-message__title-main {
    font-size: 3.25rem;
  }
}
.p-about-message__title-sub {
  color: #FFF;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about-message__title-sub {
    font-size: 1rem;
  }
}
.p-about-message__content {
  width: 43rem;
  padding: 1.875rem 2.5rem;
  background: #FFF;
  -webkit-box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 12px 0px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 18.3125rem;
}
@media screen and (max-width: 767px) {
  .p-about-message__content {
    width: 20.9375rem;
    margin-inline: auto;
    padding: 1.25rem;
    top: 15.0625rem;
  }
}
.p-about-message__content-title {
  color: #023E78;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about-message__content-title {
    font-size: 1.25rem;
  }
}
.p-about-message__content-text {
  margin-top: 1.9375rem;
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
@media screen and (max-width: 767px) {
  .p-about-message__content-text {
    margin-top: 1.125rem;
  }
}

.p-about-messages {
  margin-top: 5rem;
  padding-bottom: 2.125rem;
}
@media screen and (max-width: 767px) {
  .p-about-messages {
    margin-top: 3.75rem;
    padding-bottom: 1.375rem;
  }
}
.p-about-company-info {
  padding-block: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-company-info {
    padding-block: 3.75rem;
  }
}
.p-about-company-info::before, .p-about-company-info::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}
.p-about-company-info::before {
  background: url(../img/front-page/bg-case.png) no-repeat center center/cover;
}
.p-about-company-info::after {
  background: rgba(2, 62, 120, 0.8);
}
.p-about-company-info__body {
  padding: 3.75rem 2.5rem 5rem;
  border: 1px solid #707070;
  background: #FFF;
  width: min(48rem, 100%);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__body {
    padding: 2.5rem 1.25rem 2.4375rem;
  }
}
.p-about-company-info__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__list {
    margin-top: 2.5rem;
  }
}
.p-about-company-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
  padding-block: 1.5625rem 1.4375rem;
  border-bottom: 1px solid #E8EAEC;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__row {
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 1.25rem;
  }
}
.p-about-company-info__row:first-child {
  border-top: 1px solid #E8EAEC;
}
.p-about-company-info__row::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 12.5rem;
  height: 1px;
  background: #023E78;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__row::before {
    width: 6.25rem;
  }
}
.p-about-company-info__row::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 12.5rem;
  height: 1px;
  background: #023E78;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__row::after {
    width: 6.25rem;
  }
}
.p-about-company-info__row dt,
.p-about-company-info__row dd {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem; /* 150% */
}
@media screen and (max-width: 767px) {
  .p-about-company-info__row dt,
  .p-about-company-info__row dd {
    font-size: 0.875rem;
    line-height: 1.25rem; /* 142.857% */
  }
}
.p-about-company-info__row dt {
  display: inline-block;
  width: 9rem;
  padding-left: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__row dt {
    width: 6.5rem;
    padding-left: 0;
  }
}
.p-about-company-info__row dd {
  padding-left: 2rem;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-about-company-info__row dd {
    width: 10.6875rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-left: 0;
  }
}

.p-about-executive-item__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-executive-item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.375rem;
  }
}
.p-about-executive-item__content {
  width: min(25.5rem, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-about-executive-item__content {
    gap: 1.125rem;
  }
}
.p-about-executive-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  color: #1A1A1A;
  font-weight: 700;
  font-family: "Noto Sans CJK JP";
}
.p-about-executive-item__name-sub {
  font-size: max(14px, 0.875rem);
  font-weight: 700;
}
.p-about-executive-item__name-main {
  font-size: 1.25rem;
  font-weight: 700;
}
.p-about-executive-item__text {
  color: #1A1A1A;
  font-family: "Noto Sans CJK JP";
  font-size: max(14px, 0.875rem);
  font-weight: 500;
  line-height: 1.5rem; /* 171.429% */
}
.p-about-executive-item__sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-about-executive-item__sns-links {
    width: 9rem;
    height: 2rem;
    gap: 1.6875rem;
  }
}
.p-about-executive-item__img {
  width: 15rem;
}
.p-about-executive-item__img img {
  width: 100%;
  height: 100%;
  display: block;
}

.p-about-executive {
  padding-block: 7.5rem 11.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-about-executive {
    padding-block: 3.75rem 9.6875rem;
  }
}
.p-about-executive::after {
  content: "";
  position: absolute;
  top: 59%;
  left: 0;
  width: 100%;
  height: 39%;
  background: #EDF3F8;
  z-index: -1;
  -webkit-transform: skewY(10deg);
          transform: skewY(10deg); /* 縦方向に傾ける */
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-about-executive::after {
    top: 44.5%;
    height: 53%;
  }
}
.p-about-executive__items {
  width: min(43rem, 100%);
  margin-top: 3.75rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about-executive__items {
    margin-top: 2.5rem;
  }
}
.u-separate {
  margin-block: 24px;
}

.u-bg-dark {
  background: skyblue;
  padding: 20px;
}

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

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

.u-sp-hidden {
  display: inline;
}
@media screen and (max-width: 767px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-sama {
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .u-sama {
    font-size: 0.875rem;
  }
}