html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@font-face {
  font-family: "Poppins";
  src: url("../font/Poppins-SemiBold.woff") format("woff"), local(sans-serif);
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DIN";
  src: url("../font/DINAlternate-Bold.woff") format("woff"), local(sans-serif);
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html {
  font-family: "Noto Sans JP", sans-serif;
}

.contact-page {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.wpcf7 {
  width: 100%;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .wrap-form-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wpcf7 .item-form-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.wpcf7 .heading-form-contact {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.wpcf7 .contact-label {
  color: #ffffff;
  background-color: #0064FF;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}
.wpcf7 .detail-form-contact input[type=text],
.wpcf7 .detail-form-contact input[type=email],
.wpcf7 .detail-form-contact input[type=tel],
.wpcf7 .detail-form-contact input[type=url],
.wpcf7 .detail-form-contact input[type=number],
.wpcf7 .detail-form-contact select,
.wpcf7 .detail-form-contact textarea {
  width: 100%;
  max-width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #000000;
  background-color: #ffffff;
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.wpcf7 .detail-form-contact input[type=text]:focus,
.wpcf7 .detail-form-contact input[type=email]:focus,
.wpcf7 .detail-form-contact input[type=tel]:focus,
.wpcf7 .detail-form-contact input[type=url]:focus,
.wpcf7 .detail-form-contact input[type=number]:focus,
.wpcf7 .detail-form-contact select:focus,
.wpcf7 .detail-form-contact textarea:focus {
  outline: none;
  border-color: #0064FF;
  -webkit-box-shadow: 0 0 0 2px rgba(0, 187, 221, 0.1);
          box-shadow: 0 0 0 2px rgba(0, 187, 221, 0.1);
}
.wpcf7 .detail-form-contact input[type=text]::-webkit-input-placeholder, .wpcf7 .detail-form-contact input[type=email]::-webkit-input-placeholder, .wpcf7 .detail-form-contact input[type=tel]::-webkit-input-placeholder, .wpcf7 .detail-form-contact input[type=url]::-webkit-input-placeholder, .wpcf7 .detail-form-contact input[type=number]::-webkit-input-placeholder, .wpcf7 .detail-form-contact select::-webkit-input-placeholder, .wpcf7 .detail-form-contact textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .detail-form-contact input[type=text]::-moz-placeholder, .wpcf7 .detail-form-contact input[type=email]::-moz-placeholder, .wpcf7 .detail-form-contact input[type=tel]::-moz-placeholder, .wpcf7 .detail-form-contact input[type=url]::-moz-placeholder, .wpcf7 .detail-form-contact input[type=number]::-moz-placeholder, .wpcf7 .detail-form-contact select::-moz-placeholder, .wpcf7 .detail-form-contact textarea::-moz-placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .detail-form-contact input[type=text]:-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=email]:-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=tel]:-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=url]:-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=number]:-ms-input-placeholder, .wpcf7 .detail-form-contact select:-ms-input-placeholder, .wpcf7 .detail-form-contact textarea:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .detail-form-contact input[type=text]::-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=email]::-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=tel]::-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=url]::-ms-input-placeholder, .wpcf7 .detail-form-contact input[type=number]::-ms-input-placeholder, .wpcf7 .detail-form-contact select::-ms-input-placeholder, .wpcf7 .detail-form-contact textarea::-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .detail-form-contact input[type=text]::placeholder,
.wpcf7 .detail-form-contact input[type=email]::placeholder,
.wpcf7 .detail-form-contact input[type=tel]::placeholder,
.wpcf7 .detail-form-contact input[type=url]::placeholder,
.wpcf7 .detail-form-contact input[type=number]::placeholder,
.wpcf7 .detail-form-contact select::placeholder,
.wpcf7 .detail-form-contact textarea::placeholder {
  color: #999;
  font-size: 14px;
}
.wpcf7 .detail-form-contact select {
  cursor: pointer;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}
