@charset "UTF-8";
.gradient-text {
  display: inline-block;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif, "Poppins", sans-serif, sans-serif;
  color: #112732;
  background-color: #fff;
  line-height: 1.8;
}

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

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

html {
  font-size: 62.5%;
}

p {
  font-size: 1.5em;
}

h2 {
  font-size: 3em;
}

.l-inner {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (max-width: 768px) {
  .l-inner {
    padding-inline: 25px;
  }
}
@media (max-width: 480px) {
  .l-inner {
    padding-inline: 16px;
  }
}

.l-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.l-two-column > * {
  flex: 1 1 48%;
}

.l-three-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.l-three-column > * {
  flex: 1 1 30%;
}

@media (max-width: 768px) {
  .l-two-column > *,
  .l-three-column > * {
    flex: 1 1 100%;
  }
}
.u-mt40 {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .u-mt40 {
    margin-top: 30px;
  }
}

.u-mb40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .u-mb40 {
    margin-bottom: 30px;
  }
}

.u-mb70 {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .u-mb70 {
    margin-bottom: 40px;
  }
}

.u-pt32 {
  padding-top: 32px;
}
@media (max-width: 768px) {
  .u-pt32 {
    margin-top: 24px;
  }
}

.u-pb40 {
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .u-pb40 {
    padding-bottom: 30px;
  }
}

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

.cta-button {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border: none;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  min-width: 170px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4em;
}
.cta-button:hover {
  letter-spacing: 0.15em;
  transform: scale(1.02);
  background: linear-gradient(90deg, #6F4F98, #2E5FAA);
}
.cta-button:active {
  transform: scale(0.98);
  opacity: 0.9;
}
.cta-button svg {
  position: relative;
  top: 4px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0);
  padding: 1rem 0;
}
.header h1 img {
  width: 79px;
}
@media (max-width: 768px) {
  .header h1 img {
    width: 60px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  overflow: visible;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 15px 20px;
  }
}
.header__nav {
  display: flex;
}
@media screen and (max-width: 1250px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }
  .header__nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
  }
  .header__nav.is-open .header__menu {
    row-gap: 0;
  }
  .header__nav.is-open .header__menu li a {
    font-size: 2.6rem;
  }
  .header__nav.is-open .header-call {
    font-size: 3rem;
    margin: 10px 0;
  }
}
@media screen and (max-width: 1250px) and (max-width: 768px) {
  .header__nav.is-open .header-call {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 1250px) {
  .header__nav.is-open .c-button {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 2.4rem;
    align-items: center;
  }
}
.header__menu {
  display: flex;
  gap: 24px;
  background-color: #fff;
  padding: 3px 30px 0 30px;
  border-radius: 25px;
}
@media screen and (max-width: 1250px) {
  .header__menu {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.header__menu li a {
  display: block;
  padding: 0.8rem 1rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
}
.header__toggle {
  overflow: visible;
  position: relative;
  z-index: 1100;
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.header__toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #13366C;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.header__toggle span:nth-child(1) {
  top: 0;
}
.header__toggle span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__toggle span:nth-child(3) {
  bottom: 0;
}
@media screen and (max-width: 1250px) {
  .header__toggle {
    display: block;
  }
}

/* メニュー開閉のアニメーション */
.header__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(0, 14px);
}

.header__toggle.open span:nth-child(2) {
  opacity: 0;
}

.header__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(0, -14px);
}

.header__toggle.open {
  left: 6px;
}

.hover-gradient-text {
  display: inline-block;
  font-weight: 500;
  color: #112732;
  background-image: linear-gradient(90deg, #2E5FAA, #6F4F98);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #112732;
  transition: -webkit-text-fill-color 0.4s ease;
}
.hover-gradient-text:hover {
  -webkit-text-fill-color: transparent;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1rem 2.4rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border: none;
  border-radius: 30px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.c-button__icon {
  width: 1.8em;
  height: 1.8em;
  flex-shrink: 0;
  fill: currentColor;
  transform: translateY(6px);
}
.c-button:hover {
  background: linear-gradient(90deg, #6F4F98, #2E5FAA);
  transform: translateY(-2px);
}
.c-button:active {
  transform: translateY(0);
  opacity: 0.9;
}

.header-call {
  font-family: "Poppins", sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  margin: 0 20px;
  padding: 7px 0;
}

.site-footer {
  background-color: #f5f5f5;
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
  color: #666;
}

form {
  display: grid;
  gap: 16px;
}
form label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}
form input, form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}
form button {
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border: none;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  min-width: 170px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4em;
  border: none;
}
form button:hover {
  letter-spacing: 0.15em;
  transform: scale(1.02);
  background: linear-gradient(90deg, #6F4F98, #2E5FAA);
}
form button:active {
  transform: scale(0.98);
  opacity: 0.9;
}
form button svg {
  position: relative;
  top: 4px;
}

.animate-fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.text-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4em;
}
.text-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border-radius: 2px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.text-link:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
.text-link:not(:hover)::after {
  transform-origin: left;
}

.text-link.small {
  font-size: 1.3rem;
  padding: 10px 0 0 0;
}
.text-link.small::after {
  height: 1px;
}

.error-message {
    font-size: 1.5rem;
    color: #F00;
    font-weight: bold;
}

.media_title {
    font-weight: bold;
    font-size: 2.0rem;
    line-height: 120%;
}
.news-text a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.4rem;
  padding: 10px 0 0 0;
}
.news-text a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border-radius: 2px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s ease;
  font-size: 1.3rem;
  padding: 1px 0 0 0;
}
.news-text a:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}
.news-text a:not(:hover)::after {
  transform-origin: left;
}



