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

.sp {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  .sp {
    display: inline-block !important;
  }
  .pc {
    display: none !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  background: #fff;
  line-height: 1.6;
}
body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: 960px;
  margin: 0 auto;
  padding: 100px 0;
}

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1002;
  gap: 48px;
}

.logo img {
  max-height: 72px;
  width: auto;
}

.nav-pc {
  display: flex;
  gap: 42px;
}
.nav-pc a {
  font-size: 20px;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.nav-pc a:hover {
  opacity: 0.7;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 1000px) {
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
    width: 6.4vw;
    height: 6.4vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger span {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #1c1b1f;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  }
  .hamburger span:nth-child(1) {
    transform: translateY(-6px);
  }
  .hamburger span:nth-child(2) {
    transform: translateY(0);
  }
  .hamburger span:nth-child(3) {
    transform: translateY(6px);
  }
  .hamburger.active span {
    background: #fff;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
  }
}
.mv {
  height: auto;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.mv img {
  width: 100%;
  max-width: 1440px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-header {
  height: 300px;
  background: #808080;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-content {
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about {
  background: #fff;
}

.about-title {
  font-size: 40px;
  font-weight: 700;
  color: #036789;
  text-align: center;
  margin-bottom: 48px;
}

.about-text {
  font-size: 20px;
  line-height: 1.6;
}
.about-text p {
  margin-bottom: 1em;
}
.about-text p:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 20px;
  color: #036789;
}

.service {
  background: #fff;
}

.service-cards {
  display: flex;
  gap: 30px;
}

.service-card {
  flex: 1;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s;
}
.service-card:hover {
  opacity: 0.7;
}

.service-image {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.service-image img {
  width: 100%;
  height: 154px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-info {
  text-align: center;
}
.service-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}
.service-info p {
  font-size: 18px;
  line-height: 1.6;
}

.arrow-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.arrow-icon-small {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.news {
  background: #def7ff;
}

.news-list {
  width: 100%;
}

.news-item {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #8b8b8b;
  opacity: 1;
  transition: opacity 0.3s;
}
.news-item:hover {
  opacity: 0.7;
}

.news-date {
  font-size: 20px;
  width: 108px;
  text-align: center;
  flex-shrink: 0;
}

.news-title {
  font-size: 20px;
  flex: 1;
}

.news-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 20px 0;
  transition: opacity 0.3s;
}
.news-more:hover {
  opacity: 0.7;
}
.news-more span {
  font-size: 20px;
}

.company {
  background: #fff;
}

.company-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.company-details h3 {
  font-size: 32px;
  margin-bottom: 28px;
}
.company-details address {
  font-size: 20px;
  line-height: 1.6;
  font-style: normal;
}

.company-business {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.company-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 20px;
  border: 1px solid #000;
  width: 437px;
  height: 76px;
  transition: opacity 0.3s;
}
.company-link:hover {
  opacity: 0.7;
}
.company-link span {
  font-size: 20px;
}

.company-image {
  width: 448px;
  flex-shrink: 0;
}
.company-image img {
  width: 100%;
  height: 331px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

.contact {
  background: #036789;
  color: #fff;
}
.contact .section-header h2 {
  color: #fff;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-boxes {
  display: flex;
  gap: 30px;
}

.contact-box {
  flex: 1;
  border: 1px solid #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.contact-label {
  font-size: 18px;
  text-align: center;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-phone span {
  font-size: 32px;
  font-weight: 700;
}

.contact-email {
  border: 1px solid #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.contact-email .contact-label {
  font-size: 20px;
}

.contact-email-content {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-email-content span {
  font-size: 32px;
  font-weight: 700;
}

.contact-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 20px 0;
  transition: opacity 0.3s;
}
.contact-more:hover {
  opacity: 0.7;
}
.contact-more span {
  font-size: 20px;
}

.footer {
  background: #fff;
  border-top: 1px solid #8b8b8b;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-logo img {
  height: 86px;
  width: auto;
}

.footer-address {
  font-size: 20px;
  line-height: 1.6;
  font-style: normal;
}

.footer-recruit {
  font-size: 20px;
  font-weight: 700;
  color: #036789;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .container {
    width: 100%;
    padding: 12.8vw 5.33vw;
  }
  .header-inner {
    padding: 2.67vw;
  }
  .logo img {
    height: 11.2vw;
  }
  .nav-pc {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 103, 137, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8vw;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-pc.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-pc a {
    color: #fff;
    font-size: 5.33vw;
  }
  .hamburger {
    display: block;
    position: relative;
    z-index: 1001;
  }
  .hamburger svg {
    width: 6.4vw;
    height: 6.4vw;
  }
  .hamburger.active svg path {
    fill: #fff;
  }
  .mv {
    height: auto;
  }
  .mv img {
    width: 100%;
  }
  .page-header {
    height: 53.33vw;
  }
  .page-header h1 {
    font-size: 8vw;
  }
  .about-title {
    font-size: 6.4vw;
    margin-bottom: 5.33vw;
    line-height: 1.6;
  }
  .about-text {
    font-size: 4.27vw;
  }
  .section-header {
    margin-bottom: 5.33vw;
  }
  .section-header h2 {
    font-size: 6.4vw;
    margin-bottom: 2.67vw;
  }
  .section-subtitle {
    font-size: 3.73vw;
  }
  .service-cards {
    flex-direction: column;
    gap: 5.33vw;
  }
  .service-card {
    width: 100%;
  }
  .service-image img {
    height: 47.73vw;
  }
  .service-content {
    padding: 5.33vw;
    gap: 5.33vw;
  }
  .service-info h3 {
    font-size: 5.87vw;
  }
  .service-info p {
    font-size: 4.8vw;
  }
  .arrow-icon {
    width: 9.6vw;
    height: 9.6vw;
  }
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.67vw;
    padding: 2.67vw 0;
  }
  .news-date {
    font-size: 3.73vw;
    width: auto;
    text-align: left;
  }
  .news-title {
    font-size: 4.27vw;
  }
  .news-more {
    gap: 2.67vw;
    padding: 5.33vw 0;
  }
  .news-more span {
    font-size: 4.27vw;
  }
  .arrow-icon-small {
    width: 6.4vw;
    height: 6.4vw;
  }
  .company-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 5.33vw;
  }
  .company-info {
    width: 100%;
    gap: 5.33vw;
  }
  .company-details h3 {
    font-size: 6.4vw;
    margin-bottom: 2.67vw;
  }
  .company-details address {
    font-size: 4.27vw;
  }
  .company-business {
    font-size: 4.27vw;
    margin-bottom: 2.67vw;
  }
  .company-link {
    width: 100%;
    height: auto;
    padding: 5.33vw;
    gap: 2.67vw;
  }
  .company-link span {
    font-size: 4.27vw;
  }
  .company-image {
    width: 100%;
  }
  .company-image img {
    height: 69.07vw;
  }
  .contact-content {
    gap: 8vw;
  }
  .contact-boxes {
    flex-direction: column;
    gap: 8vw;
  }
  .contact-box {
    padding: 5.33vw;
    gap: 2.67vw;
  }
  .contact-label {
    font-size: 4.27vw;
  }
  .contact-phone {
    gap: 2.67vw;
  }
  .contact-phone svg {
    width: 10.67vw;
    height: 10.67vw;
  }
  .contact-phone span {
    font-size: 8.53vw;
  }
  .contact-email {
    padding: 5.33vw;
    gap: 2.67vw;
  }
  .contact-email .contact-label {
    font-size: 5.33vw;
  }
  .contact-email-content {
    gap: 2.67vw;
  }
  .contact-email-content svg {
    width: 6.4vw;
    height: 6.4vw;
  }
  .contact-email-content span {
    font-size: 4.8vw;
  }
  .contact-more {
    gap: 2.67vw;
    padding: 5.33vw 0;
  }
  .contact-more span {
    font-size: 4.27vw;
  }
  .footer-inner {
    flex-direction: column;
    padding: 10.67vw;
    gap: 10.67vw;
    align-items: center;
    text-align: center;
  }
  .footer-logo img {
    height: 14.93vw;
  }
  .footer-address {
    font-size: 5.33vw;
  }
  .footer-recruit {
    font-size: 5.33vw;
  }
  .footer-copyright {
    font-size: 3.73vw;
    padding: 0 10.67vw 10.67vw;
  }
}/*# sourceMappingURL=style.css.map */