html, body, div, span, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, address, code, em, img, ins,
small, strong, sub, sup, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

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

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

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 8rem;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E9E9E9;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 960px) {
  .header-inner {
    padding: 0 2.4rem;
  }
}

.is-contact-page .header {
  border-bottom: none;
  background-color: transparent;
}
.is-contact-page .header .g-nav,
.is-contact-page .header .header-cta,
.is-contact-page .header .burger {
  display: none !important;
}

.header-logo a {
  display: block;
}
.header-logo img {
  height: 3.7rem;
  width: auto;
}

.g-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 960px) {
  .g-nav {
    display: none;
  }
}

.g-nav-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.g-nav-item a,
.g-nav-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #111111;
  transition: color 0.2s ease;
  font-family: "Noto Sans JP", sans-serif;
}

.g-nav-item a:hover {
  color: #1a1a1a;
}

.g-nav-disabled {
  color: #8a8a8a;
  cursor: default;
  filter: grayscale(1);
}

.g-nav-link-icon {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.header-cta .c-btn--primary {
  border: 1px solid #111111;
}
.header-cta .c-btn--primary:hover {
  background-color: #FFFFFF;
  color: #111111;
  border-color: #111111;
}
@media (max-width: 960px) {
  .header-cta {
    display: none;
  }
}

.burger {
  position: relative;
  display: none;
  width: 3.2rem;
  height: 3.2rem;
}
.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger span:nth-child(1) {
  top: 7px;
}
.burger span:nth-child(2) {
  top: calc(50% - 1px);
}
.burger span:nth-child(3) {
  bottom: 7px;
}
@media (max-width: 960px) {
  .burger {
    display: block;
  }
}
.burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.is-open span:nth-child(2) {
  opacity: 0;
}
.burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 7rem 0 0;
  z-index: 99;
  background-color: #FFFFFF;
  padding: 4rem 2.4rem;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 3.2rem;
}
.mobile-nav li a,
.mobile-nav .mobile-nav-disabled {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 1px solid #E0E0E0;
}
.mobile-nav .mobile-nav-disabled {
  color: #8a8a8a;
  cursor: default;
  filter: grayscale(1);
}

.mobile-nav-link-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-cta .c-btn {
  justify-content: center;
  padding-top: 2.8rem;
  padding-bottom: 2.8rem;
  font-size: 1.6rem;
}
.mobile-cta .c-btn--primary {
  border: 1px solid #111111;
}
.mobile-cta .c-btn--primary:hover {
  background-color: #FFFFFF;
  color: #111111;
  border-color: #111111;
}

.footer-cta {
  background-color: #FFFFFF;
  color: #111111;
  padding-bottom: 11rem;
}
@media (max-width: 960px) {
  .footer-cta {
    padding-bottom: 6.4rem;
  }
}

.footer-cta-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 131.6rem;
  min-height: 30.4rem;
  margin: 0 auto;
  padding: 0;
  border-bottom: 2px solid #111111;
}
.footer-cta-link:hover .footer-cta-arrow img {
  transform: translateX(1rem);
}
@media (max-width: 1440px) {
  .footer-cta-link {
    margin: 0 12rem;
  }
}
@media (max-width: 960px) {
  .footer-cta-link {
    min-height: 24rem;
    margin: 0 2.4rem;
  }
}

