*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
}

summary {
  list-style: none; /* Remove default marker */
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none; /* Hide marker in Chrome/Safari */
}

details > summary {
  list-style: none; /* Firefox */
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  background-color: #ffffff;
  color: #222222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

a {
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

.br-sp {
  display: none;
}
@media (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

.br-pc {
  display: block;
}
@media (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 40px;
  font-family: "Avenir Next", sans-serif;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
  border: none;
}
.button--contact {
  background-color: #06639f;
  color: #ffffff;
  width: 30%;
  max-width: 608px;
  height: 4rem;
  font-size: 1.5rem;
  line-height: 1.6875rem;
  padding: 1rem;
}
.button--contact img {
  width: 50px;
  height: 50px;
  margin-left: auto;
}
@media (max-width: 992px) {
  .button--contact {
    font-size: 1.5rem;
    height: 80px;
  }
  .button--contact img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .button--contact {
    font-size: 1.25rem;
    height: 35px;
    width: 14rem;
  }
  .button--contact img {
    width: 30px;
    height: 30px;
  }
}
.button--more {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0032a0;
  padding: 0.5rem 1rem;
  border-radius: 14px;
  font-size: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 2rem;
  box-shadow: none;
}
.button--more .button__arrow {
  width: 24px;
  height: 24px;
}
.button--more:hover {
  background-color: rgb(0, 48.40625, 154.9);
  color: #ffffff;
}

.news-item {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  border-bottom: 1px solid #dddddd;
  text-decoration: none;
  color: #222222;
  transition: opacity 0.3s ease;
}
.news-item:hover {
  opacity: 0.7;
}
.news-item__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.news-item__date {
  font-family: "Karla", sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #999999;
  letter-spacing: 0.64px;
}
.news-item__tag {
  display: inline-block;
  border: 1px solid #0032a0;
  color: #0032a0;
  padding: 0.2rem 0.8rem;
  border-radius: 14px;
  font-size: 0.75rem;
  font-weight: 400;
}
.news-item__text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #222222;
}
@media (max-width: 768px) {
  .news-item {
    padding: 1rem 0;
  }
  .news-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
  }
  .news-item__date {
    font-size: 0.875rem;
  }
  .news-item__tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
  }
  .news-item__text {
    font-size: 0.875rem;
  }
}

.news-list {
  background-color: #ffffff;
  padding: 2rem;
  margin-top: 2rem;
  max-width: 1329px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .news-list {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-list {
    padding: 1rem;
  }
}

.strength__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  color: #ffffff;
  width: 100%;
}
@media (max-width: 992px) {
  .strength__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.strength__header {
  text-align: center;
}
.strength__header .strength__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2.5rem;
  position: relative;
}
.strength__header .strength__link img {
  width: 35px;
  height: auto;
  transition: transform 0.3s ease;
}
.strength__header .strength__link:hover {
  opacity: 1;
}
.strength__header .strength__link:hover img {
  transform: translateX(8px);
}
@media (max-width: 992px) {
  .strength__header .strength__link {
    margin-top: 1.5rem;
  }
}