.wpcf7 .detail-form-contact textarea {
  min-height: 120px;
  resize: vertical;
}
.wpcf7 .detail-form-contact .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item input[type=radio] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #0064FF;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  margin: 0;
  padding-bottom: 5px;
}
.wpcf7 .center {
  margin: 40px 0;
  text-align: center;
}
.wpcf7 .center .wpcf7-acceptance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.wpcf7 .center .wpcf7-acceptance input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #0064FF;
  margin-top: 2px;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding-bottom: 4px;
  font-size: 14px;
  color: #000000;
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label a {
  color: #0064FF;
  text-decoration: underline;
  font-weight: 600;
  margin-right: 2px;
}
.wpcf7 .reCAPTCHA {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin: 20px 0;
  line-height: 1.5;
}
.wpcf7 .reCAPTCHA a {
  color: #0064FF;
  text-decoration: underline;
}
.wpcf7 .reCAPTCHA a:hover {
  text-decoration: none;
}
.wpcf7 .btn-wrap {
  margin: 40px auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wpcf7 .btn-wrap input[type=submit] {
  background-color: #0064FF;
  color: #ffffff;
  border: none;
  padding: 20px 80px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  min-width: 200px;
  margin: 0 auto;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #f51818;
  font-size: 14px;
  margin-top: 8px;
}
.wpcf7 .wpcf7-validation-errors {
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  color: #856404;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.wpcf7 .screen-reader-response {
  display: none !important;
}
.wpcf7 .wpcf7-spinner {
  display: none !important;
}
.wpcf7 .wpcf7-response-output {
  display: none !important;
}

@media (max-width: 768px) {
  .page-contact {
    padding: 120px 20px 120px;
  }
  .contact-header {
    margin-top: 20px;
  }
  .contact-header .contact-header__copy {
    font-size: 14px;
  }
  .contact-form-section {
    padding: 80px 0;
  }
  .contact-form-section__header {
    margin-bottom: 40px;
  }
  .contact-form-section__description {
    font-size: 14px;
  }
  .wpcf7 .wrap-form-contact {
    gap: 24px;
  }
  .wpcf7 .item-form-contact {
    gap: 8px;
  }
  .wpcf7 .heading-form-contact {
    font-size: 14px;
  }
  .wpcf7 .detail-form-contact input[type=text],
  .wpcf7 .detail-form-contact input[type=email],
  .wpcf7 .detail-form-contact input[type=tel],
  .wpcf7 .detail-form-contact input[type=url],
  .wpcf7 .detail-form-contact input[type=number],
  .wpcf7 .detail-form-contact select,
  .wpcf7 .detail-form-contact textarea {
    padding: 12px 16px;
    font-size: 14px;
  }
  .wpcf7 .detail-form-contact .wpcf7-radio {
    gap: 12px;
  }
  .wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item input[type=radio] {
    width: 18px;
    height: 18px;
  }
  .wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item label {
    font-size: 14px;
  }
  .wpcf7 .detail-form-contact input[type=file] {
    padding: 10px 12px;
  }
  .wpcf7 .detail-form-contact input[type=file]::-webkit-file-upload-button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .wpcf7 .detail-form-contact input[type=file]::file-selector-button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .wpcf7 .center .wpcf7-acceptance {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .wpcf7 .center .wpcf7-acceptance .wpcf7-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label {
    text-align: left;
    font-size: 12px;
  }
  .wpcf7 .reCAPTCHA {
    text-align: left;
    font-size: 10px;
  }
  .wpcf7 .btn-wrap {
    margin-top: 32px;
  }
  .wpcf7 .btn-wrap input[type=submit] {
    padding: 16px 40px;
    font-size: 16px;
    min-width: 160px;
  }
}
@media (max-width: 480px) {
  .wpcf7-radio {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 12px;
  }
  .wpcf7-radio .wpcf7-list-item input[type=radio] {
    width: 18px;
    height: 18px;
  }
  .wpcf7-radio .wpcf7-list-item label {
    font-size: 14px;
  }
}