@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * vw(数値,幅)の計算
******************************************/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  font-size: 16px;
}
@media (max-width: 1200px) {
  html {
    font-size: max(10px, 1.3333333333vw);
  }
}
@media screen and (max-width: 950px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 539px) {
  html {
    font-size: max(10px, 4.2666666667vw);
  }
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

body.no-scroll {
  overflow: hidden;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow-x: clip;
}

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

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

iframe,
video,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0.0625rem 0.125rem 0.375rem rgba(34, 54, 153, 0.1);
          box-shadow: 0.0625rem 0.125rem 0.375rem rgba(34, 54, 153, 0.1);
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.125rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  margin-inline: auto;
  padding-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 0.75rem;
  }
}

.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12.8125rem;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 8.375rem;
  }
}

.header__logo a {
  display: block;
}

.header__logo-img {
  display: block;
  width: 12.8125rem;
  height: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .header__logo-img {
    width: 8.375rem;
    height: 1.625rem;
  }
}

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

.header__badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .header__badge {
    margin-left: 0.5625rem;
  }
}

.header__badge a {
  display: grid;
  place-items: center;
  width: 8.5625rem;
  height: 2.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
}
.header__badge a:link, .header__badge a:visited, .header__badge a:active {
  color: #ffffff;
}
.header__badge a {
  letter-spacing: 0.04em;
  line-height: 1;
  background-color: #37b2c1;
  border-radius: 1.25rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .header__badge a {
    width: 5.625rem;
    height: 1.5625rem;
    font-size: 0.875rem;
    background-color: #00b4c3;
    border-radius: 0.8125rem;
  }
}

@media (any-hover: hover) {
  .header__badge a:hover {
    background-color: #7fd4dd;
  }
}
.header__badge a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-left: auto;
}
@media screen and (max-width: 950px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.4375rem;
}

.header__item {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.header__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 600;
  color: #232323;
}
.header__item a:link, .header__item a:visited, .header__item a:active {
  color: #232323;
}
.header__item a {
  letter-spacing: 0.08em;
  line-height: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  .header__item a:hover {
    color: #1c59ba;
  }
}
.header__item a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.875rem;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 18rem;
  margin-left: 3.25rem;
  font-size: 1.1875rem;
  font-weight: 600;
  color: #ffffff;
}
.header__contact:link, .header__contact:visited, .header__contact:active {
  color: #ffffff;
}
.header__contact {
  letter-spacing: 0.08em;
  line-height: 1;
  background-color: #1c59ba;
  position: relative;
  overflow: hidden;
}

.header__contact-icon,
.header__contact-arrow {
  position: relative;
  z-index: 2;
}

.header__contact:focus-visible {
  outline: 2px solid #37b2c1;
  outline-offset: -4px;
}

.header__contact-icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.375rem;
  height: 1.125rem;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon-mail.svg");
          mask-image: url("../images/common/icon-mail.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.header__contact-arrow {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.1875rem;
  height: 0.9375rem;
  background-color: #e8d954;
  -webkit-mask-image: url("../images/common/icon-chevron-double.svg");
          mask-image: url("../images/common/icon-chevron-double.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 950px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 120;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    width: 5rem;
    margin-left: auto;
    background-color: #1c59ba;
    cursor: pointer;
    padding: 0.875rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    -ms-flex-item-align: auto;
        align-self: auto;
    width: 3.125rem;
    height: 3.125rem;
  }
}

.header__hamburger span {
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  background-color: #ffffff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.header__hamburger span + span {
  margin-top: 0.3125rem;
}

.header__hamburger:focus-visible {
  outline: 2px solid #37b2c1;
  outline-offset: -4px;
}

.header__hamburger.is-active span:nth-child(1) {
  -webkit-transform: translateY(0.4375rem) rotate(45deg);
          transform: translateY(0.4375rem) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.header__hamburger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-0.4375rem) rotate(-45deg);
          transform: translateY(-0.4375rem) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 5rem;
  left: 0;
  z-index: 110;
  width: 100%;
  height: calc(100vh - 5rem);
  background-color: rgba(0, 49, 90, 0.77);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer {
    top: 3.125rem;
    height: calc(100vh - 3.125rem);
  }
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .drawer {
    -webkit-transition: none;
    transition: none;
  }
}
.drawer__nav {
  padding-top: 2.4375rem;
  padding-bottom: 2.9375rem;
  padding-inline: 3rem;
  background-color: #f2f2f2;
}

.drawer__list {
  border-top: 1px solid #cccccc;
}

.drawer__item {
  border-bottom: 1px solid #cccccc;
}

.drawer__item a {
  display: block;
  width: 100%;
  padding-block: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
}
.drawer__item a:link, .drawer__item a:visited, .drawer__item a:active {
  color: #1a1a1a;
}
.drawer__item a {
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .drawer__item a {
    font-size: 1.0625rem;
  }
}

.drawer__item a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.drawer__contact {
  width: 100%;
  height: 5rem;
  margin-top: 1.6875rem;
  font-size: 1.1875rem;
}

.footer {
  position: relative;
  z-index: 0;
  width: 100%;
  padding-block: 4.5rem 3.75rem;
  background-color: #1c59ba;
}
@media screen and (min-width: 951px) and (max-width: 1440px) {
  .footer {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 2rem 1.75rem;
  }
}

.footer__inner {
  max-width: 113.125rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (min-width: 951px) and (max-width: 1440px) {
  .footer__inner {
    padding-inline: 3.5rem;
  }
}
@media screen and (max-width: 950px) {
  .footer__inner {
    padding-inline: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-inline: 1.5rem;
  }
}

.footer__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.75rem;
}
@media screen and (max-width: 950px) {
  .footer__upper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
    display: contents;
  }
}

.footer__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 950px) {
  .footer__logo {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    margin-top: 1.75rem;
  }
}

.footer__logo-img {
  display: block;
  width: 20rem;
  height: 3.6875rem;
}
@media screen and (max-width: 950px) {
  .footer__logo-img {
    width: 13.4375rem;
    height: 2.5rem;
  }
}