.strength__details-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.strength-detail-item {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
.strength-detail-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.strength-detail-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.strength-detail-item__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 2rem;
}
.strength-detail-item__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.6;
  padding-right: 1rem;
}
.strength-detail-item__data {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: lighter;
  justify-self: flex-end;
  white-space: nowrap;
}
.strength-detail-item__data span:first-child {
  font-size: 1.25rem;
  min-width: 90px;
  text-align: right;
}
.strength-detail-item__data span:last-child {
  font-size: 1.25rem;
}
.strength-detail-item__data--large {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 5rem;
  line-height: 1.1;
  margin: 0 0.25rem;
  font-weight: bold;
}
.strength-detail-item__data .js-count-up {
  min-width: 14rem;
}
@media (max-width: 992px) {
  .strength-detail-item {
    padding: 1.5rem 0;
    grid-template-columns: 1fr 1fr;
  }
  .strength-detail-item__info {
    grid-row: 1;
    grid-column: 1/2;
    gap: 0.25rem;
  }
  .strength-detail-item__desc {
    padding-right: 0;
    margin-top: 0;
  }
  .strength-detail-item__data {
    grid-row: 1;
    grid-column: 2/3;
    justify-self: flex-end;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .strength-detail-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    text-align: center;
    padding: 0.2rem 0;
  }
  .strength-detail-item__info {
    grid-row: auto;
    grid-column: auto;
    text-align: center;
    gap: 0.25rem;
  }
  .strength-detail-item__title {
    font-size: 1.5rem;
  }
  .strength-detail-item__desc {
    grid-row: auto;
    grid-column: auto;
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-right: 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  .strength-detail-item__data {
    grid-row: auto;
    grid-column: auto;
    justify-self: center;
    align-items: baseline;
    gap: 0.8rem;
    white-space: normal;
  }
  .strength-detail-item__data span:first-child,
  .strength-detail-item__data span:last-child {
    min-width: auto;
    text-align: center;
    font-size: 1rem;
  }
  .strength-detail-item__data--large {
    font-size: clamp(3.5rem, 10vw, 4.5rem);
  }
  .strength-detail-item__data .js-count-up {
    min-width: auto;
  }
}

.faq-accordion {
  background-color: #ffffff;
  max-width: 1329px;
  margin: 2rem auto 0;
  padding: 1rem;
}
@media (max-width: 768px) {
  .faq-accordion {
    padding: 0.2rem;
  }
}
.faq-accordion__item {
  border-bottom: 1px solid #d9d9d9;
}
.faq-accordion__item:first-child {
  border-top: 1px solid #d9d9d9;
}
.faq-accordion__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0.5rem 1.5rem 2rem;
  font-family: "Avenir Next", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #222222;
  text-align: left;
  position: relative;
  cursor: pointer;
  list-style: none;
}
.faq-accordion__question::-webkit-details-marker {
  display: none;
}
@media (max-width: 768px) {
  .faq-accordion__question {
    font-size: 0.7rem;
    padding: 1rem 1rem;
  }
}
.faq-accordion__q-icon {
  margin-right: 1rem;
  font-weight: bold;
  color: #06639f;
}
.faq-accordion__arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  background-image: url("../images/faq-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
details[open] > summary > .faq-accordion__arrow {
  transform: rotate(0deg);
}
.faq-accordion__answer {
  font-size: 1rem;
  line-height: 1.7;
  background-color: rgb(246.1, 246.1, 246.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}
.faq-accordion__answer-content {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 768px) {
  .faq-accordion__answer-content {
    font-size: 0.9rem;
    padding: 1rem 1.5rem;
  }
}
.faq-accordion__a-icon {
  font-weight: bold;
  color: rgb(4.1454545455, 68.4, 109.8545454545);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0 2rem;
  background-color: rgba(0, 0, 0, 0.2);
}
.header__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo img {
  height: 100px;
  width: auto;
}
@media (max-width: 992px) {
  .header__logo img {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header__logo img {
    height: 80px;
  }
}

.nav__list {
  display: flex;
  gap: 2rem;
}
@media (max-width: 992px) {
  .nav__list {
    display: none;
  }
}
.nav__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav__link:hover {
  color: rgb(216.75, 216.75, 216.75);
  opacity: 1;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}
@media (max-width: 992px) {
  .nav__toggle {
    display: flex;
  }
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  position: absolute;
  left: 0;
}
.nav__toggle span:nth-child(1) {
  top: 0;
}
.nav__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.nav__toggle span:nth-child(3) {
  bottom: 0;
  top: auto;
}
.nav__toggle.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) translateX(10px);
}
.nav__toggle.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.nav__menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(6, 99, 159, 0.95);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  padding: 8rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 99;
}
@media (max-width: 992px) {
  .nav__menu-mobile {
    display: block;
  }
}
.nav__menu-mobile.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav__list-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav__link-mobile {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  text-decoration: none;
}
.nav__link-mobile:hover {
  opacity: 0.8;
}

