@charset "UTF-8";
/* reset
--------------------------- */
/* 
 * destyle.css v1.0.14
 * https://github.com/nicolas-cusan/destyle.css 
 */
* {
  box-sizing: border-box;
}

::after,
::before {
  box-sizing: inherit;
}

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

body {
  margin: 0;
}

main {
  display: block;
}

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

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

ol,
ul {
  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: 0;
  border-top: 1px solid;
  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] {
  border-bottom: none;
  text-decoration: underline;
  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;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

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

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

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

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

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

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

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

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

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

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

template {
  display: none;
}

[hidden] {
  display: none;
}

/* system
--------------------------- */
/* base
--------------------------- */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  width: 100%;
  overflow-x: hidden;
}

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

a {
  color: #333;
}

/* l-body
--------------------------- */
.l-body {
  width: 100%;
  overflow-x: hidden;
}

/* l-header
--------------------------- */
.l-header {
  width: 100%;
  background: #fff;
}

.l-header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  height: 70px;
  margin: 0 auto;
  padding: 8px 0;
}
@media only screen and (max-width: 768px) {
  .l-header__inner {
    justify-content: center;
    height: 50px;
    padding: 5px 30px;
  }
}

.l-header__btns {
  display: flex;
  gap: 0 25px;
}
@media only screen and (max-width: 768px) {
  .l-header__btns {
    gap: 0 4%;
  }
}

.l-header__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 185px;
  height: 54px;
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  background: #224A99;
  font-weight: 500;
  text-align: center;
  position: relative;
  line-height: 1.3125;
  padding-left: 15px;
  transition: all 0.4s;
}
@media only screen and (max-width: 768px) {
  .l-header__btn {
    width: 150px;
    height: 40px;
    font-size: 14px;
    line-height: 1.1428571429;
  }
}
.l-header__btn::after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/icon-tel-white.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .l-header__btn::after {
    width: 20px;
    height: 20px;
    left: 16px;
  }
}
.l-header__btn.is-mail {
  background-image: linear-gradient(to right, #F58D61 0%, #F57160);
  padding-left: 25px;
}
.l-header__btn.is-mail::after {
  display: inline-block;
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/icon-mail.svg) no-repeat center center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .l-header__btn.is-mail::after {
    width: 20px;
    height: 20px;
    left: 17px;
  }
}
.l-header__btn:hover {
  opacity: 0.8;
}

/* l-main
--------------------------- */
.l-main {
  width: 100%;
}

/* l-footer
--------------------------- */
.l-footer {
  padding: 31px 0;
  background: #224A99;
}
@media only screen and (max-width: 768px) {
  .l-footer {
    padding: 30px 0 35px;
  }
}

.l-footer__logo {
  width: 258px;
  margin: 0 auto 15px;
}
@media only screen and (max-width: 768px) {
  .l-footer__logo {
    width: 215px;
    margin-bottom: 6px;
  }
}

.l-footer__copyright {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 16/14;
}

/* l-inner
--------------------------- */
.l-inner {
  max-width: 750px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .l-inner {
    padding: 0 24px;
  }
}

.l-inner-pc {
  display: contents;
}
@media print, screen and (min-width: 769px) {
  .l-inner-pc {
    max-width: 750px;
    margin: 0 auto;
  }
}

/* c-contents
--------------------------- */
.c-contents {
  width: 100%;
  padding: 80px 0;
}
@media only screen and (max-width: 768px) {
  .c-contents {
    padding: 50px 0;
  }
}
.c-contents.is-bg-gray {
  background: #E2E2E2;
}
.c-contents.is-bg-blue {
  background: #F0F4FF;
}

.c-contents__inner {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}
@media print, screen and (min-width: 769px) and (max-width: 1000px) {
  .c-contents__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .c-contents__inner {
    padding: 0 20px;
  }
}

.c-contents__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-contents__title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 600;
  text-align: center;
  color: #333;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .c-contents__title {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.25;
  }
}
.c-contents__title small {
  font-size: 30px;
}
@media only screen and (max-width: 768px) {
  .c-contents__title small {
    font-size: 18px;
  }
}
.c-contents__title .is-blue {
  color: #224A99;
}
@media only screen and (max-width: 768px) {
  .c-contents__title .is-sp-large {
    font-size: 24px;
  }
}