.footer__logo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer__solution {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 33.9375rem;
  height: 4.25rem;
  font-size: 1.1875rem;
  font-weight: 800;
  color: #1c59ba;
}
.footer__solution:link, .footer__solution:visited, .footer__solution:active {
  color: #1c59ba;
}
.footer__solution {
  letter-spacing: 0.06em;
  line-height: 1.4;
  background-color: #d7f4f9;
  border-radius: 2.125rem;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 950px) {
  .footer__solution {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    gap: 0.1875rem;
    width: 100%;
    max-width: 25rem;
    height: 3.125rem;
    margin-bottom: 1.5rem;
    margin-inline: auto;
    font-size: 0.875rem;
    letter-spacing: 0;
    border-radius: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__solution {
    gap: 0.375rem;
    font-size: 0.8125rem;
    padding-inline: 1rem;
  }
}

@media (any-hover: hover) {
  .footer__solution:hover {
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
    -webkit-box-shadow: 0 0.375rem 0.875rem rgba(9, 48, 87, 0.3);
            box-shadow: 0 0.375rem 0.875rem rgba(9, 48, 87, 0.3);
  }
}
.footer__solution:focus-visible {
  outline: 2px solid #d7f4f9;
  outline-offset: 2px;
}

.footer__solution-arrow {
  display: grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
  width: 1.9375rem;
  height: 1.9375rem;
  background-color: #1c59ba;
  border-radius: 50%;
}
@media screen and (max-width: 950px) {
  .footer__solution-arrow {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.footer__solution-arrow::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: auto;
  aspect-ratio: 8/9;
  -webkit-transform: translateX(0.0625rem);
          transform: translateX(0.0625rem);
  background-color: #e8d954;
  -webkit-mask-image: url("../images/common/icon-arrow-right.svg");
          mask-image: url("../images/common/icon-arrow-right.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 950px) {
  .footer__solution-arrow::before {
    width: 0.3125rem;
  }
}

.footer__pagetop-anchor {
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 3.9375rem;
  height: 5.3125rem;
  margin-left: auto;
}
@media screen and (max-width: 950px) {
  .footer__pagetop-anchor {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: 2.75rem;
    height: 3.9375rem;
    margin-top: 1.5rem;
  }
}

.footer__pagetop {
  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: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #d7f4f9;
}
.footer__pagetop:link, .footer__pagetop:visited, .footer__pagetop:active {
  color: #d7f4f9;
}
.footer__pagetop {
  letter-spacing: 0.01em;
  line-height: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 950px) {
  .footer__pagetop {
    font-size: 0.6875rem;
  }
}

@media (any-hover: hover) {
  .footer__pagetop:hover {
    opacity: 0.7;
  }
}
.footer__pagetop:focus-visible {
  outline: 2px solid #d7f4f9;
  outline-offset: 2px;
}

.footer__pagetop-icon {
  display: grid;
  place-items: center;
  width: 3.9375rem;
  height: 3.9375rem;
  background-color: #d7f4f9;
  border-radius: 50%;
}
@media screen and (max-width: 950px) {
  .footer__pagetop-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

.footer__pagetop-icon::before {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 1.0625rem;
  background-color: #1c59ba;
  -webkit-mask-image: url("../images/common/icon-arrow-up.svg");
          mask-image: url("../images/common/icon-arrow-up.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 950px) {
  .footer__pagetop-icon::before {
    width: 0.6875rem;
    height: 0.8125rem;
  }
}

.footer__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  margin-top: 7.25rem;
}
@media screen and (max-width: 950px) {
  .footer__lower {
    display: contents;
  }
}

.footer__address {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 2;
  font-style: normal;
}
@media screen and (max-width: 950px) {
  .footer__address {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__address {
    font-size: 0.8125rem;
    line-height: 1.85;
  }
}

.footer__tel {
  display: inline-block;
  white-space: nowrap;
}
.footer__tel a {
  color: #ffffff;
}
.footer__tel a:link, .footer__tel a:visited, .footer__tel a:active {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .footer__tel a {
    text-decoration: underline;
    text-underline-offset: 0.125rem;
  }
}

.footer__meta {
  text-align: right;
}
@media screen and (max-width: 950px) {
  .footer__meta {
    display: contents;
  }
}

@media screen and (max-width: 950px) {
  .footer__nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer__list {
  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: flex-end;
  gap: 1.625rem;
}
@media screen and (max-width: 950px) {
  .footer__list {
    -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: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 0.25rem;
  }
}

.footer__item + .footer__item {
  padding-left: 1.625rem;
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 950px) {
  .footer__item + .footer__item {
    padding-left: 0;
    border-left: none;
  }
}

.footer__item a {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
.footer__item a:link, .footer__item a:visited, .footer__item a:active {
  color: #ffffff;
}
.footer__item a {
  letter-spacing: 0.06em;
  line-height: 2;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__item a {
    font-size: 0.875rem;
  }
}

@media (any-hover: hover) {
  .footer__item a:hover {
    opacity: 0.7;
  }
}
.footer__item a:focus-visible {
  outline: 2px solid #d7f4f9;
  outline-offset: 2px;
}

@media screen and (max-width: 950px) {
  .footer__copyright {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    text-align: initial;
  }
}
.footer__copyright {
  margin-top: 0.9375rem;
  color: #75a5ea;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    margin-top: 1rem;
  }
}

.footer__copyright small {
  font-size: 1rem;
  font-weight: 500;
  color: inherit;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .footer__copyright small {
    font-size: 0.6875rem;
  }
}

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

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

.tb-only {
  display: none;
}
@media screen and (max-width: 950px) {
  .tb-only {
    display: block;
  }
}

.l-inner {
  max-width: 1250px;
  margin-inline: auto;
  padding-inline: 25px;
}
@media screen and (max-width: 950px) {
  .l-inner {
    padding-inline: 3%;
  }
}
@media screen and (max-width: 539px) {
  .l-inner {
    padding-inline: 1.25rem;
  }
}

.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  width: 31.25rem;
  height: 6.25rem;
  margin-inline: auto;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  position: relative;
  overflow: hidden;
  border-radius: 3.125rem;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-btn {
    gap: 0.5rem;
    width: 100%;
    max-width: 20.9375rem;
    height: 4rem;
    font-size: 1rem;
    letter-spacing: 0.06em;
    border-radius: 2rem;
  }
}

@media (any-hover: hover) {
  .c-btn:hover,
  .c-btn.is-inview:hover {
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
  }
}
.c-btn:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 3px;
}

.c-btn__icon,
.c-btn__arrow {
  position: relative;
  z-index: 2;
}

.c-btn--primary {
  color: #ffffff;
}
.c-btn--primary:link, .c-btn--primary:visited, .c-btn--primary:active {
  color: #ffffff;
}
.c-btn--primary {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#223699), to(#1c59ba));
  background-image: linear-gradient(to bottom, #223699, #1c59ba);
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(16, 11, 66, 0.25);
          box-shadow: 0 0.25rem 0.625rem rgba(16, 11, 66, 0.25);
}

.c-btn--gold {
  width: 37.625rem;
  height: 7.6875rem;
  font-size: 1.6875rem;
  color: #1a1a1a;
}
.c-btn--gold:link, .c-btn--gold:visited, .c-btn--gold:active {
  color: #1a1a1a;
}
.c-btn--gold {
  background-image: -webkit-gradient(linear, left bottom, left top, from(#ef8e4b), color-stop(40%, #e8c254));
  background-image: linear-gradient(to top, #ef8e4b 0%, #e8c254 40%);
  border-radius: 3.875rem;
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .c-btn--gold {
    width: 100%;
    max-width: 20.9375rem;
    height: 4.375rem;
    font-size: 1.0625rem;
    border-radius: 2.1875rem;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#ef8e4b), color-stop(35.7%, #e8c254));
    background-image: linear-gradient(to top, #ef8e4b 0%, #e8c254 35.7%);
  }
}

.c-btn__icon {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.6875rem;
  height: 1.375rem;
  background-color: currentColor;
  -webkit-mask-image: url("../images/common/icon-mail.svg");
          mask-image: url("../images/common/icon-mail.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-btn__icon {
    width: 1.25rem;
    height: 1rem;
  }
}

.c-btn--gold .c-btn__icon {
  width: 1.875rem;
  height: 1.5625rem;
  background-color: #1c59ba;
}
@media screen and (max-width: 767px) {
  .c-btn--gold .c-btn__icon {
    width: 1.375rem;
    height: 1.125rem;
  }
}

.c-btn__arrow {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.9375rem;
  height: 1.5rem;
  background-color: #e8d954;
  -webkit-mask-image: url("../images/common/icon-chevron-double.svg");
          mask-image: url("../images/common/icon-chevron-double.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-btn__arrow {
    width: 1.25rem;
    height: 0.9375rem;
  }
}

.c-btn--gold .c-btn__arrow {
  width: 2.1875rem;
  height: 1.6875rem;
  background-color: #1c59ba;
}
@media screen and (max-width: 767px) {
  .c-btn--gold .c-btn__arrow {
    width: 1.375rem;
    height: 1.0625rem;
  }
}

.drawer__contact.c-btn {
  max-width: none;
  border-radius: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .drawer__contact.c-btn {
    max-width: 20.9375rem;
  }
}

[data-anim] {
  opacity: 0;
  -webkit-transition: opacity 0.45s ease-out, -webkit-transform 0.45s ease-out;
  transition: opacity 0.45s ease-out, -webkit-transform 0.45s ease-out;
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
  transition: opacity 0.45s ease-out, transform 0.45s ease-out, -webkit-transform 0.45s ease-out;
}

[data-anim=up] {
  -webkit-transform: translateY(2.5rem);
          transform: translateY(2.5rem);
}

[data-anim=down] {
  -webkit-transform: translateY(-2.5rem);
          transform: translateY(-2.5rem);
}

[data-anim=left] {
  -webkit-transform: translateX(-3.75rem);
          transform: translateX(-3.75rem);
}

[data-anim=right] {
  -webkit-transform: translateX(3.75rem);
          transform: translateX(3.75rem);
}

[data-anim=zoom] {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

[data-anim].is-inview {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

[data-anim].is-anim-done {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.p-reason__arrow[data-anim] {
  -webkit-transform: translateX(-50%) translateY(-2.5rem);
          transform: translateX(-50%) translateY(-2.5rem);
}

.p-reason__arrow[data-anim].is-inview {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
  [data-anim],
  .p-reason__arrow[data-anim] {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
.c-shine {
  position: relative;
  overflow: hidden;
}

.c-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -85%;
  z-index: 1;
  width: 45%;
  height: 100%;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-transition: left 0.7s ease;
  transition: left 0.7s ease;
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-shine:hover::after {
    left: 135%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-shine::after {
    -webkit-transition: none;
    transition: none;
  }
}
/* ------------------------------------------------
card
--------------------------------------------------- */
.c-triangle {
  position: relative;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: currentColor;
  border-top-left-radius: 30%;
  -webkit-transform: rotate(120deg) skewY(30deg) scaleX(0.86666);
          transform: rotate(120deg) skewY(30deg) scaleX(0.86666);
}

.c-triangle::before,
.c-triangle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: currentColor;
}

.c-triangle::before {
  border-top-right-radius: 30%;
  -webkit-transform: skewX(-45deg) translateX(50%);
          transform: skewX(-45deg) translateX(50%);
}

.c-triangle::after {
  border-bottom-left-radius: 30%;
  -webkit-transform: skewY(-45deg) translateY(50%);
          transform: skewY(-45deg) translateY(50%);
}

.c-breadcrumb {
  padding-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding-top: 0.625rem;
  }
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 0.875rem;
     -moz-column-gap: 0.875rem;
          column-gap: 0.875rem;
}

.c-breadcrumb__item:last-child,
.c-breadcrumb__list > li:last-child {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}

.c-breadcrumb__item,
.c-breadcrumb__list > li {
  font-size: 0.75rem;
  font-weight: 500;
  color: #808080;
  line-height: 2.282;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item,
  .c-breadcrumb__list > li {
    letter-spacing: 0.04em;
  }
}

.c-breadcrumb__item a,
.c-breadcrumb__list > li a {
  color: #1c59ba;
}
.c-breadcrumb__item a:link, .c-breadcrumb__item a:visited, .c-breadcrumb__item a:active,
.c-breadcrumb__list > li a:link,
.c-breadcrumb__list > li a:visited,
.c-breadcrumb__list > li a:active {
  color: #1c59ba;
}

.c-breadcrumb__item + .c-breadcrumb__item::before,
.c-breadcrumb__list > li + li::before {
  content: "";
  display: inline-block;
  width: 0.25rem;
  height: 0.4375rem;
  margin-inline: 0 0.9375rem;
  vertical-align: middle;
  background-color: #1c59ba;
  -webkit-mask-image: url("../images/common/icon-breadcrumb.svg");
          mask-image: url("../images/common/icon-breadcrumb.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item + .c-breadcrumb__item::before,
  .c-breadcrumb__list > li + li::before {
    margin-inline: 0 0.6875rem;
  }
}

@media (any-hover: hover) {
  .c-breadcrumb__item a:hover,
  .c-breadcrumb__list > li a:hover {
    text-decoration: underline;
  }
}
.c-breadcrumb__item a:focus-visible,
.c-breadcrumb__list > li a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.c-page-title {
  display: block;
}

.c-page-title__en {
  margin-top: 2.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  color: #1c59ba;
  line-height: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .c-page-title__en {
    font-size: 3.4375rem;
  }
}

.c-page-title__ja {
  margin-top: 1.125rem;
  font-size: 1.5625rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.07em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .c-page-title__ja {
    margin-top: 0.5rem;
    font-size: 1.0625rem;
  }
}

.c-page-title--center {
  text-align: center;
}

.p-hero-bg {
  position: relative;
  z-index: 0;
}

.p-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/bg/bg-dots-pc.jpg");
  background-repeat: repeat-y;
  background-attachment: fixed;
  background-position: center top;
  background-size: 100% auto;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-hero-bg::before {
    background-image: url("../images/bg/bg-dots-sp.jpg");
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.p-fv {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.p-fv__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  max-width: 1920px;
  height: 1000px;
  margin-inline: auto;
  pointer-events: none;
}
@media screen and (min-width: 1920px) {
  .p-fv__bg {
    max-width: none;
    clip-path: inset(0 -100vw 19px -100vw);
  }
}
@media screen and (min-width: 2600px) {
  .p-fv__bg {
    max-width: 2600px;
  }
}
@media screen and (max-width: 1199px) {
  .p-fv__bg {
    height: 83.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__bg {
    height: 129.3333333333vw;
  }
}

.p-fv__bg-left {
  display: block;
  position: absolute;
  top: -32px;
  left: calc(max(25px, 50% - 600px) - 1202.5px);
  z-index: 10;
  width: 1470px;
  height: 1003.5px;
  background-image: url("../images/fv/fv-bg-left-pc.png?ver=20260904");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
}
@media screen and (min-width: 1920px) {
  .p-fv__bg-left {
    top: -1.6666666667vw;
    left: -43.8802083333vw;
    width: 76.5625vw;
    height: 52.265625vw;
  }
}
@media screen and (min-width: 2600px) {
  .p-fv__bg-left {
    top: -43.3333333333px;
    left: -1140.8854166667px;
    width: 1990.625px;
    height: 1358.90625px;
  }
}
@media screen and (max-width: 1199px) {
  .p-fv__bg-left {
    top: -2.6666666667vw;
    left: -89.0833333333vw;
    width: 122.5vw;
    height: 83.625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__bg-left {
    top: 0;
    left: 0;
    width: 44.6666666667vw;
    height: 129.3333333333vw;
    background-image: url("../images/fv/fv-bg-left-sp.png");
    background-position: left top;
    background-size: 100% 100%;
  }
}

.p-fv__bg-right {
  display: block;
  position: absolute;
  top: -32px;
  left: calc(max(25px, 50% - 600px) + 324.5px);
  right: auto;
  z-index: 10;
  width: 1988px;
  height: 1000.5px;
  background-image: url("../images/fv/fv-bg-right-pc.png?ver=20260904");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
}
@media screen and (min-width: 1920px) {
  .p-fv__bg-right {
    top: -1.6666666667vw;
    left: 35.6510416667vw;
    width: 103.5416666667vw;
    height: 52.109375vw;
  }
}
@media screen and (min-width: 2600px) {
  .p-fv__bg-right {
    top: -43.3333333333px;
    left: 926.9270833333px;
    width: 2692.0833333333px;
    height: 1354.84375px;
  }
}
@media screen and (max-width: 1199px) {
  .p-fv__bg-right {
    top: -2.6666666667vw;
    left: 25vw;
    width: 165.6666666667vw;
    height: 83.375vw;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__bg-right {
    top: 0;
    left: auto;
    right: 0;
    width: 70.2666666667vw;
    height: 129.3333333333vw;
    background-image: url("../images/fv/fv-bg-right-sp.png");
    background-position: right top;
    background-size: 100% 100%;
  }
}

.p-fv__bg-img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 20;
  width: calc(100% - max(25px, 50% - 600px) - 361px);
  height: 1000px;
  background-image: url("../images/fv/fv-bg-img-pc.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: auto 100%;
}
@media screen and (min-width: 1920px) {
  .p-fv__bg-img {
    right: auto;
    left: 37.5520833333vw;
    width: 62.4479166667vw;
    height: 52.109375vw;
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 2600px) {
  .p-fv__bg-img {
    right: auto;
    left: 976.3541666667px;
    width: 1623.6458333333px;
    height: 1354.84375px;
    background-size: 100% 100%;
  }
}
@media screen and (max-width: 1199px) {
  .p-fv__bg-img {
    width: 67.8333333333%;
    height: 83.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__bg-img {
    width: 68.4vw;
    height: 72.1333333333vw;
    background-image: url("../images/fv/fv-bg-img-sp.png");
    background-position: right top;
    background-size: 100% 100%;
  }
}

.p-fv__body {
  position: relative;
  z-index: 30;
  padding-top: min(144px, 7.5vw);
  padding-bottom: min(80px, 4.1666666667vw);
}
@media screen and (max-width: 767px) {
  .p-fv__body {
    padding-top: 6.4vw;
    padding-bottom: 4.8vw;
  }
}

@media screen and (max-width: 767px) {
  .p-fv__catch {
    padding-left: 4.8vw;
  }
}

.p-fv__lead {
  font-size: clamp(31.6666666667px, 3.3333333333vw, 40px);
  font-weight: 700;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-fv__lead {
    font-size: 4.8vw;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.04em;
    line-height: 1.444;
    text-shadow: 0 0 1.6vw #ffffff, 0 0 1.6vw #ffffff, 0 0 2.6666666667vw #ffffff;
  }
}

.p-fv__title {
  margin-top: clamp(14.25px, 1.5vw, 18px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(69.6666666667px, 7.3333333333vw, 88px);
  font-weight: 900;
  color: #1c59ba;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 950px) {
  .p-fv__title {
    font-size: clamp(58.5833333333px, 6.1666666667vw, 74px);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    background-image: linear-gradient(265.3141deg, #37b2c1 0%, #1c59ba 20%);
    margin-top: 3.7333333333vw;
    font-size: 8vw;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.233;
  }
}

.p-fv__title-en {
  margin-right: 0.18em;
}
@media screen and (max-width: 767px) {
  .p-fv__title-en {
    margin-right: 0.12em;
  }
}

.p-fv__sub {
  margin-top: clamp(19px, 2vw, 24px);
  font-size: clamp(23.9875px, 2.525vw, 30.3px);
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.03em;
  line-height: 1.627;
}
@media screen and (max-width: 767px) {
  .p-fv__sub {
    margin-top: 2.9333333333vw;
    font-size: 4.3893333333vw;
    text-shadow: 0 0 1.6vw #ffffff, 0 0 1.6vw #ffffff, 0 0 2.6666666667vw #ffffff;
  }
}

.p-fv__btn {
  gap: clamp(19px, 2vw, 24px);
  width: clamp(395.8333333333px, 41.6666666667vw, 500px);
  max-width: none;
  height: clamp(79.1666666667px, 8.3333333333vw, 100px);
  margin-top: clamp(23.75px, 2.5vw, 30px);
  margin-inline: 0;
  font-size: clamp(19px, 2vw, 24px);
  border-radius: clamp(39.5833333333px, 4.1666666667vw, 50px);
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    gap: 3.7333333333vw;
    width: 80vw;
    height: 15.4666666667vw;
    margin-top: 4.8vw;
    margin-inline: auto;
    font-size: 4.2666666667vw;
    border-radius: 7.7333333333vw;
  }
}

.p-fv__btn .c-btn__icon {
  width: clamp(21.375px, 2.25vw, 27px);
  height: clamp(17.4166666667px, 1.8333333333vw, 22px);
}
@media screen and (max-width: 767px) {
  .p-fv__btn .c-btn__icon {
    width: 5.3333333333vw;
    height: 4.2666666667vw;
  }
}

.p-fv__btn .c-btn__arrow {
  width: clamp(24.5416666667px, 2.5833333333vw, 31px);
  height: clamp(19px, 2vw, 24px);
}
@media screen and (max-width: 767px) {
  .p-fv__btn .c-btn__arrow {
    width: 5.3333333333vw;
    height: 4vw;
  }
}

.p-fv__features {
  position: relative;
  z-index: 30;
}

.p-fv__feature-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 2.0625rem;
  background-image: linear-gradient(120deg, rgba(55, 178, 193, 0.79), rgba(28, 89, 186, 0.79));
  border-radius: 0.625rem;
}
@media screen and (max-width: 950px) {
  .p-fv__feature-list {
    grid-template-columns: repeat(2, minmax(min(280px, 100%), 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-fv__feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
    padding: 1.25rem 0.75rem;
  }
}
@media screen and (max-width: 539px) {
  .p-fv__feature-list {
    padding: 0.75rem;
  }
}

.p-fv__feature {
  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;
  padding-block: 1.4375rem 1.25rem;
  padding-inline: 0.875rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .p-fv__feature {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__feature {
    padding-block: 1rem 0.875rem;
    padding-inline: 0.5rem;
  }
}

@media screen and (min-width: 1025px) {
  .p-fv__feature--long {
    padding-top: 1.25rem;
  }
}

.p-fv__feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1.611;
}
@media screen and (max-width: 767px) {
  .p-fv__feature-title {
    font-size: 0.9375rem;
    line-height: 1.4;
  }
}

.p-fv__feature-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 6.375rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-fv__feature-icon {
    height: 2.875rem;
    margin-top: 0.25rem;
  }
}

.p-fv__feature--long .p-fv__feature-icon {
  height: 4.75rem;
}
@media screen and (max-width: 767px) {
  .p-fv__feature--long .p-fv__feature-icon {
    height: 2.375rem;
  }
}

.p-fv__feature-icon img {
  width: 5.25rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-fv__feature-icon img {
    width: 2.625rem;
    height: auto;
  }
}

.p-fv__feature-text {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.688;
}
@media screen and (min-width: 1025px) {
  .p-fv__feature-text {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__feature-text {
    margin-top: 0.125rem;
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.p-problem {
  padding-top: 4.625rem;
  padding-bottom: 6.875rem;
}
@media screen and (max-width: 767px) {
  .p-problem {
    padding-top: 1.5rem;
    padding-bottom: 3.125rem;
  }
}

.p-problem__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c59ba;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-problem__title {
    font-size: 1.375rem;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-problem__lead {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.611;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .p-problem__lead {
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
    line-break: strict;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__lead {
    margin-top: 1.125rem;
    padding-inline: 1.0625rem;
    font-size: 0.9375rem;
    font-weight: 500;
  }
}

.p-problem__body {
  position: relative;
  z-index: 0;
  height: 33.25rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 950px) {
  .p-problem__body {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-problem__body {
    margin-top: 1.5rem;
  }
}

.p-problem__image {
  position: absolute;
  top: 15.3125rem;
  left: 50%;
  z-index: 10;
  width: 37.3333333333%;
  height: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  .p-problem__image {
    position: static;
    width: 17.5rem;
    margin-inline: auto;
    -webkit-transform: none;
            transform: none;
  }
}

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

@media screen and (max-width: 950px) {
  .p-problem__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.8125rem;
    margin-top: 1.25rem;
  }
}

.p-problem__item {
  display: grid;
  place-items: center;
  position: absolute;
  z-index: 20;
  width: 27.3333333333%;
  height: 14.8125rem;
  font-size: 1rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.688;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media screen and (max-width: 950px) {
  .p-problem__item {
    position: static;
    width: 18.8125rem;
    height: 8.9375rem;
    padding: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.6;
    background-image: url("../images/problem/bg-cloud-sp.png");
  }
}

@media screen and (min-width: 951px) {
  .p-problem__item--lower-l,
  .p-problem__item--upper-l {
    background-image: url("../images/problem/bg-cloud01.png");
  }
  .p-problem__item--upper-r,
  .p-problem__item--lower-r {
    background-image: url("../images/problem/bg-cloud02.png");
  }
}
.p-problem__item--upper-l {
  top: 0;
  left: 20.6666666667%;
}

.p-problem__item--upper-r {
  top: 0;
  left: 52%;
}

.p-problem__item--lower-l {
  top: 15.1875rem;
  left: 0;
}

.p-problem__item--lower-r {
  top: 15.1875rem;
  left: 72.6666666667%;
}

.p-reason {
  z-index: 1;
  position: relative;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding-bottom: 3.5rem;
  }
}

.p-reason__head {
  position: relative;
  z-index: 1;
  padding-top: 4.625rem;
}
@media screen and (max-width: 767px) {
  .p-reason__head {
    padding-top: 3.125rem;
  }
}

.p-reason__head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 30.375rem;
  background-image: linear-gradient(47deg, #37b2c1, #1c59ba);
  border-radius: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-reason__head::before {
    height: 26.8125rem;
    border-radius: 0.9375rem;
  }
}

.p-reason__arrow {
  display: block;
  position: absolute;
  top: -3.75rem;
  left: 50%;
  z-index: 10;
  width: 11.9375rem;
  height: 7.5rem;
  background-image: url("../images/problem/problem-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason__arrow {
    top: -1.875rem;
    width: 6rem;
    height: 3.75rem;
  }
}

.p-reason__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8d954;
  letter-spacing: 0.04em;
  line-height: 1.575;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .p-reason__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    font-size: 1.4375rem;
    color: #ead72e;
    line-height: 1.478;
  }
}

.p-reason__lead {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 2.188;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reason__lead {
    margin-top: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.625;
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
    line-break: strict;
  }
}

.p-reason__list {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-reason__list {
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
}

.p-reason__item {
  display: grid;
  grid-template-columns: 5.6875rem 12.25rem minmax(0, 1fr);
  grid-template-areas: "num icon body";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 0;
  min-height: 12.9375rem;
  padding-block: 1.875rem;
  padding-inline: 3.75rem;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.22);
          box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.22);
}
@media screen and (max-width: 950px) {
  .p-reason__item {
    padding-inline: 2.25rem;
    grid-template-columns: 4.75rem 10rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item {
    display: block;
    min-height: 0;
    padding-block: 1.75rem;
    padding-inline: 1rem;
  }
}

.p-reason__item::before {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  background-color: #ffffff;
  border-radius: calc(0.625rem - 2px);
}

.p-reason__num {
  grid-area: num;
  font-family: "Roboto", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  color: #37b2c1;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 950px) {
  .p-reason__num {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__num {
    position: absolute;
    top: 1.25rem;
    left: 1.5625rem;
    z-index: 10;
    font-size: 2.125rem;
    text-align: initial;
  }
}

.p-reason__icon {
  display: block;
  grid-area: icon;
  justify-self: center;
  width: 7.25rem;
  height: 6rem;
}
@media screen and (max-width: 950px) {
  .p-reason__icon {
    width: 5.375rem;
    height: 4.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__icon {
    width: 4.125rem;
    height: 3.5rem;
    margin-inline: auto;
  }
}

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

.p-reason__body {
  grid-area: body;
  max-width: 47.75rem;
}
@media screen and (max-width: 767px) {
  .p-reason__body {
    margin-top: 0.875rem;
  }
}

.p-reason__item-title {
  font-size: 1.6875rem;
  font-weight: 600;
  color: #1c59ba;
  letter-spacing: 0.07em;
  line-height: 1.5;
}
@media screen and (max-width: 950px) {
  .p-reason__item-title {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__item-title {
    font-size: 1.0625rem;
    text-align: center;
  }
}

.p-reason__text {
  margin-top: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 2.062;
}
@media screen and (max-width: 767px) {
  .p-reason__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-reason__item--long .p-reason__text {
  padding-bottom: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-reason__item--long .p-reason__text {
    padding-bottom: 0.25rem;
  }
}

.p-reason__result {
  display: grid;
  grid-template-columns: 19.5625rem minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 11.5625rem;
  margin-top: 3.9375rem;
  padding-block: 1.875rem;
  padding-inline: 2.25rem;
  background-color: rgba(232, 217, 84, 0.29);
}
@media screen and (max-width: 950px) {
  .p-reason__result {
    grid-template-columns: 15rem minmax(0, 1fr);
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__result {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    margin-top: 1.75rem;
    padding: 1.25rem;
  }
}

.p-reason__result-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c59ba;
  letter-spacing: 0.04em;
  line-height: 1.792;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-reason__result-title {
    font-size: 1.0625rem;
  }
}

.p-reason__result-text {
  padding-left: 3.9375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 2.188;
  border-left: 1px solid #1c59ba;
}
@media screen and (max-width: 950px) {
  .p-reason__result-text {
    padding-left: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__result-text {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    padding-left: 0;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.8;
    border-left: none;
    border-top: 1px solid #1c59ba;
  }
}

.p-reason__result-text p {
  max-width: 45rem;
}

.p-plan {
  padding-block: 6.875rem 5.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan {
    padding-block: 2.375rem 2.625rem;
  }
}

.p-plan__title {
  display: grid;
  place-items: center;
  width: 28.8125rem;
  height: 5.3125rem;
  margin-inline: auto;
  font-size: 1.875rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
  background-image: linear-gradient(47deg, #37b2c1, #1c59ba);
  border-radius: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-plan__title {
    width: 18.75rem;
    height: 2.875rem;
    font-size: 1.1875rem;
    border-radius: 1.4375rem;
  }
}

.p-plan__lead {
  margin-top: 2.875rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.611;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__lead {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}
@media screen and (max-width: 539px) {
  .p-plan__lead {
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
    line-break: strict;
  }
}

.p-plan__lead-strong {
  position: relative;
  z-index: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1rem;
  margin-inline: auto;
  padding-inline: 3.875rem 3.125rem;
  font-size: 1.4375rem;
  font-weight: 700;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1.739;
  text-align: center;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-plan__lead-strong {
    padding-inline: 2.125rem;
    font-size: 1rem;
    letter-spacing: 0.01em;
  }
}

.p-plan__lead-strong::before,
.p-plan__lead-strong::after {
  content: "";
  position: absolute;
  top: 35%;
  width: 2.5625rem;
  height: 2.8125rem;
  background-image: url("../images/common/speech-bubble.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-plan__lead-strong::before,
  .p-plan__lead-strong::after {
    width: 1.375rem;
    height: 1.5rem;
  }
}

.p-plan__lead-strong::before {
  left: 0;
}

.p-plan__lead-strong::after {
  right: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
          transform: translateY(-50%) scaleX(-1);
}

.p-plan__block {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 87.5rem;
  margin-top: 3.125rem;
  margin-inline: auto;
  padding-block: 3.625rem 3.75rem;
  background-color: #e6fcfa;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__block {
    margin-top: 1.625rem;
    padding-block: 1.5rem;
    border-radius: 0.8125rem;
  }
}

.p-plan__block.p-plan__block--second {
  background-color: #e7f0fb;
}

.p-plan__block-inner {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-plan__block-inner {
    padding-inline: 1rem;
  }
}

.p-plan__block-wrap {
  padding-inline: 0 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.9375rem;
}
@media screen and (max-width: 950px) {
  .p-plan__block-wrap {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__block-wrap {
    padding-inline: 1rem;
    -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: 1rem;
  }
}

.p-plan__block-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .p-plan__block-body {
    width: 100%;
  }
}

.p-plan__title-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__title-row {
    -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: 0.875rem;
  }
}

.p-plan__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10rem;
  height: 3.0625rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: linear-gradient(47deg, #37b2c1, #1c59ba);
}
@media screen and (max-width: 767px) {
  .p-plan__label {
    gap: 0.25rem;
    width: 5.625rem;
    height: 1.5625rem;
    margin-inline: auto;
  }
}

.p-plan__label-en {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-plan__label-en {
    font-size: 0.625rem;
  }
}

.p-plan__label-num {
  font-family: "Roboto", sans-serif;
  font-size: 2.0625rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-plan__label-num {
    font-size: 1.25rem;
  }
}

.p-plan__block-title {
  font-size: 1.6875rem;
  font-weight: 700;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-plan__block-title {
    position: relative;
    z-index: 0;
    width: 100%;
    padding-bottom: 0.875rem;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .p-plan__block-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
    background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  }
}

.p-plan__tag {
  display: inline-grid;
  place-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 2.75rem;
  padding-inline: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1;
  background-color: #ef8e4b;
  border-radius: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__tag {
    height: 2rem;
    margin-left: 0;
    padding-inline: 1rem;
    font-size: 0.875rem;
    border-radius: 1rem;
  }
}

.p-plan__block-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 2.125;
}
@media screen and (max-width: 767px) {
  .p-plan__block-text {
    margin-top: 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.867;
  }
}

.p-plan__block--custom .p-plan__block-text {
  margin-left: 0;
}

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

.p-plan__card {
  background-color: #ffffff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.18);
          box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.18);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-plan__card {
    border-radius: 0.375rem;
  }
}

.p-plan__card-title {
  display: grid;
  place-items: center;
  height: 4.75rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-plan__card-title {
    height: 3rem;
    font-size: 1.0625rem;
  }
}

.p-plan__card--entry .p-plan__card-title {
  background-color: #37b2c1;
}

.p-plan__card--practice .p-plan__card-title {
  background-color: #1c59ba;
}

.p-plan__detail {
  padding-inline: 2.25rem;
  padding-top: 2.1875rem;
}
@media screen and (max-width: 950px) {
  .p-plan__detail {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__detail {
    padding-inline: 1rem;
    padding-top: 1.25rem;
  }
}

.p-plan__detail-label {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
  height: 2.1875rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(233, 253, 255, 0)), color-stop(9%, rgba(233, 253, 255, 0.8)), color-stop(50%, #e9fdff), color-stop(90%, rgba(233, 253, 255, 0.8)), to(rgba(233, 253, 255, 0)));
  background-image: linear-gradient(to right, rgba(233, 253, 255, 0) 0%, rgba(233, 253, 255, 0.8) 9%, #e9fdff 50%, rgba(233, 253, 255, 0.8) 90%, rgba(233, 253, 255, 0) 100%);
}
@media screen and (max-width: 767px) {
  .p-plan__detail-label {
    height: 1.875rem;
    font-size: 0.875rem;
  }
}

.p-plan__card--practice .p-plan__detail-label {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(231, 240, 251, 0)), color-stop(9%, rgba(231, 240, 251, 0.8)), color-stop(50%, #e7f0fb), color-stop(90%, rgba(231, 240, 251, 0.8)), to(rgba(231, 240, 251, 0)));
  background-image: linear-gradient(to right, rgba(231, 240, 251, 0) 0%, rgba(231, 240, 251, 0.8) 9%, #e7f0fb 50%, rgba(231, 240, 251, 0.8) 90%, rgba(231, 240, 251, 0) 100%);
}

.p-plan__detail-label::before,
.p-plan__detail-label::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1c59ba;
}

.p-plan__detail-label::before {
  top: 0;
}

.p-plan__detail-label::after {
  bottom: 0;
}

.p-plan__detail-label + .p-plan__detail-body {
  margin-top: 1.125rem;
}
@media screen and (max-width: 767px) {
  .p-plan__detail-label + .p-plan__detail-body {
    margin-top: 0.75rem;
  }
}

.p-plan__detail-body {
  min-height: 3.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.04em;
  line-height: 1.688;
}
@media screen and (max-width: 767px) {
  .p-plan__detail-body {
    min-height: 0;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }
}

.p-plan__detail-body + .p-plan__detail-label {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-plan__detail-body + .p-plan__detail-label {
    margin-top: 0.5rem;
  }
}

.p-plan__points {
  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;
}

.p-plan__points li {
  position: relative;
  padding-left: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-plan__points li {
    padding-left: 1.125rem;
  }
}

.p-plan__marker {
  position: absolute;
  top: 0.625rem;
  left: 0.1625rem;
  color: #37b2c1;
}
@media screen and (max-width: 767px) {
  .p-plan__marker {
    top: 0.55rem;
    left: 0.1375rem;
    width: 0.375rem;
    height: 0.375rem;
  }
}

.p-plan__card--practice .p-plan__marker {
  color: #223699;
}

.p-plan__spec {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-inline: 2.25rem;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 950px) {
  .p-plan__spec {
    padding-inline: 1.5rem;
    grid-template-columns: minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-plan__spec {
    gap: 0.375rem;
    margin-top: 0.875rem;
    padding-inline: 1rem;
    padding-bottom: 1.5rem;
  }
}

.p-plan__spec li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 2.5rem;
  padding: 0.375rem 0.25rem 0.5625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.688;
  text-align: center;
  border-radius: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-plan__spec li {
    min-height: 2.25rem;
    font-size: 0.875rem;
  }
}

.p-plan__card--entry .p-plan__spec li {
  background-color: #37b2c1;
}

.p-plan__card--practice .p-plan__spec li {
  background-color: #1c59ba;
}

.p-plan__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

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

.p-plan__note {
  display: grid;
  grid-template-columns: 16.25rem minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3rem;
  padding: 2.25rem;
  background-image: linear-gradient(47deg, #37b2c1, #1c59ba);
}
@media screen and (max-width: 950px) {
  .p-plan__note {
    grid-template-columns: 15rem minmax(0, 1fr);
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__note {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1.5rem;
    padding: 1.25rem;
  }
}

.p-plan__note-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__note-title {
    font-size: 0.9375rem;
    letter-spacing: 0.07em;
  }
}

.p-plan__note-body {
  padding-left: 2.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.9;
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 950px) {
  .p-plan__note-body {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-plan__note-body {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    padding-left: 0;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.73;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
  }
}

@media screen and (max-width: 767px) {
  .p-plan__note-body p:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}

.p-plan__note-lists {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-plan__note-lists {
    margin-top: 0.5rem;
  }
}

.p-plan__note-list {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-column-gap: 0.75rem;
     -moz-column-gap: 0.75rem;
          column-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-plan__note-list {
    display: block;
  }
}

.p-plan__note-list dt {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-plan__note-list dt {
    white-space: nowrap;
  }
}

@media screen and (max-width: 767px) {
  .p-plan__note-list dt,
  .p-plan__note-list dd {
    display: inline;
  }
}

.p-plan__outro {
  margin-top: 3.75rem;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-plan__outro {
    margin-top: 1.75rem;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.647;
  }
}

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

.p-flow {
  padding-block: 5.8125rem 7.5rem;
  background-image: url("../images/bg/bg-diagonal-pc.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-block: 3rem 3.5rem;
    background-image: url("../images/bg/bg-diagonal-sp.jpg");
  }
}

.p-flow__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 1.4375rem;
    letter-spacing: 0.04em;
  }
}

.p-flow__lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.611;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}

.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.75rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__list {
    gap: 2.75rem;
    margin-top: 1.75rem;
  }
}

.p-flow__item {
  display: grid;
  grid-template-columns: 18.5625rem minmax(0, 1fr);
  grid-template-areas: "head body";
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 7.5rem;
  background-color: #ffffff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.18);
          box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.18);
}
@media screen and (max-width: 950px) {
  .p-flow__item {
    grid-template-columns: 16.25rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    display: block;
    min-height: 0;
    border-radius: 0.375rem;
  }
}

.p-flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -3.5625rem;
  left: 50%;
  width: 3.625rem;
  height: 2.3125rem;
  background-image: url("../images/flow/icon-flow-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-flow__item:not(:last-child)::after {
    bottom: -2.0625rem;
    width: 2.125rem;
    height: 1.375rem;
  }
}

.p-flow__head {
  display: grid;
  grid-template-columns: 6.5625rem minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-area: head;
  align-self: stretch;
}
@media screen and (max-width: 950px) {
  .p-flow__head {
    grid-template-columns: 5.625rem minmax(0, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #1c59ba;
    border-radius: 0.375rem 0.375rem 0 0;
  }
}

.p-flow__num {
  display: grid;
  place-items: center;
  align-self: stretch;
  font-family: "Roboto", sans-serif;
  font-size: 2.0625rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1;
  background-color: #1c59ba;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media screen and (max-width: 950px) {
  .p-flow__num {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__num {
    padding-block: 0.625rem;
    font-size: 1.25rem;
    border-radius: 0;
  }
}

.p-flow__item-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__item-title {
    padding-left: 0.75rem;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #ffffff;
  }
}

.p-flow__text {
  grid-area: body;
  padding-block: 0.875rem;
  padding-right: 2.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.938;
}
@media screen and (max-width: 950px) {
  .p-flow__text {
    padding-right: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    padding: 0.9375rem 1rem 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
    background-color: #ffffff;
    border-radius: 0 0 0.375rem 0.375rem;
  }
}

.p-faq {
  padding-block: 6.875rem 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-block: 3rem 1.75rem;
  }
}

.p-faq__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1c59ba;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.4375rem;
  }
}

.p-faq__lead {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.611;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-faq__lead {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    letter-spacing: 0.04em;
  }
}

.p-faq__list {
  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.375rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    gap: 0.875rem;
    margin-top: 1.5rem;
  }
}

.p-faq__q {
  display: grid;
  grid-template-columns: 3.125rem minmax(0, 1fr) 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 3.75rem;
  border-radius: 0.1875rem;
  padding-block: 1.125rem;
  padding-inline: 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.6;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  cursor: pointer;
  list-style: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    padding-block: 0.625rem;
    grid-template-columns: 1.75rem minmax(0, 1fr) 1.5rem;
    min-height: 3.25rem;
    border-radius: 0.125rem;
    padding-inline: 0.75rem;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
  }
}

.p-faq__q::-webkit-details-marker {
  display: none;
}

@media (any-hover: hover) {
  .p-faq__q:hover {
    opacity: 0.85;
  }
}
.p-faq__q:focus-visible {
  outline: 2px solid #223699;
  outline-offset: 2px;
}

.p-faq__mark {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8d954;
  line-height: 1.6;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-faq__mark {
    font-size: 1rem;
  }
}

.p-faq__icon {
  position: relative;
  justify-self: end;
  width: 1.25rem;
  height: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__icon {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.p-faq__icon::before,
.p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-faq__icon::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-faq__item[open] .p-faq__icon::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.p-faq__a-wrap {
  background-color: #ffffff;
  overflow: hidden;
}

.p-faq__a {
  display: grid;
  grid-template-columns: 3.125rem minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-block: 1.375rem 0.625rem;
  padding-inline: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    padding-block: 0.875rem 0.125rem;
    padding-inline: 0.75rem;
  }
}

.p-faq__a .p-faq__mark {
  color: #1c59ba;
}

.p-faq__a-text {
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.938;
}
@media screen and (max-width: 767px) {
  .p-faq__a-text {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
  }
}

.p-related {
  padding-block: 6.0625rem 6.875rem;
  background-color: #e7f0fb;
}
@media screen and (max-width: 767px) {
  .p-related {
    padding-block: 2.25rem 2.625rem;
  }
}

.p-related__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.25rem;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-related__title {
    gap: 0.625rem;
    font-size: 1.3125rem;
    letter-spacing: 0.04em;
  }
}

.p-related__title::before,
.p-related__title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: auto;
  height: 1px;
  background-color: #1c59ba;
}
@media screen and (max-width: 767px) {
  .p-related__title::before,
  .p-related__title::after {
    display: none;
  }
}

.p-related__title-text {
  white-space: nowrap;
}

.p-related__title-mark {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.875rem;
  height: 2.0625rem;
  background-color: #1c59ba;
  -webkit-mask-image: url("../images/common/speech-bubble.svg");
          mask-image: url("../images/common/speech-bubble.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .p-related__title-mark {
    width: 1.125rem;
    height: 1.25rem;
  }
}

.p-related__title-mark:last-child {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.p-related__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  margin-top: 4.75rem;
}
@media screen and (max-width: 950px) {
  .p-related__cards {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-related__cards {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    margin-top: 1.375rem;
  }
}

.p-related__card {
  background-color: #ffffff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.18);
          box-shadow: 0 0 0.75rem rgba(28, 89, 186, 0.18);
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-related__card {
    border-radius: 0.375rem;
  }
}

.p-related__card-title {
  display: grid;
  place-items: center;
  height: 4.75rem;
  padding-inline: 1rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-related__card-title {
    height: auto;
    min-height: 3rem;
    padding-block: 0.625rem;
    padding-inline: 0.375rem;
    font-size: 1rem;
    letter-spacing: 0.04em;
  }
}

.p-related__card--it .p-related__card-title {
  background-color: #6680d3;
}

.p-related__card--security .p-related__card-title {
  background-color: #ef8e4b;
}
@media screen and (max-width: 767px) {
  .p-related__card--security .p-related__card-title {
    letter-spacing: 0;
  }
}

.p-related__card-body {
  padding-top: 2rem;
  padding-inline: 2.25rem;
  padding-bottom: 2.25rem;
}
@media screen and (max-width: 950px) {
  .p-related__card-body {
    padding-inline: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-related__card-body {
    padding-top: 1.25rem;
    padding-inline: 1rem;
    padding-bottom: 1.25rem;
  }
}

.p-related__catch {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.778;
}
@media screen and (max-width: 950px) {
  .p-related__catch {
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .p-related__catch {
    font-size: 1.0625rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.02em;
  }
}

.p-related__card--it .p-related__catch {
  color: #6680d3;
}

.p-related__card--security .p-related__catch {
  color: #ef8e4b;
}
@media screen and (max-width: 767px) {
  .p-related__card--security .p-related__catch {
    font-size: 1rem;
    letter-spacing: 0.016em;
  }
}

.p-related__text {
  margin-top: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.064em;
  line-height: 1.688;
}
@media screen and (max-width: 767px) {
  .p-related__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }
}

.p-related__sub-title {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 0;
  height: 2.1875rem;
  margin-top: 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #1c59ba;
  letter-spacing: 0.06em;
  line-height: 1;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(231, 240, 251, 0)), color-stop(9%, rgba(231, 240, 251, 0.8)), color-stop(50%, #e7f0fb), color-stop(90%, rgba(231, 240, 251, 0.8)), to(rgba(231, 240, 251, 0)));
  background-image: linear-gradient(to right, rgba(231, 240, 251, 0) 0%, rgba(231, 240, 251, 0.8) 9%, #e7f0fb 50%, rgba(231, 240, 251, 0.8) 90%, rgba(231, 240, 251, 0) 100%);
}
@media screen and (max-width: 767px) {
  .p-related__sub-title {
    height: 1.875rem;
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.p-related__card--it .p-related__sub-title {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(231, 240, 251, 0)), color-stop(9%, rgba(231, 240, 251, 0.8)), color-stop(50%, #e7f0fb), color-stop(90%, rgba(231, 240, 251, 0.8)), to(rgba(231, 240, 251, 0)));
  background-image: linear-gradient(to right, rgba(231, 240, 251, 0) 0%, rgba(231, 240, 251, 0.8) 9%, #e7f0fb 50%, rgba(231, 240, 251, 0.8) 90%, rgba(231, 240, 251, 0) 100%);
}

.p-related__card--security .p-related__sub-title {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 237, 225, 0)), color-stop(9%, rgba(255, 237, 225, 0.8)), color-stop(50%, #ffede1), color-stop(90%, rgba(255, 237, 225, 0.8)), to(rgba(255, 237, 225, 0)));
  background-image: linear-gradient(to right, rgba(255, 237, 225, 0) 0%, rgba(255, 237, 225, 0.8) 9%, #ffede1 50%, rgba(255, 237, 225, 0.8) 90%, rgba(255, 237, 225, 0) 100%);
}

.p-related__sub-title::before,
.p-related__sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1c59ba;
}

.p-related__sub-title::before {
  top: 0;
}

.p-related__sub-title::after {
  bottom: 0;
}

.p-related__steps {
  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.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-related__steps {
    gap: 0.625rem;
    margin-top: 1.25rem;
  }
}

.p-related__steps li {
  display: grid;
  grid-template-columns: 4.6875rem minmax(0, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 950px) {
  .p-related__steps li {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.375rem;
  }
}

.p-related__step-label {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 3.875rem;
  height: 1.125rem;
  margin-top: 0.28125rem;
  border-radius: 0.625rem;
  padding-inline: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 950px) {
  .p-related__step-label {
    width: 100%;
    min-width: 0;
    height: 1.375rem;
    margin-top: 0;
    border-radius: 0.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-related__step-label {
    font-size: 0.75rem;
  }
}

.p-related__step-text {
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.03em;
  line-height: 1.688;
}
@media screen and (max-width: 767px) {
  .p-related__step-text {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }
}

.p-related__card--it .p-related__step-label {
  color: #6680d3;
  border: 1px solid #6680d3;
}

.p-related__card--security .p-related__step-label {
  color: #ef8e4b;
  border: 1px solid #ef8e4b;
}

.p-related__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 1.125rem;
}
@media screen and (max-width: 950px) {
  .p-related__spec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-related__spec {
    margin-top: 0.8125rem;
  }
}

.p-related__spec li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-height: 2.5rem;
  padding: 0.375rem 0.875rem 0.5625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  line-height: 1.688;
  text-align: center;
  border-radius: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-related__spec li {
    min-height: 2.125rem;
    padding-inline: 0.625rem;
    font-size: 0.875rem;
  }
}

.p-related__card--it .p-related__spec li {
  background-color: #6680d3;
}

.p-related__card--it .p-related__spec li:nth-child(1) {
  max-width: 22.875rem;
}
@media screen and (max-width: 950px) {
  .p-related__card--it .p-related__spec li:nth-child(1) {
    max-width: 100%;
  }
}

.p-related__card--security .p-related__spec li {
  background-color: #ef8e4b;
  min-width: 15rem;
}

.p-related__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

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

.p-related__outro {
  margin-top: 4.25rem;
  font-size: 1.3125rem;
  font-weight: 600;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-related__outro {
    margin-top: 1.75rem;
    padding-inline: 1.0625rem;
    font-size: 1.0625rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.647;
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
    line-break: strict;
  }
}

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

.p-cta {
  position: relative;
  z-index: 0;
  padding-block: 6.1875rem 7.1875rem;
  background-image: url("../images/cta/cta-bg-pc.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-cta {
    background-image: url("../images/cta/cta-bg-sp.jpg");
    padding-block: 2.375rem 2.875rem;
  }
}

.p-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(9, 48, 87, 0.67);
  mix-blend-mode: multiply;
}

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

.p-cta__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e8d954;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.1875rem;
    text-align: initial;
  }
}

.p-cta__texts {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-cta__texts {
    margin-top: 0.875rem;
    padding-inline: 0.125rem;
  }
}

.p-cta__text {
  font-size: 1.1875rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 2.105;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__text {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
    line-break: strict;
  }
}

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

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

.p-cta__note {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cta__note {
    margin-top: 1.375rem;
    font-size: 0.875rem;
    line-height: 1.57;
  }
}

.p-column {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-column {
    padding-bottom: 4.25rem;
  }
}

.p-column__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.4375rem;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-column__tabs {
    gap: 0.6875rem;
    margin-top: 1.625rem;
  }
}

.p-column__tab-link {
  display: grid;
  place-items: center;
  min-width: 6.25rem;
  height: 1.9375rem;
  padding-inline: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1c59ba;
}
.p-column__tab-link:link, .p-column__tab-link:visited, .p-column__tab-link:active {
  color: #1c59ba;
}
.p-column__tab-link {
  letter-spacing: 0.04em;
  line-height: 1;
  background-color: #ffffff;
  border: 1px solid #1c59ba;
  border-radius: 1rem;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-column__tab-link {
    min-width: 5rem;
    height: 1.375rem;
    padding-inline: 0.75rem;
    font-size: 0.75rem;
    border-radius: 0.6875rem;
  }
}

.p-column__tab-link.is-current {
  color: #ffffff;
}
.p-column__tab-link.is-current:link, .p-column__tab-link.is-current:visited, .p-column__tab-link.is-current:active {
  color: #ffffff;
}
.p-column__tab-link.is-current {
  background-color: #1c59ba;
}

@media (any-hover: hover) {
  .p-column__tab-link:hover {
    color: #ffffff;
    background-color: #1c59ba;
  }
}
.p-column__tab-link:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 3px;
}

.p-column__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-column-gap: 5.5%;
     -moz-column-gap: 5.5%;
          column-gap: 5.5%;
  row-gap: 2.125rem;
  margin-top: 3.625rem;
}
@media screen and (max-width: 950px) {
  .p-column__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-column__list {
    row-gap: 1.125rem;
    margin-top: 2.125rem;
  }
}
@media screen and (max-width: 539px) {
  .p-column__list {
    grid-template-columns: minmax(0, 1fr);
  }
}

.p-column__card-link {
  display: block;
  height: 100%;
}

.p-column__card-link:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 3px;
}

.p-column__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.679245283;
  overflow: hidden;
}

.p-column__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

@media (any-hover: hover) {
  .p-column__card-link:hover .p-column__thumb img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-column__thumb img {
    -webkit-transition: none;
    transition: none;
  }
}
.p-column__cat {
  display: grid;
  place-items: center;
  justify-self: start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 5.5rem;
  height: 1.6875rem;
  margin-top: 0.5rem;
  padding-inline: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1c59ba;
  letter-spacing: 0.04em;
  line-height: 1;
  background-color: #e7f0fb;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-column__cat {
    min-width: 5rem;
    height: 1.375rem;
    margin-top: 0.625rem;
    font-size: 0.75rem;
    border-radius: 0.6875rem;
  }
}

.p-column__card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  margin-top: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #100b42;
  letter-spacing: 0.05em;
  line-height: 1.765;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-column__card-title {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
    line-height: 1.733;
  }
}

.p-column__cat + .p-column__card-title {
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-column__cat + .p-column__card-title {
    margin-top: 0.375rem;
  }
}

@media (any-hover: hover) {
  .p-column__card-link:hover .p-column__card-title {
    color: #1c59ba;
  }
}
.p-column__pager {
  margin-top: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-column__pager {
    margin-top: 2.75rem;
  }
}

.p-column__pager-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
}

.p-column__pager-link {
  display: grid;
  place-items: center;
  width: 2.8125rem;
  height: 1.875rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1c59ba;
}
.p-column__pager-link:link, .p-column__pager-link:visited, .p-column__pager-link:active {
  color: #1c59ba;
}
.p-column__pager-link {
  line-height: 1.346;
  background-color: transparent;
  border: 1px solid #1c59ba;
  border-radius: 0.9375rem;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.p-column__pager-link.is-current {
  color: #ffffff;
}
.p-column__pager-link.is-current:link, .p-column__pager-link.is-current:visited, .p-column__pager-link.is-current:active {
  color: #ffffff;
}
.p-column__pager-link.is-current {
  background-color: #1c59ba;
}

@media (any-hover: hover) {
  a.p-column__pager-link:hover {
    color: #ffffff;
    background-color: #1c59ba;
  }
  a.p-column__pager-link:hover .p-column__pager-arrow {
    background-color: #ffffff;
  }
}
.p-column__pager-link:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.p-column__pager-arrow {
  display: block;
  width: 0.6875rem;
  height: 0.5rem;
  background-color: #1c59ba;
  -webkit-mask-image: url("../images/common/icon-chevron-double.svg");
          mask-image: url("../images/common/icon-chevron-double.svg");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.p-column__pager-link--prev .p-column__pager-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-column__pager-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.125rem;
  margin-inline: 0.25rem;
}

.p-column__pager-dots span {
  display: block;
  width: 0.1875rem;
  height: 0.1875rem;
  background-color: #1c59ba;
  border-radius: 50%;
}

.p-column__back.c-btn {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 14.375rem;
  height: 2.875rem;
  margin-top: 4.375rem;
  gap: 0;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-column__back.c-btn {
    width: 13.375rem;
    max-width: none;
    height: 2.75rem;
    margin-top: 2.1875rem;
    font-size: 0.875rem;
    border-radius: 1.375rem;
  }
}

@media (any-hover: hover) {
  .p-column__back.c-btn:hover {
    -webkit-transform: none;
            transform: none;
    opacity: 0.7;
  }
}
.p-column__empty {
  margin-top: 3.625rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-column__empty {
    margin-top: 2.125rem;
    font-size: 0.875rem;
  }
}

.p-single {
  padding-bottom: 9.5rem;
}
@media screen and (max-width: 767px) {
  .p-single {
    padding-bottom: 4.25rem;
  }
}

.p-single__head {
  padding-bottom: 2.75rem;
  border-bottom: 1px solid #1c59ba;
}
@media screen and (max-width: 767px) {
  .p-single__head {
    padding-bottom: 1.0625rem;
  }
}

.p-single__cat {
  display: grid;
  place-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 5.5rem;
  height: 1.6875rem;
  margin-top: 3.125rem;
  padding-inline: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.04em;
  line-height: 1;
  background-color: #1c59ba;
  border-radius: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-single__cat {
    min-width: 5rem;
    height: 1.375rem;
    margin-top: 1.125rem;
    font-size: 0.75rem;
    border-radius: 0.6875rem;
  }
}

.p-single__title {
  margin-block: 3.0625rem 3.25rem;
  font-size: 2.125rem;
  font-weight: 600;
  color: #232323;
  line-height: 1.514;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    margin-block: 1.25rem 1.5625rem;
    font-size: 1.25rem;
    letter-spacing: normal;
    line-height: 1.4;
  }
}

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

#toc_container {
  display: block;
  width: auto;
  margin-block: 0;
  padding: 1.875rem 2.625rem 2.25rem;
  font-size: 1rem;
  background-color: #e7f0fb;
  border: none;
}
@media screen and (max-width: 767px) {
  #toc_container {
    margin-top: 1.5rem;
    padding: 1.125rem 1.0625rem 1.5rem;
    font-size: 0.875rem;
  }
}

#toc_container .toc_title {
  margin: 0;
  padding: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c59ba;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_title {
    font-size: 0.875rem;
    line-height: 1.143;
  }
}

#toc_container .toc_list {
  margin: 0.625rem 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_list {
    margin-top: 0.3125rem;
  }
}

#toc_container .toc_list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#toc_container .toc_list li {
  position: relative;
  margin: 0;
  padding: 0 0 0 1rem;
  font-size: 1rem;
  font-weight: 400;
  color: #232323;
  line-height: 1.75;
  list-style: none;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  #toc_container .toc_list li {
    padding-left: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  #toc_container .toc_list li + li {
    margin-top: 0.25rem;
  }
}

#toc_container:not(.toc_numbered) .toc_list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 100;
}

#toc_container .toc_number {
  margin-right: 0.25rem;
  color: inherit;
}

#toc_container a {
  color: inherit;
}
#toc_container a:link, #toc_container a:visited, #toc_container a:active {
  color: inherit;
}
#toc_container a {
  text-decoration: none;
  text-shadow: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

@media (any-hover: hover) {
  #toc_container a:hover {
    color: #1c59ba;
    text-decoration: underline;
  }
}
#toc_container a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

#toc_container .toc_toggle {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 400;
}

.p-single__content > * {
  margin-block: 0.625rem;
}

.p-single__content > :first-child {
  margin-top: 0;
}

.p-single__content h2 {
  margin-block: 3.75rem 1.25rem;
  font-size: 2rem;
  font-weight: 600;
  color: #232323;
  line-height: 1.469;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  .p-single__content h2 {
    margin-block: 3.125rem 1.25rem;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

.p-single__content h3 {
  margin-block: 2.5rem 0.9375rem;
  font-size: 1.625rem;
  font-weight: 600;
  color: #1c59ba;
  line-height: 1.731;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  .p-single__content h3 {
    margin-block: 1.875rem 0.9375rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
  }
}

.p-single__content h4 {
  margin-block: 2.5rem 0.9375rem;
  padding-left: 1.5625rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #232323;
  line-height: 1.35;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
  border-left: 0.4375rem solid #37b2c1;
}
@media screen and (max-width: 767px) {
  .p-single__content h4 {
    margin-block: 1.875rem 0.9375rem;
    padding-left: 1.1875rem;
    font-size: 0.9375rem;
    line-height: 1.467;
    border-left-width: 0.3125rem;
  }
}

.p-single__content h5,
.p-single__content h6 {
  margin-block: 2.5rem 0.9375rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #232323;
  line-height: 1.35;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  .p-single__content h5,
  .p-single__content h6 {
    margin-block: 1.875rem 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.467;
  }
}

.p-single__content p {
  margin-block: 0.625rem;
  font-size: 1rem;
  font-weight: 400;
  color: #232323;
  line-height: 1.75;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  .p-single__content p {
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-single__content ul,
.p-single__content ol {
  margin-block: 0.625rem;
}

.p-single__content li {
  position: relative;
  padding-left: 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  line-height: 1.688;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}
@media screen and (max-width: 767px) {
  .p-single__content li {
    padding-left: 0.9375rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.643;
  }
}

.p-single__content ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
}

.p-single__content ol {
  padding-left: 1.25rem;
  list-style: decimal;
}

.p-single__content ol > li {
  padding-left: 0;
}

.p-single__content blockquote {
  margin-block: 0.9375rem;
  padding: 0.9375rem 1.5625rem;
  background-color: #e7f0fb;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote {
    margin-block: 0.9375rem;
    padding: 0.9375rem 1.0625rem;
  }
}

.p-single__content blockquote p {
  font-size: 1rem;
  font-weight: 500;
  color: #1c59ba;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .p-single__content blockquote p {
    font-size: 0.875rem;
    line-height: 1.571;
  }
}

.p-single__content blockquote p:first-child {
  margin-top: 0;
}

.p-single__content blockquote p:last-child {
  margin-bottom: 0;
}

.p-single__content a {
  color: #37b2c1;
}
.p-single__content a:link, .p-single__content a:visited, .p-single__content a:active {
  color: #37b2c1;
}
.p-single__content a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .p-single__content a:hover {
    opacity: 0.7;
  }
}
.p-single__content a:focus-visible {
  outline: 2px solid #37b2c1;
  outline-offset: 2px;
}

.p-single__content a[target=_blank]::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.0625rem;
  height: 1.0625rem;
  margin-left: 0.4375rem;
  background-color: currentColor;
  -webkit-mask-image: url("../images/single-column/icon-external.svg");
          mask-image: url("../images/single-column/icon-external.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 767px) {
  .p-single__content a[target=_blank]::after {
    width: 0.875rem;
    height: 0.875rem;
    margin-left: 0.3125rem;
  }
}

.p-single__content figure {
  margin-block: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-single__content figure {
    margin-block: 1.25rem;
  }
}

.p-single__content .wp-block-table {
  width: calc(100% + 0.375rem);
  margin-inline: -0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-table {
    width: 100%;
    margin-inline: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.p-single__content table {
  width: calc(100% + 0.375rem);
  margin-inline: -0.1875rem;
  border-collapse: separate;
  border-spacing: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content table {
    width: 100%;
    min-width: 56.25rem;
    margin-inline: 0;
    border-spacing: 0.125rem;
  }
}

.p-single__content .wp-block-table table {
  width: 100%;
  margin-inline: 0;
  border-collapse: separate;
  border-spacing: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-single__content .wp-block-table table {
    min-width: 56.25rem;
    border-spacing: 0.125rem;
  }
}

.p-single__content th,
.p-single__content td,
.p-single__content .wp-block-table th,
.p-single__content .wp-block-table td {
  padding: 0.6875rem 0.875rem;
  font-size: 1rem;
  line-height: 1.312;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-single__content th,
  .p-single__content td,
  .p-single__content .wp-block-table th,
  .p-single__content .wp-block-table td {
    padding: 0.4375rem 0.625rem;
    font-size: 0.875rem;
    line-height: 1.286;
  }
}

.p-single__content th {
  font-weight: 600;
  color: #ffffff;
  background-color: #1c59ba;
}

.p-single__content td {
  font-weight: 500;
  color: #232323;
  background-color: #f2f2f2;
}
@media screen and (max-width: 767px) {
  .p-single__content td {
    font-weight: 400;
  }
}

.p-single__content .wp-block-table thead,
.p-single__content .wp-block-table tfoot,
.p-single__content .wp-block-table tr {
  border: none;
}

.p-single__content tbody th {
  width: 18.6666666667%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-single__content tbody th {
    width: 11.9375rem;
  }
}

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

.p-single__content .size-large img,
.p-single__content img.size-large {
  width: 100%;
}

.p-single__img {
  display: block;
  width: 100%;
}

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

.p-single__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18.125rem;
  height: 3.625rem;
  margin: 5.75rem auto 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1c59ba;
}
.p-single__back:link, .p-single__back:visited, .p-single__back:active {
  color: #1c59ba;
}
.p-single__back {
  letter-spacing: 0.04em;
  line-height: 1;
  background-color: #ffffff;
  border: 2px solid #1c59ba;
  border-radius: 1.8125rem;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-single__back {
    width: 13.375rem;
    height: 2.75rem;
    margin-top: 3.75rem;
    font-size: 0.875rem;
    border-radius: 1.375rem;
  }
}

@media (any-hover: hover) {
  .p-single__back:hover {
    color: #ffffff;
    background-color: #1c59ba;
  }
}
.p-single__back:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 3px;
}

.p-page .p-single__content {
  margin-top: 2.375rem;
}
@media screen and (max-width: 767px) {
  .p-page .p-single__content {
    margin-top: 1rem;
  }
}

/* ------------------------------------------------
page-contact
--------------------------------------------------- */
.p-contact {
  padding-bottom: 8.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-bottom: 2.3125rem;
  }
}

.p-contact__lead {
  margin-top: 2.375rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.043em;
  line-height: 1.818;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: #100b42;
    letter-spacing: 0.05em;
    line-height: 1.733;
  }
}

