.site-header {
  display: none;
}

.site-main {
  padding: 0;
}

body {
  background: #F8F8F8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: #1F140F;
}
@media screen and (max-width: 960px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 749px) {
  body {
    font-size: 14px;
  }
}

header {
  height: 130px;
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: 0 !important;
}
header .header__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
  height: 130px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 749px) {
  header .header__inner {
    flex-direction: column;
    align-items: end;
    height: auto;
    padding-top: 40px;
    gap: 20px;
  }
}
@media screen and (max-width: 749px) {
  header .header__inner nav {
    order: 2;
  }
}
header .header__inner nav ul {
  display: flex;
  gap: 20px;
  padding-left: 0;
}
@media screen and (max-width: 749px) {
  header .header__inner nav ul {
    flex-direction: column;
    align-items: end;
    gap: 10px;
  }
}
header .header__inner nav ul a {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #0C2881;
}
@media screen and (max-width: 960px) {
  header .header__inner nav ul a {
    font-size: 16px;
  }
}
header .header__inner nav ul a:hover span::after {
  width: 100%;
}
header .header__inner nav ul a span {
  position: relative;
}
header .header__inner nav ul a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #0C2881;
  z-index: -1;
  transition: all 0.7s;
}
header .header__inner .logo {
  width: 280px;
}
@media screen and (max-width: 749px) {
  header .header__inner .logo {
    order: 1;
  }
}
@media screen and (max-width: 960px) {
  header .header__inner .logo {
    width: 240px;
    margin-top: 2px;
  }
}

.main__container {
  padding: 0 20px;
  width: 100%;
  max-width: 1240px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  margin: 0 auto;
}

.full-section {
  height: calc(100svh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
}
.full-section p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 87px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0C2881;
}
@media screen and (max-width: 749px) {
  .full-section p {
    font-size: 40px;
  }
}

.base-section {
  width: 100%;
  margin: 0 auto;
}
.base-section .section__inner {
  padding: 80px 0;
}
@media screen and (max-width: 960px) {
  .base-section .section__inner {
    padding: 60px 0;
  }
}
.base-section .section__inner h2 {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #0C2881;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .base-section .section__inner h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

.company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .company-info {
    gap: 30px;
  }
}
.company-info .company-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .company-info .company-info-item {
    flex-direction: column;
  }
}
.company-info .company-info-item .company-info-item-title {
  width: 200px;
}
@media screen and (max-width: 960px) {
  .company-info .company-info-item .company-info-item-title {
    width: 150px;
  }
}
.access-info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .access-info {
    flex-direction: column;
    gap: 20px;
  }
}
.access-info .company-name {
  width: 400px;
}
@media screen and (max-width: 960px) {
  .access-info .company-name {
    width: 300px;
  }
}
.access-map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-top: 40px;
}
.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

footer {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
footer p {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 749px) {
  footer p {
    font-size: 12px;
  }
}

.animation-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s, transform 3s;
}

.animation-fadein.active {
  opacity: 1;
  transform: translateY(0px);
}

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 960px) {
  .contact-form {
    gap: 30px;
    margin-top: 30px;
  }
}
.contact-form .contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media screen and (max-width: 749px) {
  .contact-form .contact-item {
    flex-direction: column;
  }
}
.contact-form .contact-item .contact-outline {
  width: 200px;
}
@media screen and (max-width: 749px) {
  .contact-form .contact-item .contact-outline {
    width: 100%;
  }
}
.contact-form .contact-item .contact-detail {
  flex-grow: 1;
  max-width: 100%;
}
@media screen and (max-width: 749px) {
  .contact-form .contact-item .contact-detail {
    width: 100%;
  }
}
.contact-form .contact-item .contact-detail input {
  width: 100%;
  outline: none;
  border: 0;
  border-bottom: 1px solid;
  font-size: 20px;
  padding: 0;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .contact-form .contact-item .contact-detail input {
    font-size: 16px;
  }
}
@media screen and (max-width: 749px) {
  .contact-form .contact-item .contact-detail input {
    font-size: 14px;
  }
}
.contact-form .contact-item .contact-detail textarea {
  border: 1px solid;
  outline: none;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .contact-form .contact-item .contact-detail textarea {
    font-size: 16px;
  }
}
@media screen and (max-width: 749px) {
  .contact-form .contact-item .contact-detail textarea {
    font-size: 14px;
  }
}
.contact-form .contact-submit-button p {
  text-align: right;
}
.contact-form .contact-submit-button p input {
  font-size: 20px;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 15px;
}
@media screen and (max-width: 960px) {
  .contact-form .contact-submit-button p input {
    font-size: 16px;
  }
}
@media screen and (max-width: 749px) {
  .contact-form .contact-submit-button p input {
    font-size: 14px;
  }
}
.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: 0;
}
.top-full-section {
  flex-direction: row;
  align-items: center;
}
.top-logo {
  width: 50%;
}
.top-img {
  width: 50%;
}
.top-img img {
  width: 100%;
}
@media screen and (max-width: 749px) {
.top-full-section {
  flex-direction: column;
  align-items: left;
  gap: 40px;
}
.top-logo {
  width: 100%;
}
.top-img {
  width: 100%;
}
.top-img img {
  width: 100%;
}
}