@charset "utf-8";

/* Css reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul {
  padding: 0;
}

:root {
  --clr-neutral-100: #fff;
  --clr-neutral-700: #f2f2f2;
  --clr-neutral-800: #999;
  --clr-neutral-900: #41474c;
  --clr-primary: #67cc02;
  --clr-secondary: #eb4715;
  --clr-background: #f5f5f5;
  --clr-border: #aaa;
  --clr-contact-error: #f1382f;
  --clr-btn-disabled: #ccc;
  --clr-yellow-400: #ffbc52;
  --font-primary: "Noto Sans JP", "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "Osaka‐等幅", "sans-serif";
  --font-secondary: "Poppins", -apple-system, system-ui, sans-serif;
}

body {
  color: var(--clr-neutral-900);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  background-color: var(--clr-neutral-100);
  overflow-x: hidden;
  text-size-adjust: 100%;
  word-break: break-all;
}

body:has(main.is-small-content) {
  min-height: 100vh;
}

.font-secondary {
  font-family: var(--font-secondary);
}

.font-primary {
  font-family: var(--font-primary);
}

.fw-semi-bold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-start {
  text-align: left;
}

.text-end {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}

.d-block {
  display: block;
}

a {
  color: var(--clr-neutral-900);
  text-decoration: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

iframe,
iframe:focus {
  outline: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.line-height-1-45 {
  line-height: 1.45;
}

.line-height-2 {
  line-height: 2;
}

.line-height-1-67 {
  line-height: 1.67;
}

.normal-lh {
  line-height: 1;
}

.pointer {
  cursor: pointer;
}

.word-break {
  word-break: break-word;
}

/* Display Utilities --------------------------------------------------------*/
.d-none {
  display: none;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}


/* Color
  --------------------------------------------------------*/
.clr-primary {
  color: var(--clr-primary);
}

.clr-border {
  color: var(--clr-border);
}

.clr-white {
  color: var(--clr-neutral-100);
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100);
}

.clr-background {
  background-color: var(--clr-background);
}

.bg-clr-primary {
  background-color: var(--clr-primary);
}

/* Layout
--------------------------------------------------------*/
.contact-page .sec-wrap {
  --max-width: 1240px;
  --padding: 80px;

  width: min(var(--max-width), 100% - var(--padding));
  margin-inline: auto;
}

.contact-page .grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.row-gap-20 {
  row-gap: 20px;
}

.col-gap-20 {
  column-gap: 20px;
}

.pcnone {
  display: none;
}

@media (max-width : 767.9px) {
  .spnone {
    display: none !important;
  }

  .pcnone {
    display: block;
  }
}

main {
  padding-top: 200px;
}

.contact-page .main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 22px 133px 22px 133px;
  z-index: 9999;
  border-bottom: 5px solid var(--clr-primary);
  background-color: var(--clr-neutral-100);
}

.contact-page .contact-content {
  width: 940px;
  max-width: 100%;
  margin: 0 auto;
}

.proposal-txt {
  color: var(--clr-contact-error);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding-block: 45px 112px;
}

.sec-ttl svg {
  margin-inline: auto;
}

.contact-content .check-info {
  margin-bottom: 40px;
  font-size: 14px;
  text-align: center;
}

.form-wrap .item {
  margin-bottom: 30px;
}

.form-wrap .item label {
  display: block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  column-gap: 10px;
}

.form-wrap .item .required {
  line-height: 1.3;
  padding: 2px 23px 3px 21px;
  border-radius: 100vw;
  color: var(--clr-neutral-100);
  font-size: 14px;
  font-weight: 700;
  background-color: var(--clr-primary);
}

.err_txt {
  display: none;
  margin-top: 10px;
  color: var(--clr-primary);
  font-size: 13px;
  font-weight: 400;
}

.form-wrap .item input[type="text"],
.form-wrap .item input[type="email"],
.form-wrap .item textarea,
.form-wrap .item input[type="button"] {
  display: block;
  width: 100%;
  height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--clr-neutral-900);
  border-radius: 0;
  color: var(--clr-neutral-900);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  background-color: var(--clr-neutral-100);
}

