/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
.is_pc,
.is_tab,
.is_onlytab,
.is_sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .is_sp {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .is_tab {
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 1024px) {
  .is_onlytab {
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .is_pc {
    display: block;
  }
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 480px) {
  html {
    font-size: 14px;
  }
}
html body {
  font-family: "notosansR";
  background-color: #000000;
  line-height: 1.7;
}
html body a {
  text-decoration: none;
  color: #000000;
}
html body img {
  max-width: 100%;
  height: auto;
}

.main_visual {
  text-align: center;
  color: #FFFFFF;
  background-image: url(../img/contact/mv.png);
  padding: 95px 0 86px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 480px) {
  .main_visual {
    background-image: url(../img/contact/mv_sp.png);
    padding: 75px 0 63px;
  }
}
.main_visual h2 {
  font-family: din-2014, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.3;
}
@media screen and (max-width: 480px) {
  .main_visual h2 {
    font-size: 28px;
  }
}
.main_visual p {
  font-size: 13px;
}

.context {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 2;
  padding: 115px 0 130px;
}
@media screen and (max-width: 480px) {
  .context {
    font-size: 13px;
    padding: 56px 0 69px;
  }
}
.context .wrap {
  max-width: calc(1000px + 2rem);
  margin: auto;
  padding: 0 1rem;
  max-width: 800px;
}
.context .wrap h3 {
  padding-bottom: 66px;
}
@media screen and (max-width: 480px) {
  .context .wrap h3 {
    padding-bottom: 45px;
  }
}
.context .wrap ul li {
  padding: 28px 0;
  display: flex;
  border-top: 1px solid #4D4D4D;
}
@media screen and (max-width: 480px) {
  .context .wrap ul li {
    flex-direction: column;
    padding-top: 0;
    border-top: 0;
  }
}
.context .wrap ul li label {
  max-width: 194px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .context .wrap ul li label {
    background-color: #4D4D4D;
    padding: 8px;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
.context .wrap ul li label span {
  color: #A6272D;
}
.context .wrap ul li label span.email {
  font-size: 11px;
  color: inherit;
  display: block;
  font-family: "notosansR";
}
@media screen and (max-width: 480px) {
  .context .wrap ul li label span.email {
    display: inline-block;
  }
}
.context .wrap ul li input:not([type=checkbox]), .context .wrap ul li textarea {
  border: 1px solid #FFFFFF;
  padding: 14px;
  border-radius: 10px;
  flex: 1;
  font-size: 13px;
  align-self: center;
  width: 100%;
}
.context .wrap ul li.button {
  align-items: center;
  flex-direction: column;
}
.context .wrap ul li.button .checkbox {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  padding: 30px 0;
}
.context .wrap ul li.button .checkbox label {
  background-color: transparent;
}
.context .wrap ul li.button .resubmit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.context .wrap ul li.button .resubmit .submit {
  position: relative;
  transition: 0.25s;
}
.context .wrap ul li.button .resubmit .submit input[type=submit] {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #000000;
  background-color: #FFFFFF;
  padding: 15px 115px;
  cursor: pointer;
  border-radius: 0;
}
.context .wrap ul li.button .resubmit .submit.submitB:before {
  content: "";
  background-image: url(../img/contact/arr.svg);
  width: 5px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 10px;
}
.context .wrap ul li.button .resubmit .submit.submitC:before {
  content: "";
  background-image: url(../img/contact/arr.svg);
  width: 5px;
  height: 8px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.context .wrap ul li.button .resubmit .submit:hover {
  opacity: 0.8;
}/*# sourceMappingURL=contact.css.map */