.link-area {
  display: block;
  transition: opacity 0.3s ease;
}
.link-area:hover {
  opacity: 0.5;
}

.footer {
  background-color: #25293F;
  color: #fff;
  padding: 70px 40px;
  font-size: 1.4rem;
  /* 会社情報（ロゴ＋住所） */
  /* ナビゲーション（横並び） */
  /* 電話番号とCTA */
  /* コピーライト（通常フロー） */
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px 20px;
  }
}
.footer__inner {
  margin: 0 auto;
  padding: 0 1.6rem;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1250px) {
  .footer__content {
    display: block;
  }
}
.footer__company {
  flex: 0 1 auto;
  min-width: 590px;
}
@media (max-width: 768px) {
  .footer__company {
    min-width: auto;
  }
}
.footer__company-grid {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer__company-grid {
    display: block;
    width: 100%;
  }
}
.footer__company .footer__brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__company .footer__brand .footer__logo {
  width: 48px;
  height: auto;
  display: block;
}
.footer__company .footer__brand .footer__name {
  font-weight: bold;
  font-size: 1.6rem;
}
.footer__company .footer__locations {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__company .footer__locations {
    margin: 30px 0;
    gap: 15px;
  }
}
.footer__company .footer__location {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .footer__company .footer__location {
    gap: 10px;
  }
}
.footer__company .footer__location .footer__label {
  font-weight: bold;
  font-size: 1.4rem;
}
.footer__company .footer__location .footer__address {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0;
}
.footer__nav {
  flex: 0 1 auto;
  min-width: 200px;
}
.footer__nav .footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 1250px) {
  .footer__nav .footer__menu {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .footer__nav .footer__menu {
    gap: 10px;
    margin: 30px 0;
  }
  .footer__nav .footer__menu li {
    width: 30%;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .footer__nav .footer__menu {
    gap: 10px;
    margin: 30px 0;
  }
  .footer__nav .footer__menu li {
    width: 45%;
    text-align: center;
  }
}
.footer__nav .footer__menu li a {
  text-decoration: none;
  color: inherit;
  padding: 4px 8px;
  font-size: 1.3rem;
  display: inline-block;
  font-weight: 500;
  color: #fff;
  background-image: linear-gradient(90deg, #2E5FAA, #6F4F98);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.4s;
  -webkit-text-fill-color: #fff;
  transition: -webkit-text-fill-color 0.4s ease;
}
.footer__nav .footer__menu li a:hover {
  -webkit-text-fill-color: transparent;
  transition: 0.4s;
}
.footer__contact {
  flex: 0 1 auto;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__contact .footer__tel {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-align: right;
}
@media (max-width: 768px) {
  .footer__contact .footer__tel {
    text-align: center;
  }
}
.footer__contact .c-button {
  width: fit-content;
  width: 100%;
}
@media (max-width: 768px) {
  .footer__contact .c-button {
    width: 50%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .footer__contact .c-button {
    width: 80%;
    margin: 0 auto;
  }
}
.footer__copy {
  text-align: right;
  font-size: 1.4rem;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .footer__copy {
    text-align: center;
  }
}

.lower-visual {
  padding: 70px 140px;
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%);
}
@media (max-width: 768px) {
  .lower-visual {
    padding: 50px 0;
  }
}
.lower-visual .l-inner {
  max-width: 1320px;
}
.lower-visual .lower-visual__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.lower-visual p {
  font-size: 2.6rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: #13366C;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .lower-visual p {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .lower-visual p {
    font-size: 2rem;
  }
}
.lower-visual h1 {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .lower-visual h1 {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .lower-visual h1 {
    font-size: 3rem;
  }
}

table {
  border-top: solid 1px #C8B8D7;
}
table tr :nth-child(3) {
  font-weight: bold;
}
@media (max-width: 768px) {
  table tr {
    border-bottom: solid 1px #C8B8D7;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
table tr td {
  font-size: 1.6rem;
  border-bottom: solid 1px #C8B8D7;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  table tr td {
    width: 100%;
    display: block;
    border: 0;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

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

html {
  scroll-behavior: smooth;
}

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

ul,
li {
  list-style: none;
}

.mv {
  background: url("../img/hero.jpg") no-repeat center/cover;
  padding: 80px 0;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .mv {
    height: 100vh;
    background-position: right;
  }
}
.mv__content {
  width: 80vw;
}
.mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}
.mv__lead {
  color: #13366C;
  font-family: "Poppins", sans-serif;
  font-size: clamp(4rem, 5vw, 7em);
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}
.mv__catch {
  color: #112732;
  font-size: clamp(1.5rem, 2.5vw, 2em);
}
@media (max-width: 768px) {
  .mv__catch {
    margin-top: 10px;
  }
}
.mv__cta {
  margin-top: 24px;
  display: inline-block;
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border: none;
  border-radius: 25px;
  text-align: center;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.3s ease;
  min-width: 170px;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4em;
}
.mv__cta:hover {
  letter-spacing: 0.15em;
  transform: scale(1.02);
  background: linear-gradient(90deg, #6F4F98, #2E5FAA);
}
.mv__cta:active {
  transform: scale(0.98);
  opacity: 0.9;
}
.mv__cta svg {
  position: relative;
  top: 4px;
}

.top-vision {
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%);
  padding: 140px 0;
}
@media (max-width: 768px) {
  .top-vision {
    padding: 70px 0 50px 0;
  }
}

.section {
  position: relative;
  width: 100%;
  min-height: 400px;
}
.section__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 400px;
}
@media (max-width: 768px) {
  .section__content {
    min-height: auto;
  }
}
.section__text-box {
  background-color: #fff;
  padding: 30px;
  max-width: 540px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .section__text-box {
    max-width: 100%;
    margin-top: 0;
  }
}
.section__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60%;
  z-index: 1;
}
.section--left .section__bg {
  left: 0;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section--left .section__bg {
    margin-bottom: 0;
  }
}
.section--left .section__content {
  justify-content: flex-end;
}
.section--left .section__bg {
  background: url("../img/top-vision01.jpg") center/cover no-repeat;
  border-radius: 0 10px 10px 0;
}
.section--right .section__bg {
  right: 0;
  left: auto;
}
.section--right .section__content {
  justify-content: flex-start;
}
.section--right .section__bg {
  background: url("../img/top-vision02.jpg") center/cover no-repeat;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 768px) {
  .section__bg {
    position: relative;
    width: 100%;
    height: 200px;
  }
  .section__content {
    flex-direction: column;
    justify-content: center;
    padding-block: 24px;
  }
  .section__text-box {
    margin-top: 16px;
  }
}

.section-with-bgtext {
  position: relative;
}
.section-with-bgtext::before {
  content: "Vision, Strategy, Action.";
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 8vw, 10rem);
  color: rgba(19, 54, 108, 0.1);
  font-weight: bold;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  font-family: "Poppins", sans-serif;
}
.section-with-bgtext .content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.top-business {
  padding: 140px 0;
}
@media (max-width: 768px) {
  .top-business {
    padding: 70px 0;
  }
}
.top-business .l-two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}
@media (max-width: 768px) {
  .top-business .l-two-column {
    gap: 5%;
    display: block;
  }
}
.top-business .l-two-column > * {
  flex: 1 1 44%;
}
.top-business .l-two-column div:nth-of-type(2) {
  margin-top: 50px;
}
.top-business img {
  margin-bottom: 20px;
}
.top-business h2 {
  font-size: 1.8em;
  font-weight: normal;
}
.top-business h3 {
  font-size: 2.4em;
  margin-bottom: 10px;
}
.top-business p {
  margin-bottom: 20px;
}

.tit-en {
  font-size: 4.6em;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  margin-bottom: 30px;
}

.top-news {
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%);
  padding: 140px 0;
}
@media (max-width: 768px) {
  .top-news {
    padding: 70px 0;
  }
}
.top-news h2 {
  font-size: 1.8em;
  font-weight: normal;
}
.top-news p {
  margin-bottom: 15px;
}
.top-news .news-item {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.top-news .news-item .news-date {
  font-family: "Poppins", sans-serif;
  margin-right: 10px;
  font-size: 1.4em;
}
.top-news .news-item .news-category {
  background-color: #F2F2F2;
  padding: 2px 10px;
  font-size: 1.3em;
  border-radius: 5px;
}
.top-news .news-item .news-title {
  display: block;
  margin-top: 10px;
  font-size: 1.4em;
}
@media (max-width: 768px) {
  .top-news .l-two-column {
    display: block;
  }
}
.top-news .l-two-column div:nth-of-type(1) {
  flex: 0 0 250px;
}
@media (max-width: 768px) {
  .top-news .l-two-column div:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
.top-news .l-two-column div:nth-of-type(2) {
  flex: 1;
}

@media (max-width: 768px) {
  .l-two-column {
    display: block;
  }
}
.l-two-column div:nth-of-type(1) .c-responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .l-two-column div:nth-of-type(1) .c-responsive-img {
    height: 150px;
    object-position: 50% 25%;
    border-radius: 15px;
  }
}
.l-two-column div:nth-of-type(2) .c-responsive-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .l-two-column div:nth-of-type(2) .c-responsive-img {
    height: 150px;
    object-position: 50% 55%;
    border-radius: 15px;
  }
}

.business-consulting {
  padding: 140px 0;
}
@media (max-width: 768px) {
  .business-consulting {
    padding: 70px 0;
  }
}
.business-consulting h2 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .business-consulting h2 {
    margin-bottom: 30px;
  }
}
.business-consulting img {
  margin-bottom: 40px;
}
.business-consulting h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.business-consulting .greeting-text {
  font-size: 1.6rem;
}
.business-consulting .l-three-column {
  border-radius: 10px;
  background: #F9F9F9;
  padding: 50px 40px;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .business-consulting .l-three-column {
    padding: 50px 10px;
  }
}
.business-consulting .l-three-column div {
  text-align: center;
}
@media (max-width: 768px) {
  .business-consulting .l-three-column div {
    margin-bottom: 30px;
  }
}
.business-consulting .l-three-column div svg {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .business-consulting .l-three-column div svg {
    margin-bottom: 10px;
    width: 50%;
    height: 50%;
  }
}
.business-consulting .l-three-column div p {
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
}
.business-consulting h4 {
  font-size: 1.8rem;
  color: #13366C;
  font-weight: 700;
  margin-bottom: 15px;
}