.form-wrap .item input[type="text"]:hover,
.form-wrap .item textarea:hover {
  border-color: var(--clr-primary);
  outline: 1px solid var(--clr-primary);
}

.form-wrap .item input[type="text"]:focus,
.form-wrap .item textarea:focus {
  border-color: var(--clr-primary);
  outline: 1px solid var(--clr-primary);
}

.form-wrap .item .radio-list input[type="radio"] {
  position: absolute;
  opacity: 0;
  appearance: none;
}

.form-wrap .item .radio-ttl {
  padding-bottom: 8px;
}

.form-wrap .item .radio-list li:not(:last-child) {
  margin-bottom: 7px;
}

.form-wrap .item .radio-list label {
  position: relative;
  line-height: 1.2;
  padding-bottom: 0px;
  padding-left: 29px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.form-wrap .item .radio-list label:before,
.form-wrap .item .radio-list label:after {
  position: absolute;
  border-radius: 50%;
  content: '';
  transition: all .3s ease-in-out;
  transition-property: transform, border-color;
}

.form-wrap .item .radio-list label:before {
  top: 4px;
  left: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid var(--clr-neutral-900);
}

.form-wrap .item .radio-list input[type="radio"]:checked+label:before,
.form-wrap .item .radio-list input[type="radio"]:focus-visible+label:before {
  border-color: var(--clr-primary);
}

.form-wrap .item .radio-list label:after {
  position: absolute;
  top: 8.8px;
  left: 7.2px;
  width: 10px;
  height: 10px;
  transform: scale(0);
  background: var(--clr-primary);
  transform-origin: center;
  transition: transform .3s ease-in-out;
}

.form-wrap .item .radio-list input[type=radio]:checked+label:after,
.form-wrap .item .radio-list input[type=radio]:focus-visible+label:after {
  transform: scale(1);
}

::placeholder {
  color: #c8c8c8;
}

.form-wrap .item .textarea {
  width: 100%;
  height: 143px;
  line-height: 1.2;
  padding: 11px 9px 0 19px;
  resize: vertical;
}

.form-wrap .item .help-block {
  padding-top: 10px;
  font-size: 13px;
}

.form-wrap .item .error {
  display: block;
  margin-top: 10px;
  color: var(--clr-contact-error);
  font-size: 13px;
  font-weight: 400;
}

.form-wrap .item .error:empty {
  display: none;
}

.form-wrap .item .input-note {
  padding-top: 10px;
  font-size: 13px;
}

.form-wrap input[type="text"].error-input,
.form-wrap input[type="email"].error-input,
.form-wrap textarea.error-input {
  border-color: var(--clr-contact-error);
}

.form-wrap input[type="text"].error-input:hover,
.form-wrap input[type="email"].error-input:hover,
.form-wrap textarea.error-input:hover {
  border-color: var(--clr-primary) !important;
  outline: 1px solid var(--clr-primary);
}

.form-wrap .check-list input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  appearance: none;
}