.footer {
  background-color: #06639f;
  color: #ffffff;
  padding: 2rem 2rem 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 1rem 1rem;
  }
}
.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
}
.footer__grid {
  display: grid;
  grid-template-columns: 0.6fr 0.6fr 1.5fr 0.9fr;
  gap: 3rem;
  position: relative;
}
.footer__grid > .footer__column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1.5rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .footer__grid > .footer__column:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.footer__column {
  position: relative;
}
@media (max-width: 992px) {
  .footer__column {
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__column:last-child {
    border-bottom: none;
  }
}
@media (max-width: 768px) {
  .footer__column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__column:last-child {
    border-bottom: none;
  }
}
.footer__title {
  font-weight: 700;
  font-size: var(--title-font-size, 1.4rem);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.footer__title::after {
  content: attr(data-subtitle);
  display: block;
  font-size: var(--subtitle-font-size, 1rem);
  letter-spacing: 2px;
  margin-top: -0.5rem;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .footer__title::after {
    font-size: 0.7rem;
  }
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 1rem;
    margin-bottom: 0.1rem;
  }
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer ul li {
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .footer ul li {
    margin-bottom: -0.3rem;
  }
}
.footer ul a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: normal;
}
.footer ul a:hover {
  text-decoration: underline;
  opacity: 1;
}
@media (max-width: 768px) {
  .footer ul a {
    font-size: 0.7rem;
  }
}
.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 2.4px;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 0.7rem;
  }
}

.section {
  padding: 2rem 1rem;
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  .section {
    scroll-margin-top: 80px;
  }
}
.section__inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section__inner--medium {
  max-width: 1329px;
}
.section__inner--narrow {
  max-width: 1125px;
}
@media (max-width: 992px) {
  .section__inner {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .section__inner {
    padding: 0;
  }
}
.section__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.section__title--blue {
  color: #06639f;
}
.section__title[data-subtitle]::before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 2.4px;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}
.section--news, .section--calendar, .section--faq, .section--contact {
  background-color: #f1f1f1;
}
.section--company-links {
  padding: 0;
  background-color: #f1f1f1;
}
.section.hero {
  height: 100vh;
  position: relative;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.section.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section.hero__bg .hero__video--pc,
.section.hero__bg .hero__video--sp {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.section.hero .hero__video--pc {
  display: block;
}
@media (max-width: 768px) {
  .section.hero .hero__video--pc {
    display: none;
  }
}
.section.hero .hero__video--sp {
  display: none;
}
@media (max-width: 768px) {
  .section.hero .hero__video--sp {
    display: block;
    height:100vh;
  }
}
.section.hero .hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(6, 99, 159, 0) 0%, rgba(6, 99, 159, 0.1) 50%, rgba(6, 99, 159, 0.7) 100%);
}
.section--strength {
  height: 550px;
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.section--strength .strength__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/top/img1.jpg");
  background-size: cover;
  background-position: center;
}
.section--strength .strength__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 99, 159, 0.6);
}
.section--strength .strength__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1170px;
}
.section--strength .strength__title {
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  line-height: 1.1;
  text-align: left;
  margin: 0;
}
@media (max-width: 992px) {
  .section--strength .strength__title {
    text-align: center;
  }
}
.section--strength .strength__title::before {
  font-size: 1.5rem;
  letter-spacing: 2.4px;
}
@media (max-width: 992px) {
  .section--strength {
    height: auto;
    padding: 2rem 1rem;
  }
}
.section--calendar img {
  height: 700px;
  width: auto;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .section--calendar img {
    height: auto;
  }
}
@media (max-width: 768px) {
  .section--calendar img {
    height: auto;
  }
}
.section--contact .contact__info-list {
  max-width: 1329px;
  margin: 0 auto 2rem;
  width: 50vw;
}
@media (max-width: 992px) {
  .section--contact .contact__info-list {
    text-align: center;
    width: 100%;
    margin: 0;
  }
}
.section--contact .contact__info-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dddddd;
}
.section--contact .contact__info-item:first-child {
  border-top: 1px solid #dddddd;
}
@media (max-width: 768px) {
  .section--contact .contact__info-item {
    grid-template-columns: 1fr;
    gap: 0.1rem;
    padding: 0.5rem 0;
  }
}
.section--contact dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding-top: 0.2rem;
}
@media (max-width: 768px) {
  .section--contact dt {
    font-size: 1rem;
    padding-top: 0;
    margin-bottom: 0.1rem;
  }
}
.section--contact dd {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.7;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .section--contact dd {
    font-size: 1rem;
  }
}
.section--contact .contact__info-block:not(:last-child) {
  margin-bottom: 1.5rem;
}
.section--contact .contact__info-label {
  display: block;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .section--contact .contact__info-label {
    font-size: 1.1rem;
  }
}
.section--contact .contact__info-address {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: #222222;
}
.section--contact .contact__info-address:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.section--contact .contact__info-icon {
  width: 30px;
  height: 30px;
}
.section--contact .contact__info-tel {
  margin-top: 0.25rem;
}
.section--contact .contact__info-note {
  font-size: 0.9rem;
  display: inline;
  color: #999999;
}
@media (max-width: 768px) {
  .section--contact .contact__info-note {
    display: block;
    margin-top: 0.25rem;
  }
}
.section--contact .contact__buttons-lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section--contact .contact__buttons-lead {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
}
.section--contact .contact__buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .section--contact .contact__buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 0rem;
  }
}
.section--company-links .company-link {
  position: relative;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  margin: 2rem 1rem;
}
@media (max-width: 992px) {
  .section--company-links .company-link {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .section--company-links .company-link {
    height: 200px;
    margin: 0.5rem 1rem;
    top: 0.5rem;
  }
}
.section--company-links .company-link__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.section--company-links .company-link__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(6, 99, 159, 0.6);
  z-index: 1;
  transition: background-color 0.3s ease;
}
.section--company-links .company-link__content {
  position: relative;
  z-index: 2;
}
.section--company-links .company-link__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  margin: 0;
  line-height: 1.1;
}
.section--company-links .company-link__title::before {
  content: attr(data-subtitle);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.section--company-links .company-link__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 1.5rem;
}
.section--company-links .company-link:hover .section--company-links .company-link__overlay {
  background-color: rgba(6, 99, 159, 0.8);
}