.footer-cta-content {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
}
@media (max-width: 480px) {
  .footer-cta-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

.footer-cta-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(7.2rem, 7.1vw, 8.8rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}
@media (max-width: 480px) {
  .footer-cta-title {
    font-size: 4.8rem;
  }
}

.footer-cta-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(2.2rem, 1.9vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (max-width: 480px) {
  .footer-cta-label {
    font-size: 1.8rem;
  }
}

.footer-cta-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  margin-right: 2.2rem;
  flex-shrink: 0;
}
.footer-cta-arrow img {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  transition: transform 0.25s ease;
}
@media (max-width: 960px) {
  .footer-cta-arrow {
    margin-right: 0;
  }
}

.footer {
  background-color: #111111;
  color: #FFFFFF;
  padding: 8rem 6rem 3rem;
}
@media (max-width: 960px) {
  .footer {
    padding: 6.4rem 2.4rem 3.2rem;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin: 0 auto 6rem;
}
@media (max-width: 1280px) {
  .footer-inner {
    gap: 4rem;
  }
}
@media (max-width: 960px) {
  .footer-inner {
    flex-direction: column;
    gap: 4.8rem;
    margin-bottom: 5.6rem;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6rem;
}
@media (max-width: 960px) {
  .footer-brand {
    gap: 3.2rem;
  }
}

.footer-brand-logo {
  display: inline-block;
}
.footer-brand-logo img {
  width: 19rem;
  height: auto;
}
@media (max-width: 480px) {
  .footer-brand-logo img {
    width: 11rem;
  }
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 8rem;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .footer-nav {
    grid-template-columns: repeat(3, max-content);
    gap: 4rem;
  }
}
@media (max-width: 960px) {
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
}

.footer-nav-column {
  min-width: 0;
}

.footer-nav-column--contact .footer-nav-list {
  padding-left: 0;
}

.footer-nav-heading {
  display: inline-block;
  margin-bottom: 2.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer-nav-heading:hover {
  color: rgba(255, 255, 255, 0.72);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-left: 2rem;
}
.footer-nav-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.35;
  color: #888888;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.footer-nav-list a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 13rem;
  min-height: 3rem;
  padding: 0.8rem 1.8rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.2s ease;
}
.footer-social-link:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.footer-social-logo {
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 145.6rem;
  margin: 0 auto;
  padding-top: 3rem;
}
.footer-bottom small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.42);
}
@media (max-width: 960px) {
  .footer-bottom {
    padding-top: 3.2rem;
  }
}

.c-pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  min-width: 10.8rem;
  min-height: 3.6rem;
  padding: 1rem 2rem 1.2rem;
  border: 1px solid #111111;
  border-radius: 999px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: #111111;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.c-pill-link:hover {
  background-color: #111111;
  color: #FFFFFF;
}
.c-pill-link:hover .c-pill-link-arrow {
  transform: translateX(4px);
  filter: invert(1);
}
.c-pill-link--center {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-pill-link--inv {
  border-color: #FFFFFF;
  color: #FFFFFF;
  padding-top: 1.3rem;
  padding-bottom: 1.5rem;
  min-height: 4.8rem;
}
.c-pill-link--inv .c-pill-link-arrow {
  filter: invert(1);
}
.c-pill-link--inv:hover {
  background-color: #FFFFFF;
  color: #111111;
}
.c-pill-link--inv:hover .c-pill-link-arrow {
  filter: none;
}

.c-pill-link-arrow {
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.c-btn--primary {
  background-color: #111111;
  color: #FFFFFF;
}
.c-btn--primary:hover {
  background-color: #3a3a3a;
}

.c-btn--outline {
  background-color: transparent;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
}
.c-btn--outline:hover {
  background-color: #1a1a1a;
  color: #FFFFFF;
}

.c-btn--dark {
  background-color: #111111;
  color: #FFFFFF;
}
.c-btn--dark:hover {
  background-color: #2a2a2a;
}

.c-heading {
  margin-bottom: 6rem;
}
@media (max-width: 960px) {
  .c-heading {
    margin-bottom: 4rem;
  }
}

.c-heading-label {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.c-heading-title {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #111111;
}

.c-heading-desc {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #666666;
  max-width: 56rem;
  line-height: 1.9;
}

.c-card {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.c-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.c-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #F8F8F8;
}
.c-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.c-card:hover .c-card-thumb img {
  transform: scale(1.04);
}

.c-card-body {
  padding: 2.4rem;
}

.c-card-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.c-card-title {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
  margin-bottom: 1.2rem;
}

.c-card-text {
  font-size: 1.4rem;
  color: #666666;
  line-height: 1.7;
}

.c-breadcrumb {
  padding: 2rem 0;
}

.c-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.c-breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: #666666;
}
.c-breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: #E0E0E0;
}

.c-breadcrumb-link {
  color: #666666;
  transition: color 0.2s ease;
}
.c-breadcrumb-link:hover {
  color: #1a1a1a;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th, .company-table td {
  padding: 1.8rem 2.4rem;
  border-bottom: 1px solid #E0E0E0;
  font-size: 1.5rem;
  line-height: 1.7;
  vertical-align: top;
  text-align: left;
}
.company-table th {
  width: 16rem;
  font-weight: 700;
  color: #666666;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .company-table th {
    width: auto;
    display: block;
    padding-bottom: 0.4rem;
    border-bottom: none;
  }
}
@media (max-width: 960px) {
  .company-table td {
    display: block;
    padding-top: 0.4rem;
  }
}

.wpcf7 {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.wpcf7 .wrap-form-contact {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.wpcf7 .item-form-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact input[type=number] {
  flex: 1;
  text-align: center;
}
.wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact span {
  font-size: 16px;
  color: #111111;
  white-space: nowrap;
}
.wpcf7 .heading-form-contact {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wpcf7 .contact-label {
  color: #FFFFFF;
  background-color: #1a1a1a;
  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%;
  box-sizing: border-box;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #111111;
  background-color: #FFFFFF;
  transition: border-color 0.3s ease, 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: #1a1a1a;
  box-shadow: 0 0 0 2px rgba(26, 26, 26, 0.1);
}
.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;
  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: 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: #1a1a1a;
}
.wpcf7 .detail-form-contact .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  color: #111111;
  cursor: pointer;
  margin: 0;
  padding-bottom: 5px;
}
.wpcf7 .detail-form-contact input[type=file] {
  padding: 12px 16px;
  border: 2px dashed #ddd;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: all 0.3s ease;
}
.wpcf7 .detail-form-contact input[type=file]:hover {
  border-color: #1a1a1a;
  background-color: rgba(26, 26, 26, 0.05);
}
.wpcf7 .detail-form-contact input[type=file]::file-selector-button {
  background-color: #1a1a1a;
  color: #FFFFFF;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.wpcf7 .detail-form-contact input[type=file]::file-selector-button:hover {
  background-color: #3a3a3a;
}
.wpcf7 .center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 2.4rem;
}
.wpcf7 .center .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.wpcf7 .center .wpcf7-acceptance input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: #1a1a1a;
  margin-top: 2px;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: 12px;
  padding-bottom: 4px;
  font-size: 14px;
  color: #111111;
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
}
.wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 600;
  margin-right: 2px;
}
.wpcf7 .reCAPTCHA {
  font-size: 12px;
  color: #666;
  text-align: center;
  margin: 20px 0;
  line-height: 1.5;
}
.wpcf7 .reCAPTCHA a {
  color: #1a1a1a;
  text-decoration: underline;
}
.wpcf7 .reCAPTCHA a:hover {
  text-decoration: none;
}
.wpcf7 .btn-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.wpcf7 .btn-wrap input[type=submit] {
  background-color: #1a1a1a;
  color: #FFFFFF;
  border: none;
  padding: 20px 80px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}
