@charset "UTF-8";
.pc-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-hidden {
    display: inline-block;
  }
}

.sp-hidden {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
}

/*-- globalフォルダの中の_index.scss --*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

body {
  color: #1655C6;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
a:hover img {
  opacity: 0.8;
}
a img {
  transition-property: opacity;
  transition-duration: 0.2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

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

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: -webkit-focus-ring-color auto 1px;
  outline-color: -webkit-focus-ring-color;
  outline-style: auto;
  outline-width: 1px;
}

small {
  font-size: inherit;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

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

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

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

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit;
  /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

/*-- baseフォルダの中の_index.scss --*/
.form__container {
  padding-top: 115px;
  padding-bottom: 248px;
  max-width: 1592px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 1592px) {
  .form__container {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}
@media screen and (max-width: 768px) {
  .form__container {
    padding-top: 75px;
    padding-bottom: 90px;
  }
}
.form__container::before {
  content: "";
  display: inline-block;
  background-image: url("../img/form/pre01.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 474px;
  padding-top: 1851px;
  top: 170px;
  left: calc(50% - 1130px);
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .form__container::before {
    top: 310px;
    left: -50px;
    width: 171px;
    padding-top: 661px;
  }
}
@media screen and (max-width: 768px) {
  .form__container::before {
    top: 140px;
    left: -40px;
  }
}
@media screen and (max-width: 640px) {
  .form__container::before {
    width: 101px;
    padding-top: 410px;
    top: 110px;
  }
}
@media screen and (max-width: 425px) {
  .form__container::before {
    width: 81px;
    padding-top: 320px;
    top: 140px;
    left: -30px;
  }
}
.form__container::after {
  content: "";
  display: inline-block;
  background-image: url("../img/form/pre02.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 543px;
  padding-top: 1325px;
  top: -110px;
  right: calc(50% - 1110px);
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .form__container::after {
    top: -60px;
    right: -100px;
    width: 251px;
    padding-top: 611px;
  }
}
@media screen and (max-width: 768px) {
  .form__container::after {
    top: 40px;
    right: -80px;
    width: 195px;
    padding-top: 480px;
  }
}
@media screen and (max-width: 640px) {
  .form__container::after {
    top: 30px;
    right: -55px;
    width: 135px;
    padding-top: 330px;
  }
}
@media screen and (max-width: 425px) {
  .form__container::after {
    top: 60px;
    right: -46px;
    width: 105px;
    padding-top: 250px;
  }
}
.form-be {
  padding-top: 600px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .form-be {
    padding-top: 350px;
  }
}
@media screen and (max-width: 768px) {
  .form-be {
    padding-top: 200px;
  }
}
@media screen and (max-width: 640px) {
  .form-be {
    padding-top: 100px;
  }
}
.form-be::before {
  content: "";
  display: inline-block;
  background-image: url("../img/form/mon.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 661px;
  height: 605px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 1000px) {
  .form-be::before {
    width: 330px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .form-be::before {
    width: 250px;
    height: 220px;
  }
}
@media screen and (max-width: 640px) {
  .form-be::before {
    width: 150px;
    height: 120px;
  }
}
.form__inner {
  padding: 70px 10px 120px;
  color: #FFFFFF;
  background-color: #1745BA;
  border-radius: 85px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form__inner {
    padding: 35px 10px 80px;
    border-radius: 59px;
  }
}
.form__inner::before {
  content: "";
  display: inline-block;
  background-image: url("../img/form/pre03.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 464px;
  padding-top: 300px;
  bottom: -150px;
  left: -130px;
}
@media screen and (max-width: 1000px) {
  .form__inner::before {
    width: 250px;
    padding-top: 160px;
    bottom: -70px;
    left: -70px;
  }
}
@media screen and (max-width: 768px) {
  .form__inner::before {
    width: 170px;
    padding-top: 130px;
    bottom: -70px;
    left: -15px;
  }
}
@media screen and (max-width: 425px) {
  .form__inner::before {
    width: 100px;
    padding-top: 70px;
    bottom: -20px;
    left: -10px;
  }
}
.form__inner::after {
  content: "";
  display: inline-block;
  background-image: url("../img/form/pre04.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 322px;
  padding-top: 418px;
  bottom: -120px;
  right: -80px;
}
@media screen and (max-width: 1000px) {
  .form__inner::after {
    width: 200px;
    padding-top: 260px;
    bottom: -70px;
    right: -70px;
  }
}
@media screen and (max-width: 768px) {
  .form__inner::after {
    width: 107px;
    padding-top: 139px;
    bottom: -50px;
    right: -28px;
  }
}
@media screen and (max-width: 425px) {
  .form__inner::after {
    width: 80px;
    padding-top: 100px;
    bottom: -40px;
    right: -15px;
  }
}
.form__box {
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .form__box {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}
@media screen and (max-width: 768px) {
  .form__box {
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 500px) {
  .form__box {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}
.form__title {
  font-size: 109px;
  font-size: 6.8125rem;
  margin-bottom: 140px;
}
@media screen and (max-width: 1200px) {
  .form__title {
    font-size: 80px;
    font-size: 5rem;
  }
}
@media screen and (max-width: 1100px) {
  .form__title {
    font-size: 60px;
    font-size: 3.75rem;
  }
}
@media screen and (max-width: 1000px) {
  .form__title {
    font-size: 50px;
    font-size: 3.125rem;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .form__title {
    font-size: 41px;
    font-size: 2.5625rem;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 640px) {
  .form__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 425px) {
  .form__title {
    font-size: 25px;
    font-size: 1.5625rem;
    margin-bottom: 50px;
  }
}
.form-table {
  width: 100%;
  table-layout: fixed;
  max-width: 1035px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 1000px) {
  .form-table {
    margin-right: 4.375%;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .form-table {
    max-width: 405px;
    margin-right: auto;
    margin-left: auto;
  }
}
.form-table__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}
@media screen and (max-width: 1000px) {
  .form-table__item {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .form-table__item {
    margin-bottom: 34px;
  }
}
.form-table__item th {
  display: flex;
  align-items: baseline;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .form-table__item th {
    width: 320px;
    font-size: 35px;
    font-size: 2.1875rem;
  }
}
@media screen and (max-width: 1000px) {
  .form-table__item th {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .form-table__item th {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 425px) {
  .form-table__item th {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.form-table__item td {
  word-break: break-all;
  width: 100%;
  max-width: 546px;
}
@media screen and (max-width: 1000px) {
  .form-table__item td {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .form-table__item td {
    max-width: 212px;
  }
}
@media screen and (max-width: 425px) {
  .form-table__item td {
    width: 100%;
  }
}
.form-table__item .error {
  color: #E1AC27 !important;
}
.form-table__item .require {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  width: 75px;
  padding: 8px 0;
  margin-right: 32px;
  background-color: #E1AC27;
  border-radius: 15px;
}
@media screen and (max-width: 1200px) {
  .form-table__item .require {
    font-size: 27px;
    font-size: 1.6875rem;
    margin-right: 25px;
  }
}
@media screen and (max-width: 1000px) {
  .form-table__item .require {
    width: 50px;
    font-size: 18px;
    font-size: 1.125rem;
    margin-right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .form-table__item .require {
    width: 40px;
    font-size: 11px;
    font-size: 0.6875rem;
    margin-right: 12px;
  }
}
@media screen and (max-width: 640px) {
  .form-table__item .require {
    width: 35px;
    padding: 4px 0;
    font-size: 9px;
    font-size: 0.5625rem;
    margin-right: 5px;
  }
}
.form-table__area {
  color: #1655C6;
  height: 79px;
  width: 100%;
  padding: 19px 30px 25px;
  background-color: #FFFFFF;
  border: 1px solid #CDD6DD;
}
@media screen and (max-width: 1000px) {
  .form-table__area {
    height: 50px;
    padding: 7px 12px 10px;
  }
}
@media screen and (max-width: 768px) {
  .form-table__area {
    font-size: 9px;
    font-size: 0.5625rem;
    height: 30px;
  }
}
@media screen and (max-width: 640px) {
  .form-table__area {
    padding: 3px 12px 5px;
  }
}
.form-table__area::-moz-placeholder {
  color: #CDD6DD;
}
.form-table__area:-ms-input-placeholder {
  color: #CDD6DD;
}
.form-table__area::placeholder {
  color: #CDD6DD;
}
.form-table input:-webkit-autofill {
  -webkit-text-fill-color: #1655C6 !important;
}
.form-table__select {
  position: relative;
}
.form-table__select::before {
  content: "";
  display: inline-block;
  background-image: url("../img/form/arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 15px;
  padding-top: 10px;
  top: 50%;
  right: 34px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .form-table__select::before {
    width: 5px;
    padding-top: 4px;
    right: 13px;
  }
}
.form-table__select select option:first-child, .form-table__select select:invalid {
  color: #CDD6DD;
}
.form-table__select .select {
  color: #CDD6DD;
}
.form-table__select select option {
  color: #1655C6;
}
.form-table__content {
  color: #1655C6;
  padding: 19px 30px 25px;
  height: 220px;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #CDD6DD;
  resize: none;
}
@media screen and (max-width: 1000px) {
  .form-table__content {
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .form-table__content {
    height: 85px;
    padding: 7px 12px 10px;
  }
}
@media screen and (max-width: 425px) {
  .form-table__content {
    height: 50px;
  }
}
.form-check {
  text-align: center;
  margin-bottom: 83px;
}
@media screen and (max-width: 768px) {
  .form-check {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 640px) {
  .form-check {
    margin-bottom: 35px;
  }
}
.form-check__lable input[type=checkbox] {
  display: none;
}
.form-check__lable input[type=checkbox] br {
  display: none;
}
.form-check__lable span {
  display: inline-block;
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 1;
  position: relative;
  padding: 13px 0 13px 60px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .form-check__lable span {
    font-size: 13px;
    font-size: 0.8125rem;
    padding: 13px 0 13px 40px;
  }
}
@media screen and (max-width: 640px) {
  .form-check__lable span {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.form-check__lable span::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 47px;
  padding-top: 47px;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .form-check__lable span::before {
    top: 6px;
    width: 30px;
    padding-top: 30px;
  }
}
.form-check__lable span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-image: url("../img/form/check.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 26px;
  padding-top: 26px;
  top: 11px;
  left: 11px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .form-check__lable span::after {
    top: 16px;
    left: 9px;
    width: 13px;
    padding-top: 13px;
  }
}
.form-check__lable .link {
  display: inline-block;
  border-bottom: 1px solid #FFFFFF;
}
.form-check input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.form .mw_wp_form.mw_wp_form_input .button-wrap .button01 {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  max-width: 430px;
  margin-right: auto;
  margin-left: auto;
  padding: 21px 3px 23px;
  color: #FFFFFF;
  background-color: #E1AC27;
  border-radius: 46px;
  border: 1px solid transparent;
}
@media screen and (max-width: 768px) {
  .form .mw_wp_form.mw_wp_form_input .button-wrap .button01 {
    font-size: 18px;
    font-size: 1.125rem;
    max-width: 300px;
    padding: 11px 3px 12px;
  }
}
@media screen and (max-width: 640px) {
  .form .mw_wp_form.mw_wp_form_input .button-wrap .button01 {
    max-width: 70%;
  }
}
.form .mw_wp_form.mw_wp_form_input .button-wrap .button01[disabled] {
  color: #ccc;
  border: 1px solid #ccc;
  background-color: #fff;
}
.form .mw_wp_form.mw_wp_form_confirm td {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 1000px) {
  .form .mw_wp_form.mw_wp_form_confirm td {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 768px) {
  .form .mw_wp_form.mw_wp_form_confirm td {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 640px) {
  .form .mw_wp_form.mw_wp_form_confirm td {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .form .mw_wp_form.mw_wp_form_confirm td {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1200px) {
  .form .mw_wp_form.mw_wp_form_confirm .form-table__item th {
    width: 780px;
  }
}
@media screen and (max-width: 1000px) {
  .form .mw_wp_form.mw_wp_form_confirm .form-table__item th {
    width: 320px;
  }
}
.form .mw_wp_form.mw_wp_form_confirm .form-check {
  display: none;
}
.form .mw_wp_form.mw_wp_form_confirm .form-table__select::before {
  content: none;
}
.form .mw_wp_form.mw_wp_form_confirm .button-wrap {
  display: flex;
  justify-content: space-between;
}
.form .mw_wp_form.mw_wp_form_confirm .button02 {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  max-width: 47.5%;
  margin-right: auto;
  margin-left: auto;
  padding: 21px 3px 23px;
  color: #FFFFFF;
  background-color: #00BB51;
  border-radius: 46px;
}
@media screen and (max-width: 768px) {
  .form .mw_wp_form.mw_wp_form_confirm .button02 {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 11px 3px 12px;
  }
}
.form .mw_wp_form.mw_wp_form_confirm .button03 {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.33;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  width: 100%;
  max-width: 47.5%;
  margin-right: auto;
  margin-left: auto;
  padding: 21px 3px 23px;
  color: #FFFFFF;
  background-color: #E1AC27;
  border-radius: 46px;
}
@media screen and (max-width: 768px) {
  .form .mw_wp_form.mw_wp_form_confirm .button03 {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 11px 3px 12px;
  }
}
.form.form-confirm .form__container::before, .form.form-confirm .form__container::after {
  content: none;
}
.form.form-confirm .form__inner::before, .form.form-confirm .form__inner::after {
  content: none;
}
.form.form-complete .form__container {
  padding-bottom: 50px;
}
.form.form-complete .form__container::before, .form.form-complete .form__container::after {
  content: none;
}
.form.form-complete .form__inner::before, .form.form-complete .form__inner::after {
  content: none;
}
.form.form-complete .form__complete {
  font-size: 20px;
  margin-bottom: 30px;
}

.m-btn1__link {
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.33;
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  width: 100%;
  max-width: 302px;
  margin-right: auto;
  margin-left: auto;
  padding: 9px 3px 11px;
  color: #FFFFFF;
  background-color: #E1AC27;
  border-radius: 31px;
}
@media screen and (max-width: 1000px) {
  .m-btn1__link {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .m-btn1__link {
    font-size: 13px;
    font-size: 0.8125rem;
    max-width: 130px;
    padding: 4px 3px 5.5px;
  }
}
@media screen and (max-width: 640px) {
  .m-btn1__link {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.m-btn1--mt {
  margin-top: 2em;
}

.m-btn1.m-btn1--long .m-btn1__link {
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  max-width: 548px;
  padding: 18px 3px 21px;
  border-radius: 61px;
}
@media screen and (max-width: 1000px) {
  .m-btn1.m-btn1--long .m-btn1__link {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .m-btn1.m-btn1--long .m-btn1__link {
    font-size: 20px;
    font-size: 1.25rem;
    max-width: 293px;
  }
}
@media screen and (max-width: 640px) {
  .m-btn1.m-btn1--long .m-btn1__link {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.m-btn1.m-btn1--green .m-btn1__link {
  background-color: #00BB51;
}

.tellink {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tellink {
    pointer-events: auto;
    text-decoration: underline;
  }
}

.m-title1 {
  text-align: center;
  line-height: 1;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: 700;
}

.m-title2 {
  text-align: center;
  line-height: 1;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
}

.wrapper {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1000px) {
  .wrapper {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}

.wp-post {
  word-break: break-all;
}
.wp-post::before {
  content: "";
  display: table;
}
.wp-post::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.wp-post > :last-child {
  margin-bottom: 0;
}
.wp-post p {
  margin-bottom: 20px;
}
.wp-post span,
.wp-post em,
.wp-post strong {
  font-size: inherit;
  color: inherit;
}
.wp-post strong,
.wp-post b {
  font-weight: bold;
}
.wp-post em {
  font-style: italic;
}
.wp-post blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
.wp-post h1 {
  font-size: 160%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h2 {
  font-size: 140%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h3 {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h4 {
  font-size: 100%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h5 {
  font-size: 80%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post h6 {
  font-size: 70%;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 10px;
}
.wp-post table {
  width: 100%;
  margin-bottom: 30px;
}
.wp-post table th {
  width: 25%;
  background-color: #eee;
  padding: 4px;
  border: 1px solid #aaa;
}
.wp-post table td {
  padding: 4px;
  border: 1px solid #aaa;
}
.wp-post ul {
  list-style: circle;
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.wp-post ol {
  list-style: decimal;
  padding-left: 1.2em;
  margin-bottom: 1em;
}
.wp-post a {
  text-decoration: underline;
}
.wp-post img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.wp-post img[class*=wp-image-],
.wp-post img[class*=attachment-],
.wp-post img.pict {
  margin: 1em 5px 2em 0;
  display: block;
}
.wp-post img.pict {
  margin: 1em auto 2em;
}
.wp-post img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-post img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
  vertical-align: top;
}
.wp-post img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
  vertical-align: top;
}
.wp-post .alignright {
  float: right;
}
.wp-post .alignleft {
  float: left;
}
.wp-post iframe {
  max-width: 100% !important;
}

/*-- componentフォルダの中の_index.scss --*/
.news__container .swiper {
  overflow: visible;
}

/*-- javascriptフォルダの中の_index.scss --*/
.l-footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-left: 65px;
  margin-right: 40px;
  padding-top: 20px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer__container {
    margin-left: 25px;
    margin-right: 18.5px;
    padding-top: 29px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__container {
    margin-right: 4.375%;
    margin-left: 4.375%;
  }
}
.l-footer__pre {
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .l-footer__pre {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__pre {
    max-width: 150px;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__pre {
    max-width: 100px;
  }
}
.l-footer__content {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 800;
  text-align: right;
  margin-bottom: 30px;
}
.l-footer__company {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.6;
  margin-bottom: 38px;
}
@media screen and (max-width: 1000px) {
  .l-footer__company {
    font-size: 40px;
    font-size: 2.5rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__company {
    font-size: 35px;
    font-size: 2.1875rem;
    margin-bottom: 15px;
  }
}
.l-footer__detail {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.66;
}
@media screen and (max-width: 1000px) {
  .l-footer__detail {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__detail {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 425px) {
  .l-footer__detail {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

body {
  overflow-x: hidden;
}

.flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.flex-footer {
  margin-top: auto;
}

.l-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 21px 8px 45px;
  background: #1945B8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .l-header__container {
    padding: 16.5px 0 16.5px 24px;
  }
}
@media screen and (max-width: 425px) {
  .l-header__container {
    padding: 10px 0 10px 15px;
  }
}
.l-header__container::before {
  content: "";
  display: inline-block;
  background-image: url("../img/pre-top.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 219px;
  padding-top: 204px;
  top: -120px;
  right: calc(50% - 260px);
}
@media screen and (max-width: 1000px) {
  .l-header__container::before {
    top: -40px;
    width: 100px;
    padding-top: 93px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__container::before {
    width: 153px;
    padding-top: 145px;
    top: -85px;
    right: calc(50% - 200px);
  }
}
@media screen and (max-width: 640px) {
  .l-header__container::before {
    width: 80px;
    padding-top: 75px;
    top: -41px;
    right: calc(50% - 160px);
  }
}
@media screen and (max-width: 500px) {
  .l-header__container::before {
    content: none;
  }
}
@media screen and (max-width: 425px) {
  .l-header__container::before {
    content: "";
    width: 50px;
    padding-top: 45px;
    top: -25px;
    right: calc(50% - 80px);
  }
}
.l-header__logo {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 305px;
  }
}
@media screen and (max-width: 425px) {
  .l-header__logo {
    width: 155px;
  }
}
.l-header .nav {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #1945B8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  margin-right: 0;
  margin-left: 0;
}
.l-header .nav__inner {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
.l-header .nav .list {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}
.l-header .nav .list__item {
  text-align: center;
  margin-bottom: 20px;
}
.l-header .nav .list__item:last-child {
  margin-bottom: 0;
}
.l-header .nav .list__link {
  display: inline-block;
  font-size: 30px;
  font-size: 1.875rem;
  color: #FFFFFF;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .l-header .nav .list__link {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 640px) {
  .l-header .nav .list__link {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.l-header .menu {
  display: block;
  width: 106px;
  height: 74px;
  position: fixed;
  top: 21px;
  right: 21px;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-header .menu {
    width: 79px;
    height: 55px;
  }
}
@media screen and (max-width: 640px) {
  .l-header .menu {
    top: 29px;
    width: 50px;
    height: 35px;
  }
}
@media screen and (max-width: 425px) {
  .l-header .menu {
    top: 11px;
    width: 40px;
    height: 30px;
  }
}
.l-header .menu span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 21px;
  border-radius: 13px;
  background-color: #fff;
  transition: all ease 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header .menu span {
    height: 16px;
  }
}
@media screen and (max-width: 640px) {
  .l-header .menu span {
    height: 9px;
  }
}
@media screen and (max-width: 425px) {
  .l-header .menu span {
    height: 6px;
  }
}
.l-header .menu span:nth-of-type(1) {
  top: 0px;
}
.l-header .menu span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .l-header .menu span:nth-of-type(2) {
    top: 49.5%;
  }
}
@media screen and (max-width: 640px) {
  .l-header .menu span:nth-of-type(2) {
    top: 50%;
  }
}
.l-header .menu span:nth-of-type(3) {
  bottom: 0;
}
.l-header .menu.active span:nth-of-type(1) {
  top: 20px;
  left: 5px;
  transform: translateY(6px) rotate(-45deg);
}
@media screen and (max-width: 640px) {
  .l-header .menu.active span:nth-of-type(1) {
    top: 5px;
    left: 0;
  }
}
.l-header .menu.active span:nth-of-type(2) {
  opacity: 0;
}
.l-header .menu.active span:nth-of-type(3) {
  top: 20px;
  left: 5px;
  transform: translateY(6px) rotate(45deg);
}
@media screen and (max-width: 640px) {
  .l-header .menu.active span:nth-of-type(3) {
    top: 5px;
    left: 0;
  }
}

.l-main {
  margin-top: 115px;
}
@media screen and (max-width: 768px) {
  .l-main {
    margin-top: 95px;
  }
}
@media screen and (max-width: 425px) {
  .l-main {
    margin-top: 51px;
  }
}

/*-- layoutフォルダの中の_index.scss --*/
/*# sourceMappingURL=style.css.map */