.form-wrap .check-list .checkbox {
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 30px;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.form-wrap .check-list .checkbox::before {
  display: block;
  position: absolute;
  top: 9%;
  left: 0;
  width: 21px;
  height: 21px;
  border: 1px solid var(--clr-neutral-900);
  content: '';
}

.form-wrap .check-list .checkbox::after {
  display: block;
  position: absolute;
  top: 11px;
  left: 7px;
  width: 6px;
  height: 12px;
  margin-top: -7px;
  transform: rotate(45deg);
  content: '';
  border-right: 3px solid var(--clr-neutral-100);
  border-bottom: 3px solid var(--clr-neutral-100);
  opacity: 0;
}

.form-wrap .check-list input[type="checkbox"]:checked+.checkbox::after,
.form-wrap .check-list input[type="checkbox"]:focus-visible+.checkbox::after {
  opacity: 1;
}

.form-wrap .check-list input[type="checkbox"]:checked+.checkbox::before,
.form-wrap .check-list input[type="checkbox"]:focus-visible+.checkbox::before {
  border: 1px solid transparent;
  background: var(--clr-primary);
}

.form-wrap .item .check-list label {
  position: relative;
  padding-bottom: 0px;
  padding-left: 30px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.form-wrap .item .check-list li {
  line-height: 1.2;
  margin-bottom: 10px;
}

.form-wrap .item .check-list li:last-child {
  margin-bottom: 0px;
}

.form-wrap .consent-wrap .inn {
  max-height: 431px;
  margin-top: 50px;
  padding: 29px 35px 24px 29px;
  border: 1px solid transparent;
  font-size: 20px;
  font-weight: 500;
  background-color: var(--clr-background);
  overflow-y: auto;
}

.consent-wrap .inn::-webkit-scrollbar {
  width: 15px;
}

.consent-wrap .inn::-webkit-scrollbar-button {
  display: none;
}

.consent-wrap .inn::-webkit-scrollbar-thumb {
  min-height: 180px;
  border: 4px solid transparent;
  border-radius: unset;
  background-color: #888888;
  background-clip: padding-box;
}

.form-wrap .consent-wrap .inn p {
  line-height: 1.18;
}

.form-wrap .consent-wrap .inn .link {
  text-decoration: underline;
}

.form-wrap .consent {
  margin-top: 66px;
  font-size: 16px;
  text-align: center;
}

.form-wrap .consent-wrap input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  appearance: none;
}

.form-wrap .consent-wrap .checkbox01 {
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 30px;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}

.form-wrap .consent-wrap .checkbox01::before {
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 21px;
  height: 21px;
  border: 1px solid var(--clr-neutral-900);
  content: '';
}

.form-wrap .consent-wrap .checkbox01::after {
  display: block;
  position: absolute;
  top: 12px;
  left: 8px;
  width: 6px;
  height: 12px;
  margin-top: -7px;
  transform: rotate(45deg);
  content: '';
  border-right: 3px solid var(--clr-neutral-100);
  border-bottom: 3px solid var(--clr-neutral-100);
  opacity: 0;
}

.form-wrap .consent-wrap input[type="checkbox"]:checked+.checkbox01::after,
.form-wrap .consent-wrap input[type="checkbox"]:focus-visible+.checkbox01::after {
  opacity: 1;
}

.form-wrap .consent-wrap input[type="checkbox"]:checked+.checkbox01::before,
.form-wrap .consent-wrap input[type="checkbox"]:focus-visible+.checkbox01::before {
  border: 2px solid transparent;
  background: var(--clr-primary);
}

.form-wrap .chk05 input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  appearance: none;
}

.form-wrap .item.checklist label {
  padding-bottom: 20px;
}

.form-wrap .chk05 label.checkbox {
  display: block;
  position: relative;
  width: auto;
  padding-left: 29px;
  box-sizing: border-box;
  cursor: pointer;
}

.form-wrap .chk05 label.checkbox {
  font-size: 16px;
  font-weight: 400;
}

.form-wrap .chk05 li {
  margin-bottom: 16px;
}

.form-wrap .chk05 label.checkbox {
  padding-bottom: 0;
}

.form-wrap .chk05 label.checkbox::before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--clr-border);
  border-radius: 2px;
  content: '';
}

.form-wrap .chk05 label.checkbox::after {
  display: block;
  position: absolute;
  top: 13px;
  left: 6px;
  width: 6px;
  height: 12px;
  margin-top: -7px;
  transform: rotate(45deg);
  content: '';
  border-right: 3px solid var(--clr-neutral-100);
  border-bottom: 3px solid var(--clr-neutral-100);
  opacity: 0;
}

.form-wrap .chk05 input[type="checkbox"]:checked+label.checkbox::after,
.form-wrap .chk05 input[type="checkbox"]:focus-visible+label.checkbox::after {
  opacity: 1;
}

.form-wrap .chk05 input[type="checkbox"]:checked+label.checkbox::before,
.form-wrap .chk05 input[type="checkbox"]:focus-visible+label.checkbox::before {
  border: 2px solid transparent;
  background: var(--clr-primary);
}

.form-wrap .consent-wrap .contact {
  margin-top: 35px;
  text-align: center;
}

.form-wrap .consent-wrap .inn .link {
  color: #2680EA;
  text-decoration: none;
}