.p-contact__body {
  margin-top: 3.3125rem;
  padding-top: 4.25rem;
  border-top: 1px solid #1c59ba;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    margin-top: 1.75rem;
    padding-top: 2.1875rem;
  }
}

.p-contact__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4375rem;
  width: 40rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-contact__steps {
    gap: 0.59375rem;
    width: 100%;
  }
}

.p-contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
  font-size: 1.1875rem;
  font-weight: 500;
  color: #7186a5;
  letter-spacing: 0.1em;
  line-height: 1;
  text-indent: 0.1em;
  background-color: #e7f0fb;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__step {
    height: 2rem;
    font-size: 0.875rem;
    border-radius: 0.125rem;
  }
}

.p-contact__step--current {
  color: #ffffff;
  background-color: #1c59ba;
}

.p-contact__form {
  margin-top: 4.125rem;
  margin-inline: auto;
  width: 100%;
  max-width: 55rem;
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 2.125rem;
  }
}

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

.p-contact__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .p-contact__label {
    gap: 0.625rem;
    font-size: 1.125rem;
    line-height: 1.073;
  }
}

.p-contact__badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.5rem;
  height: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 1;
  text-indent: 0.07em;
}
@media screen and (max-width: 767px) {
  .p-contact__badge {
    width: 2.3125rem;
    height: 1.1875rem;
    font-size: 0.6975rem;
  }
}

