@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
  scroll-behavior: smooth;
}

section {
  display: flex;
  justify-content: center;
}
section .wrapper {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
section .wrapper .content {
  display: flex;
  width: 100%;
}
section .wrapper .content .s-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
section .wrapper .content .s-head .s-top {
  display: flex;
  align-items: center;
  gap: 6px;
}
section .wrapper .content .s-head .s-top .c {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F2001D;
}
section .wrapper .content .s-head .s-top .ct {
  color: #5F5F5F;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
}
section .wrapper .content .s-head .t {
  font-size: 2rem;
  font-weight: 400;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.header .hc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.header .hc.scrolling {
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1019607843);
}
.header .hc.scrolling .left img {
  filter: invert(1);
  transition: filter 0.4s ease;
}
.header .hc .left {
  display: flex;
  align-items: center;
}
.header .hc .left img {
  max-width: 170px;
  filter: invert(1);
}
.header .hc .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .hc .right .header-btn {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 2px solid #F2001D;
  padding: 6px 0;
  width: 160px;
  font-size: 0.85rem;
}
.header .hc .right .header-btn.r {
  background-color: #F2001D;
  color: #fff;
}
.header .hc .right .header-btn.r:hover {
  background-color: #fff;
  color: #F2001D;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.header .hc .right .header-btn.w {
  background-color: #fff;
  color: #F2001D;
}
.header .hc .right .header-btn.w:hover {
  background-color: #F2001D;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pg-title {
  padding: 160px 30px 30px 30px;
  border-bottom: 2px solid #D9D9D9;
}
.pg-title .content {
  flex-direction: column;
}
.pg-title .content .s-head {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
}
.pg-title .content .s-head .s-top {
  display: flex;
  align-items: center;
  gap: 6px;
  order: 2;
}
.pg-title .content .s-head .s-top .c {
  display: flex;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #F2001D;
}
.pg-title .content .s-head .s-top .ct {
  color: #5F5F5F;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
}
.pg-title .content .s-head .t {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.pg-title .content .bc span {
  letter-spacing: 1px;
  font-size: 0.9rem;
}
.pg-title .content .bc span a {
  text-decoration: none;
  color: #000;
}
.pg-title .content .bc span a:hover {
  text-decoration: underline;
}
.pg-title .content .bc span .current {
  color: #858585;
}

.c-form {
  padding: 100px 30px;
}
.c-form .content {
  flex-direction: column;
}
.c-form .content .form {
  width: 100%;
}
.c-form .content .form .form-st {
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-bottom: 40px;
}
.c-form .content .form .f-sec {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.c-form .content .form .f-sec:has(input#corp:checked) ~ .sp {
  display: none;
}
.c-form .content .form .f-sec:has(input#sp:checked) ~ .corp {
  display: none;
}
.c-form .content .form .f-sec .ft {
  font-size: 1.2rem;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  padding-left: 50px;
}
.c-form .content .form .f-sec .ft .red {
  color: #F2001D;
}
.c-form .content .form .f-sec .ft::before {
  content: "任意";
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  background-color: #5F5F5F;
  position: absolute;
  left: 0;
  top: 0px;
  padding: 4px 6px;
  border-radius: 4px;
}
.c-form .content .form .f-sec .mp {
  font-size: 0.9rem;
  color: #797979;
}
.c-form .content .form .f-sec.req .ft::before {
  content: "必須";
  background-color: #F2001D;
}
.c-form .content .form .f-sec .ipt-c {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
  margin: 12px 0;
}
.c-form .content .form .f-sec .ipt-c.list {
  flex-direction: column;
  gap: 10px;
}
.c-form .content .form .f-sec .ipt-c.ctype .ipt-g {
  width: unset;
}
.c-form .content .form .f-sec .ipt-c.name {
  gap: 10px;
}
.c-form .content .form .f-sec .ipt-c .ipt-g {
  display: flex;
  width: 100%;
}
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=radio], .c-form .content .form .f-sec .ipt-c .ipt-g input[type=checkbox] {
  margin-right: 10px;
  accent-color: #F2001D;
}
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=text],
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=email],
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=tel],
.c-form .content .form .f-sec .ipt-c .ipt-g textarea {
  padding: 10px;
  background-color: #F1F1F1;
  border: 1px solid #CACACA;
  border-radius: 4px;
  width: 100%;
  font-size: 1.2rem;
  resize: vertical;
}
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=text]::placeholder,
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=email]::placeholder,
.c-form .content .form .f-sec .ipt-c .ipt-g input[type=tel]::placeholder,
.c-form .content .form .f-sec .ipt-c .ipt-g textarea::placeholder {
  color: #B5B5B5;
}
.c-form .content .form .f-sec .ipt-c .ipt-g select {
  padding: 10px;
  background-color: #F1F1F1;
  border: 1px solid #CACACA;
  border-radius: 4px;
  width: 100%;
  font-size: 1.2rem;
  color: #B5B5B5;
}
.c-form .content .form .f-sec .ipt-c .ipt-g select option {
  font-size: 1rem;
}
.c-form .content .form .f-sec .ipt-c .ipt-g textarea {
  min-height: 200px;
}
.c-form .content .form .pol-check {
  margin-bottom: 50px;
  font-size: 1.2rem;
  line-height: 1.6;
}
.c-form .content .form .pol-check .ipt-c .ipt-g input {
  margin-right: 10px;
  accent-color: #F2001D;
}
.c-form .content .form .pol-check .ipt-c .ipt-g label .red {
  color: #F2001D;
}
.c-form .content .form .btn-c {
  display: flex;
  justify-content: center;
}
.c-form .content .form .btn-c .form-btn {
  background-color: #F2001D;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 2px solid #F2001D;
  width: 50%;
  padding: 10px;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.c-form .content .form .btn-c .form-btn:hover {
  background-color: #fff;
  color: #F2001D;
}
.c-form .content .form .btn-c .form-btn:hover img.i-r {
  display: flex;
  opacity: 1;
}
.c-form .content .form .btn-c .form-btn:hover img.i-w {
  display: none;
  opacity: 0;
}
.c-form .content .form .btn-c .form-btn img {
  width: 24px;
}
.c-form .content .form .btn-c .form-btn img.i-w {
  display: flex;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.c-form .content .form .btn-c .form-btn img.i-r {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cta-red {
  padding: 100px 30px;
  background-color: #F2001D;
}
.cta-red .content {
  display: flex;
  gap: 40px;
}
.cta-red .content .dv {
  height: 100%;
  width: 2px;
  background-color: #fff;
  margin: 0 40px;
}
.cta-red .content .box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: #fff;
}
.cta-red .content .box.scd .img-c img {
  max-width: 48px;
}
.cta-red .content .box .t {
  font-size: 2rem;
  font-weight: 500;
}
.cta-red .content .box .st {
  letter-spacing: 1px;
  line-height: 1.6;
  font-size: 1.2rem;
}
.cta-red .content .box .img-c {
  background-color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease;
}
.cta-red .content .box .img-c:hover {
  transform: scale(1.08);
  transition: transform 0.2s ease;
}
.cta-red .content .box .img-c img {
  max-width: 30px;
}

.footer {
  display: flex;
  justify-content: center;
  background-color: #2A2A2A;
  padding: 100px 30px;
}
.footer .wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.footer .wrapper .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer .wrapper .content .ft-links {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-bottom: 30px;
  gap: 14px;
}
.footer .wrapper .content .ft-links .link {
  list-style-type: none;
}
.footer .wrapper .content .ft-links .link a {
  text-decoration: none;
  color: #fff;
}
.footer .wrapper .content .info {
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 1px;
}
.footer .wrapper .content .insta img {
  max-width: 40px;
}

.cp {
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width: 850px) {
  section .wrapper .content .s-head {
    margin-bottom: 60px;
  }
  section .wrapper .content .s-head .s-top .c {
    width: 12px;
    height: 12px;
  }
  section .wrapper .content .s-head .s-top .ct {
    font-size: 1rem;
  }
  section .wrapper .content .s-head .t {
    font-size: 1.6rem;
  }
  .header {
    padding: 10px;
  }
  .header .hc .left img {
    max-width: 140px;
  }
  .header .hc .right {
    display: none;
  }
  .pg-title .content .bc span {
    font-size: 0.8rem;
  }
  .c-form {
    padding: 60px 20px;
  }
  .c-form .content .form .form-st {
    font-size: 0.9rem;
  }
  .c-form .content .form .f-sec {
    margin-bottom: 12px;
  }
  .c-form .content .form .f-sec .wg {
    font-size: 0.7rem;
  }
  .c-form .content .form .f-sec .ft {
    font-size: 0.9rem;
    padding-left: 42px;
  }
  .c-form .content .form .f-sec .ft::before {
    padding: 2px 4px;
    font-size: 0.7rem;
  }
  .c-form .content .form .f-sec .mp {
    font-size: 0.8rem;
  }
  .c-form .content .form .f-sec .ipt-c {
    font-size: 0.9rem;
    margin: 10px 0;
  }
  .c-form .content .form .f-sec .ipt-c .ipt-g input[type=text],
  .c-form .content .form .f-sec .ipt-c .ipt-g input[type=email],
  .c-form .content .form .f-sec .ipt-c .ipt-g input[type=tel],
  .c-form .content .form .f-sec .ipt-c .ipt-g textarea {
    padding: 6px;
    background-color: #F1F1F1;
    border: 1px solid #CACACA;
    border-radius: 4px;
    width: 100%;
    font-size: 0.9rem;
    resize: vertical;
  }
  .c-form .content .form .f-sec .ipt-c .ipt-g input[type=text]::placeholder,
  .c-form .content .form .f-sec .ipt-c .ipt-g input[type=email]::placeholder,
  .c-form .content .form .f-sec .ipt-c .ipt-g input[type=tel]::placeholder,
  .c-form .content .form .f-sec .ipt-c .ipt-g textarea::placeholder {
    color: #B5B5B5;
  }
  .c-form .content .form .f-sec .ipt-c .ipt-g select {
    padding: 6px;
    background-color: #F1F1F1;
    border: 1px solid #CACACA;
    border-radius: 4px;
    width: 100%;
    font-size: 0.9rem;
  }
  .c-form .content .form .f-sec .ipt-c .ipt-g select option {
    font-size: 0.8rem;
  }
  .c-form .content .form .pol-check {
    font-size: 0.9rem;
  }
  .c-form .content .form .btn-c .form-btn {
    font-size: 0.9rem;
    width: 100%;
  }
  .c-form .content .form .btn-c .form-btn img {
    width: 18px;
  }
  .cta-red {
    padding: 60px 20px;
  }
  .cta-red .content {
    flex-direction: column;
  }
  .cta-red .content .dv {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .cta-red .content .box .t {
    font-size: 1.6rem;
  }
  .cta-red .content .box .st {
    font-size: 0.9rem;
  }
  .cta-red .content .box .img-c {
    width: 50px;
    height: 50px;
  }
  .cta-red .content .box .img-c img {
    max-width: 20px;
  }
  .cta-red .content .box.scd .img-c img {
    max-width: 30px;
  }
  .footer {
    padding: 60px 20px;
  }
  .footer .wrapper .content {
    font-size: 0.9rem;
  }
  .footer .wrapper .content .insta img {
    max-width: 30px;
  }
  .cp {
    padding: 12px 0;
    font-size: 0.9rem;
  }
}

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