.wpcf7 .btn-wrap input[type=submit]:hover {
  background-color: #3a3a3a;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #1a1a1a;
  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;
}

@media (max-width: 960px) {
  .wpcf7 .wrap-form-contact {
    gap: 24px;
  }
  .wpcf7 .item-form-contact {
    gap: 8px;
  }
  .wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact {
    flex-direction: column;
    gap: 12px;
  }
  .wpcf7 .item-form-contact:has([name=number-year]) .detail-form-contact input[type=number] {
    text-align: left;
  }
  .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]::file-selector-button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .wpcf7 .center .wpcf7-acceptance {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .wpcf7 .center .wpcf7-acceptance .wpcf7-list-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .wpcf7 .center .wpcf7-acceptance .wpcf7-list-item label {
    font-size: 12px;
  }
  .wpcf7 .reCAPTCHA {
    font-size: 10px;
  }
  .wpcf7 .btn-wrap {
    margin-top: 32px;
  }
  .wpcf7 .btn-wrap input[type=submit] {
    padding: 16px 40px;
    font-size: 16px;
    min-width: 160px;
  }
}
.c-section-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
}

.output-label-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.c-output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}
@media (max-width: 960px) {
  .c-output-grid {
    grid-template-columns: 1fr;
  }
}

.c-output-card {
  min-height: 13rem;
  padding: 2.8rem 2.4rem;
  background-color: #FFFFFF;
  border-radius: 0.4rem;
}
.c-output-card h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-output-card ul {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.6rem;
}
.c-output-card li {
  list-style: disc;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.6;
}

.c-output-card-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.c-output-number {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.c-report-card {
  display: block;
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  color: inherit;
  text-decoration: none;
}

.c-report-thumb {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5/3;
  padding: 2rem;
}

.c-report-thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-report-thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.c-report-card:hover .c-report-thumb-image img {
  transform: scale(1.04);
}

.c-report-body {
  padding: 0 2rem 2.4rem;
}
@media (max-width: 480px) {
  .c-report-body {
    padding: 1.4rem 1.4rem 1.8rem;
  }
}

.c-report-date {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.03em;
}

.c-report-name {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
}
@media (max-width: 560px) {
  .c-report-name {
    font-size: 1.4rem;
  }
}

.c-report-desc {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 480px) {
  .c-report-desc {
    font-size: 1.2rem;
  }
}

.c-schedule-panel {
  background-color: #111;
  padding: 8.6rem 10rem;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 960px) {
  .c-schedule-panel {
    padding: 6rem 2.4rem;
  }
}
@media (max-width: 480px) {
  .c-schedule-panel {
    padding: 4rem 1.6rem;
  }
}

.c-schedule-heading {
  margin-bottom: 6rem;
}

.c-schedule-heading-en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(4.8rem, 5vw, 6.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}

.c-schedule-heading-ja {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFFFFF;
}

.c-schedule-list {
  display: flex;
  flex-direction: column;
  max-width: 80rem;
  margin: 0 auto;
  text-align: left;
  border-top: 2px solid transparent;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0.6) 16rem, rgba(255, 255, 255, 0.2) 16rem) 1;
}

.c-schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 16rem 1fr;
  gap: 0 6.4rem;
  padding: 2.8rem 0;
}
.c-schedule-row::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.6) 16rem, rgba(255, 255, 255, 0.2) 16rem);
}
.c-schedule-row:last-child::after {
  display: none;
}
@media (max-width: 560px) {
  .c-schedule-row {
    grid-template-columns: 1fr;
    gap: 0.4rem 0;
  }
  .c-schedule-row::after {
    background: rgba(255, 255, 255, 0.2);
  }
}

.c-schedule-date {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  white-space: nowrap;
  padding-top: 0.2rem;
}
@media (max-width: 480px) {
  .c-schedule-date {
    font-size: 1.2rem;
  }
}

.c-schedule-title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}
.c-schedule-title:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .c-schedule-title {
    font-size: 1.4rem;
  }
}

.c-schedule-desc {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8;
  color: #FFFFFF;
}
@media (max-width: 480px) {
  .c-schedule-desc {
    font-size: 1.2rem;
  }
}