.p-contact__badge--required {
  color: #ffffff;
  background-color: #1c59ba;
}

.p-contact__badge--optional {
  color: #1c59ba;
  background-color: #e7f0fb;
}

input.p-contact__input {
  display: block;
  width: 100%;
  height: 3.5rem;
  margin-top: 0.5625rem;
  padding-inline: 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #232323;
  line-height: 1.389;
  background-color: #ededed;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  input.p-contact__input {
    height: 2.875rem;
    margin-top: 0.71875rem;
    padding-inline: 0.9375rem;
    font-size: 1rem;
    line-height: 1.118;
  }
}

input.p-contact__input::-webkit-input-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

input.p-contact__input::-moz-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

input.p-contact__input:-ms-input-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

input.p-contact__input::-ms-input-placeholder {
  color: #b3b3b3;
  opacity: 1;
}

input.p-contact__input::placeholder {
  color: #b3b3b3;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  input.p-contact__input--long::-webkit-input-placeholder {
    font-size: 0.6875rem;
  }
  input.p-contact__input--long::-moz-placeholder {
    font-size: 0.6875rem;
  }
  input.p-contact__input--long:-ms-input-placeholder {
    font-size: 0.6875rem;
  }
  input.p-contact__input--long::-ms-input-placeholder {
    font-size: 0.6875rem;
  }
  input.p-contact__input--long::placeholder {
    font-size: 0.6875rem;
  }
}

