@charset "UTF-8";

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

:root {
  --liquid-htmlroot: calc(100vw / 375);
}
@media (min-width: 769px) {
  :root {
    --liquid-htmlroot: calc(min(100vw, 1440px) / 1440);
  }
}


*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: var(--liquid-htmlroot);
  height: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

body.is-menuOpen {
  height: 100%;
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  text-decoration: none;
}

@media (min-width: 769px) {
  a:hover {
    text-decoration: none;
  }
}

main {
  width: 100%;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30rem);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.385, 0.08, 0.6, 1.5);
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}

.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}

.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}

.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}

.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}


.l-header {
  width: 100%;
  height: 65rem;
  display: block;
  position: absolute;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
}
@media (min-width: 769px) {
  .l-header {
    height: 159rem;
  }
}
.l-header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: url(./assets/images/img_fv_frame-leftup-sp.svg);
  background-position: top left;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
@media (min-width: 769px) {
  .l-header::before {
    background-image: url(./assets/images/img_fv_frame-leftup-pc.svg);
  }
}
.l-header__container {
  padding: 16rem 49rem 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (min-width: 769px) {
  .l-header__container {
    padding: 22rem 142rem;
    height: auto;
    align-items: center;
  }
}
.l-header__container::before {
  content: "";
  width: 100%;
  height: 56rem;
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  .l-header__container::before {
    width: calc(100% - 400rem);
    height: 80rem;
    top: 0;
    left: auto;
    right: 0;
  }
}
.l-header__logo {
  width: 140rem;
  height: 33rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .l-header__logo {
    width: 260rem;
    height: 49rem;
  }
}
.l-header__logo picture, .l-header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.l-header__hamburger-btn {
  margin-top: 4rem;
  width: 29rem;
  height: 30rem;
  display: block;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .l-header__hamburger-btn {
    display: none;
  }
}
.l-header__hamburger-btn img {
  width: 100%;
  height: 100%;
  display: inline-block;
  object-fit: contain;
}

.l-footer {
  padding-block: 0 7rem;
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .l-footer {
    padding-block: 50rem 13rem;
  }
}
.l-footer__container {
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__container {
    margin-inline: auto;
    width: 1080rem;
    display: flex;
    justify-content: space-between;
  }
}
.l-footer__content {
  margin-top: 22rem;
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__content {
    margin-top: 0;
    width: 400rem;
  }
}
.l-footer__logo {
  margin-inline: auto;
  width: fit-content;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__logo {
    margin: 0;
    width: 340rem;
  }
}
.l-footer__logo a {
  width: 100%;
  display: inline-block;
}
@media (min-width: 769px) {
  .l-footer__logo a {
    width: 100%;
    display: grid;
    grid-template-columns: 244rem 90rem;
    grid-template-rows: 36rem 30rem;
    gap: 7rem 6rem;
    grid-template-areas: "shokokai ichiban" "sodanshitsu ichiban";
  }
}
.l-footer__logo a .l-footer__iamge-ichiban {
  margin-inline: auto;
  width: 54rem;
  height: 26rem;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__logo a .l-footer__iamge-ichiban {
    margin: 0;
    width: 89rem;
    height: 43rem;
    grid-area: ichiban;
  }
}
.l-footer__logo a .l-footer__iamge-syokokai {
  margin-top: 8rem;
  margin-inline: auto;
  width: 130rem;
  height: 20rem;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__logo a .l-footer__iamge-syokokai {
    margin: 0;
    width: 240rem;
    height: 36rem;
    grid-area: shokokai;
  }
}
.l-footer__logo a .l-footer__title {
  margin-top: 2rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.16;
  color: #296DAC;
  text-align: center;
}
@media (min-width: 769px) {
  .l-footer__logo a .l-footer__title {
    margin-top: 0;
    font-size: 24rem;
    text-align: left;
    grid-area: sodanshitsu;
  }
}
.l-footer__address {
  margin-top: 29rem;
  margin-inline: auto;
  width: fit-content;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__address {
    margin: 56rem 0 0;
    width: 380rem;
  }
}
.l-footer__address-org {
  padding-left: 4rem;
  display: inline-block;
}
@media (min-width: 769px) {
  .l-footer__address-org {
    padding-left: 0;
  }
}
.l-footer__address-link {
  width: fit-content;
  display: flex;
  align-items: center;
  font-size: 13rem;
  font-weight: 700;
  line-height: 1.18;
}
@media (min-width: 769px) {
  .l-footer__address-link {
    font-size: 18rem;
    border-bottom: solid 1px transparent;
  }
}
@media (min-width: 769px) {
  .l-footer__address-link:hover {
    color: #296DAC;
    border-bottom: solid 1px #296DAC;
    transition: all 0.4s ease;
  }
}
@media (min-width: 769px) {
  .l-footer__address-link:hover::after {
    background-color: #296DAC;
  }
}
.l-footer__address-link::after {
  content: "";
  margin-left: 3rem;
  width: 12.8rem;
  height: 12.8rem;
  display: inline-block;
  background-color: #333333;
  -webkit-mask-image: url(./assets/images/ico_footer_ex-link.svg);
  mask-image: url(./assets/images/ico_footer_ex-link.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transition: background-color 0.4s ease;
}
@media (min-width: 769px) {
  .l-footer__address-link::after {
    margin-left: 7rem;
    width: 18.78rem;
    height: 18.78rem;
  }
}
.l-footer__address-location {
  margin-top: 1rem;
  font-size: 12rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .l-footer__address-location {
    margin-top: 4rem;
    font-size: 16rem;
  }
}
.l-footer__address-department {
  margin-top: 14rem;
  display: block;
}
@media (min-width: 769px) {
  .l-footer__address-department {
    margin-top: 24rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
  }
}
.l-footer__address-section, .l-footer__address-tel, .l-footer__address-contact {
  font-size: 12rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .l-footer__address-section, .l-footer__address-tel, .l-footer__address-contact {
    font-size: 16rem;
  }
}
.l-footer__address-tel {
  margin-top: 2rem;
  margin-left: 3em;
}
.l-footer__address-contact {
  margin-top: 22rem;
}
@media (min-width: 769px) {
  .l-footer__address-contact {
    margin-top: 11rem;
  }
}
.l-footer__address-call {
  margin-right: 1em;
}
@media (min-width: 769px) {
  .l-footer__address-call {
    border-bottom: solid 1px transparent;
  }
}
@media (min-width: 769px) {
  .l-footer__address-call:hover {
    color: #296DAC;
    border-bottom: solid 1px #296DAC;
    transition: all 0.4s ease;
  }
}
@media (min-width: 769px) {
  .l-footer__address-call:hover::before {
    background-color: #296DAC;
  }
}
.l-footer__address-call::before {
  content: "";
  width: 10rem;
  height: 11.15rem;
  display: inline-block;
  background-color: #333333;
  -webkit-mask-image: url(./assets/images/ico_footer_tel.svg);
  mask-image: url(./assets/images/ico_footer_tel.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(2rem);
  transition: background-color 0.4s ease;
}
@media (min-width: 769px) {
  .l-footer__address-call::before {
    margin-right: 3rem;
    width: 15rem;
    height: 16.7rem;
  }
}
.l-footer__address-form {
  font-size: 13rem;
  font-weight: 700;
}
@media (min-width: 769px) {
  .l-footer__address-form {
    font-size: 16rem;
    border-bottom: solid 1px transparent;
  }
}
@media (min-width: 769px) {
  .l-footer__address-form:hover {
    color: #296DAC;
    border-bottom: solid 1px #296DAC;
    transition: all 0.4s ease;
  }
}
@media (min-width: 769px) {
  .l-footer__address-form:hover::after {
    background-color: #296DAC;
  }
}
.l-footer__address-form::after {
  content: "";
  margin-left: 1rem;
  width: 16rem;
  height: 12rem;
  display: inline-block;
  background-color: #333333;
  -webkit-mask-image: url(./assets/images/ico_footer_mail-mask.svg);
  mask-image: url(./assets/images/ico_footer_mail-mask.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  transform: translateY(1rem);
  transition: background-color 0.4s ease;
}
@media (min-width: 769px) {
  .l-footer__address-form::after {
    margin-left: 4rem;
    width: 23rem;
    height: 19rem;
    transform: translateY(4rem);
  }
}
.l-footer__navigation {
  display: none;
}
@media (min-width: 769px) {
  .l-footer__navigation {
    margin-top: 64rem;
    width: 203rem;
    display: block;
  }
}
@media (min-width: 769px) {
  .l-footer__nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: 50rem 1fr;
    grid-template-rows: repeat(4, 20rem);
    gap: 20rem 40rem;
    grid-template-areas: "home support" ". procedure" ". usecase" ". faq";
  }
}
@media (min-width: 769px) {
  .l-footer__nav-item {
    width: fit-content;
    display: block;
  }
}
.l-footer__nav-item:nth-child(1) {
  grid-area: home;
}
.l-footer__nav-item:nth-child(2) {
  grid-area: support;
}
.l-footer__nav-item:nth-child(3) {
  grid-area: procedure;
}
.l-footer__nav-item:nth-child(4) {
  grid-area: usecase;
}
.l-footer__nav-item:nth-child(5) {
  grid-area: faq;
}
@media (min-width: 769px) {
  .l-footer__nav-item a {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    font-size: 16rem;
    font-weight: 700;
    color: #333333;
    border-bottom: solid 1px transparent;
    transition: all 0.4s ease;
  }
}
@media (min-width: 769px) {
  .l-footer__nav-item a:hover {
    color: #296DAC;
    border-bottom: solid 1px #296DAC;
  }
}
.l-footer__copyright {
  margin-top: 29rem;
  text-align: center;
}
@media (min-width: 769px) {
  .l-footer__copyright {
    margin-top: 46.8rem;
  }
}
.l-footer__copyright small {
  font-size: 9rem;
  font-weight: 500;
  line-height: 1.25;
}
@media (min-width: 769px) {
  .l-footer__copyright small {
    font-size: 13rem;
  }
}
.c-nav {
  padding-left: 50rem;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.68);
  z-index: 1000;
  transition: opacity 0.4s ease-in-out, visibility 0.4s;
}
@media (min-width: 769px) {
  .c-nav {
    padding-left: 0;
    width: 776rem;
    visibility: visible;
    opacity: 1;
    position: static;
    background-color: transparent;
    inset: auto;
  }
}
.c-nav.is-active {
  visibility: visible;
  opacity: 1;
}
.c-nav.is-active .c-nav__container {
  transform: translateX(0);
}
.c-nav__container {
  padding: 55rem 25rem 60rem;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #D4F8FF;
  position: relative;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
@media (min-width: 769px) {
  .c-nav__container {
    padding: 0;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    transform: translateX(0);
    overflow-y: hidden;
  }
}
.c-nav__logo {
  width: 207rem;
  display: block;
}
@media (min-width: 769px) {
  .c-nav__logo {
    display: none;
  }
}
.c-nav__logo img {
  width: 100%;
  height: auto;
}
.c-nav__list {
  margin-top: 36rem;
  padding: 16rem 24rem;
  width: 275rem;
  background-color: #fff;
  border-radius: 16rem;
}
@media (min-width: 769px) {
  .c-nav__list {
    margin-top: 0;
    padding: 0;
    width: 428rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    border-radius: none;
  }
}
.c-nav__item {
  border-bottom: 1rem solid #333;
}
@media (min-width: 769px) {
  .c-nav__item {
    border-bottom: none;
  }
}
.c-nav__item.is-current {
  border-bottom-color: #296DAC;
}
@media (min-width: 769px) {
  .c-nav__item:first-of-type {
    display: none;
  }
}
.c-nav__item:last-of-type {
  border-bottom: none;
}
.c-nav__item a {
  padding: 10rem 0;
  display: block;
  font-size: 16rem;
  font-weight: 500;
  text-align: center;
  color: #333;
}
@media (min-width: 769px) {
  .c-nav__item a {
    padding: 0;
    height: 46rem;
    align-content: center;
  }
}
@media (min-width: 769px) {
  .c-nav__item a:hover {
    color: #296DAC;
  }
}
.c-nav__close-btn {
  width: 30rem;
  position: absolute;
  top: 22rem;
  right: 22rem;
}
.c-nav__close-btn img {
  width: 100%;
}
@media (min-width: 769px) {
  .c-nav__close-btn {
    display: none;
  }
}

.c-fixedbutton {
  width: 280rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 24rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.c-fixedbutton.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 769px) {
  .c-fixedbutton {
    width: 355rem;
    position: static;
    flex-direction: column;
    transform: translateX(0);
    gap: 21rem 0;
    z-index: 1;
  }
  .c-fixedbutton.is-hidden {
    opacity: 1;
    visibility: visible;
  }
}
.c-fixedbutton__item--demae, .c-fixedbutton__item--tech {
  width: 136rem;
  height: 46rem;
  display: block;
  position: relative;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae, .c-fixedbutton__item--tech {
    width: 100%;
    height: 75rem;
  }
}
.c-fixedbutton__item--demae::after, .c-fixedbutton__item--tech::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5rem 0 5rem 7rem;
  position: absolute;
  top: 20rem;
  right: 12rem;
  transform: translateY(-50%);
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae::after, .c-fixedbutton__item--tech::after {
    border-width: 8rem 0 8rem 11.2rem;
    top: 50%;
    right: 24rem;
  }
}
.c-fixedbutton__item--demae a, .c-fixedbutton__item--tech a {
  padding: 2px;
  width: 100%;
  display: block;
  border-radius: 999rem;
  background-color: #fff;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae a, .c-fixedbutton__item--tech a {
    width: 100%;
    height: 100%;
  }
}
.c-fixedbutton__item--demae a .c-fixedbutton__item--text, .c-fixedbutton__item--tech a .c-fixedbutton__item--text {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 999rem;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae a .c-fixedbutton__item--text, .c-fixedbutton__item--tech a .c-fixedbutton__item--text {
    padding-left: 20rem;
    height: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 0 12rem;
  }
}
.c-fixedbutton__item--demae a .c-fixedbutton__item--text span, .c-fixedbutton__item--tech a .c-fixedbutton__item--text span {
  display: inline-block;
  line-height: 1.2;
}
.c-fixedbutton__item--demae a .c-fixedbutton__item--text span:first-of-type, .c-fixedbutton__item--tech a .c-fixedbutton__item--text span:first-of-type {
  font-size: 15rem;
  font-weight: 700;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae a .c-fixedbutton__item--text span:first-of-type, .c-fixedbutton__item--tech a .c-fixedbutton__item--text span:first-of-type {
    font-size: 26rem;
  }
}
.c-fixedbutton__item--demae a .c-fixedbutton__item--text span:last-of-type, .c-fixedbutton__item--tech a .c-fixedbutton__item--text span:last-of-type {
  font-size: 11rem;
  font-weight: 500;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae a .c-fixedbutton__item--text span:last-of-type, .c-fixedbutton__item--tech a .c-fixedbutton__item--text span:last-of-type {
    font-size: 20rem;
    font-weight: 700;
  }
}
.c-fixedbutton__item--demae a {
  border: solid 2px #7FAE88;
}
.c-fixedbutton__item--demae a .c-fixedbutton__item--text {
  border: solid 1px #7FAE88;
}
.c-fixedbutton__item--demae a .c-fixedbutton__item--text span {
  color: #52855A;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--demae a:hover {
    background-color: #DAEFE1;
  }
}
.c-fixedbutton__item--demae::after {
  border-color: transparent transparent transparent #7FAE88;
}
.c-fixedbutton__item--tech a {
  border: solid 2px #F3C66A;
}
.c-fixedbutton__item--tech a .c-fixedbutton__item--text {
  border: solid 1px #F3C66A;
}
.c-fixedbutton__item--tech a .c-fixedbutton__item--text span {
  color: #E97D01;
}
@media (min-width: 769px) {
  .c-fixedbutton__item--tech a:hover {
    background-color: #FFDD9F;
  }
}
.c-fixedbutton__item--tech::after {
  border-color: transparent transparent transparent #E97D01;
}

