@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  width: 71.875rem;
}

.l-sec {
  padding: 3.75rem 0 5rem;
}
.l-sec01 {
  padding: 3.5rem 0 6.875rem;
}

.form {
  color: #2b2b2b;
  font-size: 16px;
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
  width: 700px;
}

.form__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form__item {
  width: 100%;
}

.form__label {
  align-items: center;
  color: #595959;
  display: flex;
  font-weight: 600;
  gap: 10px;
  margin-bottom: 8px;
}

.form__label--withNote {
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 12px;
}

.form__labelHead {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.form__labelText {
  font-size: 16px;
}

.form__labelNote {
  color: #595959;
  font-size: 16px;
  font-weight: 600;
}

.form__badge {
  align-items: center;
  background: #CC0000;
  border-radius: 2px;
  color: #fff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  height: 22px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  padding: 0 6px;
}

.form__example {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.form__note {
  color: #595959;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.form__box {
  border: 1px solid #707070;
  margin-top: 8px;
  width: 100%;
}

.form__box--checks {
  padding: 14px 18px;
}

.form__input {
  background: #fff;
  border: 1px solid #707070;
  color: #595959;
  font-size: 16px;
  font-weight: 500;
  height: 46px;
  line-height: 1;
  max-width: 700px;
  padding: 0 14px;
  width: 100%;
}

.form__input::-moz-placeholder {
  color: #A8A9A9;
}

.form__input::placeholder {
  color: #A8A9A9;
}

.form__checkGroup {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0;
}

.form__checkGroup--inline {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 0;
}

.form__checkGroup--inline + .form__checkGroup--inline {
  margin-top: 12px;
}

.form__checkLabel {
  align-items: flex-start;
  color: #595959;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  gap: 12px;
}

.form__checkLabel--block {
  align-items: flex-start;
  line-height: 1.6;
}

.form__checkInput {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.form__customCheck {
  align-items: center;
  border: 1px solid #707070;
  display: inline-flex;
  flex-shrink: 0;
  height: 20px;
  justify-content: center;
  position: relative;
  top: 3px;
  width: 20px;
}

.form__customCheck::after {
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  content: "";
  height: 6px;
  position: relative;
  top: -1px;
  transform: rotate(-45deg) scale(0);
  transition: transform 0.15s ease;
  width: 10px;
}

.form__checkInput:checked + .form__customCheck::after {
  transform: rotate(-45deg) scale(1);
}

.form__checkText {
  line-height: 1.6;
}

.form__checkWithInput {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__input--nested {
  height: 38px;
  margin-left: 0;
  padding: 0 12px;
  width: 100%;
}

.form__textarea {
  border: 1px solid #707070;
  color: #595959;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 700px;
  min-height: 180px;
  padding: 12px 14px;
  width: 100%;
}

.form__textarea::-moz-placeholder {
  color: #A8A9A9;
}

.form__textarea::placeholder {
  color: #A8A9A9;
}

.form__actions {
  margin-top: 52px;
  text-align: center;
}

.form__submit {
  background: #9fb400;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  height: 50px;
  transition: background 0.3s ease;
  width: 132px;
}

.form__submit:hover {
  background: #8fa100;
}

.form__submit:disabled,
.form__submit.disabled {
  background: #999999;
  cursor: not-allowed;
}

.form__submit:disabled:hover,
.form__submit.disabled:hover {
  background: #999999;
}

.thanks_wrap {
  margin: 60px auto;
  max-width: 800px;
  padding: 0 20px;
}

.thanks_content {
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
}

.thanks_icon {
  height: 80px;
  margin: 0 auto 30px;
  width: 80px;
}

.thanks_icon img {
  color: #9fb400;
  height: auto;
  width: 100%;
}

.thanks_title {
  color: #595959;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.thanks_text {
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.thanks_button {
  margin-top: 40px;
}

.thanks_button .thanks_buttonLink {
  background: #9fb400;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.thanks_buttonLink:hover {
  background: #8fa100;
}
.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

.u-sp {
  display: none;
}

@media (max-width: 599px) {
  .thanks_wrap {
    margin-bottom: 40px;
    margin-inline: auto;
  }
  .thanks_content {
    padding: 0;
  }
  .thanks_title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .thanks_text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: left;
  }
  .thanks_button {
    margin-top: 30px;
  }
  .thanks_buttonLink {
    font-size: 14px;
    padding: 14px 32px;
  }
}

@media screen and (max-width: 599px) {
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-sec {
    padding: 5rem 0 6.25rem;
  }
  .l-sec01 {
    padding: 4.5rem 0 5.75rem;
  }
  .form {
    font-size: 14px;
  }
  .form__labelText {
    font-size: 14px;
  }
  .form__labelNote {
    font-size: 14px;
  }
  .form__badge {
    font-size: 12px;
  }
  .form__example {
    font-size: 14px;
  }
  .form__note {
    font-size: 14px;
  }
  .form__input {
    font-size: 14px;
  }
  .form__checkLabel {
    font-size: 14px;
  }
  .form__customCheck {
    height: 18px;
    width: 18px;
  }
  .form__textarea {
    font-size: 14px;
  }
  .form__submit {
    font-size: 14px;
  }
  .thanks_wrap {
    padding-inline: 0;
  }
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 0.625rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 1.25rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 1.875rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 2.5rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 3.125rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 3.75rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 4.375rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 5.625rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 6.875rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 7.5rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 8.125rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 8.75rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 9.375rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 10.625rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 11.25rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 11.875rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 12.5rem !important;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*# sourceMappingURL=sourcemaps/contact.css.map */