.form-wrap .btn-submit .btn {
  position: relative;
  width: 486px;
  max-width: 100%;
  height: 74px;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid transparent;
  border-radius: 64px;
  box-sizing: border-box;
  color: var(--clr-neutral-100);
  text-align: center;
  cursor: pointer;
  background-color: var(--clr-primary);
  transition: all .5s ease;
}

.form-wrap .btn-submit .btn[disabled] {
  color: var(--clr-neutral-100);
  background-color: var(--clr-btn-disabled);
  cursor: not-allowed;
}

.form-wrap .btn-submit .btn span {
  padding: 21px 0 24px 0;
  font-size: 24px;
  font-weight: 700;
}

.form-wrap .btn-submit .btn:hover:not([disabled]),
.form-wrap .sec-confrim-btn .contact-back .btn {
  border: 4px solid var(--clr-primary);
  color: var(--clr-primary);
  background-color: var(--clr-neutral-100);
}

.form-wrap .sec-confrim-btn .contact-back .btn:hover {
  opacity: 0.5;
}

.form-wrap .item .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
  column-gap: 10px;
}

.form-wrap .item .form-text {
  line-height: 1.2;
  padding: 10px 20px 11px 19px;
  border: 1px solid transparent;
  color: var(--clr-neutral-900);
  font-size: 20px;
  font-weight: 500;
  background-color: var(--clr-neutral-700);
}

.form-wrap .item .form-text.text-area {
  padding: 10px 20px 84px 19px;
}

.form-wrap .sec-confrim-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  gap: 26px;
  flex-wrap: wrap;
}

.form-wrap .sec-confrim-btn .btn-submit .btn {
  width: 416px;
}

.form-wrap.confirm-form {
  margin-top: 130px;
}

.contact-content .complete-inquiry {
  margin-top: 140px;
  text-align: center;
}

.contact-content .complete-inquiry h3 {
  margin-bottom: 44px;
  font-size: 40px;
  font-weight: 700;
}

.contact-content .complete-inquiry .thank-ttl {
  line-height: 1.2;
  font-size: 20px;
  font-weight: 500;
}

.contact-content .e-commerce-sales {
  margin-top: 63px;
}

.contact-content .e-commerce-sales .sales-ttl {
  display: inline-block;
  position: relative;
  line-height: 1.2;
  margin-bottom: 20px;
  font-size: 25px;
  font-weight: 500;
}

.contact-content .e-commerce-sales .sales-ttl::before,
.contact-content .e-commerce-sales .sales-ttl::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 55px;
  height: 2px;
  transform: translateY(-50%);
  content: '';
  background-color: var(--clr-neutral-900);
}

.contact-content .e-commerce-sales .sales-ttl::before {
  left: 95%;
  rotate: -57deg;
}

.contact-content .e-commerce-sales .sales-ttl::after {
  right: 98%;
  rotate: 57deg;
}

.contact-content .e-commerce-sales img {
  margin-inline: auto;
}

.btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  width: 200px;
  max-width: 100%;
  border-radius: 35px;
  font-weight: 600;
  z-index: 2;
  flex: none;
  flex-wrap: nowrap;
  overflow-x: visible;
  overflow-y: visible;
  transition: color .3s ease, background-color .3s ease, border-color .3s;
}

/** Footer */
.sec-footer {
  margin-top: 230px;
}

.sec-footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.sec-footer .info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  column-gap: 5px;
}

.sec-footer .img-sec {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto auto;
  flex-shrink: 0;
}

.sec-footer .privacy-mark {
  font-size: 14px;
  font-weight: 500;
}

.sec-footer .img-sec img {
  width: 100%;
}

.sec-footer .footer-copyright {
  color: var(--clr-neutral-100);
  font-size: 17px;
  font-weight: 400;
  padding-block: 21px;
}

.sec-footer .footer-nav-list {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-block: 60px 30px;
}

.sec-footer .footer-nav-list a {
  color: var(--clr-neutral-900);
}

.sec-footer .footer-nav-list a:hover {
  color: var(--clr-primary);
}