.c-fixedbutton__top {
  width: 33rem;
  height: 33rem;
  display: block;
  position: fixed;
  bottom: 67rem;
  right: 16rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
@media (min-width: 769px) {
  .c-fixedbutton__top {
    width: 48rem;
    height: 48rem;
  }
}
.c-fixedbutton__top.is-show {
  opacity: 1;
  visibility: visible;
}
.c-fixedbutton__top img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c-cta {
  padding-block: 30rem;
  width: 100%;
  background-color: #D4F8FF;
}
@media (min-width: 769px) {
  .c-cta {
    padding-block: 30rem 40rem;
  }
}
.c-cta.cta2 {
  display: none;
}
@media (min-width: 769px) {
  .c-cta.cta2 {
    display: block;
    padding-block: 36rem 38rem;
  }
}
.c-cta__container {
  margin-inline: auto;
  width: 322rem;
  display: block;
}
@media (min-width: 769px) {
  .c-cta__container {
    width: 760rem;
  }
}
.c-cta__text {
  margin-inline: auto;
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  display: block;
  text-align: center;
  color: #296DAC;
}
@media (min-width: 769px) {
  .c-cta__text {
    font-size: 18rem;
  }
}
@media (min-width: 769px) {
  .c-cta__text span {
    font-size: 16rem;
  }
}
.c-cta__text::before {
  content: "";
  margin-right: 4rem;
  width: 17.08rem;
  height: 8.37rem;
  display: inline-block;
  background-image: url(./assets/images/img_cta_fukidashi-left.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .c-cta__text::before {
    width: 23rem;
    height: 19.8rem;
  }
}
.c-cta__text::after {
  content: "";
  margin-left: 4rem;
  width: 17.08rem;
  height: 8.37rem;
  display: inline-block;
  background-image: url(./assets/images/img_cta_fukidashi-right.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .c-cta__text::after {
    width: 23rem;
    height: 19.8rem;
  }
}
.c-cta__catch {
  margin-top: 8rem;
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 769px) {
  .c-cta__catch {
    margin-top: 12rem;
    font-size: 24rem;
  }
}
.c-cta__catch span {
  color: #296DAC;
  position: relative;
}
.c-cta__catch span::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
  border-radius: 999rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.c-cta__list {
  margin-top: 24rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 769px) {
  .c-cta__list {
    margin-top: 40rem;
  }
}
.c-cta__list.gNav {
  flex-direction: column;
  justify-content: flex-start;
  gap: 14rem 0;
  margin-top: 40rem;
}
@media (min-width: 769px) {
  .c-cta__list.gNav {
    margin-top: 0;
    width: 328rem;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-shrink: 0;
  }
}
.c-cta__item {
  width: 235rem;
}
.c-cta__item.block {
  width: 154rem;
  height: 46rem;
}
@media (min-width: 769px) {
  .c-cta__item.block {
    width: 352rem;
    height: 75rem;
  }
}
@media (min-width: 769px) {
  .c-cta__item.gNav {
    width: 154rem;
    height: 46rem;
  }
}
@media (min-width: 769px) {
  .c-cta__item.gNav .c-cta__text--demae,
  .c-cta__item.gNav .c-cta__text--tech {
    padding-left: 0;
    height: 38rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .c-cta__item.gNav .c-cta__text--demaespan:first-of-type,
  .c-cta__item.gNav .c-cta__text--techspan:first-of-type {
    font-size: 15rem;
    font-weight: 500;
    line-height: 1.2;
  }
}
@media (min-width: 769px) {
  .c-cta__item.gNav .c-cta__text--demaespan:last-of-type,
  .c-cta__item.gNav .c-cta__text--techspan:last-of-type {
    font-size: 11rem;
    font-weight: 500;
    line-height: 1.2;
  }
}
.c-cta__item a {
  padding: 1.6rem;
  width: 100%;
  display: block;
  background-color: #fff;
  border-radius: 999rem;
}
.c-cta__item a:has(.c-cta__text--demae) {
  border: 2rem solid #7FAE88;
  background-color: #DAEFE1;
}
.c-cta__item a:has(.c-cta__text--tech) {
  border: 2rem solid #F3C66A;
  background-color: #FFDD9F;
}
.c-cta__text--demae, .c-cta__text--tech {
  padding-left: 14rem;
  width: 100%;
  height: 50rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 5rem;
  background-color: #fff;
  border-radius: 999rem;
  transition: all 0.4s ease;
  position: relative;
}
.c-cta__text--demae span:first-child, .c-cta__text--tech span:first-child {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 769px) {
  .c-cta__text--demae span:first-child, .c-cta__text--tech span:first-child {
    font-size: 15rem;
    font-weight: 500;
    line-height: 1.2;
  }
}
.c-cta__text--demae span:last-child, .c-cta__text--tech span:last-child {
  font-size: 13rem;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 769px) {
  .c-cta__text--demae span:last-child, .c-cta__text--tech span:last-child {
    font-size: 11rem;
    font-weight: 500;
    line-height: 1.2;
  }
}
.c-cta__text--demae::after, .c-cta__text--tech::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5rem 0 5rem 7rem;
  border-color: transparent;
  position: absolute;
  top: 50%;
  right: 16rem;
  transform: translateY(-50%);
}
.c-cta__text--demae.block, .c-cta__text--tech.block {
  padding-left: 0;
  flex-direction: column;
  justify-content: center;
  height: 38rem;
}
@media (min-width: 769px) {
  .c-cta__text--demae.block, .c-cta__text--tech.block {
    padding-left: 20rem;
    height: 64rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 12rem;
  }
}
.c-cta__text--demae.block span:first-child, .c-cta__text--tech.block span:first-child {
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .c-cta__text--demae.block span:first-child, .c-cta__text--tech.block span:first-child {
    font-size: 26rem;
    font-weight: 700;
  }
}
.c-cta__text--demae.block span:last-child, .c-cta__text--tech.block span:last-child {
  font-size: 11rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .c-cta__text--demae.block span:last-child, .c-cta__text--tech.block span:last-child {
    font-size: 20rem;
    font-weight: 700;
  }
}
.c-cta__text--demae.block::after, .c-cta__text--tech.block::after {
  content: "";
  transform: translate(10rem, -5rem);
}
@media (min-width: 769px) {
  .c-cta__text--demae.block::after, .c-cta__text--tech.block::after {
    right: 26rem;
    border-width: 8rem 0 8rem 11.2rem;
  }
}
.c-cta__text--demae {
  border: 1.5rem solid #7FAE88;
  color: #52855A;
}
.c-cta__text--demae::after {
  border-left-color: #52855A;
}
@media (min-width: 769px) {
  .c-cta__text--demae:hover {
    background-color: #DAEFE1;
  }
}
.c-cta__text--tech {
  border: 1.5rem solid #F3C66A;
  color: #E97D01;
}
.c-cta__text--tech::after {
  border-left-color: #E97D01;
}
@media (min-width: 769px) {
  .c-cta__text--tech:hover {
    background-color: #FFDD9F;
  }
}

.c-cta-video {
  width: 100%;
  display: block;
  background-color: #D4F8FF;
}
@media (min-width: 769px) {
  .c-cta-video {
    padding-top: 50rem;
  }
}
.c-cta-video__heading {
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 769px) {
  .c-cta-video__heading {
    padding-bottom: 40rem;
    margin-inline: auto;
    max-width: 840rem;
    flex-direction: row;
    justify-content: center;
    position: relative;
  }
}
.c-cta-video__fukidashi--right {
  margin-inline: auto;
  width: 170rem;
  height: 109rem;
  display: inline-block;
  object-fit: contain;
}
@media (min-width: 769px) {
  .c-cta-video__fukidashi--right {
    width: 237rem;
    height: 141.5rem;
    position: absolute;
    top: -12rem;
    right: 40rem;
  }
}
.c-cta-video__fukidashi--left {
  margin-top: -20rem;
  margin-inline: auto;
  width: 289rem;
  height: 146.5rem;
  display: inline-block;
}
@media (min-width: 769px) {
  .c-cta-video__fukidashi--left {
    margin-top: 0;
    width: 315rem;
    height: 171rem;
    position: absolute;
    top: 32rem;
    left: -40rem;
  }
}
.c-cta-video__youtube {
  margin-top: -3rem;
  margin-inline: auto;
  width: 210rem;
  height: 114rem;
  display: block;
}
@media (min-width: 769px) {
  .c-cta-video__youtube {
    margin-top: 0;
    width: 254rem;
    height: 140rem;
  }
}
.c-cta-video__youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.c-cta-video .c-cta {
  padding-top: 0;
}

.c-hero {
  padding: 84rem 0 0 0;
  width: 100%;
  height: 580rem;
  display: block;
  position: relative;
}
@media (min-width: 769px) {
  .c-hero {
    padding: 153rem 138rem 84rem;
    height: auto;
  }
}
@media (min-width: 769px) {
  .c-hero::after {
    content: "";
    width: 478rem;
    height: 368.2rem;
    display: block;
    background-image: url(./assets/images/img_fv_frame-rightdown.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.c-hero__container {
  margin-inline: auto;
  width: 268rem;
  display: flex;
  flex-direction: column;
  gap: 28rem 0;
}
@media (min-width: 769px) {
  .c-hero__container {
    padding-right: 50rem;
    width: 1164rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1441px) {
  .c-hero__container {
    margin-inline: auto;
  }
}
.c-hero__heading {
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .c-hero__heading {
    width: 792rem;
  }
}
.c-hero__heading--ttl {
  font-size: 28rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.04em;
}
@media (min-width: 769px) {
  .c-hero__heading--ttl {
    font-size: 54rem;
  }
}
.c-hero__heading--ttl span.small {
  font-size: 24rem;
}
@media (min-width: 769px) {
  .c-hero__heading--ttl span.small {
    font-size: 48rem;
  }
}
.c-hero__heading--ttl span.dots {
  color: #296DAC;
  position: relative;
}
.c-hero__heading--ttl span.dots::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
  border-radius: 999rem;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 769px) {
  .c-hero__heading--ttl span.dots::before {
    width: 8rem;
    height: 8rem;
  }
}
.c-hero__heading--desc {
  margin-top: 22rem;
  margin-left: 1rem;
  width: fit-content;
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .c-hero__heading--desc {
    margin-top: 20rem;
    margin-left: 0;
    font-size: 24rem;
    text-align: left;
  }
}
.c-hero__list {
  margin-inline: auto;
  width: 208rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .c-hero__list {
    margin-left: 0;
    width: 321rem;
  }
}
.c-hero__item {
  width: 90rem;
  height: 90rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 769px) {
  .c-hero__item {
    width: 150rem;
    height: 150rem;
  }
}
.c-hero__item:first-of-type {
  background-image: url(./assets/images/img_fv_circle-blue.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.c-hero__item:first-of-type p span {
  letter-spacing: 0.07em;
}
.c-hero__item:last-of-type {
  background-image: url(./assets/images/img_fv_circle-yellow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.c-hero__item:last-of-type p {
  margin-top: 5rem;
}
@media (min-width: 769px) {
  .c-hero__item:last-of-type p span {
    font-size: 30rem;
  }
}
.c-hero__item p {
  font-size: 11rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
@media (min-width: 769px) {
  .c-hero__item p {
    font-size: 18rem;
  }
}
.c-hero__item p span {
  font-size: 20rem;
  font-weight: 500;
  line-height: 1.1;
  color: #296DAC;
}
@media (min-width: 769px) {
  .c-hero__item p span {
    font-size: 40rem;
  }
}
.c-hero__image-container {
  padding-left: 50rem;
}
@media (min-width: 769px) {
  .c-hero__image-container {
    margin-top: 8rem;
    padding-right: 50rem;
    padding-left: 0;
    width: 1164rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media (min-width: 1441px) {
  .c-hero__image-container {
    margin-inline: auto;
  }
}
.c-hero picture {
  margin-top: 31.5rem;
  margin-left: 8rem;
  width: 251.8rem;
  height: 142rem;
  display: block;
  object-fit: cover;
  overflow: hidden;
}
@media (min-width: 769px) {
  .c-hero picture {
    margin: 0;
    width: 560rem;
    height: 301rem;
  }
}
.c-hero picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.p-about {
  padding-block: 40rem 20rem;
  width: 100%;
  display: block;
  background-color: #EEF6FA;
}
@media (min-width: 769px) {
  .p-about {
    padding-block: 60rem 33rem;
  }
}
.p-about__title {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 769px) {
  .p-about__title {
    font-size: 40rem;
  }
}
.p-about__title span {
  font-size: 24rem;
  color: #296DAC;
}
@media (min-width: 769px) {
  .p-about__title span {
    font-size: 48rem;
  }
}
.p-about__description {
  margin-top: 30rem;
  font-size: 17rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .p-about__description {
    font-size: 20rem;
    line-height: 1.7;
  }
}
.p-about__description span {
  width: fit-content;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.p-about__description span::after {
  content: "";
  width: 100%;
  height: 6rem;
  display: block;
  background-color: #FFFC9A;
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  .p-about__description span::after {
    height: 9rem;
  }
}
.p-about__content {
  margin-top: 30rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .p-about__content {
    margin-top: 24rem;
    margin-inline: auto;
    width: 1048rem;
    display: grid;
    grid-template-columns: 363rem 194.5rem 354rem;
    grid-template-areas: "feature1 img feature2";
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-about__content .p-about__image {
  width: 119rem;
  height: 112rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-about__content .p-about__image {
    width: 194.5rem;
    height: 179rem;
    grid-area: img;
  }
}
.p-about__content .p-about__feature {
  margin-top: 30rem;
}
.p-about__content .p-about__feature-title {
  margin-inline: auto;
  width: 186rem;
  height: 32rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  border-radius: 5rem;
  position: relative;
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature-title {
    width: 220rem;
    height: 34.6rem;
    font-size: 16rem;
  }
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature:first-of-type {
    margin-top: 39.2rem;
    width: 363rem;
    grid-area: feature1;
  }
}
.p-about__content .p-about__feature:first-of-type .p-about__feature-title {
  background-color: #FFFC9A;
}
.p-about__content .p-about__feature:first-of-type .p-about__feature-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  bottom: -5rem;
  left: 45rem;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  /* 上 左右 で三角の形が決まる */
  border-color: #FFFC9A transparent transparent transparent;
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature:first-of-type .p-about__feature-title::after {
    left: 100rem;
  }
}
.p-about__content .p-about__feature:first-of-type .p-about__feature-text {
  width: 270rem;
  transform: translateX(7rem);
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature:first-of-type .p-about__feature-text {
    width: 100%;
    transform: translateX(0);
  }
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature:last-of-type {
    margin-top: 26rem;
    width: 354rem;
    grid-area: feature2;
  }
}
.p-about__content .p-about__feature:last-of-type .p-about__feature-title {
  background-color: #8CDFE9;
}
.p-about__content .p-about__feature:last-of-type .p-about__feature-title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  display: block;
  bottom: -6rem;
  left: 125rem;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  /* 上 左右 で三角の形が決まる */
  border-color: #8CDFE9 transparent transparent transparent;
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature:last-of-type .p-about__feature-title::after {
    left: 104rem;
  }
}
.p-about__content .p-about__feature:last-of-type .p-about__feature-text {
  width: 256rem;
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature:last-of-type .p-about__feature-text {
    width: 100%;
  }
}
.p-about__content .p-about__feature-text {
  margin-top: 8rem;
  margin-inline: auto;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-about__content .p-about__feature-text {
    margin-top: 12rem;
    font-size: 20rem;
    line-height: 1.5;
  }
}
.p-about__list {
  margin-top: 27rem;
  margin-inline: auto;
  width: 232rem;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-template-areas: "a a" "b c";
  justify-content: space-between;
}
@media (min-width: 769px) {
  .p-about__list {
    margin-top: 10rem;
    width: 412rem;
    grid-template-columns: repeat(3, 120rem);
    grid-template-areas: none;
  }
}
.p-about__item {
  width: 106rem;
  height: 106rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999rem;
  overflow: hidden;
}
@media (min-width: 769px) {
  .p-about__item {
    width: 120rem;
    height: 120rem;
  }
}
.p-about__item:nth-child(1) {
  margin-inline: auto;
  background-color: #FFFC9A;
  grid-area: a;
}
@media (min-width: 769px) {
  .p-about__item:nth-child(1) {
    grid-area: auto;
  }
}
.p-about__item:nth-child(2) {
  background-color: #8CDFE9;
  grid-area: b;
}
@media (min-width: 769px) {
  .p-about__item:nth-child(2) {
    grid-area: auto;
  }
}
.p-about__item:nth-child(3) {
  background-color: #78ADE9;
  grid-area: c;
}
@media (min-width: 769px) {
  .p-about__item:nth-child(3) {
    grid-area: auto;
  }
}
.p-about__item p {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 769px) {
  .p-about__item p {
    font-size: 20rem;
  }
}
.p-about__item p span {
  font-size: 14rem;
}
.p-about__item p span.medium {
  font-size: 16rem;
}
@media (min-width: 769px) {
  .p-about__item p span.small-medium {
    font-size: 16rem;
  }
}
@media (min-width: 769px) {
  .p-about__item p span.xs {
    font-size: 12rem;
  }
}
.p-about__notes {
  margin-top: 30rem;
  margin-inline: auto;
  width: 252rem;
  display: flex;
  flex-direction: column;
  gap: 9rem 0;
}
@media (min-width: 769px) {
  .p-about__notes {
    margin-inline: auto;
    width: 1440rem;
    gap: 8rem 0;
  }
}
.p-about__notes p {
  font-size: 10rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .p-about__notes p {
    margin-inline: 874rem 0;
    font-size: 12rem;
    width: 434rem;
  }
}
.p-about__notes p::before {
  content: "※";
  display: inline;
}

@keyframes p-matter-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}
.p-matter {
  width: 100%;
  padding-block: 40rem 49rem;
  display: block;
  position: relative;
  z-index: 0;
}
@media (min-width: 769px) {
  .p-matter {
    padding-block: 68rem 110rem;
  }
}
.p-matter::after {
  content: "";
  width: 100%;
  height: 73rem;
  display: block;
  background-image: url(./assets/images/img_matter_bg_bottom-sp.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  .p-matter::after {
    height: auto;
    aspect-ratio: 720/97;
    background-image: url(./assets/images/img_matter_bg_bottom-pc.webp);
  }
}
.p-matter__title {
  font-size: 20rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media (min-width: 769px) {
  .p-matter__title {
    font-size: 40rem;
    margin-inline: auto;
    width: fit-content;
  }
}
.p-matter__title::before {
  content: "";
  width: 46.5rem;
  height: 65.5rem;
  display: block;
  background-image: url(./assets/images/img_matter_question-mark-left-sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -13rem;
  left: 55rem;
  animation: p-matter-blink 1.5s ease-in-out infinite;
}
@media (min-width: 769px) {
  .p-matter__title::before {
    width: 79rem;
    height: 95rem;
    background-image: url(./assets/images/img_matter_question-mark-left-pc.webp);
    top: 64rem;
    left: -200rem;
  }
}
.p-matter__title::after {
  content: "";
  width: 45rem;
  height: 66rem;
  display: block;
  background-image: url(./assets/images/img_matter_question-mark-right-sp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 4rem;
  right: 64rem;
  animation: p-matter-blink 1.5s ease-in-out infinite;
}
@media (min-width: 769px) {
  .p-matter__title::after {
    width: 86rem;
    height: 96.5rem;
    background-image: url(./assets/images/img_matter_question-mark-right-pc.webp);
    top: 200rem;
    right: -220rem;
  }
}
.p-matter__title span {
  font-size: 24rem;
  font-weight: 700;
  color: #296DAC;
}
@media (min-width: 769px) {
  .p-matter__title span {
    font-size: 48rem;
  }
}
.p-matter__list {
  margin-top: 46rem;
  margin-inline: auto;
  width: 301rem;
  display: flex;
  flex-direction: column;
  gap: 21rem 0;
}
@media (min-width: 769px) {
  .p-matter__list {
    margin-top: 61rem;
    width: 1085rem;
    display: grid;
    grid-template-columns: repeat(3, 348rem);
    grid-template-rows: repeat(2, 146rem);
    grid-template-areas: "top top top" "bottom1 bottom2 bottom3";
    gap: 50rem 20rem;
  }
}
.p-matter__item:nth-child(1) {
  margin-right: auto;
  width: 264rem;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(1) {
    margin: 0 0 0 174rem;
    width: 348rem;
    grid-area: top;
  }
}
.p-matter__item:nth-child(1) .p-matter__card {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.p-matter__item:nth-child(1) .p-matter__card .p-matter__text {
  padding: 10rem 0 13rem 19rem;
  width: 100%;
  height: 106rem;
  background-image: url(./assets/images/img_matter_fukidashi-right.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(1) .p-matter__card .p-matter__text {
    padding: 17rem 0 28rem;
    height: 146rem;
    background-image: url(./assets/images/img_matter_fukidasi_bottom-left.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem 0;
  }
}
.p-matter__item:nth-child(1) .p-matter__card .p-matter__text .p-matter__problem {
  width: fit-content;
  display: block;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(1) .p-matter__card .p-matter__text .p-matter__problem {
    font-size: 20rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-matter__item:nth-child(1) .p-matter__card .p-matter__text .p-matter__problem span {
  color: #296DAC;
}
.p-matter__item:nth-child(1) .p-matter__card .p-matter__text .p-matter__request {
  margin-top: 7rem;
  margin-left: 12rem;
  width: 149rem;
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.06em;
  text-align: center;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(1) .p-matter__card .p-matter__text .p-matter__request {
    margin: 2rem 0 0;
    width: auto;
    font-size: 14rem;
    line-height: 2.14;
  }
}
.p-matter__item:nth-child(1) .p-matter__card img {
  width: 34.67rem;
  height: 93.37rem;
  display: inline-block;
  flex-shrink: 0;
  transform: translateX(-4rem);
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(1) .p-matter__card img {
    display: none;
  }
}
.p-matter__item:nth-child(2) {
  margin-top: 9rem;
  margin-left: auto;
  width: 281rem;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(2) {
    margin: 0 0 0 562rem;
    width: 348rem;
    grid-area: top;
  }
}
.p-matter__item:nth-child(2) .p-matter__card {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.p-matter__item:nth-child(2) .p-matter__card .p-matter__text {
  padding: 11rem 0 0 27rem;
  width: 100%;
  height: 106rem;
  background-image: url(./assets/images/img_matter_fukidashi-left.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(2) .p-matter__card .p-matter__text {
    padding: 17rem 0 31rem;
    height: 146rem;
    background-image: url(./assets/images/img_matter_fukidasi_bottom-left.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem 0;
  }
}
.p-matter__item:nth-child(2) .p-matter__card .p-matter__text .p-matter__problem {
  width: fit-content;
  display: block;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(2) .p-matter__card .p-matter__text .p-matter__problem {
    font-size: 20rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-matter__item:nth-child(2) .p-matter__card .p-matter__text .p-matter__problem span {
  color: #296DAC;
}
.p-matter__item:nth-child(2) .p-matter__card .p-matter__text .p-matter__request {
  margin-top: 2rem;
  margin-left: 7rem;
  width: fit-content;
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.06em;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(2) .p-matter__card .p-matter__text .p-matter__request {
    margin: 2rem 0 0;
    font-size: 14rem;
    line-height: 2.14;
  }
}
.p-matter__item:nth-child(2) .p-matter__card img {
  width: 50.42rem;
  height: 93.31rem;
  display: inline-block;
  flex-shrink: 0;
  transform: translateX(8.71rem);
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(2) .p-matter__card img {
    display: none;
  }
}
.p-matter__item:nth-child(3) {
  margin-top: 9rem;
  margin-right: auto;
  width: 285rem;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(3) {
    margin: 0;
    width: 348rem;
    grid-area: bottom1;
  }
}
.p-matter__item:nth-child(3) .p-matter__card {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.p-matter__item:nth-child(3) .p-matter__card .p-matter__text {
  padding: 13rem 0 0 18rem;
  width: 100%;
  height: 106rem;
  background-image: url(./assets/images/img_matter_fukidashi-right.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(3) .p-matter__card .p-matter__text {
    padding: 17rem 0 28rem;
    height: 146rem;
    background-image: url(./assets/images/img_matter_fukidasi_bottom-right.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem 0;
  }
}
.p-matter__item:nth-child(3) .p-matter__card .p-matter__text .p-matter__problem {
  width: fit-content;
  display: block;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(3) .p-matter__card .p-matter__text .p-matter__problem {
    font-size: 20rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-matter__item:nth-child(3) .p-matter__card .p-matter__text .p-matter__problem span {
  color: #296DAC;
}
.p-matter__item:nth-child(3) .p-matter__card .p-matter__text .p-matter__request {
  margin-top: 7rem;
  margin-left: 14rem;
  width: 149rem;
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.06em;
  text-align: center;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(3) .p-matter__card .p-matter__text .p-matter__request {
    margin: 2rem 0 0;
    width: auto;
    font-size: 14rem;
    line-height: 2.14;
  }
}
.p-matter__item:nth-child(3) .p-matter__card img {
  margin-bottom: 4.3rem;
  width: 54rem;
  height: 76rem;
  display: inline-block;
  flex-shrink: 0;
  transform: translateX(-4.66rem);
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(3) .p-matter__card img {
    display: none;
  }
}
.p-matter__item:nth-child(4) {
  margin-top: 9rem;
  margin-left: auto;
  width: 266rem;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(4) {
    margin: 0;
    width: 348rem;
    grid-area: bottom2;
  }
}
.p-matter__item:nth-child(4) .p-matter__card {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
}
.p-matter__item:nth-child(4) .p-matter__card .p-matter__text {
  padding: 16rem 0 0 28rem;
  width: 100%;
  height: 106rem;
  background-image: url(./assets/images/img_matter_fukidashi-left.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(4) .p-matter__card .p-matter__text {
    padding: 17rem 0 28rem;
    height: 146rem;
    background-image: url(./assets/images/img_matter_fukidasi_bottom-left.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem 0;
  }
}
.p-matter__item:nth-child(4) .p-matter__card .p-matter__text .p-matter__problem {
  width: fit-content;
  display: block;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(4) .p-matter__card .p-matter__text .p-matter__problem {
    font-size: 20rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-matter__item:nth-child(4) .p-matter__card .p-matter__text .p-matter__problem span {
  color: #296DAC;
}
.p-matter__item:nth-child(4) .p-matter__card .p-matter__text .p-matter__request {
  margin-top: 12rem;
  margin-left: 3rem;
  width: fit-content;
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.06em;
  text-align: center;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(4) .p-matter__card .p-matter__text .p-matter__request {
    margin: 2rem 0 0;
    font-size: 14rem;
    line-height: 2.14;
  }
}
.p-matter__item:nth-child(4) .p-matter__card img {
  margin-bottom: 1.25rem;
  width: 35.28rem;
  height: 96.75rem;
  display: inline-block;
  flex-shrink: 0;
  transform: translateX(6.28rem);
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(4) .p-matter__card img {
    display: none;
  }
}
.p-matter__item:nth-child(5) {
  margin-right: auto;
  width: 264rem;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(5) {
    margin: 0;
    width: 348rem;
    grid-area: bottom3;
  }
}
.p-matter__item:nth-child(5) .p-matter__card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-matter__item:nth-child(5) .p-matter__card .p-matter__text {
  padding: 12rem 0 0 9rem;
  width: 100%;
  height: 119rem;
  background-image: url(./assets/images/img_matter_fukidashi-right.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(5) .p-matter__card .p-matter__text {
    padding: 17rem 0 28rem;
    height: 146rem;
    background-image: url(./assets/images/img_matter_fukidasi_bottom-right.webp);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7rem 0;
  }
}
.p-matter__item:nth-child(5) .p-matter__card .p-matter__text .p-matter__problem {
  width: fit-content;
  display: block;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(5) .p-matter__card .p-matter__text .p-matter__problem {
    font-size: 20rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-matter__item:nth-child(5) .p-matter__card .p-matter__text .p-matter__problem span {
  color: #296DAC;
}
.p-matter__item:nth-child(5) .p-matter__card .p-matter__text .p-matter__request {
  margin-top: 8rem;
  margin-left: 8rem;
  width: fit-content;
  display: block;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.06em;
  text-align: center;
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(5) .p-matter__card .p-matter__text .p-matter__request {
    margin: 2rem 0 0;
    font-size: 14rem;
    line-height: 2.14;
  }
}
.p-matter__item:nth-child(5) .p-matter__card img {
  width: 33.44rem;
  height: 119.3rem;
  display: inline-block;
  flex-shrink: 0;
  transform: translateX(2rem);
}
@media (min-width: 769px) {
  .p-matter__item:nth-child(5) .p-matter__card img {
    display: none;
  }
}
.p-matter__illustration {
  display: none;
}
@media (min-width: 769px) {
  .p-matter__illustration {
    margin: 30rem auto 0;
    width: 799rem;
    height: 213.6rem;
    display: block;
    object-fit: cover;
  }
}
.p-matter__message {
  margin-top: 30rem;
}
@media (min-width: 769px) {
  .p-matter__message {
    margin-top: 90rem;
  }
}
.p-matter__message-label {
  margin-inline: auto;
  width: 132rem;
  height: 27.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFC9A;
  border-radius: 5rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  position: relative;
}
@media (min-width: 769px) {
  .p-matter__message-label {
    width: 191.4rem;
    height: 39.4rem;
    font-size: 26rem;
  }
}
.p-matter__message-label::after {
  content: "";
  position: absolute;
  bottom: -10rem;
  left: 32.27rem;
  translate: 0 -50%;
  width: 8px;
  height: 5px;
  background-color: #FFFC9A;
  clip-path: polygon(0 0, 76% 0, 95% 94%);
}
@media (min-width: 769px) {
  .p-matter__message-label::after {
    left: 49rem;
    width: 11rem;
    height: 6.85rem;
  }
}
.p-matter__message-text {
  margin-top: 13rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
@media (min-width: 769px) {
  .p-matter__message-text {
    margin-top: 8rem;
    font-size: 28rem;
  }
}
.p-matter__message-text span {
  font-size: 21rem;
  color: #296DAC;
  animation: p-matter-blink 1.5s ease-in-out infinite;
  display: inline-block;
}
@media (min-width: 769px) {
  .p-matter__message-text span {
    font-size: 36rem;
  }
}

.p-support {
  width: 100%;
  display: block;
}
.p-support__content {
  padding-block: 40rem 60rem;
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .p-support__content {
    padding-block: 75rem 154rem;
  }
}
.p-support__title {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 769px) {
  .p-support__title {
    font-size: 40rem;
  }
}
.p-support__title span {
  font-size: 22rem;
  color: #296DAC;
}
@media (min-width: 769px) {
  .p-support__title span {
    font-size: 44rem;
  }
}
.p-support__title::after {
  content: "";
  margin: 19rem auto 0;
  width: 40rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
  border-radius: 2rem;
}
@media (min-width: 769px) {
  .p-support__title::after {
    margin-top: 26rem;
    width: 72rem;
    height: 6rem;
  }
}
.p-support__lead {
  margin-top: 28rem;
  margin-inline: auto;
  width: 316rem;
  display: flex;
  flex-direction: column;
  gap: 21rem 0;
}
@media (min-width: 769px) {
  .p-support__lead {
    margin-top: 40rem;
    width: 721rem;
    gap: 0;
  }
}
.p-support__lead p {
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-support__lead p {
    font-size: 18rem;
    line-height: 1.55;
  }
}
.p-support__list {
  margin-top: 30rem;
  margin-inline: auto;
  width: 280rem;
  display: flex;
  flex-direction: column;
  gap: 20rem 0;
}
@media (min-width: 769px) {
  .p-support__list {
    margin-top: 59rem;
    width: 1046rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
.p-support__item {
  padding: 15rem 20rem 0 26rem;
  width: 100%;
  height: 200rem;
  background-color: #D7EDFA;
  border-radius: 20rem;
}
@media (min-width: 769px) {
  .p-support__item {
    padding: 6rem 28rem 30rem;
    width: 310rem;
    height: auto;
    border-radius: 30rem;
  }
}
.p-support__card {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 32rem;
}
@media (min-width: 769px) {
  .p-support__card {
    flex-direction: column;
    justify-content: flex-start;
    gap: 20rem 0;
  }
}
.p-support__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.p-support__card-number {
  font-size: 36rem;
  font-weight: 700;
  line-height: 1;
  color: #296DAC;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 4rem #fff;
  paint-order: stroke fill;
}
@media (min-width: 769px) {
  .p-support__card-number {
    font-size: 60rem;
    -webkit-text-stroke-width: 5rem;
  }
}
.p-support__card-title {
  margin-top: 10rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 769px) {
  .p-support__card-title {
    margin-top: 8rem;
    font-size: 28rem;
    color: #296DAC;
  }
}
.p-support__card-image {
  width: 121rem;
  height: 103rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-support__card-image {
    width: 213rem;
    height: 182rem;
  }
}
.p-support__card-text {
  margin-top: 11.27rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.3;
}
@media (min-width: 769px) {
  .p-support__card-text {
    margin-top: 24rem;
    font-size: 17rem;
    line-height: 1.5;
  }
}
.p-support__field {
  padding-block: 0 45rem;
  width: 100%;
  display: block;
  background-color: #D4F8FF;
  position: relative;
  z-index: 0;
}
@media (min-width: 769px) {
  .p-support__field {
    padding-block: 0 60rem;
  }
}
.p-support__field::before {
  content: "";
  width: 180rem;
  height: 84rem;
  display: block;
  background-color: #D4F8FF;
  border-radius: 48%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -40%);
  z-index: -1;
}
@media (min-width: 769px) {
  .p-support__field::before {
    width: 370rem;
    height: 150rem;
  }
}
.p-support__field-title {
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 769px) {
  .p-support__field-title {
    font-size: 34rem;
    transform: translate(-50%, -80%);
  }
}
.p-support__field-lead {
  margin-top: 22rem;
  padding-top: 30rem;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 769px) {
  .p-support__field-lead {
    margin-top: 0;
    padding-top: 34rem;
    font-size: 18rem;
  }
}
.p-support__field-list {
  margin-top: 38rem;
  margin-inline: auto;
  width: 270rem;
  display: flex;
  flex-direction: column;
  gap: 10rem 0;
}
@media (min-width: 769px) {
  .p-support__field-list {
    margin-top: 32rem;
    width: 1106rem;
    display: grid;
    grid-template-columns: repeat(3, 354rem);
    gap: 25rem 20rem;
  }
}
.p-support__details {
  width: 100%;
  background-color: #fff;
  border-radius: 20rem;
}
@media (min-width: 769px) {
  .p-support__details {
    height: 100%;
  }
}
.p-support__details[open] .p-support__summary::after {
  transform: rotate(0deg);
}
.p-support__summary {
  padding: 8rem 25rem 13rem;
  display: block;
  list-style: none;
  cursor: pointer;
  position: relative;
}
@media (min-width: 769px) {
  .p-support__summary {
    padding: 24rem 20rem 0;
    pointer-events: none;
    cursor: default;
  }
}
.p-support__summary::-webkit-details-marker {
  display: none;
}
.p-support__summary::after {
  content: "";
  width: 12rem;
  height: 7rem;
  display: block;
  background-image: url(./assets/images/ico_arrow_accordion-up.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 12rem;
  bottom: 18rem;
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 769px) {
  .p-support__summary::after {
    display: none;
  }
}
.p-support__category {
  padding-bottom: 10rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: #296DAC;
  border-bottom: 1rem solid #78ADE9;
}
@media (min-width: 769px) {
  .p-support__category {
    padding-bottom: 14rem;
    font-size: 24rem;
    line-height: 1.5;
    border-bottom-width: 2rem;
  }
}
.p-support__subtitle {
  margin-top: 6rem;
  display: block;
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 769px) {
  .p-support__subtitle {
    margin-top: 19rem;
    font-size: 20rem;
    line-height: 1.5;
  }
}
.p-support__body {
  padding: 0 14rem 14rem;
}
@media (min-width: 769px) {
  .p-support__body {
    padding: 0 20rem 24rem;
  }
}
.p-support__body p {
  font-size: 10rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 769px) {
  .p-support__body p {
    margin-top: 15rem;
    font-size: 16rem;
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  .p-support__body p span {
    font-size: 14rem;
  }
}

.p-univ {
  padding-block: 40rem 21rem;
}
@media (min-width: 769px) {
  .p-univ {
    padding-block: 70rem 63rem;
  }
}
.p-univ__title {
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}
@media (min-width: 769px) {
  .p-univ__title {
    font-size: 48rem;
    line-height: 1.44;
  }
}
.p-univ__title::after {
  content: "";
  margin: 22rem auto 0;
  width: 42rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
}
@media (min-width: 769px) {
  .p-univ__title::after {
    margin-top: 26rem;
    width: 72rem;
    height: 6rem;
  }
}
.p-univ__description {
  margin-top: 14rem;
  display: block;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .p-univ__description {
    margin-top: 26rem;
    font-size: 16rem;
  }
}
.p-univ__school-list {
  margin-top: 28rem;
  margin-inline: auto;
  width: 278rem;
  display: block;
  font-size: 11rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .p-univ__school-list {
    margin-top: 43rem;
    width: 804rem;
    font-size: 20rem;
  }
}
.p-univ__school-list span.text-xs {
  font-size: 8rem;
}
@media (min-width: 769px) {
  .p-univ__school-list span.text-xs {
    font-size: 14rem;
  }
}
.p-univ__list {
  margin-top: 9rem;
  margin-inline: auto;
  width: 280rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10rem 5rem;
}
@media (min-width: 769px) {
  .p-univ__list {
    margin-top: 30rem;
    width: 1160rem;
    grid-template-columns: repeat(5, 1fr);
    gap: 16rem 0;
  }
}
.p-univ__item {
  width: 90rem;
  display: block;
}
@media (min-width: 769px) {
  .p-univ__item {
    width: 100%;
  }
}
.p-univ__item a {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.p-univ__image {
  width: 90rem;
  height: 90rem;
  display: block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
.p-univ__item:nth-child(1) .p-univ__logo {
  width: 80rem;
  height: 18rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(1) .p-univ__logo {
    width: 277.7rem;
    height: 44rem;
  }
}
.p-univ__item:nth-child(2) .p-univ__logo {
  width: 63rem;
  height: 18rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(2) .p-univ__logo {
    width: 283rem;
    height: 46rem;
  }
}
.p-univ__item:nth-child(3) .p-univ__logo {
  width: 84rem;
  height: 13rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(3) .p-univ__logo {
    margin-top: 6rem;
    width: 208rem;
    height: 33rem;
  }
}
.p-univ__item:nth-child(4) .p-univ__logo {
  width: 60.8rem;
  height: 16.3rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(4) .p-univ__logo {
    width: 162rem;
    height: 46rem;
  }
}
.p-univ__item:nth-child(5) .p-univ__logo {
  width: 57rem;
  height: 16rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(5) .p-univ__logo {
    width: 231rem;
    height: 37rem;
  }
}
.p-univ__item:nth-child(6) .p-univ__logo {
  width: 73rem;
  height: 17rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(6) .p-univ__logo {
    width: 274rem;
    height: 44rem;
  }
}
.p-univ__item:nth-child(7) .p-univ__logo {
  width: 72rem;
  height: 18rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(7) .p-univ__logo {
    width: 262rem;
    height: 42rem;
  }
}
.p-univ__item:nth-child(8) .p-univ__logo {
  width: 90rem;
  height: 8rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(8) .p-univ__logo {
    margin-top: 10rem;
    width: 225rem;
    height: 21rem;
  }
}
.p-univ__item:nth-child(9) .p-univ__logo {
  width: 66rem;
  height: 17rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(9) .p-univ__logo {
    width: 240rem;
    height: 39rem;
  }
}
.p-univ__item:nth-child(10) .p-univ__logo {
  width: 80rem;
  height: 19rem;
  display: inline-block;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-univ__item:nth-child(10) .p-univ__logo {
    width: 207rem;
    height: 39rem;
  }
}

.p-procedure {
  padding: 40rem 0;
  width: 100%;
  display: block;
  background-color: #D7EDFA;
}
@media (min-width: 769px) {
  .p-procedure {
    padding: 85rem 50rem 70rem;
    background-color: #fff;
  }
}
.p-procedure__title {
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}
@media (min-width: 769px) {
  .p-procedure__title {
    font-size: 40rem;
  }
}
.p-procedure__title::after {
  content: "";
  margin: 22rem auto 0;
  width: 42rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
}
@media (min-width: 769px) {
  .p-procedure__title::after {
    margin-top: 26rem;
    width: 72rem;
    height: 6rem;
  }
}
.p-procedure__description {
  margin-top: 20rem;
  display: block;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 769px) {
  .p-procedure__description {
    margin-top: 24rem;
    font-size: 16rem;
  }
}
.p-procedure__container {
  margin-top: 33rem;
  width: 100%;
  display: block;
}
@media (min-width: 769px) {
  .p-procedure__container {
    margin: 64rem auto 0;
    max-width: 1090rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.p-procedure__step-list {
  display: none;
}
@media (min-width: 769px) {
  .p-procedure__step-list {
    width: 280rem;
    flex-shrink: 0;
    display: block;
    position: sticky;
    top: 120rem;
  }
}
@media (min-width: 769px) {
  .p-procedure__step-item {
    display: flex;
    align-items: center;
  }
  .p-procedure__step-item + .p-procedure__step-item {
    margin-top: 44rem;
  }
}
@media (min-width: 769px) {
  .p-procedure__step-number {
    width: 44rem;
    height: 44rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #D7EDFA;
    border-radius: 999rem;
    font-size: 18rem;
    font-weight: 700;
    line-height: 1;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
}
@media (min-width: 769px) {
  .p-procedure__step-label {
    margin-left: 24rem;
    font-size: 20rem;
    font-weight: 700;
    line-height: 1.2;
  }
}
@media (min-width: 769px) {
  .p-procedure__step-item.is-active .p-procedure__step-number {
    background-color: #78ADE9;
    color: #fff;
  }
  .p-procedure__step-item.is-active .p-procedure__step-number::after {
    content: "";
    width: 2rem;
    height: 44rem;
    background-color: #78ADE9;
    position: absolute;
    left: 50%;
    bottom: -44rem;
    transform: translateX(-50%);
  }
}
@media (min-width: 769px) {
  .p-procedure__step-item:last-child.is-active .p-procedure__step-number::after {
    display: none;
  }
}
.p-procedure__list {
  margin-inline: auto;
  width: 275rem;
  display: flex;
  flex-direction: column;
  gap: 10rem 0;
}
@media (min-width: 769px) {
  .p-procedure__list {
    width: 655rem;
    gap: 30rem 0;
  }
}
.p-procedure__item {
  padding-bottom: 3rem;
  width: 100%;
  position: relative;
}
@media (min-width: 769px) {
  .p-procedure__item {
    padding-bottom: 8rem;
  }
}
.p-procedure__item:nth-child(2) {
  transition-delay: 0.2s;
}
.p-procedure__item:nth-child(3) {
  transition-delay: 0.4s;
}
.p-procedure__item:nth-child(4) {
  transition-delay: 0.6s;
}
.p-procedure__item:nth-child(5) {
  transition-delay: 0.8s;
}
.p-procedure__item::after {
  content: "";
  width: 275rem;
  height: calc(100% - 3rem);
  display: block;
  background-color: #78ADE9;
  border: solid 1rem #78ADE9;
  border-radius: 16rem;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media (min-width: 769px) {
  .p-procedure__item::after {
    width: calc(100% - 8rem);
    height: calc(100% - 8rem);
  }
}
.p-procedure__item-wrapper {
  padding: 9rem 7rem;
  width: 271rem;
  display: block;
  background-color: #fff;
  border: solid 2rem #78ADE9;
  border-radius: 16rem;
  position: relative;
  z-index: 5;
}
@media (min-width: 769px) {
  .p-procedure__item-wrapper {
    padding: 24rem 0 26rem 24rem;
    width: calc(100% - 8rem);
  }
}
.p-procedure__card-header {
  width: 100%;
  display: flex;
  align-items: center;
}
.p-procedure__card-number {
  width: 33rem;
  height: 33rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #78ADE9;
  border-radius: 999rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (min-width: 769px) {
  .p-procedure__card-number {
    width: 56rem;
    height: 56rem;
    font-size: 22rem;
  }
}
.p-procedure__card-title {
  margin-left: 6rem;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .p-procedure__card-title {
    margin-left: 20rem;
    font-size: 24rem;
  }
}
.p-procedure__card-icons {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 10rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons {
    margin-right: 22rem;
    gap: 0 14rem;
  }
}
.p-procedure__card-icons img {
  display: inline-block;
}
.p-procedure__card-icons--doc {
  width: 25rem;
  height: 29rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--doc {
    width: 33rem;
    height: 38rem;
  }
}
.p-procedure__card-icons--mail {
  width: 29rem;
  height: 22rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--mail {
    width: 38rem;
    height: 29rem;
  }
}
.p-procedure__card-icons--tel {
  width: 27rem;
  height: 29rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--tel {
    width: 35rem;
    height: 38rem;
  }
}
.p-procedure__card-icons--building {
  width: 30rem;
  height: 27rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--building {
    width: 40rem;
    height: 36rem;
  }
}
.p-procedure__card-icons--setting {
  width: 30.97rem;
  height: 30.7rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--setting {
    width: 41rem;
    height: 40.6rem;
  }
}
.p-procedure__card-icons--talk {
  width: 30.79rem;
  height: 47.47rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--talk {
    width: 40rem;
    height: 61.7rem;
  }
}
.p-procedure__card-icons--people {
  width: 73.23rem;
  height: 35rem;
}
@media (min-width: 769px) {
  .p-procedure__card-icons--people {
    width: 90rem;
    height: 43rem;
  }
}
.p-procedure__card-text {
  margin-top: 8rem;
  padding-left: 12rem;
  font-size: 11rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .p-procedure__card-text {
    margin-top: 10rem;
    padding-left: 76rem;
    font-size: 16rem;
    line-height: 1.6;
  }
}

.p-usecase {
  padding: 40rem;
  width: 100%;
  display: block;
  background-color: #EEF6FA;
}
@media (min-width: 769px) {
  .p-usecase {
    padding: 70rem 180rem;
  }
}
.p-usecase__title {
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}
@media (min-width: 769px) {
  .p-usecase__title {
    font-size: 48rem;
    line-height: 1.44;
  }
}
.p-usecase__title::after {
  content: "";
  margin: 22rem auto 0;
  width: 42rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
}
@media (min-width: 769px) {
  .p-usecase__title::after {
    margin: 26rem auto 0;
    width: 72rem;
    height: 6rem;
  }
}
.p-usecase__description {
  margin-top: 20rem;
  display: block;
  font-size: 15rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 769px) {
  .p-usecase__description {
    margin-top: 32rem;
    font-size: 16rem;
  }
}
.p-usecase__list {
  margin-top: 22rem;
  margin-inline: auto;
  width: 275rem;
  display: flex;
  flex-direction: column;
  gap: 20rem 0;
}
@media (min-width: 769px) {
  .p-usecase__list {
    margin-top: 75rem;
    width: 100%;
    max-width: 1080rem;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 52rem 0;
  }
}
.p-usecase__item {
  padding: 21rem 16rem 13rem;
  width: 100%;
  display: block;
  background-color: #fff;
  border: solid 2px #296DAC;
  border-radius: 18rem;
  position: relative;
}
@media (min-width: 769px) {
  .p-usecase__item {
    padding: 50rem 35rem 30rem;
    width: 509rem;
    border: solid 4px #296DAC;
    display: flex;
    flex-direction: column;
  }
}
.p-usecase__report {
  width: 98.9rem;
  height: 22.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./assets/images/img_usecase_bg_report.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -12rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (min-width: 769px) {
  .p-usecase__report {
    width: 183rem;
    height: 39rem;
    top: -20rem;
    font-size: 24rem;
  }
}
.p-usecase__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8rem 0;
}
@media (min-width: 769px) {
  .p-usecase__card {
    gap: 6rem 0;
  }
}
.p-usecase__card-header {
  width: 100%;
  display: grid;
  grid-template-columns: 60.25rem 1fr;
  grid-template-rows: 57.5rem 1fr;
  gap: 9.5rem 7.5rem;
  grid-template-areas: "image title" "category category";
}
@media (min-width: 769px) {
  .p-usecase__card-header {
    grid-template-columns: 100rem 1fr;
    grid-template-rows: 54rem 1fr;
    gap: 18rem 7rem;
    grid-template-areas: "image title" "image category";
  }
}
.p-usecase__card-image {
  width: 60.25rem;
  height: 57.5rem;
  display: inline-block;
  grid-area: image;
}
@media (min-width: 769px) {
  .p-usecase__card-image {
    width: 100rem;
    height: 98.3rem;
  }
}
.p-usecase__card-title {
  width: 100%;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.2;
  grid-area: title;
}
@media (min-width: 769px) {
  .p-usecase__card-title {
    font-size: 20rem;
  }
}
.p-usecase__card-info {
  font-size: 8rem;
  font-weight: 500;
  line-height: 1.38;
  display: flex;
  grid-area: category;
}
@media (min-width: 769px) {
  .p-usecase__card-info {
    font-size: 12rem;
    line-height: 1.17;
  }
}
.p-usecase__card-info dt, .p-usecase__card-info dd {
  width: fit-content;
  display: inline-block;
}
.p-usecase__card-info dd {
  margin-right: 2em;
}
.p-usecase__card-text {
  margin-inline: auto;
  padding: 6rem 10rem 8rem;
  width: 236rem;
  display: block;
  font-size: 12rem;
  font-weight: 500;
  line-height: 1.3;
  background-color: #FFFBDB;
  border-radius: 14rem;
}
@media (min-width: 769px) {
  .p-usecase__card-text {
    padding: 17rem 25rem 14rem;
    width: 432rem;
    font-size: 16rem;
    flex-grow: 1;
  }
}
.p-usecase__card-text span.p-usecase__marker {
  display: inline;
  background: linear-gradient(transparent 25%, #8DE7C7 25%);
  line-height: 1;
}

.p-faq {
  padding-block: 44rem 40rem;
  width: 100%;
  display: block;
  background-color: #fff;
}
@media (min-width: 769px) {
  .p-faq {
    padding-block: 70rem 90rem;
  }
}
.p-faq h2 {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #333;
}
@media (min-width: 769px) {
  .p-faq h2 {
    font-size: 48rem;
    line-height: 1.44;
  }
}
.p-faq h2::after {
  content: "";
  margin: 14rem auto 0;
  width: 42rem;
  height: 4rem;
  display: block;
  background-color: #296DAC;
}
@media (min-width: 769px) {
  .p-faq h2::after {
    margin-top: 26rem;
    width: 72rem;
    height: 6rem;
  }
}
.p-faq details {
  margin-inline: auto;
  width: 275rem;
}
@media (min-width: 769px) {
  .p-faq details {
    width: 940rem;
  }
}
.p-faq details:first-of-type {
  margin-top: 22rem;
}
@media (min-width: 769px) {
  .p-faq details:first-of-type {
    margin-top: 50rem;
  }
}
.p-faq details + details {
  margin-top: 26rem;
}
@media (min-width: 769px) {
  .p-faq details + details {
    margin-top: 50rem;
  }
}
.p-faq details[open] summary::after {
  background-color: #D4F8FF;
  background-image: linear-gradient(#333, #333);
  background-size: 15rem 3rem;
}
@media (min-width: 769px) {
  .p-faq details[open] summary::after {
    background-size: 20rem 4rem;
  }
}
.p-faq summary {
  padding-bottom: 5rem;
  display: flex;
  align-items: center;
  gap: 0 8rem;
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  border-bottom: 1rem solid #494949;
  cursor: pointer;
  list-style: none;
}
@media (min-width: 769px) {
  .p-faq summary {
    padding-bottom: 12rem;
    gap: 0 20rem;
    font-size: 16rem;
    border-bottom-width: 2rem;
  }
}
.p-faq summary::-webkit-details-marker {
  display: none;
}
.p-faq summary > span {
  width: 36rem;
  height: 36rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 18rem;
  font-weight: 700;
  background-color: #D4F8FF;
  border-radius: 50%;
}
@media (min-width: 769px) {
  .p-faq summary > span {
    width: 60rem;
    height: 60rem;
    font-size: 24rem;
  }
}
.p-faq summary::after {
  content: "";
  margin-left: auto;
  width: 28rem;
  height: 28rem;
  flex-shrink: 0;
  background-color: #78ADE9;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-size: 3rem 15rem, 15rem 3rem;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 2rem;
  transition: background-color 0.3s ease-in-out;
}
@media (min-width: 769px) {
  .p-faq summary::after {
    width: 50rem;
    height: 50rem;
    background-size: 4rem 20rem, 20rem 4rem;
    border-radius: 4rem;
  }
}
.p-faq details > div {
  padding: 17rem 0 27rem;
}
@media (min-width: 769px) {
  .p-faq details > div {
    padding: 10rem 0 8rem;
    display: flex;
    align-items: flex-start;
    gap: 0 20rem;
  }
}
.p-faq details > div > span {
  display: none;
}
@media (min-width: 769px) {
  .p-faq details > div > span {
    width: 60rem;
    height: 60rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    font-size: 24rem;
    font-weight: 700;
    color: #fff;
    background-color: #78ADE9;
    border-radius: 50%;
  }
}
.p-faq details > div p {
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333;
}
@media (min-width: 769px) {
  .p-faq details > div p {
    font-size: 16rem;
  }
}
.u-inner, .u-inner__about {
  margin: 0 auto;
  width: 343rem;
}
@media (min-width: 769px) {
  .u-inner, .u-inner__about {
    max-width: 1200rem;
    width: 100%;
  }
}

.u-inner__fv {
  margin: 0 auto;
  width: 343rem;
  height: 100%;
  position: relative;
}
@media (min-width: 769px) {
  .u-inner__fv {
    max-width: 1440rem;
    width: 100%;
  }
}

@media (min-width: 769px) {
  .u-inner__about {
    display: flex;
    justify-content: space-between;
  }
}

@media (min-width: 769px) {
  .u-inner-value {
    margin-inline: auto;
    max-width: 1000rem;
    width: 100%;
  }
}

.u-inner-business {
  margin: 0 auto;
  width: 343rem;
}
@media (min-width: 769px) {
  .u-inner-business {
    margin-inline: auto;
    max-width: 850rem;
    width: 100%;
  }
}

.u-br-sp {
  display: block;
}
@media (min-width: 769px) {
  .u-br-sp {
    display: none;
  }
}

.u-br-pc {
  display: none;
}
@media (min-width: 769px) {
  .u-br-pc {
    display: block;
  }
}

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

.u-uppercase {
  text-transform: uppercase;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