.p-contact__input:focus-visible,
.p-contact__textarea:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

textarea.p-contact__textarea {
  display: block;
  width: 100%;
  height: 13.75rem;
  margin-top: 0.5625rem;
  padding: 0.9375rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: #232323;
  line-height: 1.6;
  background-color: #ededed;
  border: none;
  border-radius: 0;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  textarea.p-contact__textarea {
    height: 12.5625rem;
    margin-top: 0.71875rem;
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
  }
}

.p-contact__note {
  margin-top: 3.125rem;
  padding: 1.5625rem 2.5rem;
  background-color: #e7f0fb;
}
@media screen and (max-width: 767px) {
  .p-contact__note {
    margin-top: 2.25rem;
    padding: 1.4375rem 1.0625rem 1.0625rem;
  }
}

.p-contact__note-text {
  font-size: 1rem;
  font-weight: 400;
  color: #232323;
  letter-spacing: 0.03em;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-contact__note-text {
    font-size: 0.875rem;
    letter-spacing: normal;
    line-height: 1.714;
  }
}

.p-contact__note-link {
  color: #1c59ba;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (any-hover: hover) {
  .p-contact__note-link:hover {
    text-decoration: none;
  }
}
.p-contact__note-link:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.p-contact__agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__agree {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 0.75rem;
       -moz-column-gap: 0.75rem;
            column-gap: 0.75rem;
    margin-top: 1.875rem;
    padding-inline: 1.5625rem;
  }
}