.c-contents__highlight {
  display: inline-block;
  font-size: 50px;
  line-height: 1.6;
  color: #fff;
  padding: 0 12px;
  margin-top: 4px;
  background: #224a99;
}
@media only screen and (max-width: 768px) {
  .c-contents__highlight {
    font-size: 24px;
    margin-top: 2px;
  }
}
.c-contents__highlight [data-ruby] {
  position: relative;
}
.c-contents__highlight [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1px;
  left: 0.7em;
  right: 0;
  margin: auto;
  font-size: 8px;
}
@media only screen and (max-width: 768px) {
  .c-contents__highlight [data-ruby]::before {
    font-size: 4px;
    top: 1px;
  }
}
.c-contents__highlight rt {
  display: none;
}

/* c-page
--------------------------- */
.c-page {
  width: min(81.9546666667vw, 614.66px);
  margin: 0 auto;
  padding: 20px 0;
}

.c-page__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin-bottom: 23.8px;
}

.c-page__contents {
  width: min(70.592vw, 529.44px);
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.6;
  font-weight: 700;
}
.c-page__contents p {
  margin-bottom: 10px;
}
.c-page__contents .icon-mail {
  display: inline-block;
  width: 18px;
  margin-right: 5px;
  vertical-align: bottom;
}

.c-page__contents-title {
  font-size: 14px;
  font-weight: 700;
  border-left: solid 5px #6D501D;
  background: #E5CFA3;
  padding-left: 16.5px;
  padding: 8px 0 8px 16.5px;
  margin-bottom: 15px;
}