.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 250px;
  padding-top: 100px;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  scroll-margin-top: 0;
}
.page-hero__bg, .page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__bg {
  background-size: cover;
  background-position: center;
  background-color: #06639f;
}
.page-hero__overlay {
  background-color: rgba(6, 99, 159, 0.7);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
}
.page-hero__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.3rem);
  margin: 0;
  line-height: 1.1;
}
.page-hero__title::after {
  content: attr(data-subtitle);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 0.75rem;
  opacity: 0.9;
  letter-spacing: 2.4px;
}
@media (max-width: 992px) {
  .page-hero {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .page-hero {
    height: 250px;
  }
}

.page-hero--recruit .page-hero__bg {
  background-image: url("../img/top/img3.jpg");
}

.page-hero--company .page-hero__bg {
  background-image: url("../img/top/img2.jpg");
}

.page-hero--business .page-hero__bg {
  background-image: url("../img/top/img4.jpg");
}

.page-hero--parts .page-hero__bg {
  background-image: url("../img/parts/img2.jpg");
}

.section--recruit-intro {
  padding: 3rem 1rem;
  text-align: center;
}
.section--recruit-intro .recruit-intro__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.grid {
  display: grid;
  gap: 1rem 1rem;
}
@media (max-width: 768px) {
  .grid {
    gap: 0.5rem 0.5rem;
  }
}
.grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2col {
    grid-template-columns: 1fr;
  }
}
.grid--2col-no-gap {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .grid--2col-no-gap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.section--company-greeting .company-greeting__content {
  font-size: 1rem;
  line-height: 1.8;
}
.section--company-greeting .company-greeting__content p {
  margin-bottom: 0.5rem;
}
.section--company-greeting .company-greeting__signature {
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0;
}

.section--philosophy {
  background-color: #f1f1f1;
  text-align: center;
  padding: 2rem 1rem;
}
.section--philosophy .company-philosophy__content {
  margin-top: 2rem;
}
.section--philosophy .company-philosophy__main {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.section--philosophy .company-philosophy__sub {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .section--philosophy .company-philosophy__main {
    font-size: 2rem;
  }
  .section--philosophy .company-philosophy__sub {
    font-size: 1.25rem;
  }
}

.section--company-overview .company-overview__list {
  border-top: 1px solid #d9d9d9;
}
.section--company-overview .company-overview__item {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #d9d9d9;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .section--company-overview .company-overview__item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
}
.section--company-overview dt {
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.25rem 1rem 0;
}
@media (max-width: 768px) {
  .section--company-overview dt {
    padding: 0;
  }
}
.section--company-overview dd {
  font-size: 1rem;
  line-height: 1.7;
}
.section--company-overview dd .contact__info-block:not(:last-child) {
  margin-bottom: 1.5rem;
}
.section--company-overview dd .contact__info-label {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  display: block;
}
.section--company-overview dd .contact__info-address {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.section--company-overview dd .contact__info-address .contact__info-icon {
  width: 30px;
  height: 30px;
  margin-left: left;
}
.section--company-overview dd .contact__info-tel {
  font-size: 1rem;
  margin-top: 0.25rem;
}

.section--company-access {
  background-color: #f1f1f1;
  padding-bottom: 4rem;
}
.section--company-access .company-access__map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

@keyframes puka-puka {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.section--business-intro .section__inner {
  max-width: 900px;
}
.section--business-intro .business-intro__text {
  font-size: 1rem;
  line-height: 1.8;
}
.section--business-intro .business-intro__text p {
  margin-bottom: 1.5rem;
}
.section--business-intro .business-intro__text p:last-child {
  margin-bottom: 0;
}

.section--business-process {
  background-color: #f1f1f1;
  padding: 4rem 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section--business-process {
    padding: 2rem 1rem;
  }
}
.section--business-process .business-process__image {
  display: block;
  max-width: 70%;
  height: auto;
  margin: 0 auto 1rem;
}
@media (max-width: 768px) {
  .section--business-process .business-process__image {
    max-width: 100%;
  }
}
.section--business-process .business-process__caption {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222222;
  background-color: #E0E0E0;
  padding: 1rem 1.5rem;
  display: inline-block;
  border-radius: 30px;
  animation: puka-puka 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .section--business-process .business-process__caption {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
}

.section--business-image {
  padding: 3rem 1rem;
}
.section--business-image .section__inner {
  max-width: 700px;
}
.section--business-image figure {
  margin: 0;
  text-align: center;
}
.section--business-image img {
  width: 100%;
  height: auto;
  border: 2px solid #dddddd;
}
.section--business-image figcaption {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
}

body.parts-page .wrapper {
  position: relative;
  z-index: 1;
}
body.parts-page .main {
  background-color: transparent;
}
body.parts-page .section--contact {
  background-color: #ffffff;
}

.parts-bg-container {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.parts-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.parts-bg.is-active {
  opacity: 1;
}

.section--parts-list {
  padding: 0;
  background-color: transparent;
}

.parts-list__overlay {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .parts-list__overlay {
    padding: 2rem 0;
  }
}

.parts-list__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-bottom: 3rem;
}
.parts-list__grid--single {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .parts-list__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 0 1rem;
  }
}

.parts-category h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #06639f;
  border-bottom: 2px solid #06639f;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.parts-category ul {
  list-style: none;
  padding: 0;
}
.parts-category li {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .parts-category h3 {
    font-size: 1.3rem;
  }
  .parts-category li {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
  }
}

.parts-scroll-trigger {
  height: 1px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.parts-scroll-trigger:first-of-type {
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .parts-scroll-trigger {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=style.css.map */

/* ========== お問い合わせページ ========== */

/* ページ全体の背景色を青に */
.main--contact {
    /* background-color: #06639f; */
}

/* ヒーローセクションの背景画像（業務内容のものを流用） */
.page-hero--contact .page-hero__bg {
    background-image: url('../img/top/img4.jpg');
    opacity: 0.3;
}
.page-hero--contact .page-hero__overlay {
    background-color: rgba(6, 99, 159, 0.5);
}

/* フォーム部分の白い背景 */
.section--contact-form {
    background-color: #ffffff;
    padding: 3rem 1rem;
    /* margin: 0 2rem 3rem; */
}

@media (max-width: 768px) {
    .section--contact-form {
        margin: 0 1rem 2rem;
        padding: 2rem 1.5rem;
    }
}

/* --- Contact Form 7 スタイル調整 --- */

.wpcf7-form {
    max-width: 900px;
    margin: 0 auto;
}

/* フォームの各行 (除外設定) */
.wpcf7-form p:not(.form-item-textarea):not(.form-item-submit):not(.form-item-acceptance):not(.form-item-submit-note) {
    display: grid;
    align-items: center;
}

/* フォームのラベル (会社名、メールなど) */
.wpcf7-form label {
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    padding-right: 1rem;
    color: #333;
}

/* 入力欄のラッパー */
.wpcf7-form-control-wrap {
    width: 100%;
    /* top: -1.5rem; (★削除) */
}

/* 入力欄 (input, textarea) */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: #f9f9f9;
}

/* お問合せ内容 (textarea) の行 */
.wpcf7-form p.form-item-textarea {
    display: block;
    margin-bottom: 1.5rem;
}
.wpcf7-form p.form-item-textarea label {
    display: block;
    margin-bottom: 0.5rem;
}

/* 注意書きのスタイル (車両情報) */
.wpcf7-form .form-note {
    display: block;
    font-size: 0.875rem; /* 14px */
    color: #555;
    background-color: #f1f1f1; /* (★背景色を追加) */
    border: 1px solid #ddd;   /* (★ボーダーを追加) */
    border-radius: 4px;
    padding: 0.75rem 1rem;      /* (★パディングを修正) */
    margin-bottom: 1rem;
    line-height: 1.6;
}

.wpcf7-form textarea {
    height: 250px; /* お問合せ内容の高さ */
}

/* ▼ プライバシーポリシー同意 ▼ */
.wpcf7-form p.form-item-acceptance {
    text-align: center;
    margin-top: 1.5rem; /* (★マージン修正) */
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.wpcf7-form p.form-item-acceptance a {
    text-decoration: underline;
    color: #06639f;
}
.wpcf7-form p.form-item-acceptance a:hover {
    opacity: 0.7;
}
.wpcf7-acceptance .wpcf7-list-item {
    display: inline-block;
    margin: 0;
}
.wpcf7-acceptance input[type="checkbox"] {
    margin-right: 0.5rem;
}


/* ▼ 送信ボタン前の注意書き ▼ */
.wpcf7-form p.form-item-submit-note {
    text-align: center;
    font-size: 0.875rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: -1rem; 
    line-height: 1.6;
}

/* 送信ボタンの行 */
.wpcf7-form p.form-item-submit {
    margin-top: 2rem;
    margin-bottom: 0; 
    padding: 0; 
}

/* 送信ボタン */
.wpcf7-form input[type="submit"] {
    display: block;         
    width: -moz-fit-content;    
    width: fit-content;     
    margin-left: auto;      
    margin-right: auto;     
    padding: 1rem 3rem;
    background-color: #06639f;
    color: #ffffff;
    border: none;
    border-radius: 40px;
    font-family: "Avenir Next", sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.15);
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #0032a0;
    opacity: 1;
}

/* スマホ表示の調整 */
@media (max-width: 768px) {
    /* フォームの各行を縦積みに変更 */
    .wpcf7-form p:not(.form-item-textarea):not(.form-item-submit):not(.form-item-acceptance):not(.form-item-submit-note) {
        /* grid-template-columns: 1fr; */
        /* gap: 0.5rem; */
    }
    .wpcf7-form label {
        padding-right: 0;
        font-size: 1rem;
    }
    .wpcf7-form input[type="submit"] {
        width: 100%;
        font-size: 1.1rem;
    }
    .wpcf7-form p.form-item-acceptance {
        font-size: 0.85rem;
    }
    .wpcf7-form-control-wrap {
        top: 0; /* (★削除) */
    }
}