.business-number {
  color: #13366C;
  opacity: 0.3;
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.business-media {
  padding: 140px 0;
  background-color: #F9F9F9;
}
@media (max-width: 768px) {
  .business-media {
    padding: 70px 0 20px 0;
  }
}
.business-media h2 {
  margin-bottom: 60px;
}
.business-media img {
  margin-bottom: 40px;
}
.business-media h3 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.business-media table tr :nth-child(3) {
  font-weight: bold;
}
.business-media .media {
  background-color: #fff;
  padding: 50px;
  border-radius: 10px;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .business-media .media {
    padding: 40px 30px;
    margin-bottom: 40px;
  }
}
.business-media .media img {
  margin-bottom: 20px;
}
.business-media .media p {
  margin-bottom: 20px;
  max-width: 680px;
}
.business-media .media a {
  margin-bottom: 20px;
}
.business-media .media h4 {
  color: #13366C;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.one-column-list li {
  font-size: 1.4rem;
  margin-bottom: 20px;
  line-height: 1;
  list-style-type: disc;
  margin-left: 15px;
}

.two-column-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 0;
}
.two-column-list li {
  width: calc(50% - 24px);
  font-size: 1.4rem;
  line-height: 1;
  list-style-type: disc;
  margin-left: 15px;
  margin-bottom: 5px;
}
@media (max-width: 768px) {
  .two-column-list li {
    width: 100%;
  }
}

