@charset "UTF-8";
/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll 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;
  }
}
html {
  font-size: 100%;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.568627451vw;
  }
}
@media (min-width: 1020px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  color: #333;
  scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.5;
    cursor: pointer;
  }
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 280px;
}

.l-footer {
  position: sticky;
  top: 100vh;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.login .l-header {
  padding: 0.625rem 3.5625rem 1.25rem 0.875rem;
}
@media screen and (min-width: 768px) {
  .login .l-header {
    padding: 1.25rem 3.5625rem 2rem 2.3125rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 1.625rem;
  padding-left: 1.625rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1020px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

.c-btn-top {
  width: min(85%, 316px);
}
.c-btn-top a {
  display: block;
  width: 100%;
  padding-top: 0.8125rem;
  padding-bottom: 0.9375rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  background: #fff;
  border: 4px solid #7B7B7B;
  border-radius: 100vh;
  position: relative;
}
.c-btn-top a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  z-index: 1;
}
.c-btn-top a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 1.75rem;
  height: 1.75rem;
  background: #EC6233;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-btn {
  padding-top: 0.625rem;
  padding-right: 1.625rem;
  padding-bottom: 0.75rem;
  padding-left: 1.625rem;
  background: #626262;
  border-radius: 100vh;
  color: #fff;
}

.c-download {
  display: block;
  padding: 1.125rem 1.125rem 0.5625rem 1.4375rem;
  min-height: 6.0625rem;
  background: -webkit-gradient(linear, left top, right top, from(#BEBEBE), to(#FFFFFF));
  background: linear-gradient(to right, #BEBEBE 0%, #FFFFFF 100%);
  border: 3px solid #fff;
  border-radius: 5px;
  position: relative;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .28);
          box-shadow: 0 0 6px rgba(0, 0, 0, .28);
}
.c-download__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
}
.c-download__title {
  grid-area: title;
  font-size: 1rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-download__title::after {
  margin-left: 0.4375rem;
  content: "";
  display: block;
  width: 1.625rem;
  height: 1.625rem;
}
.c-download__link {
  grid-area: link;
  padding: 0.1875rem 0.625rem;
  display: block;
  font-family: "montserrat", sans-serif;
  font-size: 0.625rem;
  color: #fff;
  background-color: #000000;
  text-align: center;
  letter-spacing: -0.02em;
  line-height: 1.3076923077;
  border-radius: 100vh;
}
.c-download__excel::after {
  background: url("../images/icon_excel.svg") no-repeat center center/contain;
}
.c-download__pdf::after {
  background: url("../images/icon_pdf.svg") no-repeat center center/contain;
}
.c-download__jpg::after {
  background: url("../images/icon_jpg.svg") no-repeat center center/contain;
}
.c-download__png::after {
  background: url("../images/icon_png.svg") no-repeat center center/contain;
}
.c-download__doc::after {
  background: url("../images/icon_doc.svg") no-repeat center center/contain;
}
.c-download__other::after {
  background: url("../images/icon_other.svg") no-repeat center center/contain;
}
.c-download__text {
  grid-area: text;
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
}
.c-download--draft::before {
  content: "Coming Soon";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 1.9375rem;
  font-weight: 700;
  color: #FF7600;
  background: rgba(255, 255, 255, .83);
}

.c-download2 {
  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;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.25rem;
  width: 100%;
}
.c-download2::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.8125rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  background: url("../images/icon_other.svg") no-repeat center center/contain;
}
.c-download2[href$=".pdf"]::before {
  background: url("../images/icon_pdf.svg") no-repeat center center/contain;
}
.c-download2[href$=".xlsx"]::before, .c-download2[href$=".xls"]::before, .c-download2[href$=".xlsm"]::before {
  background: url("../images/icon_excel.svg") no-repeat center center/contain;
}
.c-download2[href$=".jpg"]::before {
  background: url("../images/icon_jpg.svg") no-repeat center center/contain;
}
.c-download2[href$=".png"]::before {
  background: url("../images/icon_png.svg") no-repeat center center/contain;
}
.c-download2[href$=".doc"]::before, .c-download2[href$=".docx"]::before, .c-download2[href$=".docm"]::before {
  background: url("../images/icon_word.svg") no-repeat center center/contain;
}
.c-download2::after {
  content: "download";
  display: block;
  margin-left: 0.625rem;
  padding: 0.1875rem 0.625rem;
  font-size: 0.5625rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  background: #000;
  border-radius: 100vh;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .c-download2::after {
    font-size: 0.625rem;
  }
}

.c-manual-arrow {
  height: 24px;
  background: #000000;
  -webkit-clip-path: polygon(calc(50% - 19.5px) 0, calc(50% + 19.5px) 0, 50% 100%);
          clip-path: polygon(calc(50% - 19.5px) 0, calc(50% + 19.5px) 0, 50% 100%);
}
@media screen and (min-width: 768px) {
  .c-manual-arrow {
    height: 52px;
    -webkit-clip-path: polygon(calc(50% - 41.5px) 0, calc(50% + 40px) 0, 50% 100%);
            clip-path: polygon(calc(50% - 41.5px) 0, calc(50% + 40px) 0, 50% 100%);
  }
}

.c-manual-caution {
  padding: 0.875rem 1.125rem 1.25rem 2rem;
  border: 1px solid #707070;
  position: relative;
  font-size: 0.875rem;
  color: #FF0000;
  background: #FFF61D;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .c-manual-caution {
    padding: 1.3125rem 1.875rem 1.5625rem 2.875rem;
    font-size: 0.875rem !important;
    letter-spacing: -0.02em;
  }
}
.c-manual-caution::before {
  content: "※";
  position: absolute;
  left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .c-manual-caution::before {
    left: 1.875rem;
  }
}

.p-dnav ul {
  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.8125rem;
}
.p-dnav li a {
  padding: 1.25rem 1.25rem 1.0625rem 1.25rem;
  display: block;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0 0 3px rgba(0, 0, 0, .57);
  border: 3px solid #fff;
  border-radius: 0.3125rem;
}
.p-dnav li:nth-of-type(1) a {
  background: -webkit-gradient(linear, left top, right top, from(#008190), to(#00A6B7));
  background: linear-gradient(to right, #008190 0%, #00A6B7 100%);
}
.p-dnav li:nth-of-type(2) a {
  background: -webkit-gradient(linear, left top, right top, from(#0096C3), to(#27B7D9));
  background: linear-gradient(to right, #0096C3 0%, #27B7D9 100%);
}
.p-dnav li:nth-of-type(3) a {
  background: -webkit-gradient(linear, left top, right top, from(#1D57B5), to(#5B93F0));
  background: linear-gradient(to right, #1D57B5 0%, #5B93F0 100%);
}
.p-dnav li:nth-of-type(4) a {
  background: -webkit-gradient(linear, left top, right top, from(#26346F), to(#4B6FA0));
  background: linear-gradient(to right, #26346F 0%, #4B6FA0 100%);
}

.p-factaling-fv {
  height: 37vw;
  min-height: 222px;
  max-height: 380px;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: url("../images/bg-factaling-fv-sp.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-factaling-fv {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("../images/bg-factaling-fv.jpg") no-repeat center center/cover;
  }
}
.p-factaling-fv__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-factaling-fv__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-factaling-fv__heading {
  margin-bottom: 1rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 6px rgb(0, 0, 0);
  border-top: 1px solid rgba(112, 112, 112, .5);
  border-bottom: 1px solid rgba(112, 112, 112, .5);
  background: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 768px) {
  .p-factaling-fv__heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.25rem;
    padding-right: 2.875rem;
    padding-left: 1.0625rem;
    -webkit-clip-path: polygon(0 0, calc(100% - 1.375rem) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 1.375rem) 0, 100% 100%, 0 100%);
  }
}
.p-factaling-wrap {
  padding-top: 3.5rem;
  padding-bottom: 5.625rem;
  background-color: #EDFAFF;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-wrap {
    padding-top: 0;
    padding-bottom: 6.25rem;
    font-size: 1rem;
  }
}
.p-factaling-wrap__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-factaling-wrap__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-factaling-content {
  padding-top: 2rem;
  padding-bottom: 6.5rem;
  padding-inline: 1.4375rem;
  background-color: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.76)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, .76));
          filter: drop-shadow(0 0 4px rgba(0, 0, 0, .76));
}
@media screen and (min-width: 768px) {
  .p-factaling-content {
    margin-top: -5.375rem;
    padding-top: 2.0625rem;
    padding-bottom: 5.375rem;
    padding-inline: 3.75rem;
    border-radius: 5px;
  }
}
.p-factaling-prehead {
  font-size: 1em;
  line-height: 1.4285714286;
}
.p-factaling-heading {
  padding: 0.625rem 0.75rem;
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, .57);
  background: #0386A3;
}
@media screen and (min-width: 768px) {
  .p-factaling-heading {
    font-size: 1.125em;
    padding: 1rem 1.375rem;
  }
}
.p-factaling-what-is {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-what-is {
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-factaling-what-is__content {
    padding-inline: 1.25rem;
  }
}
.p-factaling-what-is__text {
  margin-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  font-size: 1em;
  line-height: 1.4285714286;
  border-bottom: 1px dashed #707070;
}
@media screen and (min-width: 768px) {
  .p-factaling-what-is__text {
    margin-top: 1.5rem;
  }
}
.p-factaling-what-is__text2 {
  margin-top: 1.5rem;
  font-size: 1em;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-factaling-what-is__text2 {
    margin-top: 2.3125rem;
  }
}
.p-factaling-what-is__image {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-what-is__image {
    margin-top: 1.625rem;
  }
}
.p-factaling-pros {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-pros {
    margin-top: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-factaling-pros__content {
    padding-inline: 2.8125rem;
  }
}
.p-factaling-pros__list {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-pros__list {
    margin-top: 1.3125rem;
  }
}
.p-factaling-pros__item {
  padding-top: 0.5rem;
  padding-bottom: 0.625rem;
  font-size: 0.8571428571em;
  line-height: 1;
  border-bottom: 1px solid #B9B9B9;
}
@media screen and (min-width: 768px) {
  .p-factaling-pros__item {
    padding-top: 0.875rem;
    padding-bottom: 1rem;
    font-size: 1em;
  }
}
.p-factaling-pros__text {
  margin-top: 0.625rem;
  font-size: 1em;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-factaling-pros__text {
    margin-top: 1rem;
  }
}
.p-factaling-document {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-document {
    margin-top: 3.0625rem;
  }
}
@media screen and (min-width: 768px) {
  .p-factaling-document__content {
    padding-inline: 2.3125rem;
  }
}
.p-factaling-document__text {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-factaling-document__text {
    margin-top: 1rem;
  }
}
.p-factaling-document__note {
  margin-top: 0.625rem;
  border: 6px solid #FF5700;
}
@media screen and (min-width: 768px) {
  .p-factaling-document__note {
    margin-top: 0.75rem;
  }
}
.p-factaling-document__note-title {
  padding: 1.125rem 1.125rem 1.375rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #FF7600;
  line-height: 1.4285714286;
}
.p-factaling-document__note-text {
  padding: 0.625rem 1.5625rem 1.25rem;
  font-size: 1rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-factaling-document__note-text {
    padding: 1rem 1.5625rem 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .p-factaling-company {
    padding-inline: 2.3125rem;
  }
}
.p-factaling-company__content {
  margin-top: 1.875rem;
  padding: 1.25rem 1.5625rem 1.875rem;
  border: 1px solid #707070;
}
.p-factaling-company__heading {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.4285714286;
}
.p-factaling-company__info {
  margin-top: 0.5rem;
  font-size: 1em;
}
@media screen and (min-width: 768px) {
  .p-factaling-company__info {
    line-height: 1.5;
  }
}

.p-flow-fv {
  height: 37vw;
  min-height: 222px;
  max-height: 380px;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: url("../images/bg-flow-fv-sp.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-flow-fv {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("../images/bg-flow-fv.jpg") no-repeat center center/cover;
  }
}
.p-flow-fv__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow-fv__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-flow-fv__heading {
  margin-bottom: 1rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 6px rgb(0, 0, 0);
  border-top: 1px solid rgba(112, 112, 112, .5);
  border-bottom: 1px solid rgba(112, 112, 112, .5);
  background: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 768px) {
  .p-flow-fv__heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.25rem;
    padding-right: 2.875rem;
    padding-left: 1.0625rem;
    -webkit-clip-path: polygon(0 0, calc(100% - 1.375rem) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 1.375rem) 0, 100% 100%, 0 100%);
  }
}
.p-flow-wrap {
  padding-top: 3.5rem;
  padding-bottom: 5.625rem;
  background-color: #EDFAFF;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow-wrap {
    padding-top: 0;
    padding-bottom: 6.25rem;
    font-size: 1rem;
  }
}
.p-flow-wrap__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow-wrap__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-flow-prehead {
  font-size: 1em;
  line-height: 1.4285714286;
}
.p-flow-content {
  padding-top: 2rem;
  padding-bottom: 3.875rem;
  padding-inline: 1.4375rem;
  background-color: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.76)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, .76));
          filter: drop-shadow(0 0 4px rgba(0, 0, 0, .76));
}
@media screen and (min-width: 768px) {
  .p-flow-content {
    margin-top: -5.375rem;
    padding-top: 2.0625rem;
    padding-bottom: 3.4375rem;
    padding-inline: 3.75rem;
    border-radius: 5px;
  }
}
.p-flow-heading {
  padding: 0.625rem 0.75rem;
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 6px rgba(0, 0, 0, .57);
  background: #2C5E90;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-flow-heading {
    font-size: 1.125em;
    padding: 1rem 1.375rem;
  }
}
.p-flow-btn {
  padding: 2.1875rem 1.5rem 2.1875rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#D9D9D9), to(#FAFAFA));
  background: linear-gradient(to right, #D9D9D9, #FAFAFA);
  border: 3px solid #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 6px rgb(0, 0, 0);
          box-shadow: 0 0 6px rgb(0, 0, 0);
}
.p-flow-btn span {
  font-size: 0.75em;
}
.p-flow-btn--factaling {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#0096C3), to(#27B7D9));
  background: linear-gradient(to right, #0096C3, #27B7D9);
}
.p-flow-btn--keiyaku {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#1D57B5), to(#5B93F0));
  background: linear-gradient(to right, #1D57B5, #5B93F0);
}
.p-flow-flow-content {
  padding: 1.3125rem 0 1.25rem 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow-flow-content {
    padding: 2.25rem 0rem 2.1875rem 5rem;
  }
}
.p-flow-flow-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.4375rem;
  width: 1.25rem;
  height: 100%;
  background: #002141;
  -webkit-clip-path: polygon(50% 100%, 100% calc(100% - 1.125rem), calc(100% - 0.4375rem) calc(100% - 1.125rem), calc(100% - 0.4375rem) 0, 0.4375rem 0, 0.4375rem calc(100% - 1.125rem), 0 calc(100% - 1.125rem));
          clip-path: polygon(50% 100%, 100% calc(100% - 1.125rem), calc(100% - 0.4375rem) calc(100% - 1.125rem), calc(100% - 0.4375rem) 0, 0.4375rem 0, 0.4375rem calc(100% - 1.125rem), 0 calc(100% - 1.125rem));
}
.p-flow-flow:last-of-type .p-flow-flow-content::before {
  content: none;
}
.p-flow-flow1 {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow-flow1 {
    margin-top: 2rem;
  }
}
.p-flow-flow1__btns {
  margin-top: 0.625rem;
  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.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow-flow1__btns {
    width: 100%;
    max-width: 36.5625rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
  }
}
.p-flow-flow1__note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow-flow1__note {
    font-size: 1rem;
  }
}
.p-flow-flow2, .p-flow-flow3, .p-flow-flow4, .p-flow-flow5 {
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-flow-flow2, .p-flow-flow3, .p-flow-flow4, .p-flow-flow5 {
    margin-top: 0;
  }
}
.p-flow-flow2__btns {
  margin-top: 0.625rem;
  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.625rem;
}
@media screen and (min-width: 768px) {
  .p-flow-flow2__btns {
    width: 100%;
    max-width: 36.5625rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.375rem;
  }
}
.p-flow-flow2__btn {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .53);
          box-shadow: 0 0 6px rgba(0, 0, 0, .53);
}
.p-flow-flow2__note {
  margin-top: 1.5rem;
  color: #E5582B;
}
@media screen and (min-width: 768px) {
  .p-flow-flow2__note {
    margin-top: 0.625rem;
  }
}
.p-flow-flow2 .c-download2::before {
  margin-left: 0.5rem;
}
.p-flow-flow2 .c-download2::after {
  margin-left: 0.375rem;
}
.p-flow-flow4__box {
  margin-top: 0.625rem;
  padding: 1.25rem 1.25rem 0.75rem 1.5rem;
  border: 1px solid #707070;
}
.p-flow-flow5__text span {
  color: #FF0000;
}

.p-footer {
  background-color: #000;
}
.p-footer__info {
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  background-color: #044399;
  border-top: 1px solid #414141;
  border-bottom: 1px solid #414141;
}
.p-footer__contact {
  font-size: 1rem;
  color: #fff;
  line-height: 1.7;
}
.p-footer__tel-area {
  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 (min-width: 768px) {
  .p-footer__tel-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.p-footer__tel {
  font-size: 1.3125rem;
  color: #fff;
}
.p-footer__mail {
  margin-top: 0.75rem;
  padding: 0.5rem 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#CBCBCB));
  background: linear-gradient(to bottom, #fff 0%, #CBCBCB 100%);
  border: 1px solid #707070;
  border-radius: 0.5rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
.p-footer__mail:hover {
  opacity: 0.5;
}
.p-footer__copy {
  padding-top: 1.4375rem;
  padding-bottom: 1.625rem;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}
.p-footer__copy-text {
  font-size: 1rem;
  color: #fff;
}

.p-gnav {
  background: #fff;
}
.p-gnav ul {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-gnav ul {
    display: grid;
  }
}
.p-gnav li {
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-gnav li::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.p-gnav li:hover {
  opacity: 0.5;
}
.p-gnav li:last-of-type::after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #fff;
}
.p-gnav li > a {
  display: block;
  padding: 1.4375rem 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, .57);
}
.p-gnav li > a:hover {
  opacity: 1;
}
.p-gnav .p-gnav__flow a {
  background: -webkit-gradient(linear, left top, right top, from(#008190), to(#00A6B7));
  background: linear-gradient(to right, #008190 0%, #00A6B7 100%);
}
.p-gnav .p-gnav__factaling a {
  background: -webkit-gradient(linear, left top, right top, from(#0096C3), to(#27B7D9));
  background: linear-gradient(to right, #0096C3 0%, #27B7D9 100%);
}
.p-gnav .p-gnav__keiyaku a {
  background: -webkit-gradient(linear, left top, right top, from(#1D57B5), to(#5B93F0));
  background: linear-gradient(to right, #1D57B5 0%, #5B93F0 100%);
}
.p-gnav .p-gnav__download a {
  background: -webkit-gradient(linear, left top, right top, from(#26346F), to(#4B6FA0));
  background: linear-gradient(to right, #26346F 0%, #4B6FA0 100%);
}

.p-header {
  background-color: #fff;
  /*ボタン外側*/
  /*ボタン内側*/
  /*activeクラスが付与されると線が回転して×に*/
}
.p-header__inner {
  position: relative;
  z-index: 10;
  padding: 0.375rem 1.0625rem 1.125rem 0.875rem;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 1.25rem 3.5625rem 2rem 2.3125rem;
  }
}
.p-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
}
.p-header__title-wrap {
  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 (min-width: 768px) {
  .p-header__title-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.p-header__logo {
  width: min(59%, 18.75rem);
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 19.375rem;
  }
}
.p-header__title {
  padding-left: 2.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-header__title {
    margin-top: 0.5rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-left: 0;
    font-size: 1.125rem;
  }
}
.p-header__btns {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-header__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-header__contact {
  position: relative;
  background: #004289;
  padding-left: 4.5rem;
}
.p-header__contact::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 1.625rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.875rem;
  height: 1.25rem;
  background: url("../images/icon-mail.svg") no-repeat center center/contain;
}
.p-header__gnav-wrap {
  background: -webkit-gradient(linear, right top, left top, from(#003A7E), to(#00BEA0));
  background: linear-gradient(to left, #003A7E 0%, #00BEA0 100%);
}
.p-header .openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
  追従するナビゲーションの場合はfixed+top、rightといった位置をセットで指定*/
  position: relative;
  cursor: pointer;
  width: 43px;
  height: 43px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .p-header .openbtn {
    display: none;
  }
}
.p-header .openbtn span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 2px;
  background: #2C2C2C;
  width: 100%;
}
.p-header .openbtn span:nth-of-type(1) {
  top: 15px;
}
.p-header .openbtn span:nth-of-type(2) {
  top: 23px;
}
.p-header .openbtn span:nth-of-type(3) {
  top: 31px;
}
.p-header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 0;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.p-header .openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.p-header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 0;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
.p-header__dnav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  overflow: auto;
  background: rgba(255, 255, 255, .3);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
.p-header__dnav-bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.p-header__dnav-content {
  top: 0;
  left: 0;
  z-index: 5;
  padding-top: 6.5rem;
  padding-bottom: 2rem;
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#003A7E), to(#00BEA0));
  background: linear-gradient(to left, #003A7E 0%, #00BEA0 100%);
}
@-webkit-keyframes dnav {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes dnav {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.p-header__dnav-wrap .l-inner {
  max-width: 500px;
}
.p-header__dnav-misc {
  margin-top: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-header__dnav-qa, .p-header__dnav-contact {
  display: block;
  padding: 0.9375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.p-header__dnav-logout {
  margin-top: 2.1875rem;
  display: block;
  padding: 0.9375rem;
  font-weight: 700;
  color: #000000;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#B9B9B9), to(#EBEBEB));
  background: linear-gradient(to right, #B9B9B9 0%, #EBEBEB 100%);
  border: 3px solid #fff;
  border-radius: 0.3125rem;
}

.login .p-header__inner {
  padding: 0;
}

.login .p-header__logo {
  width: min(62%, 18.75rem);
}

.p-keiyaku-fv {
  height: 37vw;
  min-height: 222px;
  max-height: 380px;
  display: grid;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  background: url("../images/bg-keiyaku-fv-sp.jpg") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-fv {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: url("../images/bg-keiyaku-fv.jpg") no-repeat center center/cover;
  }
}
.p-keiyaku-fv__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-fv__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-keiyaku-fv__heading {
  margin-bottom: 1rem;
  padding-top: 0.5625rem;
  padding-bottom: 0.5625rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 6px rgb(0, 0, 0);
  border-top: 1px solid rgba(112, 112, 112, .5);
  border-bottom: 1px solid rgba(112, 112, 112, .5);
  background: rgba(0, 0, 0, .5);
}
@media screen and (min-width: 768px) {
  .p-keiyaku-fv__heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.25rem;
    padding-right: 2.875rem;
    padding-left: 1.0625rem;
    -webkit-clip-path: polygon(0 0, calc(100% - 1.375rem) 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 1.375rem) 0, 100% 100%, 0 100%);
  }
}
.p-keiyaku-wrap {
  padding-top: 3.5rem;
  padding-bottom: 5.625rem;
  background-color: #EDFAFF;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-wrap {
    padding-top: 0;
    padding-bottom: 6.25rem;
    font-size: 1rem;
  }
}
.p-keiyaku-wrap__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-wrap__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-keiyaku-content {
  padding-top: 2.8125rem;
  padding-bottom: 3.5625rem;
  padding-inline: 1.4375rem;
  background-color: #fff;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.76)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, .76));
          filter: drop-shadow(0 0 4px rgba(0, 0, 0, .76));
}
@media screen and (min-width: 768px) {
  .p-keiyaku-content {
    margin-top: -5.375rem;
    padding-top: 3.875rem;
    padding-bottom: 5.375rem;
    padding-inline: 5.1875rem;
    border-radius: 5px;
  }
}
.p-keiyaku-btn {
  display: grid;
  place-items: center;
  padding: 0.9375rem 1.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#D9D9D9), to(#FAFAFA));
  background: linear-gradient(to right, #D9D9D9, #FAFAFA);
  border: 3px solid #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 3px rgb(0, 0, 0);
          box-shadow: 0 0 3px rgb(0, 0, 0);
}
.p-keiyaku-btn span {
  font-size: 0.75em;
}
.p-keiyaku-title {
  font-size: 1.3125rem;
  color: #245FBD;
  line-height: 1.1428571429;
  text-align: center;
}
.p-keiyaku-signature {
  padding: 2rem 1.5rem;
  background-color: #F2F2F2;
  border: 1px solid #245FBD;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-signature {
    padding: 3.125rem 10.375rem 1.375rem;
  }
}
.p-keiyaku-signature .p-keiyaku-btn {
  color: #fff;
  padding: 2.3125rem 1.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#1D57B5), to(#5B93F0));
  background: linear-gradient(to right, #1D57B5, #5B93F0);
}
.p-keiyaku-signature__text {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-signature__text {
    margin-top: 0.75rem;
    text-align: center;
  }
}
.p-keiyaku-manual {
  margin-top: 2.5rem;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-manual {
    margin-top: 2.375rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
.p-keiyaku-manual > * {
  display: grid;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-manual > * {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: 0.75rem;
  }
}
.p-keiyaku-manual p {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-manual p {
    margin-inline: auto;
    width: 95%;
  }
}
.p-keiyaku-reference {
  margin-top: 1.8125rem;
  padding: 2rem 1.5rem;
  background-color: #F2F2F2;
  border: 1px solid #245FBD;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-reference {
    padding: 2.125rem 1.875rem 2.5rem;
  }
}
.p-keiyaku-reference__description {
  font-size: 0.875rem;
  margin-top: 0.625rem;
  width: fit-content;
  margin-inline: auto;
}
.p-keiyaku-reference a {
  margin-top: 1.25rem;
  padding: 1.875rem 1rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0.8125rem;
  white-space: nowrap;
  background: -webkit-gradient(linear, left top, right top, from(#BEBEBE), to(#FFFFFF));
  background: linear-gradient(to right, #BEBEBE, #FFFFFF);
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-reference a {
    margin-inline: auto;
    max-width: 19.25rem;
    font-size: 1rem;
  }
}
.p-keiyaku-reference a::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.8125rem;
  background: url("../images/icon_pdf.svg") no-repeat center center/contain;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.p-keiyaku-reference a[href$=".xlsx"]::before,
.p-keiyaku-reference a[href$=".xls"]::before,
.p-keiyaku-reference a[href$=".xlsm"]::before {
  background: url("../images/icon_excel.svg") no-repeat center center/contain;
}
.p-keiyaku-reference a[href$=".jpg"]::before {
  background: url("../images/icon_jpg.svg") no-repeat center center/contain;
}
.p-keiyaku-reference a[href$=".png"]::before {
  background: url("../images/icon_png.svg") no-repeat center center/contain;
}
.p-keiyaku-reference a[href$=".doc"]::before,
.p-keiyaku-reference a[href$=".docx"]::before,
.p-keiyaku-reference a[href$=".docm"]::before {
  background: url("../images/icon_word.svg") no-repeat center center/contain;
}
.p-keiyaku-reference a::after {
  content: "download";
  display: block;
  margin-left: 0.625rem;
  padding: 0.1875rem 0.625rem;
  font-size: 0.5625rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  color: #fff;
  background: #000;
  border-radius: 100vh;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-reference a::after {
    font-size: 0.625rem;
  }
}
.p-keiyaku-qa {
  margin-top: 3.75rem;
  margin-inline: calc(50% - 50vw);
  padding: 2.8125rem 2rem 2.625rem;
  border: #245FBD solid 6px;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-qa {
    margin-inline: unset;
    padding: 2.75rem 1.25rem 3.3125rem;
  }
}
.p-keiyaku-qa__title {
  font-size: 1rem;
  color: #26346F;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-qa__title {
    font-size: 1.3125rem;
    color: #245FBD;
  }
}
.p-keiyaku-qa__text {
  margin-top: 0.8125rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .p-keiyaku-qa__text {
    margin-top: 0.625rem;
    text-align: center;
  }
}
.p-keiyaku-qa__text a {
  color: #0076FF;
}
.p-keiyaku-qa__text a:hover {
  color: #0076FF;
}
.p-keiyaku-qa .p-keiyaku-btn {
  margin-top: 0.75rem;
  padding: 1.875rem 1rem 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#BEBEBE), to(#FFFFFF));
  background: linear-gradient(to right, #BEBEBE, #FFFFFF);
}
@media screen and (min-width: 768px) {
  .p-keiyaku-qa .p-keiyaku-btn {
    margin-top: 1.5rem;
    margin-inline: auto;
    max-width: 19.25rem;
  }
}

.p-login {
  padding-top: 4.375rem;
  padding-bottom: 6.25rem;
  background: url(../images/bg-login-sp.jpg) no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .p-login {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
    background: url(../images/bg-login.jpg) no-repeat center center/cover;
  }
}
@media screen and (min-width: 768px) {
  .p-login__content {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-login__title {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #004289;
}
@media screen and (min-width: 768px) {
  .p-login__title {
    font-size: 1.3125rem;
  }
}
.p-login__error {
  color: #E5582B;
}

.p-form {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-form {
    margin-top: 1.875rem;
  }
}
.p-form__input-wrap + .p-form__input-wrap {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-form__input-wrap + .p-form__input-wrap {
    margin-top: 1rem;
  }
}
.p-form__input {
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .p-form__input {
    width: unset;
  }
}
.p-form__input input {
  width: 100%;
  font-size: 1.125rem;
  padding: 0.125rem 1.25rem 0.125rem 3.125rem;
  border: 1px solid #626262;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-form__input input {
    width: 22.5rem;
    font-size: 1.3125rem;
  }
}
.p-form__input {
  position: relative;
}
.p-form__input::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-form__input--user::after {
  width: 1rem;
  height: 1.3125rem;
  left: 1.125rem;
  background: url(../images/icon-user.svg) no-repeat center center/contain;
}
.p-form__input--password::after {
  width: 1.125rem;
  height: 1.25rem;
  left: 1rem;
  background: url(../images/icon-lock.svg) no-repeat center center/contain;
}
.p-form__input--password {
  position: relative;
}
.p-form__input--password::after {
  position: absolute;
}
.p-form__submit input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 3.875rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  width: 100%;
  font-size: 1rem;
  border: 2px solid #707070;
  border-radius: 0.625rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#CBCBCB));
  background: linear-gradient(to bottom, #fff 0%, #CBCBCB 100%);
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-form__submit input {
    width: 22.5rem;
  }
}

.p-manual {
  padding-top: 1.875rem;
  padding-bottom: 4.875rem;
  background-color: #EDFAFF;
  counter-reset: h3num;
}
@media screen and (min-width: 768px) {
  .p-manual {
    padding-top: 3.75rem;
    padding-bottom: 9.125rem;
  }
}
.p-manual__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-manual__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-manual h1 {
  margin-inline: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #203E97;
  letter-spacing: 0.05em;
  margin-bottom: 1.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-manual h1 {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
}
.p-manual h2 {
  margin-bottom: 0.6875rem;
  padding-top: 1.6875rem;
  padding-bottom: 1.8125rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #002D5C;
  counter-reset: h3num;
}
@media screen and (min-width: 768px) {
  .p-manual h2 {
    margin-bottom: 1.75rem;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
  }
}
.p-manual h3 {
  margin-bottom: 0.8125rem;
  padding: 0.75rem 0.5625rem 0.75rem 3.1875rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #2C5E90;
  letter-spacing: -0.02em;
  line-height: 1.3125;
  position: relative;
  counter-increment: h3num;
}
@media screen and (min-width: 768px) {
  .p-manual h3 {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6111111111;
  }
}
.p-manual h3::before {
  content: counter(h3num);
  position: absolute;
  left: 1.4375rem;
  font-size: 1.25rem;
  font-weight: 700;
  top: 0.625rem;
}
.p-manual h3::after {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0.625rem;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 100vh;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-manual h3::after {
    top: 0.8125rem;
  }
}
.p-manual p {
  margin-bottom: 0.625rem;
  margin-inline: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-manual p {
    margin-inline: unset;
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.p-manual figure {
  margin-inline: 1.5rem;
}
.p-manual figure img {
  width: 100%;
  max-width: unset;
}
@media screen and (min-width: 768px) {
  .p-manual figure {
    margin-inline: unset;
  }
}
.p-manual h2 + p {
  margin-top: 1.8125rem;
}
.p-manual h3 + figure {
  margin-top: 1.375rem;
}
.p-manual figure + h2 {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-manual figure + h2 {
    margin-top: 7.9375rem;
  }
}
.p-manual figure + .c-manual-arrow {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-manual figure + .c-manual-arrow {
    margin-top: 1rem;
  }
}
.p-manual figure + .c-manual-caution {
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-manual figure + .c-manual-caution {
    margin-bottom: 1.5rem;
  }
}
.p-manual figure + *:not(.c-manual-arrow):not(h2) {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-manual figure + *:not(.c-manual-arrow):not(h2) {
    margin-top: 1.5rem;
  }
}
.p-manual .c-manual-arrow + h2 {
  margin-top: 1.375rem;
}
.p-manual .c-manual-arrow + h3 {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-manual .c-manual-arrow + h3 {
    margin-top: 1.75rem;
  }
}
.p-manual .c-manual-arrow + figure {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-manual .c-manual-arrow + figure {
    margin-top: 1rem;
  }
}
.p-manual a {
  color: #0076FF;
  text-decoration: none;
}

.p-manual-info-area {
  margin-inline: 1.5rem;
  padding: 1.3125rem 1rem;
  border: 3px solid #FF0000;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .p-manual-info-area {
    margin-inline: unset;
    padding: 1.4375rem 1.75rem;
  }
}
.p-manual-info-area .p-manual-info__item {
  display: grid;
  grid-template-columns: auto 1fr;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.p-manual-info-area .p-manual-info__item + .p-manual-info__item {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-manual-info-area .p-manual-info__item + .p-manual-info__item {
    margin-top: 1rem;
  }
}
.p-manual-info-area .p-manual-info--red {
  color: #FF0000;
}
.p-manual-info-area .p-manual-info__qanda {
  margin-top: 0.75rem;
}
.p-manual-info-area .p-manual-info__qanda-text {
  margin-inline: unset;
  font-size: 0.875rem;
  margin-bottom: 0;
}
.p-manual-info-area .p-manual-info__qanda-link {
  margin-top: 0;
  font-size: 0.875rem;
  color: #009DFF;
  white-space: nowrap;
  letter-spacing: 0;
}

.p-news {
  padding-top: 2.9375rem;
  padding-bottom: 4.1875rem;
  background: #EDFAFF;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 5.625rem;
    padding-bottom: 7.25rem;
  }
}
.p-news__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-news__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004289;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__ttl {
    font-size: 2rem;
  }
}
.p-news__list {
  margin-top: 2.4375rem;
  padding: 2.125rem 1.625rem 3rem;
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .76);
          box-shadow: 0 0 4px rgba(0, 0, 0, .76);
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 1.25rem;
    padding: 2.6875rem 2.9375rem 3.75rem;
    border-radius: 0.3125rem;
  }
}
.p-news__item + .p-news__item {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__item + .p-news__item {
    margin-top: 1.25rem;
  }
}
.p-news__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-news__item-date {
  font-weight: 700;
  color: #E5582B;
}
@media screen and (min-width: 768px) {
  .p-news__item-date {
    width: 5.625rem;
  }
}
.p-news__item-content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-content a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-news__item-title {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-news__item-title {
    font-size: 1rem;
    padding-inline: 0.3125rem 0.75rem;
  }
}
a .p-news__item-title {
  color: #044399;
}
.p-news__item-download-link {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-news__item--download .p-news__item-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-news__item--download .p-news__item-download span {
  display: block;
  padding: 0.375rem 0.625rem 0.4375rem;
  font-family: "montserrat", sans-serif;
  color: #fff;
  background: #676767;
  text-align: center;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .p-news__item--download .p-news__item-download span {
    padding: 0.25rem 0.8125rem;
    background: #000;
  }
}
.p-news__item--download .p-news__item-download::before {
  display: block;
  content: "";
  margin-right: 0.625rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.0625rem;
  height: 2.0625rem;
  background: url("../images/icon_other.svg") no-repeat left center/contain;
}
@media screen and (min-width: 768px) {
  .p-news__item--download .p-news__item-download::before {
    margin-right: 0.3125rem;
  }
}
.p-news__item--download[href$=".xlsx"] .p-news__item-download::before, .p-news__item--download[href$=".xls"] .p-news__item-download::before, .p-news__item--download[href$=".xlsm"] .p-news__item-download::before {
  background: url("../images/icon_excel.svg") no-repeat left center/contain;
}
.p-news__item--download[href$=".pdf"] .p-news__item-download::before {
  background: url("../images/icon_pdf.svg") no-repeat left center/contain;
}
.p-news__item--download[href$=".jpg"] .p-news__item-download::before {
  background: url("../images/icon_jpg.svg") no-repeat left center/contain;
}
.p-news__item--download[href$=".png"] .p-news__item-download::before {
  background: url("../images/icon_png.svg") no-repeat left center/contain;
}
.p-news__item--download[href$=".doc"] .p-news__item-download::before, .p-news__item--download[href$=".docx"] .p-news__item-download::before, .p-news__item--download[href$=".docm"] .p-news__item-download::before {
  background: url("../images/icon_doc.svg") no-repeat left center/contain;
}
.p-news__pagination {
  margin-top: 3.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-news__pagination {
    margin-top: 5.0625rem;
  }
}
.p-news__pagination-prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5625rem;
  padding: 0.3125rem 1.4375rem 0.3125rem 1.125rem;
  border: 3px solid #004289;
  background: #fff;
  border-radius: 100vh;
}
.p-news__pagination-prev a::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.875rem;
  background-color: #004289;
  -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
          clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.p-news__pagination-next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5625rem;
  padding: 0.3125rem 1.125rem 0.3125rem 1.4375rem;
  border: 3px solid #004289;
  background: #fff;
  border-radius: 100vh;
}
.p-news__pagination-next a::after {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.875rem;
  background-color: #004289;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-news__top {
  margin-top: 1rem;
  margin-inline: auto;
  width: min(85%, 316px);
}
@media screen and (min-width: 768px) {
  .p-news__top {
    margin-top: 1.375rem;
  }
}
.p-news__top a {
  display: block;
  width: 100%;
  padding-top: 0.8125rem;
  padding-bottom: 0.9375rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  background: #fff;
  border: 4px solid #7B7B7B;
  border-radius: 100vh;
  position: relative;
}
.p-news__top a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  width: 0.625rem;
  height: 0.625rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  z-index: 1;
}
.p-news__top a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  width: 1.75rem;
  height: 1.75rem;
  background: #EC6233;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-notice {
  padding-top: 2.9375rem;
  padding-bottom: 4.1875rem;
  background: #EDFAFF;
}
@media screen and (min-width: 768px) {
  .p-notice {
    padding-top: 5.625rem;
    padding-bottom: 7.25rem;
  }
}
.p-notice__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-notice__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-notice__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004289;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-notice__ttl {
    font-size: 2rem;
  }
}
.p-notice img {
  width: 100%;
  max-width: unset;
}
.p-notice__content {
  margin-top: 2.4375rem;
  padding: 2.8125rem 1.5rem 6.875rem;
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .76);
          box-shadow: 0 0 4px rgba(0, 0, 0, .76);
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-notice__content {
    margin-top: 1.5rem;
    padding: 5.25rem 5.25rem 5.25rem;
    border-radius: 0.3125rem;
    font-size: 0.875rem;
  }
}
.p-notice__content > * + * {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-notice__content > * + * {
    margin-top: 1.875rem;
  }
}
.p-notice__content-title {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  color: #044399;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-notice__content-title {
    font-size: 1.3125rem;
  }
}
.p-notice__top {
  margin-top: 2.1875rem;
  margin-inline: auto;
}
.p-notice__content a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.25rem;
  color: #044399;
  width: 100%;
}
.p-notice__content a:hover {
  color: #044399;
}
.p-notice__content a[href$=".xlsx"]::before,
.p-notice__content a[href$=".xls"]::before,
.p-notice__content a[href$=".xlsm"]::before,
.p-notice__content a[href$=".pdf"]::before,
.p-notice__content a[href$=".jpg"]::before,
.p-notice__content a[href$=".png"]::before,
.p-notice__content a[href$=".doc"]::before,
.p-notice__content a[href$=".docx"]::before,
.p-notice__content a[href$=".docm"]::before {
  display: block;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  content: "";
  width: 2.0625rem;
  height: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-notice__content a[href$=".xlsx"]::before,
  .p-notice__content a[href$=".xls"]::before,
  .p-notice__content a[href$=".xlsm"]::before,
  .p-notice__content a[href$=".pdf"]::before,
  .p-notice__content a[href$=".jpg"]::before,
  .p-notice__content a[href$=".png"]::before,
  .p-notice__content a[href$=".doc"]::before,
  .p-notice__content a[href$=".docx"]::before,
  .p-notice__content a[href$=".docm"]::before {
    margin-top: unset;
    margin-left: 0.25rem;
  }
}
.p-notice__content a[href$=".xlsx"]::before,
.p-notice__content a[href$=".xls"]::before,
.p-notice__content a[href$=".xlsm"]::before {
  background: url("../images/icon_excel.svg") no-repeat left center/contain;
}
.p-notice__content a[href$=".pdf"]::before {
  background: url("../images/icon_pdf.svg") no-repeat left center/contain;
}
.p-notice__content a[href$=".jpg"]::before {
  background: url("../images/icon_jpg.svg") no-repeat left center/contain;
}
.p-notice__content a[href$=".png"]::before {
  background: url("../images/icon_png.svg") no-repeat left center/contain;
}
.p-notice__content a[href$=".doc"]::before,
.p-notice__content a[href$=".docx"]::before,
.p-notice__content a[href$=".docm"]::before {
  background: url("../images/icon_doc.svg") no-repeat left center/contain;
}
.p-notice__content a[href$=".xlsx"]::after,
.p-notice__content a[href$=".xls"]::after,
.p-notice__content a[href$=".xlsm"]::after,
.p-notice__content a[href$=".pdf"]::after,
.p-notice__content a[href$=".jpg"]::after,
.p-notice__content a[href$=".png"]::after,
.p-notice__content a[href$=".doc"]::after,
.p-notice__content a[href$=".docx"]::after,
.p-notice__content a[href$=".docm"]::after {
  display: block;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  content: "Download";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.625rem;
  padding: 0.4375rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  background: #676767;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .p-notice__content a[href$=".xlsx"]::after,
  .p-notice__content a[href$=".xls"]::after,
  .p-notice__content a[href$=".xlsm"]::after,
  .p-notice__content a[href$=".pdf"]::after,
  .p-notice__content a[href$=".jpg"]::after,
  .p-notice__content a[href$=".png"]::after,
  .p-notice__content a[href$=".doc"]::after,
  .p-notice__content a[href$=".docx"]::after,
  .p-notice__content a[href$=".docm"]::after {
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
    margin-top: unset;
    margin-left: 0.375rem;
    width: unset;
    padding: 0.25rem 0.8125rem;
    background: #000;
  }
}

.p-qa {
  padding-top: 3.4375rem;
  padding-bottom: 4.875rem;
  background-color: #EDFAFF;
  counter-reset: h3num;
}
@media screen and (min-width: 768px) {
  .p-qa {
    padding-top: 6.875rem;
    padding-bottom: 9.125rem;
  }
}
.p-qa__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-qa__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-qa__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #203E97;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-qa__title {
    font-size: 2rem;
  }
}
.p-qa__item {
  margin-top: 1.875rem;
  padding: 2.5rem 1.5rem;
  background: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .76);
          box-shadow: 0 0 4px rgba(0, 0, 0, .76);
}
@media screen and (min-width: 768px) {
  .p-qa__item {
    margin-top: 2.625rem;
    padding: 2.1875rem 2.375rem;
    border-radius: 5px;
    border: 1px solid #024CB3;
  }
}
.p-qa__cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .p-qa__cat-list {
    gap: 0.5rem;
  }
}
.p-qa__cat {
  padding: 0.125rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #024CB3;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .p-qa__cat {
    font-size: 1.125rem;
    padding: 0.25rem 1rem;
  }
}
.p-qa__item-title {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  color: #004CB4;
}
@media screen and (min-width: 768px) {
  .p-qa__item-title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}
.p-qa__item-title::before {
  content: "Q.";
  margin-top: -0.3125rem;
  margin-right: 0.625rem;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2083333333;
}
@media screen and (min-width: 768px) {
  .p-qa__item-title::before {
    font-size: 2rem;
  }
}
.p-qa__item-text-wrap {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-qa__item-text-wrap::before {
  content: "A.";
  margin-top: -0.3125rem;
  margin-right: 0.625rem;
  font-family: "Lato", sans-serif;
  font-size: 1.5rem;
  color: #004CB4;
  line-height: 1.2083333333;
}
@media screen and (min-width: 768px) {
  .p-qa__item-text-wrap::before {
    font-size: 2rem;
  }
}
.p-qa__item-text-wrap p {
  line-height: 1.5;
}
.p-qa__item-text-wrap p + p {
  margin-top: 1.5rem;
}
.p-qa p a {
  color: #044399;
}

.p-test {
  color: red;
  font-size: myrem(25);
}
@media screen and (min-width: 768px) {
  .p-test {
    font-size: myrem(50);
  }
}

.p-top-download {
  padding-top: 1.625rem;
  padding-bottom: 3.3125rem;
  background: -webkit-gradient(linear, left top, right top, from(#165CBA), to(#002F6E));
  background: linear-gradient(to right, #165CBA 0%, #002F6E 100%);
}
@media screen and (min-width: 768px) {
  .p-top-download {
    padding-top: 3.875rem;
    padding-bottom: 4.1875rem;
    background: -webkit-gradient(linear, left top, left bottom, from(#165CBA), to(#002F6E));
    background: linear-gradient(to bottom, #165CBA 0%, #002F6E 100%);
  }
}
.p-top-download__content {
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-top-download__content {
    max-width: 100%;
  }
}
.p-top-download__title {
  padding: 0.625rem 1.25rem 0.8125rem 1.25rem;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #E5582B;
  letter-spacing: 0.05em;
}
.p-top-download__btns {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  row-gap: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-download__btns {
    margin-top: 1.9375rem;
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.625rem;
       -moz-column-gap: 1.625rem;
            column-gap: 1.625rem;
    row-gap: 1.5rem;
  }
}

.p-top-fv {
  height: 37vw;
  min-height: 289px;
  max-height: 528px;
  display: grid;
  place-content: center;
  background: url("../images/bg-top-fv.jpg") no-repeat center center/cover;
}
.p-top-fv__text-wrap {
  background: rgba(255, 255, 255, .7);
  padding: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-top-fv__text-wrap {
    padding: 0.5625rem 0.75rem;
  }
}
.p-top-fv__text {
  padding: 1.0625rem 0.9375rem 1.0625rem;
  font-size: 1.3125rem;
  font-weight: 700;
  color: #000;
  border: 2px solid #000;
}
@media screen and (min-width: 768px) {
  .p-top-fv__text {
    padding: 2.6875rem 7.375rem 2.6875rem;
    font-size: 1.5rem;
  }
}

.p-top-news {
  padding-top: 3.75rem;
  padding-bottom: 2.3125rem;
  background: #EDFAFF;
}
@media screen and (min-width: 768px) {
  .p-top-news {
    padding-top: 4.5rem;
    padding-bottom: 1.125rem;
  }
}
.p-top-news__ttl {
  font-size: 1.125rem;
  font-weight: 700;
  color: #004289;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-news__ttl {
    font-size: 1.3125rem;
    text-align: start;
  }
}
.p-top-news__more {
  margin-top: 2rem;
  margin-inline: auto;
  text-align: end;
  max-width: 400px;
}
.p-top-news__more a {
  padding: 0.625rem 1.25rem 0.8125rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 0.4375rem;
  position: relative;
}
.p-top-news__more a span {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: #FF270D;
  border-radius: 100vh;
  position: relative;
}
.p-top-news__more a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-60%, -50%) rotate(-45deg);
          transform: translate(-60%, -50%) rotate(-45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-top-news__more {
    margin-right: unset;
    margin-top: 2.125rem;
    max-width: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-news__more a {
    border: unset;
  }
}

.p-top-news .p-news__list {
  padding-bottom: 2rem;
}

.p-top-notice {
  padding-top: 2.3125rem;
  background: #EDFAFF;
}
@media screen and (min-width: 768px) {
  .p-top-notice {
    padding-top: 1.125rem;
  }
}

.p-top-notice + .p-top-notice {
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-top-notice + .p-top-notice {
    padding-top: 2rem;
  }
}

.p-top-notice__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-top-notice__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-top-notice__content {
  padding: 1.5rem 1.5rem 2.75rem;
  border: 6px solid #FF5800;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top-notice__content {
    border-radius: 16px;
  }
}
.p-top-notice__title-wrap {
  padding: 0.875rem 1.125rem;
  background-color: #585858;
  border-radius: 0.3125rem;
}
.p-top-notice__title {
  font-size: 1.3125rem;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-notice__title {
    text-align: start;
  }
}
.p-top-notice__item {
  margin-top: 2rem;
  padding-inline: 1.25rem;
}
.p-top-notice__item + .p-top-notice__item {
  margin-top: 3rem;
}
.p-top-notice__item-title {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.4285714286;
}
.p-top-notice__content {
  margin-top: 1rem;
  line-height: 1.5;
}
.p-top-notice__content * + * {
  margin-top: 1.5rem;
}
.p-top-notice__content a {
  color: #044399;
}
.p-top-notice__content a:hover {
  color: #044399;
}
.p-top-notice__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 0.25rem;
  color: #044399;
  width: 100%;
}
.p-top-notice__item-link:hover {
  color: #044399;
}
.p-top-notice__item-link[href$=".xlsx"]::before, .p-top-notice__item-link[href$=".xls"]::before, .p-top-notice__item-link[href$=".xlsm"]::before, .p-top-notice__item-link[href$=".pdf"]::before, .p-top-notice__item-link[href$=".jpg"]::before, .p-top-notice__item-link[href$=".png"]::before, .p-top-notice__item-link[href$=".doc"]::before, .p-top-notice__item-link[href$=".docx"]::before, .p-top-notice__item-link[href$=".docm"]::before {
  display: block;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  content: "";
  width: 2.0625rem;
  height: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-top-notice__item-link[href$=".xlsx"]::before, .p-top-notice__item-link[href$=".xls"]::before, .p-top-notice__item-link[href$=".xlsm"]::before, .p-top-notice__item-link[href$=".pdf"]::before, .p-top-notice__item-link[href$=".jpg"]::before, .p-top-notice__item-link[href$=".png"]::before, .p-top-notice__item-link[href$=".doc"]::before, .p-top-notice__item-link[href$=".docx"]::before, .p-top-notice__item-link[href$=".docm"]::before {
    margin-top: unset;
    margin-left: 0.25rem;
  }
}
.p-top-notice__item-link[href$=".xlsx"]::before, .p-top-notice__item-link[href$=".xls"]::before, .p-top-notice__item-link[href$=".xlsm"]::before {
  background: url("../images/icon_excel.svg") no-repeat left center/contain;
}
.p-top-notice__item-link[href$=".pdf"]::before {
  background: url("../images/icon_pdf.svg") no-repeat left center/contain;
}
.p-top-notice__item-link[href$=".jpg"]::before {
  background: url("../images/icon_jpg.svg") no-repeat left center/contain;
}
.p-top-notice__item-link[href$=".png"]::before {
  background: url("../images/icon_png.svg") no-repeat left center/contain;
}
.p-top-notice__item-link[href$=".doc"]::before, .p-top-notice__item-link[href$=".docx"]::before, .p-top-notice__item-link[href$=".docm"]::before {
  background: url("../images/icon_doc.svg") no-repeat left center/contain;
}
.p-top-notice__item-link[href$=".xlsx"]::after, .p-top-notice__item-link[href$=".xls"]::after, .p-top-notice__item-link[href$=".xlsm"]::after, .p-top-notice__item-link[href$=".pdf"]::after, .p-top-notice__item-link[href$=".jpg"]::after, .p-top-notice__item-link[href$=".png"]::after, .p-top-notice__item-link[href$=".doc"]::after, .p-top-notice__item-link[href$=".docx"]::after, .p-top-notice__item-link[href$=".docm"]::after {
  display: block;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  content: "Download";
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 0.625rem;
  padding: 0.4375rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  background: #676767;
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .p-top-notice__item-link[href$=".xlsx"]::after, .p-top-notice__item-link[href$=".xls"]::after, .p-top-notice__item-link[href$=".xlsm"]::after, .p-top-notice__item-link[href$=".pdf"]::after, .p-top-notice__item-link[href$=".jpg"]::after, .p-top-notice__item-link[href$=".png"]::after, .p-top-notice__item-link[href$=".doc"]::after, .p-top-notice__item-link[href$=".docx"]::after, .p-top-notice__item-link[href$=".docm"]::after {
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
    margin-top: unset;
    margin-left: 0.375rem;
    width: unset;
    padding: 0.25rem 0.8125rem;
    background: #000;
  }
}

.p-top-campaign .p-top-notice__content {
  border: 6px solid #4a9ac2;
}

.p-top-campaign .p-top-notice__title-wrap {
  background-color: #4a9ac2;
}

.p-top-request {
  padding-top: 3.5rem;
  background: #EDFAFF;
}
@media screen and (min-width: 768px) {
  .p-top-request {
    padding-top: 3.5rem;
    padding-bottom: 4.5rem;
  }
}
.p-top-request__content {
  margin-inline: calc(50% - 50vw);
  padding: 2.75rem 1.25rem;
  background-color: #fff;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, .76);
          box-shadow: 0 0 4px rgba(0, 0, 0, .76);
}
@media screen and (min-width: 768px) {
  .p-top-request__content {
    margin-inline: unset;
    padding: 2.5625rem 2.5625rem 3.5625rem;
  }
}
.p-top-request__title {
  font-size: clamp(1rem, 0.0625rem + 4vw, 1.3125rem);
  text-align: center;
}
.p-top-request__text {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-top-request__text {
    margin-top: 1.6875rem;
    text-align: center;
  }
}
.p-top-request__btns {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-top-request__btns {
    margin-top: 1.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 0.5625rem;
       -moz-column-gap: 0.5625rem;
            column-gap: 0.5625rem;
    justify-content: center;
  }
}
.p-top-request__btn {
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#008190), to(#00A6B7));
  background: linear-gradient(to right, #008190 0%, #00A6B7 100%);
  border: 3px solid #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, .28);
          box-shadow: 0 0 6px rgba(0, 0, 0, .28);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-top-request__btn:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-top-request__btn {
    width: calc(33.33333% - 0.375rem);
  }
}
.p-top-request__btn a {
  display: block;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.0625rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-request__btn a {
    padding-top: 2.125rem;
    padding-bottom: 2.125rem;
  }
}
.p-top-request__btn a:hover {
  opacity: 1;
}
.p-top-request__btn:nth-of-type(2) {
  background: -webkit-gradient(linear, left top, right top, from(#0096C3), to(#27B7D9));
  background: linear-gradient(to right, #0096C3 0%, #27B7D9 100%);
}
.p-top-request__btn:nth-of-type(3) {
  background: -webkit-gradient(linear, left top, right top, from(#1D57B5), to(#5B93F0));
  background: linear-gradient(to right, #1D57B5 0%, #5B93F0 100%);
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

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

/* キャンペーン */
.p-campaigns {
  padding-top: 3.4375rem;
  padding-bottom: 4.875rem;
  background-color: #EDFAFF;
  counter-reset: h3num;
}
@media screen and (min-width: 768px) {
  .p-campaigns {
    padding-top: 6.875rem;
    padding-bottom: 9.125rem;
  }
}
.p-campaigns__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-campaigns__inner {
    margin-inline: auto;
    max-width: 1020px;
    padding-inline: 1.5rem;
  }
}
.p-campaigns__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #203E97;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-campaigns__title {
    font-size: 2rem;
  }
}
.p-campaigns__item {
  margin-top: 1.875rem;
  padding: 2.5rem 1.5rem;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, .76);
}
@media screen and (min-width: 768px) {
  .p-campaigns__item {
    margin-top: 2.625rem;
    padding: 2.1875rem 2.375rem;
    border-radius: 5px;
    border: 1px solid #024CB3;
  }
}
.p-campaigns__item-title {
  margin-top: 1.5rem;
  display: flex;
  font-size: 1.125rem;
  font-weight: 700;
  color: #004CB4;
}
@media screen and (min-width: 768px) {
  .p-campaigns__item-title {
    font-size: 1.5rem;
    line-height: 1.4583333333;
  }
}
.p-campaigns__item-content {
  margin-top: 1.5rem;
  line-height: 1.5;
}
.p-campaigns__item-content > * + * {
  margin-top: 1.5rem;
}
.p-campaigns__item-content a {
  color: #044399;
  transition: opacity .3s;
}
.p-campaigns__item-content a:hover {
  color: #044399;
  opacity: 0.5;
}
.p-campaigns__item-link-wrap {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-campaigns__item-link {
  color: #044399;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3125rem 0.625rem;
  flex-grow: 1;
  transition: opacity .3s;
}
.p-campaigns__item-link:hover {
  color: #044399;
  opacity: 0.5;
}
.p-campaigns__item-link span {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  order: 2;
}
.p-campaigns__item-link[href$=".xlsx"] span::before,
.p-campaigns__item-link[href$=".xls"] span::before,
.p-campaigns__item-link[href$=".xlsm"] span::before,
.p-campaigns__item-link[href$=".pdf"] span::before,
.p-campaigns__item-link[href$=".jpg"] span::before,
.p-campaigns__item-link[href$=".png"] span::before,
.p-campaigns__item-link[href$=".doc"] span::before,
.p-campaigns__item-link[href$=".docx"] span::before,
.p-campaigns__item-link[href$=".docm"] span::before {
  display: block;
  content: "";
  width: 2.0625rem;
  height: 2.0625rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
}
.p-campaigns__item-link[href$=".xlsx"] span::before,
.p-campaigns__item-link[href$=".xls"] span::before,
.p-campaigns__item-link[href$=".xlsm"] span::before {
  background: url("../images/icon_excel.svg") no-repeat left center/contain;
}
.p-campaigns__item-link[href$=".pdf"] span::before {
  background: url("../images/icon_pdf.svg") no-repeat left center/contain;
}
.p-campaigns__item-link[href$=".jpg"] span::before {
  background: url("../images/icon_jpg.svg") no-repeat left center/contain;
}
.p-campaigns__item-link[href$=".png"] span::before {
  background: url("../images/icon_png.svg") no-repeat left center/contain;
}
.p-campaigns__item-link[href$=".doc"] span::before,
.p-campaigns__item-link[href$=".docx"] span::before,
.p-campaigns__item-link[href$=".docm"] span::before {
  background: url("../images/icon_doc.svg") no-repeat left center/contain;
}
.p-campaigns__item-link[href$=".xlsx"] span::after,
.p-campaigns__item-link[href$=".xls"] span::after,
.p-campaigns__item-link[href$=".xlsm"] span::after,
.p-campaigns__item-link[href$=".pdf"] span::after,
.p-campaigns__item-link[href$=".jpg"] span::after,
.p-campaigns__item-link[href$=".png"] span::after,
.p-campaigns__item-link[href$=".doc"] span::after,
.p-campaigns__item-link[href$=".docx"] span::after,
.p-campaigns__item-link[href$=".docm"] span::after {
  order: 3;
  content: "Download";
  padding: 0.4375rem 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
  background: #000;
  border-radius: 100vh;
}

.d-none {
  display: none;
}

.mt-5 {
  margin-top: 3rem;
}