.p-contact__checkbox {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  margin: 0;
  background-color: #ffffff;
  border: 1px solid #6d6d7c;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-contact__checkbox {
    width: 0.8125rem;
    height: 0.8125rem;
    margin-top: 0.1875rem;
  }
}

.p-contact__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  width: 0.3125rem;
  height: 0.625rem;
  margin-top: -0.0625rem;
  border-right: 2px solid #1c59ba;
  border-bottom: 2px solid #1c59ba;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .p-contact__checkbox:checked::after {
    width: 0.25rem;
    height: 0.5rem;
  }
}

.p-contact__checkbox:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.p-contact__agree-label {
  font-size: 1rem;
  font-weight: 400;
  color: #232323;
  letter-spacing: 0.03em;
  line-height: 1.875;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact__agree-label {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    font-size: 0.875rem;
    letter-spacing: normal;
    line-height: 1.429;
  }
}

.p-contact__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 18.4375rem;
  height: 3.3125rem;
  margin-top: 1.625rem;
  margin-inline: auto;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1;
  text-indent: 0.03em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1c59ba), to(#223699));
  background-image: linear-gradient(to bottom, #1c59ba, #223699);
  border-radius: 1.65625rem;
  -webkit-box-shadow: 0 0.25rem 0.625rem rgba(16, 11, 66, 0.25);
          box-shadow: 0 0.25rem 0.625rem rgba(16, 11, 66, 0.25);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__submit {
    width: 15.0625rem;
    height: 2.6875rem;
    margin-top: 1.0625rem;
    font-size: 1rem;
    border-radius: 1.34375rem;
  }
}

@media (any-hover: hover) {
  .p-contact__submit:hover {
    -webkit-transform: translateY(-0.1875rem);
            transform: translateY(-0.1875rem);
  }
}
.p-contact__submit:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 3px;
}

