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

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

body.is-fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.l-section {
  padding: 100px 0;
}

.u-text-center {
  text-align: center;
}

.wrapper {
  display: flex;
  justify-content: center;
}

.heading {
  max-width: 1200px;
  padding: 70px min(15%, 180px);
}

@media (max-width: 768px) {
  .l-inner {
    padding: 0 20px;
  }
  .l-section {
    padding: 60px 0;
  }

  .heading {
    max-width: 480px;
    padding: 50px min(5.33%, 20px);
  }
}

.c-section-header {
  text-align: left;
  margin-bottom: 60px;
}

.c-section-header__en {
  display: block;
  color: #164a84;
  font-family: "Jost", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  opacity: 0.9;
}

.c-section-header__ja {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  padding-left: 4px;
}

@media (max-width: 768px) {
  .c-section-header__en {
    font-size: 48px;
  }
  .c-section-header__ja {
    font-size: 16px;
  }
}

.p-top-about__sub-title {
  margin-bottom: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-top-about__sub-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #99cc33;
  margin-bottom: 12px;
}

.p-top-about__sub-title-en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #99cc33;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p-top-about__sub-title-ja {
  display: block;
  font-size: 26px;
  color: #164a84;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .p-top-about__sub-title-ja {
    font-size: 22px;
  }
}

.p-top-about__mission-list {
  margin-top: 30px;
  padding: 25px 30px;
  background-color: #f0f7e9;
  border-radius: 15px;
}

.p-top-about__mission-list li {
  position: relative;
  padding-left: 1.5em;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
}

.p-top-about__mission-list li:not(:last-child) {
  margin-bottom: 8px;
}

.p-top-about__mission-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #99cc33;
  font-size: 0.8em;
  top: 0.1em;
}

@media (max-width: 768px) {
  .p-top-about__mission-list {
    padding: 20px;
    margin-top: 20px;
  }
  .p-top-about__mission-list li {
    font-size: 14px;
  }
}

.c-btn {
  display: inline-block;
  background: #164a84;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  /* margin: 30px 0 0 0; */
}

.c-btn:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.c-btn--header {
  padding: 8px 20px;
  font-size: 13px;
}

.c-btn--outline {
  border: 2px solid #164a84;
  color: #164a84;
  background: transparent;
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.l-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.l-header__logo img {
  height: 36px;
}

.l-header__logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #164a84;
  letter-spacing: 0.05em;
}

.c-hamburger {
  display: none;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

.c-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #164a84;
  transition: 0.4s;
}

.c-hamburger span:nth-child(1) {
  top: 0;
}
.c-hamburger span:nth-child(2) {
  top: 11px;
}
.c-hamburger span:nth-child(3) {
  bottom: 0;
}

.c-hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.c-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.l-header__menu {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 700;
  font-family: "Jost", "Noto Sans JP", sans-serif;
}

@media (max-width: 768px) {
  .l-header {
    height: 50px;
  }
  .l-header__logo img {
    height: 26px;
  }
  .l-header__logo-text {
    font-size: 13px;
  }
  .c-hamburger {
    display: block;
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    transition: 0.5s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    gap: 0;
  }
  .l-header__nav.is-open {
    right: 0;
  }
  .l-header__menu {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    gap: 0;
  }
  .l-header__menu li a {
    display: block;
    padding: 16px 0;
  }
}

.p-top-hero {
  padding: 120px 30px 20px;
  background-color: #ffffff;
}

