:root {
  --works-section-base-height-base: 3749px;
}

:root {
  --works-section-base-height-base: 3749px;
}

:root {
  --works-section-base-height-base: 3749px;
}

:root {
  --works-section-base-height-base: 3749px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes fadein-out {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes square-animation {
  0% {
    box-shadow: 0 0 0 9999px #fff;
  }
  100% {
    width: 100%;
    height: 100vh;
    box-shadow: 0 0 0 9999px #fff;
  }
}
@keyframes infinity-scroll-top {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.contact-content {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6vw;
  padding-right: 6vw;
  padding-top: max(97px, 6.7361111111vw);
  padding-bottom: max(140px, 9.7222222222vw);
}
@media (max-width: 768px) {
  .contact-content {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    padding-top: max(60px, 16vw);
    padding-bottom: max(140px, 37.3333333333vw);
  }
}
.contact-content--desc {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 2;
  text-align: center;
}
@media (max-width: 768px) {
  .contact-content--desc {
    font-size: 2;
  }
}
.contact-content--ttl {
  text-align: center;
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  font-weight: 700;
}
.contact-content--thanks_desc {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 2;
  text-align: center;
  margin-top: 2em;
}
@media (max-width: 768px) {
  .contact-content--thanks_desc {
    font-size: 2;
  }
}
.contact-content--thanks_desc:first-of-type {
  margin-top: 40px;
}
.contact-content--top_link {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: 190px;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid #CCCCCC;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.contact-content--top_link:before {
  content: "";
  width: 100%;
  height: 0;
  background-color: #111;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.contact-content--top_link:hover:before {
  height: 100%;
}
@media (max-width: 768px) {
  .contact-content--top_link:hover:before {
    height: 0;
  }
}
.contact-content--top_link:hover .contact-content--top_link_txt {
  color: #fff;
}
@media (max-width: 768px) {
  .contact-content--top_link:hover .contact-content--top_link_txt {
    color: #333;
  }
}
.contact-content--top_link:hover .contact-content--top_link_deco:before {
  left: 100%;
}
@media (max-width: 768px) {
  .contact-content--top_link:hover .contact-content--top_link_deco:before {
    left: 0;
  }
}
.contact-content--top_link:hover .contact-content--top_link_deco:after {
  left: 0;
}
@media (max-width: 768px) {
  .contact-content--top_link:hover .contact-content--top_link_deco:after {
    left: -100%;
  }
}
.contact-content--top_link_txt {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: 0.3s;
  position: relative;
}
.contact-content--top_link_deco {
  display: block;
  width: 12px;
  aspect-ratio: 12/12;
  position: relative;
  overflow: hidden;
}
.contact-content--top_link_deco:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../img/icon/icon-arrow-black.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-content--top_link_deco:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../img/icon/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: -100%;
}

.contact-form {
  margin-top: 78px;
}

select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 98%;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
  color: #333;
}

.form-group.radio {
  margin-bottom: 27px;
}

.form-group label,
.form-group .inquiry_type {
  font-weight: 400;
  font-size: 1.6rem;
  display: block;
  margin-bottom: 13px;
}
@media (max-width: 768px) {
  .form-group label,
  .form-group .inquiry_type {
    font-size: 1.4rem;
  }
}

.form-group .input_box,
.form-group .select_box {
  height: 60px;
}

.form-group .select_box {
  display: flex;
  align-items: center;
}

.form-group .input_box input,
.form-group .select_box {
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  border: solid 1px #CCCCCC;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  background-color: #F6F7F8;
  border-radius: 0;
}

.form-group .input_box input:focus-visible {
  outline: none;
}

.form-group .text_box {
  box-sizing: border-box;
}

.form-group .text_box textarea {
  width: 100%;
  height: 200px;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  border: solid 1px #CCCCCC;
  background-color: #F6F7F8;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  border-radius: 0;
}

.form-group .text_box textarea:focus-visible {
  outline: none;
}

.form-group.center_item {
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.form-group.center_item label {
  width: auto;
  line-height: 1;
}

.form-group .required {
  font-size: 1.2rem;
  display: inline-block;
  color: #fff;
  background: #9F0000;
  padding: 2px 8px;
  margin-left: 10px;
  transform: translateY(-2px);
  line-height: 1;
}

.form-group .checkbox {
  width: 30px;
  height: 30px;
  outline: none;
  margin-right: 20px;
}

.form-group.submit_btn {
  background: none;
}

.form-group.submit_btn input {
  width: 208px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  height: 48px;
  line-height: 48px;
  background: #333;
  transition: 0.3s;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  border-radius: 0;
  font-family: "Noto Serif JP", serif;
}

.form-group.submit_btn input:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .form-group.submit_btn input:hover {
    opacity: 1;
  }
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
}

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

.wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem) !important;
}

.wpcf7-list-item {
  margin-top: 0.5em !important;
  margin-left: 30px !important;
}
@media (max-width: 768px) {
  .wpcf7-list-item {
    display: block !important;
    margin-left: 0 !important;
    margin-top: 18px !important;
  }
}
.wpcf7-list-item.first {
  margin-left: 0 !important;
}
@media (max-width: 768px) {
  .wpcf7-list-item.first {
    margin-top: 5px !important;
  }
}

.wpcf7-response-output {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem) !important;
}

input[type=radio] {
  display: none;
}
input[type=radio]:checked + span:after {
  opacity: 1;
}
input[type=radio] + span {
  font-size: 1.6rem;
  position: relative;
  padding-left: 24px;
  cursor: pointer;
}
@media (max-width: 768px) {
  input[type=radio] + span {
    font-size: 1.4rem;
  }
}
input[type=radio] + span:before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  background-color: #DDDDDD;
  border-radius: 50%;
}
input[type=radio] + span:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 4px;
  opacity: 0;
  width: 7px;
  height: 7px;
  background-color: #333;
  border-radius: 50%;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .form-group label {
    width: 100%;
    margin-bottom: 10px;
  }
  .form-group .text_box {
    width: 100%;
  }
  .form-group .input_box {
    width: 100%;
    height: 40px;
  }
  .form-group.check_wrap {
    flex-direction: row;
    padding: 15px 0;
  }
  .form-group .checkbox {
    width: auto;
    height: auto;
    margin-right: 10px;
  }
  .form-group.check_wrap label {
    margin-bottom: 0;
  }
  .form-group .input_box input,
  .form-group .select_box {
    height: 40px;
  }
}

/*# sourceMappingURL=contact.css.map */