.p-contact__tel {
  width: 100%;
  max-width: 55rem;
  margin-top: 3.75rem;
  margin-inline: auto;
  padding-top: 2.3125rem;
  border-top: 1px solid #1c59ba;
}
@media screen and (max-width: 767px) {
  .p-contact__tel {
    margin-top: 2.1875rem;
  }
}

.p-contact__tel-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #1c59ba;
  letter-spacing: 0.03em;
  line-height: 1.421;
}
@media screen and (max-width: 767px) {
  .p-contact__tel-title {
    font-size: 1.125rem;
    letter-spacing: normal;
    line-height: 1.333;
  }
}
@media screen and (max-width: 539px) {
  .p-contact__tel-title {
    text-align: center;
  }
}

.p-contact__address {
  margin-top: 1.5625rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.03em;
  line-height: 1.875;
}
@media screen and (max-width: 767px) {
  .p-contact__address {
    margin-top: 1.125rem;
    font-size: 0.875rem;
    letter-spacing: normal;
    line-height: 1.714;
  }
}
@media screen and (max-width: 539px) {
  .p-contact__address {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-contact__address-tel a {
  color: #1c59ba;
}
.p-contact__address-tel a:link, .p-contact__address-tel a:visited, .p-contact__address-tel a:active {
  color: #1c59ba;
}

@media (any-hover: hover) {
  .p-contact__address-tel a:hover {
    text-decoration: underline;
  }
}
.p-contact__address-tel a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

/* ------------------------------------------------
page-contact
--------------------------------------------------- */
.wpcf7 form {
  margin: 0;
}

.wpcf7-form-control-wrap {
  display: block;
}

.p-contact__confirm {
  display: none;
}

.p-contact__form.is-confirm .js-contact-form {
  display: none;
}

.p-contact__form.is-confirm .p-contact__confirm {
  display: block;
}

.p-contact__error,
.wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #e00;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-contact__error,
  .wpcf7-not-valid-tip {
    font-size: 0.8125rem;
  }
}

.p-contact__input.is-error,
.p-contact__textarea.is-error,
.wpcf7-not-valid {
  outline: 1px solid #e00;
  outline-offset: -1px;
}

.p-contact__agree .p-contact__error,
.p-contact__agree .wpcf7-not-valid-tip {
  width: 100%;
  text-align: center;
}

.p-contact__agree {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-contact__agree .wpcf7-form-control-wrap,
.p-contact__agree .wpcf7-acceptance,
.p-contact__agree .wpcf7-list-item,
.p-contact__agree .wpcf7-list-item > label {
  display: contents;
}

.p-contact__agree .wpcf7-list-item {
  margin: 0;
}

.p-contact__confirm-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.03em;
  line-height: 1.778;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm-lead {
    font-size: 0.9375rem;
    line-height: 1.667;
  }
}

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

.p-contact__confirm-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm-label {
    font-size: 0.9375rem;
  }
}