.p-top-hero__container {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  height: 700px;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.p-top-hero__slider,
.p-top-hero__slider .slick-list,
.p-top-hero__slider .slick-track {
  height: 100% !important;
}

.p-top-hero__slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

.p-top-hero__content {
  position: absolute;
  bottom: 10%;
  left: 6%;
  z-index: 10;
  color: #ffffff;
  pointer-events: none;
}

.p-top-hero__sub {
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: #99cc33;
  padding: 6px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.p-top-hero__main {
  display: block;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .p-top-hero {
    padding: 100px 15px 15px;
  }
  .p-top-hero__sub {
    font-size: 16px;
    margin-bottom: 6px;
    padding: 3px 14px;
  }
  .p-top-hero__container {
    height: 360px;
    border-radius: 30px;
  }
  .p-top-hero__main {
    font-size: 28px;
  }
  .p-top-hero__content {
    bottom: 8%;
    left: 8%;
  }
}

.p-top-news__list {
  margin-bottom: 40px;
}
.p-top-news__item {
  border-bottom: 1px solid #eeeeee;
}
.p-top-news__item a {
  display: flex;
  padding: 25px 10px;
  align-items: center;
  transition: background 0.3s;
}

.p-top-news__date {
  width: 150px;
  color: #999999;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}
.p-top-news__title {
  flex: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .p-top-news__item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .p-top-news__date {
    width: auto;
  }
}

.p-top-about {
  background: #f8f9fa;
}
.p-top-about__block {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .p-top-about__block {
  margin-bottom: 20px;
}
}

.p-top-about__intro {
    margin-bottom: 20px;
}


.p-top-about__mission {
  display: flex;
  align-items: center;
  gap: 60px;
}
.p-top-about__mission-image {
  flex: 1;

  width: 70%;
  margin: 10px auto 60px auto;
}
.p-top-about__mission-image img {
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .p-top-about__mission-image {
    width: 100%;
  }
}

.p-top-about__mission-content {
  flex: 1.2;
}

.p-top-about__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}
.p-top-about__grid-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
@media (max-width: 768px) {
    .p-top-about__grid-item{
        padding: 20px;
    }
}

.p-top-about__grid-image {
  margin-bottom: 20px;
}
.p-top-about__grid-image img {
  border-radius: 15px;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.p-top-about__grid-item h4 {
  color: #99cc33;
  font-size: 26px; /* 修正：26px */
  margin-bottom: 15px;
  font-weight: 700;
}

/* Our Value (数字の重ね配置) */
.p-top-about__values {
  display: flex;
  gap: 30px;
}
.p-top-about__value-item {
  flex: 1;
}
.p-top-about__value-image {
  position: relative;
  margin-bottom: 25px;
}
.p-top-about__value-image img {
  border-radius: 15px;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.p-top-about__value-num {
  position: absolute;
  top: -25px;
  left: -15px;
  font-family: "Jost", sans-serif;
  font-size: 60px;
  font-weight: bold;
  color: #164a84;
  line-height: 1;
  z-index: 2;
  -webkit-text-stroke: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.p-top-about__value-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.p-top-about__value-title-main {
  font-size: 26px; /* ユーザー様修正反映：26px */
  color: #164a84;
  font-weight: 700;
}
.p-top-about__value-title-sub {
  font-size: 15px;
  color: #164a84;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .p-top-about__mission {
    flex-direction: column;
    gap: 30px;
  }
  .p-top-about__grid {
    grid-template-columns: 1fr;
  }
  .p-top-about__values {
    flex-direction: column;
    gap: 50px;
  }
  .p-top-about__value-num {
    font-size: 48px;
  }
  .p-top-about__grid-item h4 {
    font-size: 22px;
  }
}

.p-top-service__item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
}
.p-top-service__item--reverse {
  flex-direction: row-reverse;
}
.p-top-service__content {
  flex: 1;
}
.p-top-service__image {
  flex: 1.2;
}
.p-top-service__image img {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.p-top-service__title {
  font-size: 32px;
  color: #164a84;
  margin-bottom: 25px;
  line-height: 1.5;
}
@media (max-width: 768px) {
    .p-top-service__title {
        font-size: 24px;
        margin-bottom: 10px;
    }
}


.p-top-service__text {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .p-top-service__item {
    flex-direction: column;
    gap: 30px;
  }
}

.p-top-company__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.p-top-company__table th,
.p-top-company__table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.p-top-company__table th {
  width: 250px;
  background: #f9f9f9;
  color: #164a84;
}

.p-top-contact {
  background-color: #f8f9fa;
}
.p-top-contact__form {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 30px;
}
.p-top-contact__field {
  margin-bottom: 30px;
}
.p-top-contact__field label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-top-contact__field label span {
  color: #e63946;
  font-size: 12px;
  margin-left: 10px;
  background: #ffeeee;
  padding: 2px 8px;
  border-radius: 3px;
}
.p-top-contact__field input,
.p-top-contact__field textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 16px;
  background: #fdfdfd;
}
.p-top-contact__agree {
  margin-bottom: 30px;
  text-align: center;
}

@media (max-width: 768px) {
  .p-top-contact__form {
    padding: 30px 20px;
  }
}

.l-footer {
  background: #164a84;
  color: #ffffff;
  padding: 80px 0 40px;
  text-align: center;
}
.l-footer__logo img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 30px;
}
.l-footer__copy {
  font-size: 14px;
  opacity: 0.7;
}

.u-mt-40 {
  margin-top: 40px;
}

/* validation */
#consent-error {
  position: absolute;
  left: 50%;
  margin-top: 40px;
  transform: translateX(-50%);
  color: #d30001;
  font-weight: normal;
  font-size: 16px;
}
.validation-block {
  color: #d30001;
}
.has-error .validation-block {
  text-align: left;
  color: #d30001;
}

#email-error {
  color: #d30001;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

/* bootstrap */
button.btn-success {
  cursor: pointer;
}
.btn {
  font-size: 15px;
  font-weight: 400;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 8px 20px;
}
.btn01 .btn {
  background-color: #009e96;
  width: 120px;
  margin-left: 20px;
  margin-left: 15px;
  color: #fff;
}
.modal-dialog {
  max-width: 600px;
  margin: 150px auto 0;
  width: calc(100% - 40px);
}
.modal-body {
  text-align: center;
}
.modal-footer {
  display: flex;
  justify-content: center;
}
.btn.btn-md {
  padding: 8px 20px !important;
}
.btn.btn-lg {
  padding: 18px 36px !important;
}
.btn:hover,
.btn:active,
.btn:focus {
  box-shadow: none !important;
  outline: none !important;
}
.btn-primary {
  background: #3958a7;
  color: #fff;
  border: 2px solid #3958a7;
}
@media screen and (max-width: 960px) {
}

/* 共通 index single archive 404 */
._minheight {
  min-height: 56vh;
}
.non-text {
  text-align: center;
  font-size: 16px;
  margin: 0;
}

._error {
  overflow-wrap: anywhere;
}

@media screen and (max-width: 960px) {
  ._minheight {
    min-height: 62vh;
  }
}

.detail-block {
  padding: 100px 0 0 0;
}

.detail-block h1 {
  font-weight: 700;
  color: #164a84;
  border-bottom: 2px solid #164a84;
  margin: 0 0 40px 0;
}

.detail-block p {
  margin: 0 0 20px 0;
}