.catch-copy {
  font-weight: bold;
  font-size: 3.6rem;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .catch-copy {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}

.comnapny-greeting {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .comnapny-greeting {
    padding: 70px 0;
  }
}

.member-profile {
  align-items: top;
  margin-bottom: 40px;
  padding: 50px;
  border-radius: 10px;
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%), #FFF;
}
@media (max-width: 768px) {
  .member-profile {
    padding: 40px 20px;
  }
}
.member-profile > div {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 700px) {
  .member-profile > div {
    display: block;
  }
}
.member-profile > div .member-profile__img {
  width: 255px;
  height: auto;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 10px;
}
.member-profile > div .member-profile__img img {
  margin-bottom: 0;
}
@media screen and (max-width: 700px) {
  .member-profile > div .member-profile__img img {
    display: inline-block;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .member-profile > div .member-profile__img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    height: 170px;
    width: 170px;
    object-position: 50% 55%;
    border-radius: 85px;
  }
}
@media screen and (max-width: 700px) {
  .member-profile > div .member-profile__img {
    text-align: center;
    width: 100%;
  }
}
.member-profile > div .member-profile__text {
  font-size: 1.4rem;
}
.member-profile > div .member-profile__text .position {
  font-size: 1.6rem;
}
.member-profile > div .member-profile__text .name {
  color: #13366C;
  font-size: 2.4rem;
  font-weight: 600;
  margin-right: 10px;
}
.member-profile > div .member-profile__text .name-en {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
}
.member-profile > div p {
  font-size: 1.4em;
}