.p-contact__confirm-label:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm-label:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.p-contact__confirm-data {
  min-height: 3.5rem;
  margin-top: 0.5625rem;
  padding: 0.9375rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #232323;
  line-height: 1.389;
  white-space: pre-wrap;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm-data {
    min-height: 2.875rem;
    margin-top: 0.71875rem;
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
    line-height: 1.118;
  }
}

.p-contact__confirm-data:has(> span:empty)::after {
  content: " ";
}

.p-contact__confirm-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 1.875rem;
  }
}

.p-contact__confirm-actions .p-contact__submit {
  display: block;
  margin-top: 0;
  margin-inline: 0;
  padding: 0;
  line-height: 3.3125rem;
  text-align: center;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (max-width: 767px) {
  .p-contact__confirm-actions .p-contact__submit {
    line-height: 2.6875rem;
  }
}

.p-contact__back {
  width: 18.4375rem;
  height: 3.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #1c59ba;
  letter-spacing: 0.03em;
  line-height: 1;
  text-indent: 0.03em;
  background-color: #ffffff;
  border: 1px solid #1c59ba;
  border-radius: 1.65625rem;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__back {
    width: 15.0625rem;
    height: 2.6875rem;
    font-size: 1rem;
    border-radius: 1.34375rem;
  }
}

@media (any-hover: hover) {
  .p-contact__back:hover {
    color: #ffffff;
    background-color: #1c59ba;
  }
}
.p-contact__back:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 3px;
}

.wpcf7-response-output {
  margin: 1.5rem 0 0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpcf7-response-output {
    font-size: 0.875rem;
  }
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.wpcf7-spinner {
  position: absolute;
}

.p-thanks {
  padding-top: 4.5rem;
  padding-bottom: 7.4375rem;
}
@media screen and (max-width: 767px) {
  .p-thanks {
    padding-top: 2.375rem;
    padding-bottom: 3.3125rem;
  }
}

.p-thanks__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #1c59ba;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-thanks__title {
    font-size: 1.5625rem;
  }
}

.p-thanks__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4375rem;
  width: 40rem;
  margin-top: 3.5625rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-thanks__steps {
    gap: 0.59375rem;
    width: 100%;
    margin-top: 1.8125rem;
  }
}

.p-thanks__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
  font-size: 1.1875rem;
  font-weight: 500;
  color: #7186a5;
  letter-spacing: 0.1em;
  line-height: 1;
  text-indent: 0.1em;
  background-color: #e7f0fb;
  border-radius: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__step {
    height: 2rem;
    font-size: 0.875rem;
    border-radius: 0.125rem;
  }
}

.p-thanks p {
  color: #232323;
}

.p-thanks__step--current {
  color: #ffffff;
  background-color: #1c59ba;
}

.p-thanks__text {
  margin-top: 2.875rem;
  font-size: 1.375rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.04em;
  line-height: 2.045;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.733;
    text-align: left;
  }
}

.p-thanks__text-inline {
  display: inline-block;
}

.p-thanks__text a {
  color: inherit;
}
.p-thanks__text a:link, .p-thanks__text a:visited, .p-thanks__text a:active {
  color: inherit;
}
.p-thanks__text a {
  text-decoration: none;
}

@media (any-hover: hover) {
  .p-thanks__text a:hover {
    text-decoration: underline;
  }
}
.p-thanks__text a:focus-visible {
  outline: 2px solid #1c59ba;
  outline-offset: 2px;
}

.p-thanks__note {
  width: 51.875rem;
  max-width: 100%;
  margin-top: 2.8125rem;
  margin-inline: auto;
  padding: 2.0625rem 1.875rem 2.125rem;
  background-color: #e7f0fb;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__note {
    width: 100%;
    margin-top: 1.125rem;
    padding: 1.125rem 0.9375rem 1.1875rem;
  }
}

.p-thanks__note-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: #223699;
  letter-spacing: 0.06em;
  line-height: 1;
  text-indent: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-thanks__note-title {
    font-size: 0.9375rem;
  }
}

.p-thanks__note-text {
  margin-top: 1.125rem;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  letter-spacing: 0.06em;
  line-height: 1.9375;
}
@media screen and (max-width: 767px) {
  .p-thanks__note-text {
    margin-top: 0.4375rem;
    font-size: 0.875rem;
    line-height: 1.714;
  }
}

.p-thanks__btn {
  margin-top: 4.125rem;
  width: 22rem;
  height: 4.375rem;
  font-size: 1.53rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  border-radius: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-thanks__btn {
    margin-top: 1.875rem;
    width: 15rem;
    max-width: none;
    height: 2.6875rem;
    font-size: 1.0025rem;
    letter-spacing: 0.03em;
    border-radius: 1.34375rem;
  }
}

.p-notfound {
  padding-block: 8.25rem 7.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-notfound {
    padding-block: 4.3125rem 3.25rem;
  }
}

.p-notfound__num {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: #1c59ba;
  background-image: -webkit-gradient(linear, left top, right top, from(#37b2c1), to(#1c59ba));
  background-image: linear-gradient(to right, #37b2c1, #1c59ba);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  .p-notfound__num {
    font-size: 3.4375rem;
  }
}

.p-notfound__title {
  margin-top: 1.75rem;
  font-size: 1.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.6;
  color: #232323;
}
@media screen and (max-width: 767px) {
  .p-notfound__title {
    margin-top: 0.3125rem;
    font-size: 1.0625rem;
  }
}

.p-notfound__text {
  margin-top: 2.0625rem;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2.045;
  color: #232323;
}
@media screen and (max-width: 767px) {
  .p-notfound__text {
    margin-top: 1.25rem;
    padding-left: 0.375rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.733;
    text-align: left;
  }
}

.p-notfound__btn {
  width: 22rem;
  height: 4.375rem;
  margin-top: 7.3125rem;
  font-size: 1.53rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-notfound__btn {
    width: 100%;
    max-width: 15rem;
    height: 2.6875rem;
    margin-top: 10rem;
    font-size: 1.0025rem;
    letter-spacing: 0.03em;
    border-radius: 1.34375rem;
  }
}

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

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

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

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

.u-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.u-palt .header,
.u-palt .drawer,
.u-palt .footer,
.u-palt .p-cta {
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}

.u-justify {
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
  line-break: strict;
}

.u-inline-block {
  display: inline-block;
}

.u-pc-inline-block {
  display: inline-block;
}
@media screen and (max-width: 539px) {
  .u-pc-inline-block {
    display: inline;
  }
}/*# sourceMappingURL=style.css.map */