*, ::after, ::before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6, p {
  font-weight: initial;
}

button {
  border: initial;
  background: initial;
  outline: 0;
}

textarea {
  resize: none;
}

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-bg: #FAFFFF;
  --color-object-dark: #3C4141;
  --color-object-dark2: #4B5050;
  --color-txt-main: #506464;
  --color-txt-sub: #8C9696;
  --color-object-lighten: #F0F5F5;
  --color-object-lighten2: #BEC3C3;
  --color-line: #D2DCD7;
  --color-primary-green: #19A050;
}

.ContactContent {
  margin-top: 200px;
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .ContactContent {
    margin-top: 160px;
  }
}
.ContactContent__inner {
  max-width: 700px;
}
.ContactContent__list {
  width: 100%;
}
.ContactContent__item:not(:first-child) {
  margin-top: 40px;
}
.ContactContent__item--label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.8;
}
.ContactContent__item--label_tag {
  margin-left: 8px;
  color: var(--color-primary-green);
}
.ContactContent__item--input {
  width: 100%;
  margin-top: 16px;
  padding-top: 24px;
  padding-right: 16px;
  padding-bottom: 24px;
  padding-left: 16px;
  font-weight: 400;
  font-size: 16px;
  display: block;
  resize: none;
  border: 1px solid var(--color-object-lighten);
  border-radius: 0;
  outline: 0;
  background-color: var(--color-object-lighten);
}
.ContactContent__item--input:focus {
  border-color: var(--color-line);
}
.ContactContent__item textarea {
  height: 300px;
}
.ContactContent__item .error {
  margin-top: 4px;
  font-weight: 500;
  font-size: 12px !important;
}
.ContactContent__check {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ContactContent__check--input {
  width: 22px;
  height: 22px;
  position: relative;
  cursor: pointer;
  transform: translateY(3px);
}
.ContactContent__check--input:checked::before {
  content: "";
  background-image: url(../../../images/common/icn-check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
}
.ContactContent__check--label {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-txt-main);
}
.ContactContent__check--label_link {
  color: var(--color-primary-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ContactContent__check .error {
  width: 100%;
  font-weight: 500;
  font-size: 12px !important;
  text-align: center;
  order: 3;
}
.ContactContent__submitw {
  width: 100%;
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  max-width: 200px;
  position: relative;
}
.ContactContent__submitw::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-txt-sub);
}
.ContactContent__submitw .ContactContent__submit--arrow {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
.ContactContent__submitw:hover::before {
  opacity: 0;
}
.ContactContent__submitw:hover .ContactContent__submit {
  padding-left: 16px;
  color: var(--color-white);
  background-color: var(--color-primary-green);
}
.ContactContent__submitw:hover .ContactContent__submit--arrow {
  right: 16px;
}
.ContactContent__submitw:hover .ContactContent__submit--arrow path {
  stroke: var(--color-white);
}
.ContactContent__submit {
  width: 100%;
  padding-top: 10px;
  padding-right: 4px;
  padding-bottom: 10px;
  padding-left: 4px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  color: var(--color-txt-main);
  text-align: left;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
.ContactContent__back {
  margin-top: 32px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  color: var(--color-txt-main);
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}
.ContactContent__back:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ContactContent.-confirm .ContactContent__item {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.ContactContent.-confirm .ContactContent__item--label {
  width: 100%;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  font-weight: 700;
  font-size: 16px;
  display: block;
}
.ContactContent.-confirm .ContactContent__check {
  display: none;
}
.ContactContent.-active {
  opacity: 1;
  transform: translateY(0);
}

.ContactSubmitted {
  margin-top: 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: 2s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.48s;
}
@media screen and (max-width: 768px) {
  .ContactSubmitted {
    margin-top: 160px;
  }
}
.ContactSubmitted__head {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7;
  color: var(--color-primary-green);
}
@media screen and (max-width: 768px) {
  .ContactSubmitted__head {
    font-size: 24px;
  }
}
.ContactSubmitted__text {
  margin-top: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .ContactSubmitted__text {
    font-size: 12px;
  }
}
.ContactSubmitted.-active {
  opacity: 1;
  transform: translateY(0);
}