.company-member {
  padding: 120px 0;
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%), #FFF;
}
@media (max-width: 768px) {
  .company-member {
    padding: 70px 0;
  }
}
.company-member .member-profile {
  background: #fff;
}
.company-member .member-profile > div {
  align-items: center;
  margin-bottom: 0;
}
.company-member .member-profile .member-profile__text {
  max-width: 380px;
}

.company-detail {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .company-detail {
    padding: 70px 0;
  }
}
.company-detail table tr td {
  min-width: 160px;
}
.company-detail table tr td a {
  text-decoration: underline;
}

.news-letest {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .news-letest {
    padding: 70px 0;
  }
}
.news-letest .news-date {
  font-family: "Poppins", sans-serif;
  margin-right: 10px;
  font-size: 1.4em;
}
.news-letest .news-category {
  background-color: #F2F2F2;
  padding: 2px 10px;
  font-size: 1.3em;
  border-radius: 5px;
}
.news-letest .news-title {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 10px;
}
.news-letest .news-text {
  line-height: 2;
  font-size: 1.6rem;
  line-height: 2.2;
}

.news-article {
  padding: 120px 0;
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%);
}
@media (max-width: 768px) {
  .news-article {
    padding: 70px 0;
  }
}
.news-article .news-item {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.news-article .news-item .news-date {
  font-family: "Poppins", sans-serif;
  margin-right: 10px;
  font-size: 1.4em;
}
.news-article .news-item .news-category {
  background-color: #F2F2F2;
  padding: 2px 10px;
  font-size: 1.3em;
  border-radius: 5px;
}
.news-article .news-item .news-title {
  display: block;
  margin-top: 10px;
  font-size: 1.4em;
}
.news-article .l-two-column div:nth-of-type(1) {
  flex: 0 0 250px;
}
.news-article .l-two-column div:nth-of-type(2) {
  flex: 1;
}

.pagination {
  display: flex;
  justify-content: flex-start;
  margin-top: 40px;
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 768px) {
  .pagination {
    justify-content: center;
  }
}
.pagination__list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
.pagination__link, .pagination__next {
  display: inline-block;
  padding: 0;
  color: #112732;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 0;
  transition: color 0.2s ease;
  color: #6D5099;
  width: 20px;
}
.pagination__link:hover, .pagination__next:hover {
  font-weight: bold;
}
.pagination__link--current {
  font-weight: bold;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pagination {
    font-size: 1.8rem;
  }
  .pagination__list {
    gap: 20px;
  }
  .pagination__list li:nth-child(n+5):not(:last-child) {
    display: none;
  }
}

.recruit-detail {
  padding: 120px 0;
}

.contact {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 70px 0;
  }
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.form__box {
  background: linear-gradient(105deg, #F1F7FB 12.62%, #ECE9EE 94.58%);
  padding: 70px 20px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
@media (max-width: 768px) {
  .form__box {
    padding: 50px 20px;
  }
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 700px;
}
@media (max-width: 768px) {
  .form__group {
    width: 100%;
  }
}
.form__label {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
}
.form__required {
  background-color: #F05353;
  color: #fff;
  font-size: 1.2rem;
  padding: 0 6px;
  border-radius: 4px;
}
.form__input, .form__textarea {
  border: 1px solid #C8B8D7;
  border-radius: 8px;
  font-size: 1.4rem;
  padding: 8px;
}
.form__input {
  height: 40px;
}
.form__textarea {
  min-height: 140px;
  resize: vertical;
}
.form__submit {
  margin-top: 40px;
  text-align: center;
}
.form__button {
  display: inline-block;
  padding: 10px 40px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #2E5FAA, #6F4F98);
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease, letter-spacing 0.3s ease;
  letter-spacing: 0;
}
.form__button:hover {
  background: linear-gradient(90deg, #6F4F98, #2E5FAA);
  letter-spacing: 0.05em;
}

.w-40 {
  width: 40%;
}
@media (max-width: 768px) {
  .w-40 {
    width: 60%;
  }
}

.w-50 {
  width: 50%;
}
@media (max-width: 768px) {
  .w-50 {
    width: 70%;
  }
}

.w-100 {
  width: 100%;
}