.sec-footer .footer-nav-list .footer-nav-item:not(:last-child) {
  display: inline-flex;
  align-items: center;
  padding-right: 20px;
  border-right: 1px solid var(--clr-neutral-900);
}

.sec-footer .footer-nav-list .footer-nav-item {
  max-height: 20px;
}

.sec-footer .footer-copyright {
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* below 1200px */
@media (max-width: 1200.9px) {
  .contact-page .main-header {
    padding-inline: 30px;
  }
}

@media (max-width: 1024.9px) {
  .contact-page .main-header {
    padding: 16px 30px;
  }

  .logo-link .logo-img {
    width: min(40vw, 156px);
    height: min(11.538vw, 45px);
  }

  .footer-logo img {
    width: 27.734vw;
    height: 8.008vw;
  }
}


@media (max-width: 767.9px) {
  .contact-page .main-header {
    padding: 16px 15px;
    border-bottom: 1px solid #D2D2D2;
  }

  .contact-page .sec-wrap {
    --padding: 30px;
  }

  main {
    padding-top: 26.667vw;
  }

  .contact-page .contact-content {
    width: 595px;
    margin-top: 4.667vw;
  }

  .proposal-txt {
    line-height: 1.3;
    padding-block: 4vw 6.667vw;
  }

  .logo-img {
    width: 40.133vw;
    height: 11.6vw;
  }

  .form-wrap .item .form-text.text-area {
    padding: 10px 20px 60px 19px;
  }

  .form-wrap.confirm-form {
    margin-top: 12vw;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .item .grid-2-col.col-gap-20 {
    row-gap: 40px;
  }

  .form-wrap .consent {
    margin-top: 40px;
  }

  .form-wrap .sec-confrim-btn {
    flex-direction: column;
    padding-top: 12vw;
    text-align: center;
    row-gap: 5.067vw;
  }

  .form-wrap .consent-wrap .inn {
    margin-top: 76px;
    padding: 29px 35px 24px 19px;
  }

  .contact-content .complete-inquiry {
    margin-top: 13.333vw;
  }

  .form-wrap .sec-confrim-btn .contact-back,
  .form-wrap .sec-confrim-btn .contact-thank {
    width: 100%;
  }

  .footer-logo img {
    width: 37.867vw;
    height: 10.933vw;
  }

  .sec-footer .info-container {
    flex-direction: column;
    padding-bottom: 55px;
    row-gap: 2.8vw;
  }

  .sec-footer .footer-nav-list {
    gap: 3.333vw;
    padding-block: 15.2vw 13.333vw;
    flex-wrap: wrap;
  }

  .sec-footer .footer-nav-list a {
    font-size: 2.933vw;
  }

  .sec-footer .footer-nav-list .footer-nav-item:not(:last-child) {
    padding-right: 3.333vw;
  }

  .sec-footer .footer-nav-list .footer-nav-item {
    max-height: 3.467vw;
  }

  .sec-footer .privacy-mark {
    font-size: 2.8vw;
    font-weight: 500;
    text-align: center;
  }

  .sec-footer .footer-copyright {
    font-size: 3.2vw;
    padding-block: 3.067vw;
  }

  .sec-footer {
    margin-top: 33.333vw;
  }
}

@media (max-width: 500.9px) {
  .proposal-txt {
    font-size: 14px;
  }

  .form-wrap .item label,
  .form-wrap .item .label {
    font-size: 14px;
  }

  .form-wrap .item input[type="text"],
  .form-wrap .item input[type="email"],
  .form-wrap .item textarea,
  .form-wrap .item input[type="button"] {
    font-size: 16px;
  }

  .form-wrap .item .radio-list label {
    line-height: 1.9;
    font-size: 14px;
  }

  .form-wrap .item .check-list label {
    line-height: 1.5;
    font-size: 14px;
  }

  .form-wrap .consent-wrap .inn {
    font-size: 12px;
  }

  .form-wrap .consent-wrap .checkbox01 {
    font-size: 16px;
  }

  .form-wrap .btn-submit .btn span {
    font-size: 16px;
  }

  .form-wrap .item .form-text {
    font-size: 16px;
  }

  .form-wrap .item .required {
    font-size: 11px;
  }
}