@charset "UTF-8";
*,
:after,
:before {
  box-sizing: border-box;
}
:root {
  --white: #fff;
  --black: #333;
  --gray: #a5a5a5;
  --red: #ff4b2d;
  --blue: #1c3488;
  --green: #15c39a;
  --active: var(--blue);
  --inactive: var(--gray);
  --disabled: var(--gray);
  --error: var(--red);
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  margin: 0;
  -webkit-font-feature-settings: "palt" on;
  font-feature-settings: "palt" on;
  font-family: "Montserrat", "Noto Sans JP", ヒラギノ角ゴ Pro W3,
    Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  text-align: left;
  background-color: var(--white);
}
article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5rem;
}
p {
  margin: 0 0 1rem;
}
p a {
  display: inline-block;
}
abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
address {
  font-style: normal;
  line-height: inherit;
  margin: 0 0 1rem;
}
dl,
ol,
ol li,
ol ol,
ol ul,
ul,
ul li,
ul ol,
ul ul {
  padding: 0;
  margin: 0;
}
ol li,
ul li {
  list-style-type: none;
  list-style-position: inside;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a,
p a {
  text-decoration: none;
  background-color: transparent;
}
a,
a:hover,
p a {
  color: var(--active);
}
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono,
    Courier New, monospace;
  font-size: 1em;
}
pre {
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure,
pre {
  margin: 0 0 1rem;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  width: 100%;
  border-collapse: collapse;
}
caption {
  color: var(--black);
  text-align: left;
  caption-side: bottom;
}
th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
label {
  display: inline-block;
  margin: 0 0 0.5rem;
}
button {
  border-radius: 0;
}
button:focus:not(:focus-visible) {
  outline: 0;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
  vertical-align: top;
  padding: 0.2rem 0.5rem;
}
button,
select {
  text-transform: none;
}
[role="button"] {
  cursor: pointer;
}
select {
  word-wrap: normal;
}
[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="tel"],
input[type="text"] {
  outline: none;
  border: 1px solid var(--gray);
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button {
  cursor: pointer;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}
.container {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  padding: 0 0 90px;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0 0 45px;
  }
}
.br-sp {
  display: none;
}
.c-form__heading {
  color: #ffffff;
  width: 100%;
  padding: 50px 20px;
  background: #5382c3;
}
.c-form__body {
  max-width: 880px;
  padding: 80px 85px;
  border-radius: 40px;
  margin: 45px auto 60px;
  background-color: #ffffff;
}
.c-form__footer {
  margin: 40px auto 0;
}
.c-form__title {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin: 0 auto;
}
.c-form__title > span {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  margin: 0 auto;
}
.c-form__description {
  line-height: 2;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.1rem;
  text-align: center;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  margin: 25px 0 0;
}
.c-form__description .c-required {
  margin: 0 0.5em 0 0;
}
@media screen and (max-width: 1024px) {
  .c-form__body {
    padding: 8% 4%;
    margin: 35px auto 0;
    border-radius: 20px;
  }
  .c-form__title {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 0.15rem;
  }
  .c-form__description,
  .c-form__title > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-form__description {
    line-height: 1.8;
    letter-spacing: 0.05rem;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 500px) {
  .c-form__heading {
    padding: 35px 20px;
  }
  .c-form__description {
    text-align: justify;
    letter-spacing: 0.05rem;
  }
}
.c-form__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .c-form__row {
    flex-direction: column;
  }
}
.c-form__row:not(:first-of-type) {
  margin-top: 15px;
}
.c-form__col-30 {
  width: 30%;
  position: relative;
}
.c-form__col-70 {
  width: 70%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-form__col-30,
  .c-form__col-70 {
    width: 100%;
  }
}
.c-form__label {
  width: 90%;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.75rem 0;
  margin: 5px 0;
}
.c-form__label .c-required {
  float: right;
}
.c-form__supplement {
  color: var(--black);
  font-size: 14px;
  font-size: 0.875rem;
  margin: -15px 0 0;
}
@media screen and (max-width: 1024px) {
  .c-form__label {
    width: 100%;
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: 0.02rem;
    padding: 0;
    margin: 0 0 0.25rem;
  }
  .c-form__label .c-required {
    float: none;
  }
  .c-form__supplement {
    font-size: 13px;
    font-size: 0.8125rem;
    margin: 0;
  }
}
.c-required {
  color: var(--white);
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.05rem;
  text-indent: 0.05rem;
  text-align: center;
  vertical-align: baseline;
  padding: 2px 10px;
  margin: 0 0 0 auto;
  border-radius: 20px;
  background-color: var(--red);
}
@media screen and (max-width: 1024px) {
  .c-required {
    float: none;
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0 0 0 0.5rem;
  }
}
.c-helper-text {
  margin: 0;
}
.c-helper-text dd,
.c-helper-text dt {
  color: var(--black);
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 1024px) {
  .c-helper-text dd,
  .c-helper-text dt {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.c-helper-text dt {
  position: relative;
}
.c-helper-text dt span {
  position: absolute;
  top: 0;
  left: 0;
}
.c-helper-text dd {
  margin: 0 0 5px 1em;
}
.c-error-message {
  color: var(--error);
  font-size: 14px;
  font-weight: 700;
}
.c-error-message span {
  display: block;
}
.c-status-message {
  color: var(--white);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  text-indent: 0.05rem;
  text-align: center;
  margin: 50px auto 0;
}
.c-status-message .messageBox[aria-hidden="false"] {
  padding: 45px 5%;
  border-radius: 8px;
}
.c-status-message .messageBox.is-error {
  background: var(--red);
}
.c-status-message .messageBox.is-pass {
  background: var(--green);
}
.messageBox[aria-hidden="true"] {
  display: none;
}
.messageBox[aria-hidden="false"] {
  display: block;
}
.c-form input[type="email"],
.c-form input[type="tel"],
.c-form input[type="text"],
.c-form select,
.c-form textarea {
  color: var(--black);
  width: 100%;
  padding: 0.75rem;
  margin: 5px 0;
  border: 1px solid var(--gray);
  border-radius: 5px;
  resize: vertical;
  transition: all 0.2s ease;
}
.c-form input[type="email"]::-webkit-input-placeholder,
.c-form input[type="tel"]::-webkit-input-placeholder,
.c-form input[type="text"]::-webkit-input-placeholder,
.c-form textarea::-webkit-input-placeholder {
  color: #ccc;
}
.c-form input[type="email"]::-moz-placeholder,
.c-form input[type="tel"]::-moz-placeholder,
.c-form input[type="text"]::-moz-placeholder,
.c-form textarea::-moz-placeholder {
  color: #ccc;
}
.c-form input[type="email"]:-ms-input-placeholder,
.c-form input[type="tel"]:-ms-input-placeholder,
.c-form input[type="text"]:-ms-input-placeholder,
.c-form textarea:-ms-input-placeholder {
  color: #ccc;
}
.c-form input[type="email"]::placeholder,
.c-form input[type="tel"]::placeholder,
.c-form input[type="text"]::placeholder,
.c-form textarea::placeholder {
  color: #ccc;
}
.c-form input[type="email"]:focus,
.c-form input[type="tel"]:focus,
.c-form input[type="text"]:focus,
.c-form select:focus,
.c-form textarea:focus {
  outline: none;
  box-shadow: 0 0 10px 2px rgba(28, 52, 136, 0.2);
}
/* .c-form input[type="email"]:invalid,
.c-form input[type="text"]:invalid,
.c-form textarea:invalid {
  border: 2px solid var(--red);
} */
@media screen and (max-width: 1024px) {
  .c-form input[type="email"],
  .c-form input[type="tel"],
  .c-form input[type="text"],
  .c-form select,
  .c-form textarea {
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: 0.02rem;
    margin: 0 0 5px;
  }
}
.c-form textarea {
  min-height: 200px;
}
.c-checkbox {
  padding: 0;
}
.c-checkbox:first-child {
  margin: 1em 0 0;
}
.c-checkbox__input {
  display: none;
}
.c-checkbox__label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  padding: 0 0 0 2em;
  position: relative;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .c-checkbox__label {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.c-checkbox__label:before {
  background: #fff;
  border: 1px solid var(--gray);
  border-radius: 3px;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  left: 0;
  margin-top: -9px;
  position: absolute;
  top: 50%;
}
.c-checkbox__label:after {
  opacity: 0;
  content: "";
  display: block;
  width: 8px;
  height: 13px;
  margin-top: -8px;
  border-right: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transform: rotate(45deg) translate3d(0, 2px, 0) scale3d(0.7, 0.7, 1);
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}
input[type="checkbox"]:checked + .c-checkbox__label:before {
  border-color: #666;
}
input[type="checkbox"]:checked + .c-checkbox__label:after {
  opacity: 1;
  -webkit-transform: rotate(45deg) scaleX(1);
  transform: rotate(45deg) scaleX(1);
}
@media screen and (max-width: 1024px) {
  .c-checkbox {
    padding: 0;
  }
  .c-checkbox:not(:first-of-type) {
    margin: 5px 0 0;
  }
}
.c-select-wrap {
  width: 100%;
  position: relative;
  display: inline-block;
}
.c-select-wrap:after {
  content: "";
  width: 9px;
  height: 9px;
  border-bottom: 2px solid #b4b3b3;
  border-right: 2px solid #b4b3b3;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 0.75rem;
  margin-top: -5px;
}
.c-select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: transparent;
  position: relative;
  z-index: 1;
}
input[type="button"].c-button-submit,
input[type="submit"].c-button-submit {
  color: #fff;
  cursor: pointer;
  width: 100%;
  max-width: 300px;
  line-height: 1;
  font-size: 18px;
  letter-spacing: 0.25rem;
  text-indent: 0.25rem;
  font-weight: 700;
  padding: 1.5em 0;
  margin: 0 auto;
  border: none;
  border-radius: 35px;
  background-color: var(--blue);
  transition: opacity 0.2s ease;
}
.c-button-submit[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.2;
}
.c-button-submit[aria-disabled="false"]:hover {
  opacity: 0.5;
}
input[type="button"].c-button-submit--return,
input[type="submit"].c-button-submit--return {
  background-color: var(--gray);
}
.c-icon-ok {
  position: absolute;
  top: 15px;
  right: 10px;
}
@media screen and (max-width: 1024px) {
  .c-icon-ok {
    top: 10px;
  }
}
.c-icon-ok span {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border-radius: 50%;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  background: var(--green);
  transition: all 0.2s ease;
}
.c-icon-ok span:after,
.c-icon-ok span:before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  background: #fff;
  transition: all 0.2s ease;
}
.c-icon-ok span:before {
  height: 9px;
  left: 9px;
  top: 13px;
  -webkit-transform: rotate(-47deg);
  transform: rotate(-47deg);
}
.c-icon-ok span:after {
  height: 15px;
  right: 11px;
  top: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-thanks__heading {
  width: 100%;
  padding: 50px 20px;
}
.c-thanks__title {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  margin: 0 auto;
}
.c-thanks__title > span {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
  margin: 0 auto;
}
.c-thanks__description {
  line-height: 2;
  font-size: 15px;
  font-size: 0.9375rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.c-thanks__description,
.c-thanks__note {
  letter-spacing: 0.1rem;
  text-align: center;
  margin: 25px 0 0;
}
.c-thanks__note {
  line-height: 1.8;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
.c-thanks__note > a {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .c-thanks__title {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 0.15rem;
  }
  .c-thanks__title > span {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-thanks__description {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .c-thanks__description,
  .c-thanks__note {
    line-height: 1.8;
    letter-spacing: 0.05rem;
    margin: 20px 0 0;
  }
  .c-thanks__note {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 500px) {
  .c-thanks__heading {
    padding: 35px 20px;
  }
  .c-thanks__body {
    padding: 0 20px;
    margin: 35px auto 0;
  }
  .c-thanks__description,
  .c-thanks__note {
    text-align: justify;
    letter-spacing: 0.05rem;
  }
}
.p-contact {
  background-color: #487DCD;
}
.p-contact__header {
  padding-top: 100px;
  margin: 0 auto;
}
.p-contact__headerInner {
  max-width: 880px;
  padding: 0 40px;
  margin: 0 auto;
}
.p-contact__logo {
  margin: 0 auto;
  text-align: center;
}
.p-contact__title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  color: #ffffff;
  margin: 115px auto 0;
}
.p-contact__description {
  line-height: 2.5;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-align: center;
  color: #ffffff;
  margin: 1em auto 0;
}
@media screen and (max-width: 1024px) {
  .p-contact {
    padding: 0 20px;
  }
  .p-contact__title {
    font-size: 25px;
  }
  .p-contact__description {
    line-height: 2.2;
    font-size: 12px;
  }
}
.l-footer {
  width: 100%;
  padding: 20px 0;
  text-align: center;
  background-color: #487DCD;
}
.l-footer__inner {
  max-width: 880px;
  padding: 0 40px;
  margin: 0 auto;
}
.l-footer__copy {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  color: #ffffff;
}