@charset "UTF-8";
/*
 * Sass    : Dart sass
 * 命名規則 : BEM ベース
 *   [接頭辞]
 *   .-****  : Variant
 *   ._****  : Helpers
 *   .c-**** : 汎用コンポーネント
 *   .l-**** : レイアウト
 *   .f-**** : フォーム系コンポーネント
 */
@import url("https://use.fontawesome.com/releases/v5.15.1/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/**************************************************/
/* helpers */
/**************************************************/
._disp-ib {
  display: inline-block !important;
}

@media (max-width: 943px) {
  ._view-cw-high {
    display: none !important;
  }
}
@media (min-width: 944px) {
  ._view-cw-low {
    display: none !important;
  }
}
@media (max-width: 1279px) {
  ._view-xl-high {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  ._view-xl-low {
    display: none !important;
  }
}
@media (max-width: 959px) {
  ._view-lg-high {
    display: none !important;
  }
}
@media (min-width: 960px) {
  ._view-lg-low {
    display: none !important;
  }
}
@media (max-width: 767px) {
  ._view-md-high {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._view-md-low {
    display: none !important;
  }
}
@media (max-width: 479px) {
  ._view-sm-high {
    display: none !important;
  }
}
@media (min-width: 480px) {
  ._view-sm-low {
    display: none !important;
  }
}
._clearfix {
  zoom: 1;
}
._clearfix:after {
  clear: both;
  content: "";
  display: block;
  overflow: auto;
}

._center {
  text-align: center !important;
}

._left {
  text-align: left !important;
}

._right {
  text-align: right !important;
}

._float-l {
  float: left !important;
}

._float-r {
  float: right !important;
}

._clear {
  clear: both !important;
}

._hidden {
  display: none !important;
}

._disp-ib {
  display: inline-block !important;
}

._margin0 {
  margin: 0 !important;
}

._padding0 {
  padding: 0 !important;
}

._border0 {
  border: none !important;
}

._fixed {
  position: fixed !important;
}

._absolute {
  position: absolute !important;
}

._static {
  position: static !important;
}

._xsmall {
  font-size: 75% !important;
}

._small {
  font-size: 88% !important;
}

._large {
  font-size: 113% !important;
}

._xlarge {
  font-size: 133% !important;
}

._nowrap {
  white-space: nowrap !important;
}

._nobg {
  background: none !important;
}

._full {
  width: 100% !important;
}

/**************************************************/
/* base */
/**************************************************/
:root {
  font-size: min(16px, 1.6684045881vw);
}
@media (max-width: 767px) {
  :root {
    font-size: 4.2666666667vw;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  color: #000;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  min-width: 320px;
  padding: 0;
}
body.-fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

input,
textarea {
  font-size: 16px;
}

input,
textarea,
select,
button {
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Sans", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

button,
input[type=button],
input[type=submit] {
  transition: opacity 0.15s ease-out;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.7;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #0068ac;
  text-decoration: underline;
  transition: opacity 0.15s ease-out;
}
a:hover {
  opacity: 0.7;
}
a:hover {
  text-decoration: none;
}

em {
  font-style: normal;
}

a.-telink,
a.js-telink {
  cursor: default;
  opacity: 1 !important;
}

body._ios a:hover {
  opacity: 1;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Header */
/**************************************************/
.l-header {
  box-sizing: border-box;
  left: 2.25rem;
  position: fixed;
  top: 2rem;
  z-index: 100;
}
.l-header__logo a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
  width: 17.25rem;
}
@media (max-width: 767px) {
  .l-header {
    left: 0.875rem;
    top: 0.75rem;
  }
  .l-header__logo a {
    width: 6.875rem;
  }
}

/**************************************************/
/* Footer */
/**************************************************/
.l-footer {
  background: white;
  padding: 1.25rem;
  position: relative;
}
.l-footer__copy {
  display: block;
  font-size: 0.75rem;
  text-align: center;
}

/**************************************************/
/* contents */
/**************************************************/
.l-page-container {
  position: relative;
}

.l-page-contents {
  margin-left: auto;
  margin-right: auto;
  max-width: 826px;
  padding: 0 3.125rem;
  position: relative;
}
.l-page-contents > *:first-child {
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .l-page-contents {
    padding: 0 1.25rem;
  }
}

/**************************************************/
/* components */
/**************************************************/
/**************************************************/
/* components - basic */
/**************************************************/
.c-pagetitle {
  align-items: center;
  background: url(../../images/form/kv.png) no-repeat center center/cover;
  border-bottom: solid 0.375rem white;
  display: flex;
  height: 25rem;
  justify-content: center;
}
.c-pagetitle__title {
  margin: 0;
  width: 22.6875rem;
}
@media (max-width: 767px) {
  .c-pagetitle {
    height: 12.5rem;
  }
  .c-pagetitle__title {
    width: 11.25rem;
  }
}

.c-box {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 0 1.25rem #EB4200;
  margin-top: 5rem;
  padding: 2.5rem 4rem 2.5rem;
  position: relative;
}
@media (max-width: 767px) {
  .c-box {
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}
.c-box::before, .c-box::after {
  background: #FC5901;
  border-radius: 6.25rem;
  content: "";
  height: 1.5rem;
  position: absolute;
  top: 0.9375rem;
  width: 1.5rem;
}
@media (max-width: 767px) {
  .c-box::before, .c-box::after {
    height: 0.9375rem;
    top: 0.5rem;
    width: 0.9375rem;
  }
}
.c-box::before {
  left: 1.125rem;
}
@media (max-width: 767px) {
  .c-box::before {
    left: 0.625rem;
  }
}
.c-box::after {
  right: 1.125rem;
}
@media (max-width: 767px) {
  .c-box::after {
    right: 0.625rem;
  }
}
.c-box__title {
  border-bottom: solid 0.1875rem #014099;
  height: 2.75rem;
  margin: 0;
  padding-bottom: 1.5rem;
  width: 100%;
}
.c-box__title img {
  display: block;
  height: 100%;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .c-box__title {
    border-width: 0.125rem;
    height: 1.625rem;
    padding-bottom: 1.125rem;
  }
}

/**************************************************/
/* components - form */
/**************************************************/
:root {
  --form-border-color: #ccc;
  --form-required-color: #E80000;
  --form-alert-color: #F00;
  --form-alert-bg-color: #FFF0F0;
  --form-btn-bg-color: #FC5901;
  --form-btn-edit-color: #6F6F6F;
}

form label {
  cursor: pointer;
}
form textarea {
  line-height: 1.25;
  resize: vertical;
}

*:-moz-placeholder {
  color: #aaa;
}

*:placeholder-shown {
  color: #aaa;
}
*::-webkit-input-placeholder {
  color: #aaa;
}
*:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #aaa;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

.f-error {
  background: var(--form-alert-bg-color);
  border-radius: 0.1875rem;
  color: var(--form-alert-color);
  display: block;
  font-weight: 700;
  margin: 0.625rem 0 0;
  padding: 0.5em 1em;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.f-errorMsg {
  background: var(--form-alert-bg-color);
  color: var(--form-alert-color);
  display: block;
  font-weight: 700;
  margin-bottom: 2.5rem;
  padding: 1em;
}
.f-errorMsg__text {
  background-color: transparent;
  display: block;
  margin: 0;
}

.f-checkbox {
  display: inline-block;
}
.f-checkbox label {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.f-checkbox label > input[type=checkbox] {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.f-checkbox label > input[type=checkbox] + span {
  display: block;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 0 0 0 1.875rem;
  position: relative;
}
@media (max-width: 767px) {
  .f-checkbox label > input[type=checkbox] + span {
    font-size: 0.875rem;
  }
}
.f-checkbox label > input[type=checkbox] + span::after {
  background: #fff no-repeat center/1.125rem 1.125rem;
  border: 1px solid black;
  border-radius: 0.125rem;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 1.4375rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 1.4375rem;
}
.f-checkbox input[type=checkbox]:checked + span::after {
  background-image: url(../img/icon-checkbox-checked.svg);
}

.f-file {
  display: inline-block;
}
.f-file input {
  box-sizing: border-box;
  color: black;
  max-width: 100%;
  width: 100%;
}
.f-file input::file-selector-button {
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white;
  border: solid 1px black;
  border-radius: 0.125rem;
  box-shadow: none;
  color: black;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 0.5rem 0 0;
  padding: 0.625rem 0.75rem;
  position: relative;
}
.f-file input::file-selector-button:hover {
  background: white;
}
.f-file-filename {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  margin: 0;
}

.f-file-confirm p {
  font-size: 0.9375rem;
  margin: 0.5rem 0 0 0;
}
@media (max-width: 767px) {
  .f-file-confirm p {
    font-size: 0.8125rem;
  }
}

.f-btn {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #014099;
  border: none;
  border-radius: 0;
  border-radius: 6.25rem;
  box-shadow: none;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0;
  max-width: 20rem;
  position: relative;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.f-btn::after {
  background: url(../../images/icon-arrow.svg) no-repeat center center/contain;
  content: "";
  height: 1.125rem;
  position: absolute;
  right: 1.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6875rem;
}
.f-btn input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: 0;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  font-size: inherit;
  font-weight: bold;
  margin: 0;
  padding: 1.8125rem 2.8125rem;
  width: 100%;
}
.f-btn.-prev {
  background: #D3E5FF;
  color: #014099;
}
.f-btn.-prev::after {
  background: url(../../images/icon-arrow_navy.svg) no-repeat center center/contain;
  left: 1.875rem;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}
.f-btn.-top {
  border: solid 0.1875rem white;
  box-shadow: 0 0.1875rem 0.75rem #EB4200;
  line-height: 1;
  padding: 1.6875rem 2.8125rem;
}
.f-btn.-top::after {
  left: 1.875rem;
  right: auto;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .f-btn {
    font-size: 1rem;
  }
  .f-btn input {
    padding: 1.5rem 1.875rem;
  }
  .f-btn::after {
    right: 1.25rem;
    width: 0.5rem;
  }
  .f-btn.-top::after, .f-btn.-prev::after {
    left: 1.25rem;
    right: auto;
  }
  .f-btn.-top {
    padding: 1.375rem 1.875rem;
  }
}

.confirm_area {
  display: none;
}

.wpcf7-not-valid-tip {
  font-size: 0.9375rem;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .wpcf7-not-valid-tip {
    font-size: 0.8125rem;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-response-output {
  border: none !important;
  color: #FC5901;
  font-weight: bold;
  text-align: center;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.grecaptcha-badge {
  visibility: hidden;
}

/**************************************************/
/* pages */
/**************************************************/
/**************************************************/
/* Home */
/**************************************************/
.l-kv__img {
  display: block;
  margin: 0;
  width: 100%;
}
.l-kv__img img {
  width: 100%;
}

.l-bg {
  background: url(../../images/bg-main.png) repeat-y top -15rem center/100% auto;
  overflow: hidden;
  padding-bottom: 6.25rem;
  padding-top: 5.3125rem;
}
@media (max-width: 767px) {
  .l-bg {
    background-position: top -3.75rem center;
    padding: 2.5rem 0 3.125rem;
  }
}

.l-top .lead {
  position: relative;
}
.l-top .lead__deco {
  content: "";
  display: inline-block;
  position: absolute;
}
.l-top .lead__deco img {
  filter: drop-shadow(0 0 1rem #EB4200);
}
.l-top .lead__deco01 {
  left: -8.75rem;
  max-width: 9.0625rem;
  top: 6.25rem;
  width: 18%;
}
@media (max-width: 959px) {
  .l-top .lead__deco01 {
    left: -4.375rem;
    top: 7.5rem;
  }
}
@media (max-width: 767px) {
  .l-top .lead__deco01 {
    left: -0.9375rem;
    top: 13.125rem;
    width: 4.0625rem;
  }
}
.l-top .lead__deco02 {
  max-width: 12.375rem;
  right: -11.25rem;
  top: 7.5rem;
  width: 24%;
}
@media (max-width: 959px) {
  .l-top .lead__deco02 {
    right: -5.625rem;
  }
}
@media (max-width: 767px) {
  .l-top .lead__deco02 {
    bottom: 3.125rem;
    right: -1.875rem;
    top: auto;
    width: 6.25rem;
  }
}
.l-top .lead__text {
  margin: 0;
  position: relative;
  z-index: 2;
}
.l-top .lead__text img {
  display: block;
  width: 100%;
}
.l-top .lead__notes {
  color: white;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 2.25rem 0 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .l-top .lead__notes {
    font-size: 0.8125rem;
  }
}
.l-top .kikan__text {
  margin: 1.875rem auto 0.625rem;
  max-width: 40.5rem;
}
.l-top .kikan__text img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .l-top .kikan__text {
    margin-bottom: 0;
    margin-top: 1.5rem;
  }
}
.l-top .step__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 1.875rem 0 0 0;
  padding: 0;
}
@media (max-width: 767px) {
  .l-top .step__list {
    margin-top: 1.5rem;
  }
}
.l-top .step__item {
  height: 2.625rem;
}
.l-top .step__item img {
  display: block;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .l-top .step__item {
    height: 1.4375rem;
  }
}
.l-top .about {
  background: #014099;
  border: solid 0.1875rem white;
  margin-top: 5rem;
  padding: 2.8125rem 3.75rem 3.375rem;
}
@media (max-width: 767px) {
  .l-top .about {
    border-width: 0.125rem;
    margin-top: 2.5rem;
    padding: 1.875rem 1.25rem;
  }
}
.l-top .about__title {
  margin: 0 auto;
}
.l-top .about__title img {
  display: block;
  height: 2.04375rem;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .l-top .about__title img {
    height: 1.3125rem;
  }
}
.l-top .about__body {
  margin-top: 2.25rem;
}
@media (max-width: 767px) {
  .l-top .about__body {
    margin-top: 1.875rem;
  }
}
.l-top .about__list, .l-top .about__text {
  color: white;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9375;
  margin: 1rem 0 0 0;
  padding: 0;
}
@media (max-width: 767px) {
  .l-top .about__list, .l-top .about__text {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}
.l-top .about__list {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}
.l-top .about__text {
  background: url(../../images/line-dash.png) repeat-x left bottom/auto 0.1875rem;
  margin-bottom: 2.8125rem;
  padding-bottom: 2.8125rem;
}
@media (max-width: 767px) {
  .l-top .about__text {
    background-size: auto 0.125rem;
    margin-bottom: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.l-top .form__body {
  padding: 3.375rem 2.5rem 1rem;
}
@media (max-width: 767px) {
  .l-top .form__body {
    padding: 1.5rem 0.625rem 0;
  }
}
.l-top .form__input {
  display: flex;
}
@media (max-width: 767px) {
  .l-top .form__input {
    flex-direction: column;
    row-gap: 0.9375rem;
  }
}
.l-top .form__input-title {
  box-sizing: border-box;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0;
  padding-top: 0.25rem;
  width: 40%;
}
@media (max-width: 767px) {
  .l-top .form__input-title {
    font-size: 1rem;
    padding-top: 0;
    width: 100%;
  }
}
.l-top .form__input-title-require {
  background: #FC5901;
  border-radius: 6.25rem;
  color: white;
  display: inline-block;
  font-size: 0.9375rem;
  margin-left: 0.625rem;
  padding: 0 0.625rem 0.0625rem;
}
@media (max-width: 767px) {
  .l-top .form__input-title-require {
    font-size: 0.8125rem;
  }
}
.l-top .form__input-area {
  align-items: center;
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.l-top .form__notes {
  list-style: none;
  margin: 1.875rem 0 0 0;
  padding: 0;
}
@media (max-width: 767px) {
  .l-top .form__notes {
    margin-top: 1.5rem;
  }
}
.l-top .form__notes > li {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .l-top .form__notes > li {
    font-size: 0.8125rem;
  }
}
.l-top .form__attention {
  background: #EAEAEA;
  border-radius: 0.125rem;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .l-top .form__attention {
    margin-top: 1.5rem;
  }
}
.l-top .form__attention-contents {
  box-sizing: border-box;
  line-height: 1.7333333333;
  max-height: 9.375rem;
  overflow-y: auto;
  padding: 1.25rem 2.25rem;
}
@media (max-width: 767px) {
  .l-top .form__attention-contents {
    line-height: 1.8;
    padding: 1.25rem;
  }
}
.l-top .form__attention-contents h3, .l-top .form__attention-contents h4 {
  margin: 0;
}
.l-top .form__attention-contents h3 {
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .l-top .form__attention-contents h3 {
    font-size: 0.875rem;
  }
}
.l-top .form__attention-contents h4, .l-top .form__attention-contents p {
  font-size: 0.9375rem;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 767px) {
  .l-top .form__attention-contents h4, .l-top .form__attention-contents p {
    font-size: 0.8125rem;
  }
}
.l-top .form__attention-contents ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-top .form__agree {
  margin-top: 2.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .l-top .form__agree {
    margin-top: 1.875rem;
  }
}
.l-top .form__submit {
  display: flex;
  flex-direction: row-reverse;
  gap: 1.875rem;
  justify-content: center;
  margin-top: 2.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  .l-top .form__submit {
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.875rem;
  }
}

.l-thanks {
  padding: 6.25rem 0 7.5rem;
}
@media (max-width: 767px) {
  .l-thanks {
    padding: 3.125rem 0 3.75rem;
  }
}
.l-thanks .thanks__title {
  margin: 0 auto;
  max-width: 36.0625rem;
}
.l-thanks .thanks__title img {
  display: block;
  width: 100%;
}
.l-thanks .thanks__text {
  color: white;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 1.875rem;
  text-align: center;
}
@media (max-width: 767px) {
  .l-thanks .thanks__text {
    font-size: 0.9375rem;
  }
}
.l-thanks .thanks__btn {
  margin-top: 3.75rem;
  text-align: center;
}
@media (max-width: 767px) {
  .l-thanks .thanks__btn {
    margin-top: 2.5rem;
  }
}