/* c-btn
--------------------------- */
.c-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(58vw, 580px);
  height: 90px;
  background-image: linear-gradient(to right, #F58D61 0%, #F57160 100%);
  border: solid 3px #fff;
  padding-left: 50px;
  font-size: min(3vw, 30px);
  font-weight: 600;
  line-height: 1.4423076923;
  color: #fff;
  text-align: center;
  border-radius: 50px;
  box-shadow: 0 8px 1px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.2s;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    width: min(84vw, 500px);
    height: 50px;
    box-shadow: 0 5px 1px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    border-width: 2px;
    padding-left: 30px;
  }
}
.c-btn::before {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  background: url(../images/icon-mail.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 120px;
  top: 50%;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 769px) and (max-width: 1000px) {
  .c-btn::before {
    left: 90px;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn::before {
    width: 23px;
    height: 23px;
    left: 56px;
    padding-left: 25px;
  }
}
.c-btn::after {
  display: block;
  content: "";
  width: 15px;
  height: 26px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .c-btn::after {
    width: 8px;
    height: 10px;
    right: 30px;
  }
}
.c-btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.c-btn.is-tel {
  background: #fff;
  font-size: 30px;
  color: #224A99;
  border: solid 3px #224A99;
  padding-left: 32px;
  line-height: 0.69;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-tel {
    font-size: 20px;
    padding-left: 12px;
    padding-top: 7px;
    border-width: 2px;
  }
}
.c-btn.is-tel::before {
  background: url(../images/icon-tel.svg) no-repeat center center;
  background-size: contain;
}
.c-btn.is-tel::after {
  background: #224A99;
}
.c-btn.is-tel small {
  display: inline-block;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.49;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-tel small {
    font-size: 12px;
    line-height: 1.6666666667;
    padding-top: 0;
  }
}

.c-btn__text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 156px;
  height: 35px;
  border-radius: 50px;
  background-color: #fffffe;
  position: absolute;
  left: 50%;
  top: -17px;
  transform: translateX(-50%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .c-btn__text {
    width: 108px;
    height: 20px;
    top: -12px;
  }
}
.c-btn__text > small {
  background-image: linear-gradient(to right, #f58d61, #f57160);
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.22;
}
@media only screen and (max-width: 768px) {
  .c-btn__text > small {
    font-size: 12px;
    line-height: 1.6666666667;
  }
}

/* c-about
--------------------------- */
.c-about {
  width: 100%;
  padding: 48px 30px 42px;
  border: solid 2px #224A99;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  .c-about {
    padding: 50px 24px 27px;
  }
}

.c-about__title {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: #224A99;
  font-weight: 500;
  margin-bottom: 38px;
}
@media only screen and (max-width: 768px) {
  .c-about__title {
    font-size: 18px;
    line-height: 1.1111111111;
    margin-bottom: 30px;
  }
}

.c-about__body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 22px;
  line-height: 1.5454545455;
}
@media only screen and (max-width: 768px) {
  .c-about__body {
    font-size: 16px;
    line-height: 1.625;
  }
}
.c-about__body p + p {
  margin-top: 1em;
}
.c-about__body .is-highlight {
  display: inline;
  padding: 0 3px;
  color: #FFFC3D;
  font-weight: 600;
  line-height: 1.3636363636;
  background: #224A99;
}

.c-about__thumb {
  max-width: 863px;
  margin: 40px auto 0;
}
@media only screen and (max-width: 768px) {
  .c-about__thumb {
    max-width: 600px;
    margin-top: 30px;
  }
}

/* c-cta
--------------------------- */
.c-cta {
  background: #224A99;
}
.c-cta .c-btn.is-tel {
  margin-top: 26px;
}
@media only screen and (max-width: 768px) {
  .c-cta .c-btn.is-tel {
    margin-top: 20px;
  }
}

.c-cta__inner {
  max-width: 580px;
  margin: 0 auto;
  padding: 46px 0;
}
@media print, screen and (min-width: 769px) and (max-width: 1000px) {
  .c-cta__inner {
    width: min(58vw, 580px);
  }
}
@media only screen and (max-width: 768px) {
  .c-cta__inner {
    padding: 30px 0;
    width: min(84vw, 500px);
  }
}

/* p-fv
--------------------------- */
.p-fv {
  background: #F0F4FF;
  position: relative;
}
.p-fv__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-fv__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-fv__left {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-fv__left {
    display: contents;
  }
}

.p-fv__copy {
  width: min(58vw, 580px);
  padding-top: 18px;
  margin-left: 7px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .p-fv__copy {
    order: 1;
    width: min(93.6vw, 500px);
    padding-top: 6px;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.p-fv__btns {
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .p-fv__btns {
    order: 3;
    width: min(84vw, 500px);
    padding-bottom: 71px;
  }
}
.p-fv__btns .c-btn.is-mail {
  margin-bottom: 17px;
}
@media only screen and (max-width: 768px) {
  .p-fv__btns .c-btn.is-mail {
    margin-bottom: 15px;
  }
}

.p-fv__right {
  width: min(44.1vw, 441px);
  position: absolute;
  right: 5px;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-fv__right {
    order: 2;
    position: relative;
    right: 0;
    top: -12px;
    width: min(81.3333333333vw, 500px);
    margin-bottom: 5px;
  }
}

.p-fv__note {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.23;
  color: #5F6C7B;
  position: absolute;
  right: 40px;
  bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .p-fv__note {
    width: 100%;
    bottom: 23px;
    right: auto;
    left: 0;
    text-align: center;
  }
}

/* p-trouble
--------------------------- */
@media only screen and (max-width: 768px) {
  .p-trouble {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-trouble .c-contents__title {
    margin-bottom: 15px;
  }
}

.p-trouble__items {
  display: flex;
  gap: 0 25px;
}
@media only screen and (max-width: 768px) {
  .p-trouble__items {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
  }
}

/* p-solution
--------------------------- */
.p-solution {
  padding-top: 150px;
  padding-bottom: 90px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-solution {
    padding-top: 65px;
    padding-bottom: 35px;
  }
}
.p-solution::before {
  display: block;
  content: "";
  width: 298px;
  height: 81px;
  background: url(../images/contents-arrow.svg) no-repeat center top;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .p-solution::before {
    width: 177px;
    height: 35px;
    background-image: url(../images/contents-arrow-sp.svg);
  }
}
@media only screen and (max-width: 768px) {
  .p-solution .c-contents__title {
    margin-bottom: 30px;
  }
}
.p-solution .c-about__body p {
  font-feature-settings: "palt";
}

/* p-factoring
--------------------------- */
.p-factoring {
  padding-top: 70px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .p-factoring {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .p-factoring .c-about {
    padding-bottom: 19px;
  }
}

/* p-reasons
--------------------------- */
.p-reasons {
  background: url(../images/reasons-bg.png) repeat-x left top;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-reasons {
    padding-top: 44px;
    padding-bottom: 38px;
    background-image: url(../images/reasons-bg-sp.png);
  }
}
.p-reasons::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(151deg, #fff -13%, rgba(220, 254, 255, 0.8) 27%, rgba(220, 254, 255, 0.4) 43%, #fff 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-reasons::before {
    background-image: linear-gradient(151deg, #fff -21%, rgba(220, 254, 255, 0.8) 26%, rgba(220, 254, 255, 0) 84%);
  }
}
.p-reasons .c-contents__inner {
  position: relative;
  z-index: 3;
}
.p-reasons .c-contents__highlight {
  line-height: 1.4;
  margin-top: 13px;
}
@media only screen and (max-width: 768px) {
  .p-reasons .c-contents__highlight {
    line-height: 1.5;
    margin-top: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .p-reasons .c-contents__title {
    margin-bottom: 35px;
  }
}

.p-reasons__figure {
  max-width: 953px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .p-reasons__figure {
    max-width: 500px;
  }
}

/* p-service
--------------------------- */
.p-service {
  padding-top: 97px;
  padding-bottom: 97px;
}
@media only screen and (max-width: 768px) {
  .p-service {
    padding-top: 46px;
    padding-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-service .c-contents__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .p-service__figure {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* p-flow
--------------------------- */
.p-flow {
  padding: 100px 0 129px;
}
@media only screen and (max-width: 768px) {
  .p-flow {
    padding: 50px 0;
  }
}

.p-flow__item {
  padding: 50px 104px 64px;
  border-radius: 8px;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .p-flow__item {
    padding: 20px 23px;
  }
}
.p-flow__item + .p-flow__item {
  margin-top: 54px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-flow__item + .p-flow__item {
    margin-top: 27px;
  }
}
.p-flow__item + .p-flow__item::before {
  display: block;
  content: "";
  width: 37px;
  height: 25px;
  background: url(../images/icon-flow-arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .p-flow__item + .p-flow__item::before {
    width: 21px;
    height: 14px;
    top: -20px;
  }
}

.p-flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.p-flow__item-title {
  margin-bottom: 11px;
}
@media only screen and (max-width: 768px) {
  .p-flow__item-title {
    height: 33px;
    width: auto;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 768px) {
  .p-flow__item-title img {
    width: auto;
    height: 100%;
  }
}

.p-flow__date {
  font-size: 20px;
  font-weight: 600;
  color: #224A99;
  line-height: 1.1111111111;
}
@media only screen and (max-width: 768px) {
  .p-flow__date {
    font-size: 14px;
    line-height: 0.8;
  }
}

.p-flow__text {
  font-size: 24px;
  line-height: 1.6666666667;
}
@media only screen and (max-width: 768px) {
  .p-flow__text {
    font-size: 16px;
    line-height: 1.625;
  }
}

.p-flow__figure {
  max-width: 584px;
  margin: 20px auto 0;
}

/* p-voice
--------------------------- */
.p-voice {
  padding: 120px 0 130px;
}
@media only screen and (max-width: 768px) {
  .p-voice {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-voice .c-contents__inner {
    padding: 0;
  }
}

@media only screen and (max-width: 768px) {
  .p-voice__items {
    width: min(98.4vw, 500px);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
  }
}

@media only screen and (max-width: 768px) {
  .slick-arrow.prev,
  .slick-arrow.next {
    display: block;
    content: "";
    width: 24px;
    height: 15px;
    background: url(../images/icon-flow-arrow.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(-90deg);
    position: absolute;
    top: calc(50% - 12px);
    right: 0;
  }
}
.slick-arrow.prev[aria-disabled=true],
.slick-arrow.next[aria-disabled=true] {
  background-image: url(../images/icon-slick-arrow.svg);
}

@media only screen and (max-width: 768px) {
  .slick-arrow.prev {
    transform: rotate(90deg);
    left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .slick-list {
    width: min(86.6666666667vw, 450px);
    margin: 0 auto !important;
  }
}

@media only screen and (max-width: 768px) {
  .p-voice__item {
    width: min(88.8vw, 450px);
    margin: 0 auto;
    padding: 0 1vw;
  }
}
.p-voice__item + .p-voice__item {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .p-voice__item + .p-voice__item {
    margin: 0;
  }
}

/* slick.css
--------------------------- */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* p-record
--------------------------- */
.p-record {
  padding-top: 460px;
  padding-bottom: 70px;
  position: relative;
}
@media print, screen and (min-width: 769px) and (max-width: 1000px) {
  .p-record {
    padding-top: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .p-record {
    padding-top: min(37.3333333333vw, 200px);
    padding-bottom: 0;
  }
}

.p-record__top {
  width: 100%;
  height: 460px;
  background: url(../images/record-top-bg.jpg) no-repeat center top -1px;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 769px) and (max-width: 1000px) {
  .p-record__top {
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .p-record__top {
    height: min(37.3333333333vw, 200px);
    background-image: url(../images/record-top-bg-sp.jpg);
  }
}

.p-record__contens {
  width: 100%;
  background: #fff url(../images/record-bg.png) no-repeat center top;
  background-size: 100% auto;
  -webkit-mask-image: url(../images/record-mask.svg);
  mask-image: url(../images/record-mask.svg);
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center top;
  mask-position: center top;
  margin-top: -9.9vw;
}
@media only screen and (max-width: 768px) {
  .p-record__contens {
    background-image: url(../images/record-bg-sp.png);
    -webkit-mask-image: url(../images/record-mask-sp.svg);
    mask-image: url(../images/record-mask-sp.svg);
    margin-top: -20vw;
    padding-bottom: 40px;
  }
}
.p-record__contens .c-contents__inner {
  padding-top: 9.9vw;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-record__contens .c-contents__inner {
    padding-top: 20vw;
  }
}

.p-record__title {
  text-align: center;
  font-size: min(2.0833333333vw, 40px);
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -2em;
}
@media only screen and (max-width: 768px) {
  .p-record__title {
    font-size: min(4.8vw, 18px);
  }
}

.p-record__read {
  margin: 40px 0;
  font-size: 28px;
  font-weight: 500;
  color: #224A99;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .p-record__read {
    margin: 30px 0;
    font-size: 14px;
  }
}

.p-record__items {
  width: 100%;
  display: flex;
  gap: 0 4.21%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-record__items {
    flex-direction: column;
    margin-bottom: 29px;
    gap: 29px 0;
  }
}

.p-record-official {
  background: #fff;
  border: solid 2px #224A99;
  border-radius: 8px;
  padding: 46px 94px 49px;
}
@media only screen and (max-width: 768px) {
  .p-record-official {
    padding: 45px 30px;
  }
}

.p-record-official__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: bold;
  color: #224A99;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-record-official__title {
    font-size: 18px;
    margin-bottom: 25px;
  }
}

.p-record-official__body {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5454545455;
}
@media only screen and (max-width: 768px) {
  .p-record-official__body {
    font-size: 16px;
    line-height: 1.625;
  }
}
.p-record-official__body p + p {
  margin-top: 1em;
}

.p-record-official__note {
  font-size: 20px;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .p-record-official__note {
    font-size: 16px;
    line-height: 1.625;
  }
}

/* p-faq
--------------------------- */
.p-faq {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .p-faq {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.p-faq__item {
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.p-faq__item dt {
  padding: 27px 65px 27px 30px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 500;
  color: #333;
  background: #F0F4FF;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-faq__item dt {
    font-size: 15px;
    padding: 11px;
    display: flex;
  }
}
.p-faq__item dt::before {
  content: "Q";
  display: inline-block;
  color: #224A99;
  margin-right: 0.5em;
}
.p-faq__item dt::after {
  display: block;
  content: "";
  width: 21px;
  height: 22px;
  background: url(../images/icon-close.svg) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .p-faq__item dt::after {
    width: 13px;
    height: 13px;
    right: 11px;
  }
}
.p-faq__item dt:hover {
  cursor: pointer;
}
.p-faq__item dd {
  padding: 38.5px 92px 38.5px 30px;
  font-size: 24px;
  line-height: 1.2;
  max-height: 500px;
  transition: max-height 0.4s, padding 0.4s;
}
@media only screen and (max-width: 768px) {
  .p-faq__item dd {
    padding: 15px 0 15px 30px;
    font-size: 15px;
  }
}
.p-faq__item dd a {
  color: #224A99;
  text-decoration: underline;
}
.p-faq__item + .p-faq__item {
  margin-top: 12px;
}
@media only screen and (max-width: 768px) {
  .p-faq__item + .p-faq__item {
    margin-top: 7px;
  }
}
.p-faq__item ul {
  padding: 8px 0;
}
.p-faq__item li {
  padding-left: 1.2em;
  position: relative;
}
.p-faq__item li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 1px;
}

.p-faq__item.is-close dt::after {
  background: url(../images/icon-open.svg) no-repeat;
  background-size: 100% auto;
}
.p-faq__item.is-close dd {
  max-height: 0;
  padding: 0 92px 0 30px;
}
@media only screen and (max-width: 768px) {
  .p-faq__item.is-close dd {
    padding: 0 0 0 30px;
  }
}

/* p-contact
--------------------------- */
.p-contact {
  padding: 48px 0;
  background: #224A99;
}
@media only screen and (max-width: 768px) {
  .p-contact {
    padding: 52px 0;
  }
}

.p-contact__inner {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 68px 54px 62px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px 2px #001960;
}
@media only screen and (max-width: 768px) {
  .p-contact__inner {
    width: calc(100% - 36px);
    padding: 47px 14px 28px;
  }
}

@media only screen and (max-width: 768px) {
  .p-contact__form {
    margin-top: 50px;
  }
}
.p-contact__form .input__wrap {
  display: flex;
  margin-bottom: 40px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-contact__form .input__wrap {
    flex-direction: column;
    margin-bottom: 20px;
  }
}
.p-contact__form .item__wrap {
  width: 100%;
  max-width: 270px;
  display: flex;
  font-size: 22px;
  color: #333;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-contact__form .item__wrap {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.p-contact__form .item__wrap span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 31px;
  background: #F57160;
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
  border-radius: 8px;
}
@media only screen and (max-width: 768px) {
  .p-contact__form .item__wrap span {
    width: 54px;
    height: 26px;
    border-radius: 6px;
  }
}
.p-contact__form .item__wrap span.any {
  background: #fff;
  color: #333333;
  border: solid 1px #333333;
}
.p-contact__form select {
  width: 381px;
  background: #E7E7E7 url(../images/icon-select.svg) no-repeat right 25px center;
  background-size: 20px auto;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  padding: 19.5px 25px;
  border-radius: 8px;
  border: solid 1px #6D6D6D;
}
@media only screen and (max-width: 768px) {
  .p-contact__form select {
    width: 210px;
    font-size: 16px;
    padding: 15px 16px;
    background-position: right 18px center;
  }
}
.p-contact__form input[type=text],
.p-contact__form input[type=email],
.p-contact__form input[type=tel],
.p-contact__form textarea {
  width: 100%;
  background: #E7E7E7;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  padding: 19.5px 20px;
  border-radius: 8px;
  border: solid 1px #6D6D6D;
}
@media only screen and (max-width: 768px) {
  .p-contact__form input[type=text],
  .p-contact__form input[type=email],
  .p-contact__form input[type=tel],
  .p-contact__form textarea {
    font-size: 16px;
    padding: 14px 15px;
  }
}
.p-contact__form input[type=text]::placeholder,
.p-contact__form input[type=email]::placeholder,
.p-contact__form input[type=tel]::placeholder,
.p-contact__form textarea::placeholder {
  color: #C6C6C6;
}
.p-contact__form textarea {
  height: 236px;
}
@media only screen and (max-width: 768px) {
  .p-contact__form textarea {
    height: 187px;
  }
}

.p-contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 520px;
  height: 80px;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  border-radius: 50px;
  background: #224A99;
  margin: 0 auto;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-contact__btn {
    width: 100%;
    height: 50px;
    font-size: 20px;
  }
}
.p-contact__btn:hover {
  opacity: 0.8;
  cursor: pointer;
}
.p-contact__btn[disabled] {
  cursor: not-allowed;
}

@media only screen and (max-width: 768px) {
  .input__wrap + .send-button {
    margin-top: 30px;
  }
}

.p-contact__error-message {
  display: none;
  position: absolute;
  left: 270px;
  bottom: -19px;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
  color: #F57160;
}
@media only screen and (max-width: 768px) {
  .p-contact__error-message {
    left: 0;
    bottom: -14px;
    font-size: 10px;
  }
}

.p-contact__form input.is-error {
  border: solid 2px #F57160;
}
.p-contact__form input.is-error + .p-contact__error-message {
  display: block;
}

/* p-company-profile
--------------------------- */
.p-company-profile {
  padding-top: 100px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .p-company-profile {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.p-company-profile__table {
  width: calc(100% - 24px);
  table-layout: fixed;
  margin: 0 auto;
  font-size: 20px;
  border-bottom: solid 1px #6D6D6D;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__table {
    width: 100%;
    font-size: 12px;
    border: none;
  }
}
.p-company-profile__table th {
  width: 330px;
  font-weight: 500;
  line-height: 1.2;
  color: #224A99;
  background: #F0F4FF;
  padding: 43px 25px;
  border-top: solid 1px #6D6D6D;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__table th {
    display: block;
    width: 100%;
    border: none;
    padding: 13px 15px;
  }
}
.p-company-profile__table td {
  font-weight: 500;
  line-height: 1.2;
  vertical-align: middle;
  padding: 10px 35px;
  border-top: solid 1px #6D6D6D;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__table td {
    display: block;
    border: none;
    padding: 23px 15px;
  }
}
.p-company-profile__table a {
  color: #224A99;
  text-decoration: underline;
}

.p-company-profile__link {
  color: #224A99;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
  line-height: 1.2;
  padding: 50px 0 90px;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__link {
    font-size: 14px;
    padding: 7px 0 80px;
  }
}
.p-company-profile__link a {
  color: #224A99;
}

.p-company-profile__content {
  border: solid 2px #224A99;
  border-radius: 8px;
  padding: 70px 75px 50px;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__content {
    border-radius: 12px;
    padding: 40px 24px 15px;
  }
}

.p-company-profile__title {
  color: #224A99;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4333333333;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__title {
    font-size: 18px;
    line-height: 1.2777777778;
    margin-bottom: 15px;
  }
}

.p-company-profile__body {
  font-size: 22px;
  line-height: 1.8181818182;
  padding-top: 20px;
  padding: 20px 20px 0;
  border-top: solid 1px #8B8B8B;
}
@media only screen and (max-width: 768px) {
  .p-company-profile__body {
    padding: 15px 0;
    font-size: 14px;
    border: none;
  }
}

/* p-group-company
--------------------------- */
.p-group-company {
  padding-top: 70px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .p-group-company {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.p-group-company .c-contents__title {
  margin-bottom: 50px;
}

.p-group-company__figure {
  margin-bottom: 30px;
}

.p-group-company__body {
  width: 436px;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  .p-group-company__body {
    width: 286px;
    font-size: 12px;
  }
}
.p-group-company__body p + p {
  margin-top: 1em;
}
.p-group-company__body p span {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-group-company__body p span {
    font-size: 10px;
  }
}

/* utility
--------------------------- */
.u-inline-block {
  display: inline-block;
}

.u-sp-none {
  display: none;
}
@media print, screen and (min-width: 769px) {
  .u-sp-none {
    display: block;
  }
}

.u-pc-none {
  display: block;
}
@media print, screen and (min-width: 769px) {
  .u-pc-none {
    display: none;
  }
}
