@charset "UTF-8";
html {
  font-size: 16px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.428;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.09em;
}

a {
  color: #2c0065;
  text-decoration: none;
  transition: 0.2s;
}

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

@media screen and (max-width: 1199px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-sp {
    display: none !important;
  }
}
.sticky {
  position: sticky;
}

.spacer {
  flex-grow: 1 !important;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
table:not([class]) {
  margin: 1em 0;
}
table td > *:first-child {
  margin-top: 0;
}
table td > *:last-child {
  margin-bottom: 0;
}

.youtube,
.gmap {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe,
.gmap iframe {
  width: 100%;
  height: 100%;
}

.scroll-prevent {
  overflow: hidden;
}

.has-theme-color-color {
  color: #2c0065;
}

.has-theme-color-background-color {
  background: #2c0065;
}

.has-theme-color-light-color {
  color: #dbd3e5;
}

.has-theme-color-light-background-color {
  background: #dbd3e5;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

input {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: middle;
}
input[type=text], input[type=number], input[type=password], input[type=tel], input[type=email] {
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  border: 1px solid #231815;
  border-radius: 3px;
  background: #fff;
  line-height: 1.428;
  color: inherit;
  font-size: inherit;
}
input[type=text].min, input[type=number].min, input[type=password].min, input[type=tel].min, input[type=email].min {
  width: 2em;
}
input[type=text].very-short, input[type=text].code-min, input[type=number].very-short, input[type=number].code-min, input[type=password].very-short, input[type=password].code-min, input[type=tel].very-short, input[type=tel].code-min, input[type=email].very-short, input[type=email].code-min {
  width: 4em;
}
input[type=text].code, input[type=text].month, input[type=number].code, input[type=number].month, input[type=password].code, input[type=password].month, input[type=tel].code, input[type=tel].month, input[type=email].code, input[type=email].month {
  width: 6em;
}
input[type=text].date, input[type=number].date, input[type=password].date, input[type=tel].date, input[type=email].date {
  width: 100px;
}
input[type=text].short, input[type=number].short, input[type=password].short, input[type=tel].short, input[type=email].short {
  width: 160px;
}
input[type=text].full, input[type=number].full, input[type=password].full, input[type=tel].full, input[type=email].full {
  width: 100%;
}
input[type=radio], input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}
input[type=radio] + span, input[type=checkbox] + span {
  padding-left: 26px;
  position: relative;
}
input[type=radio] + span:empty, input[type=checkbox] + span:empty {
  padding-left: 20px;
}
input[type=radio] + span::before, input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #ccc;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type=radio] + span {
  color: #999;
}
input[type=radio] + span::before {
  border: 1px solid #2c0065;
  border-radius: 50%;
}
input[type=radio]:checked + span {
  color: #2c0065;
}
input[type=radio]:checked + span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #2c0065;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox]:checked + span::before {
  border-color: #2c0065;
  background: #2c0065;
}
input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/check.svg") no-repeat center/contain;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.select-styled {
  display: inline-block;
  position: relative;
}
.select-styled::before {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  font-size: 1.125rem;
  line-height: 1;
  color: #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-overflow: "";
  background: none #fff;
  vertical-align: middle;
  line-height: 1.428;
  font-size: inherit;
  color: inherit;
  padding: 4px 30px 4px 10px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
}

textarea {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #231815;
  border-radius: 3px;
  padding: 10px 20px;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  min-height: calc(7.14em + 22px);
  background-color: #fff;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.428;
}

.has-caption {
  position: relative;
}
.has-caption .caption:not(:empty) {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.875rem;
  position: absolute;
  left: 0;
  bottom: 0;
}

.has-shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1254901961);
}

.has-border {
  border: 1px solid rgba(0, 0, 0, 0.1254901961);
}

.l-header {
  margin: 0;
  padding: 0;
  background: #2c0065 url("../img/bg_header.webp") repeat center top/1920px 140px;
  transition: 0.2s;
  position: relative;
  z-index: 1;
}
body.home .l-header {
  background: transparent none;
}
@media screen and (max-width: 1199px) {
  .l-header {
    background-size: 960px 70px;
  }
}
.l-header__content {
  width: 100%;
  height: 140px;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .l-header__content {
    height: 70px;
    padding: 0 10px;
  }
}
.l-header__logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .l-header__logo {
    padding-left: 4vw;
  }
}
.l-header__logo a {
  display: block;
  width: 280px;
}
@media screen and (max-width: 1199px) {
  .l-header__logo a {
    width: 180px;
  }
}
.l-header__actions {
  margin: 0 2vw 0 min(4vw, 60px);
  display: flex;
  gap: min(1.8vw, 27px);
}
@media screen and (min-width: 1540px) {
  .l-header__actions {
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  .l-header__actions {
    display: none;
  }
}
.l-header__lang {
  margin: 0;
  padding: 5px;
  border-radius: 100px;
  background: #fff;
  list-style: none;
  display: flex;
  display: none;
  gap: 0;
  align-items: center;
  font-family: Poppins, sans-serif;
  position: relative;
}
.l-header__lang::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.l-header__lang a {
  display: block;
  padding: 13.5px min(1.633vw, 24.5px);
  border-radius: 100px;
  line-height: 1;
  font-weight: 600;
  font-size: min(1.3vw, 23px);
  text-transform: uppercase;
}
.l-header__lang a[aria-current=true] {
  background: #00a641;
  color: #fff;
}
.l-header__contact a {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px min(2.666vw, 40px);
  border-radius: 100px;
  background: #fbb03b;
  line-height: 1;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: min(1.3vw, 23px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  min-height: 58px;
}
.l-header__contact a:hover {
  opacity: 0.5;
}
.l-header__contact a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.l-header__spacer {
  flex-grow: 1;
}
.l-header__nav {
  margin: 0;
}
.l-header__menu {
  font-family: Poppins, sans-serif;
}
@media screen and (min-width: 1200px) {
  .l-header__menu {
    margin: 0;
    display: flex;
  }
  .l-header__menu ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
  }
  .l-header__menu ul li {
    display: flex;
    gap: min(1.333vw, 20px);
    align-items: center;
    height: 100%;
  }
  .l-header__menu ul li::before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
  }
  .l-header__menu ul li:last-child::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
  }
  .l-header__menu ul li a {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-weight: 600;
    font-size: min(1.3vw, 21px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .l-header__menu ul li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: top left;
    transition: 0.2s;
  }
  .l-header__menu ul li a:hover::after {
    transform: scaleX(1);
  }
}
@media screen and (max-width: 1199px) {
  .l-header__menu {
    display: none;
  }
  .l-header__menu.is-active {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100svh;
    padding: 100px 20px 20px;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 99;
  }
  .l-header__menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .l-header__menu ul.items li {
    padding: 12px 0;
    border-bottom: 1px solid #333;
  }
  .l-header__menu ul.items li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    text-transform: uppercase;
  }
  .l-header__menu ul.items li a::after {
    content: "\e5e1";
    font-family: "Material Symbols Outlined";
  }
}
.l-header__hamburger {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 100;
  transition: opacity 0.25s ease;
}
.l-header__hamburger span {
  background-color: #fff;
  border: none;
  height: 2px;
  width: 28px;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.35s ease;
  cursor: pointer;
}
.l-header__hamburger span:nth-of-type(2) {
  top: 10px;
}
.l-header__hamburger span:nth-of-type(3) {
  top: 20px;
}
@media screen and (min-width: 1200px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger.is-active .top {
  transform: translateY(10px) translateX(0) rotate(45deg);
}
.l-header__hamburger.is-active .middle {
  opacity: 0;
}
.l-header__hamburger.is-active .bottom {
  transform: translateY(-10px) translateX(0) rotate(-45deg);
}

.l-main {
  width: 100%;
}
.l-main__heading {
  height: 300px;
  background: #000 var(--page-heading-image) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .l-main__heading {
    height: 150px;
  }
}
.l-main__heading:has(.l-main__headingNews) {
  min-height: 400px;
}
@media screen and (max-width: 1199px) {
  .l-main__heading:has(.l-main__headingNews) {
    height: auto;
    min-height: auto;
  }
}
.l-main__headingNews {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 1199px) {
  .l-main__headingNews {
    padding: 30px 25px;
  }
}
.l-main__title {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 2.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1199px) {
  .l-main__title {
    font-size: 1.875rem;
  }
}
.l-main__headingNews .l-main__title {
  margin: 30px 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.666;
}
@media screen and (max-width: 1199px) {
  .l-main__headingNews .l-main__title {
    font-size: 1.25rem;
  }
}
.l-main__content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0 80px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .l-main__content {
    padding: 30px 25px;
  }
}
.l-main__content::before {
  content: "";
  display: block;
  width: 100svw;
  height: 100%;
  background: url("../img/bg_content.webp") repeat top center/1920px 1139px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.l-main__content * {
  line-height: 1.7;
}
.l-main__content h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px 0 30px;
  padding: 0 0 6px;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.5625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .l-main__content h2 {
    margin: 40px 0 30px;
    font-size: 1.125rem;
  }
}
.l-main__content h2 strong {
  color: #2c0065;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 2.8125rem;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 1199px) {
  .l-main__content h2 strong {
    font-size: 2.25rem;
  }
}
.l-main__content h2::after {
  content: "";
  width: 100svw;
  height: 6px;
  background: #2c0065;
  position: absolute;
  right: 0;
  bottom: 0;
}
.l-main__content h2.simple {
  border-bottom: 1px solid #2c0065;
}
.l-main__content h2.simple::after {
  content: none;
}
.l-main__content h2.wp-block-heading:not(.simple) {
  transition: 0.5s;
  transform: translateY(40px);
  opacity: 0;
}
.l-main__content h2.wp-block-heading:not(.simple).is-animated {
  transform: translateY(0);
  opacity: 1;
}
.l-main__content h3 {
  margin: 60px 0 40px;
  font-weight: 500;
  font-size: 1.875rem;
}
@media screen and (max-width: 1199px) {
  .l-main__content h3 {
    margin: 30px 0 20px;
    font-size: 1.5rem;
  }
}
.l-main__content:not(.is-continued) h2:first-child,
.l-main__content:not(.is-continued) h3:first-child,
.l-main__content:not(.is-continued) h4:first-child {
  margin-top: 0;
}
.l-main__content p {
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.l-main__content a {
  text-decoration: underline;
}
.l-main__content nav.navigation.pagination {
  margin: 80px 0 0;
}
.l-main__content nav.navigation.pagination h2 {
  margin: 0;
  padding: 0;
}
.l-main__content nav.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #2c0065;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers {
  font-weight: 600;
  font-size: 1.875rem;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.next, .l-main__content nav.navigation.pagination .nav-links .page-numbers.prev {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.next::after, .l-main__content nav.navigation.pagination .nav-links .page-numbers.prev::after {
  content: "";
  display: block;
  width: 16px;
  height: 15px;
  background: url("../img/arrow_right_simple.svg") no-repeat center/contain;
}
.l-main__content nav.navigation.pagination .nav-links .page-numbers.prev::after {
  order: -1;
  transform: rotate(180deg);
}
.l-main__content .wp-block-image.size-full img {
  width: 100%;
  height: auto;
}
.l-main__content .wp-block-image :where(figcaption) {
  margin-top: 0;
  padding: 5px 10px;
  background: #f5f5f5;
  color: #666;
  text-align: right;
  font-size: 1rem;
}
.l-main__content .wp-block-image :where(figcaption) a {
  color: inherit;
  text-decoration: underline;
}
.l-main__content .wp-block-table.default table td {
  padding: 40px 0 20px;
  border: 0;
  border-bottom: 1px solid #2c0065;
  vertical-align: top;
  text-align: left;
  color: #2c0065;
  font-weight: 500;
  font-size: 1.125rem;
}
.l-main__content .wp-block-table.default table tr:first-child td {
  padding-top: 20px;
}
@media screen and (max-width: 1199px) {
  .l-main__content .wp-block-table.default table,
  .l-main__content .wp-block-table.default tbody,
  .l-main__content .wp-block-table.default tr,
  .l-main__content .wp-block-table.default td {
    display: block;
  }
  .l-main__content .wp-block-table.default td {
    padding: 20px 0 0 !important;
  }
  .l-main__content .wp-block-table.default td:first-child {
    font-weight: 600;
  }
  .l-main__content .wp-block-table.default td:last-child {
    padding: 10px 0 !important;
  }
  .l-main__content .wp-block-table.default td:not(:last-child) {
    border-bottom: 0;
  }
}
.l-main__content .wp-block-columns .wp-block-column > *:first-child {
  margin-top: 0;
}
.l-main__content .wp-block-columns .wp-block-column > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  .l-main__content .wp-block-buttons.is-layout-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 1199px) {
  .l-main__content .wp-block-button.default {
    width: 100%;
  }
}
.l-main__content .wp-block-button.default a {
  min-width: 400px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 14.5px 20px;
  border-radius: 100px;
  background: #2c0065;
  color: #fff;
  font-weight: 500;
  font-size: 1.875rem;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .l-main__content .wp-block-button.default a {
    min-width: auto;
    width: 100%;
    font-size: 5vw;
  }
}

.l-footer {
  padding: 30px 0;
  background: #2c0065;
  color: #fff;
}
.l-footer__content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1540px) {
  .l-footer__content {
    padding: 0;
  }
}
@media screen and (max-width: 1199px) {
  .l-footer__content {
    padding: 0 25px;
    flex-direction: column;
  }
}
.l-footer__company {
  width: -moz-fit-content;
  width: fit-content;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .l-footer__company {
    width: 100%;
  }
}
.l-footer__companyLogo img {
  width: min(19.6vw, 294px);
  height: auto;
}
@media screen and (max-width: 1199px) {
  .l-footer__companyLogo img {
    width: min(100%, 294px);
  }
}
.l-footer__companyAddress {
  font-weight: 500;
  font-size: min(1vw, 15px);
  line-height: 1.7;
}
@media screen and (max-width: 1199px) {
  .l-footer__companyAddress {
    font-size: min(3.5vw, 15px);
  }
}
.l-footer__nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: min(3.333vw, 50px);
}
@media screen and (max-width: 1199px) {
  .l-footer__nav {
    gap: 40px;
  }
}
.l-footer__navMain {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: min(2.333vw, 35px);
  justify-content: center;
}
@media screen and (max-width: 1199px) {
  .l-footer__navMain {
    margin-top: 40px;
    flex-direction: column;
    gap: 20px;
  }
}
.l-footer__navMain li a {
  display: flex;
  gap: min(0.666vw, 10px);
  align-items: center;
  color: #fff;
}
.l-footer__navMain li a::before {
  content: "";
  display: block;
  width: min(1.2vw, 18px);
  height: min(1.133vw, 17px);
  background: url("../img/arrow_footer_nav_main.svg") no-repeat center/contain;
}
@media screen and (max-width: 1199px) {
  .l-footer__navMain li a::before {
    width: min(4.8vw, 18px);
    height: min(4.533vw, 17px);
  }
}
.l-footer__navMain li a .en {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: min(1.466vw, 22px);
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  .l-footer__navMain li a .en {
    font-size: min(5.866vw, 22px);
  }
}
.l-footer__navMain li a .ja {
  display: none;
  font-weight: 600;
  font-size: min(1vw, 15px);
}
@media screen and (max-width: 1199px) {
  .l-footer__navMain li a .ja {
    font-size: min(4vw, 15px);
  }
}
.l-footer__navSub {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: min(1.333vw, 20px);
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .l-footer__navSub {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.l-footer__navSub li a {
  color: #fff;
  font-weight: 600;
  font-size: min(1vw, 15px);
}
@media screen and (max-width: 1199px) {
  .l-footer__navSub li a {
    font-size: min(4vw, 15px);
  }
}
@media screen and (min-width: 1200px) {
  .l-footer__navSub li:not(:first-child) {
    padding-left: min(1.333vw, 20px);
    border-left: 1px solid #fff;
  }
}
.l-footer__copyright {
  font-family: Poppins, sans-serif;
  font-weight: 500;
  font-size: min(0.8vw, 12px);
}
@media screen and (max-width: 1199px) {
  .l-footer__copyright {
    font-size: min(3.2vw, 12px);
  }
}

.c-btn {
  min-width: 400px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 14.5px 20px;
  border-radius: 100px;
  background: #2c0065;
  color: #fff;
  font-weight: 500;
  font-size: 1.875rem;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .c-btn {
    min-width: auto;
    width: 100%;
    font-size: 5vw;
  }
}
.c-btn.centering {
  margin: 0 auto;
}

.c-form {
  margin: 80px 0 0;
}
@media screen and (max-width: 1199px) {
  .c-form {
    margin: 40px 0 0;
  }
}
.c-form dl {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .c-form dl {
    flex-direction: column;
  }
}
.c-form dl dt {
  margin: 0;
  padding: 20px 0;
  width: 10em;
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 1199px) {
  .c-form dl dt {
    padding: 20px 0 0 0;
    width: 100%;
    font-size: 1.125rem;
  }
}
.c-form dl dt:first-child {
  border-top: 0;
}
.c-form dl dt:first-child + dd {
  border-top: 0;
}
.c-form dl dt.required::after {
  content: "※必須";
  display: inline-block;
  color: #f00;
  font-weight: 500;
  font-size: 0.9375rem;
}
.c-form dl dt p {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .c-form dl dt p {
    font-size: 1.125rem;
  }
}
.c-form dl dt p:first-child {
  margin-top: 0;
}
.c-form dl dt p:last-child {
  margin-bottom: 0;
}
.c-form dl dd {
  margin: 0;
  padding: 20px 0;
  width: calc(100% - 10em);
  font-weight: 500;
  font-size: 1.25rem;
}
@media screen and (max-width: 1199px) {
  .c-form dl dd {
    padding: 20px 0;
    width: 100%;
    border-top: 0;
    font-size: 1.125rem;
  }
}
.c-form dl dd p {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .c-form dl dd p {
    font-size: 1.125rem;
  }
}
.c-form dl dd p:first-child {
  margin-top: 0;
}
.c-form dl dd p:last-child {
  margin-bottom: 0;
}
.c-form__submit {
  margin-top: 40px;
  text-align: center;
}
.c-form__submit p {
  margin: 0;
}
.c-form__submit .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.c-form__submit input[type=submit] {
  display: inline-flex;
  width: 400px;
  height: 80px;
  border: 0;
  border-radius: 100px;
  background-color: #2c0065;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  font-size: 1.625rem;
}
@media screen and (max-width: 1199px) {
  .c-form__submit input[type=submit] {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 50%;
    height: auto;
    padding: 20px 5vw;
    font-size: 4vw;
  }
}
.c-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.c-form .wpcf7-not-valid-tip {
  color: #f00;
}

.c-history {
  margin: 40px 0 0;
  padding: 0;
  background: url("../img/our_goal_arrow.webp") no-repeat 80px bottom/25px 818px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 50px;
}
@media screen and (max-width: 1199px) {
  .c-history {
    background-image: none;
    flex-direction: column;
    row-gap: 10px;
  }
}
.c-history__year {
  margin: 0;
  padding: 0;
  width: 80px;
  color: #2c0065;
  font-weight: 600;
  font-size: 1.5625rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .c-history__year:not(:first-child) {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .c-history__year::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #2c0065;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
  }
}
.c-history__year.text {
  font-size: 1.25rem;
}
.c-history__content {
  margin: 0;
  padding: 20px;
  background: #dbd3e5;
  width: calc(100% - 160px);
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .c-history__content {
    width: 100%;
    flex-direction: column;
  }
}
.c-history__content.is-goal {
  background: #2c0065;
}
.c-history__contentImg {
  width: 300px;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 1199px) {
  .c-history__contentImg {
    width: 100%;
  }
}
.c-history__contentImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-history__contentTxt {
  width: calc(100% - 20px - 300px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .c-history__contentTxt {
    width: 100%;
  }
}
.is-goal .c-history__contentTxt {
  color: #fff;
}
.c-history__contentTxt > *:last-child {
  margin-bottom: 0;
}
.c-history__contentTxtYear {
  color: #2c0065;
  font-weight: 600;
  font-size: 0.9375rem;
}
.is-goal .c-history__contentTxtYear {
  color: #fff;
}
.c-history__contentTxtTitle {
  color: #2c0065;
  font-weight: 600;
  font-size: 1.4375rem;
}
.is-goal .c-history__contentTxtTitle {
  color: #fff;
}
.c-history__contentTxtGoal img {
  width: 214px;
  height: auto;
}

.c-memberListDetail {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
.c-memberListDetail__item {
  width: calc((100% - 20px) / 2);
  background: #dbd3e5;
}
@media screen and (max-width: 1199px) {
  .c-memberListDetail__item {
    width: 100%;
  }
}
.c-memberListDetail__imgWrapper {
  background: #d6d5ce;
  display: flex;
  justify-content: center;
}
.c-memberListDetail__img {
  height: 250px;
  width: auto;
  aspect-ratio: 3/4;
}
.c-memberListDetail__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-memberListDetail__content {
  padding: 20px;
}
.c-memberListDetail__heading {
  min-height: 95px;
}
.c-memberListDetail__name {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #2c0065;
  font-weight: 500;
  font-size: 1.5625rem;
}
.c-memberListDetail__degree {
  font-weight: 500;
  font-size: 1rem;
}
.c-memberListDetail__nameEn {
  color: #2c0065;
  font-weight: 500;
  font-size: 0.9375rem;
}
.c-memberListDetail__position {
  color: #2c0065;
  font-weight: 500;
  font-size: 0.9375rem;
}
.c-memberListDetail__body p {
  font-weight: 500;
  font-size: 0.9375rem;
}

.c-memberListSimple {
  margin: 40px 0 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
}
.c-memberListSimple__item {
  width: calc((100% - 40px) / 3);
  padding: 20px;
  background: #dbd3e5;
}
@media screen and (max-width: 1199px) {
  .c-memberListSimple__item {
    width: 100%;
  }
}
.c-memberListSimple__name {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #2c0065;
  font-weight: 500;
  font-size: 1.5625rem;
}
.c-memberListSimple__position {
  color: #2c0065;
  font-weight: 500;
  font-size: 1rem;
}
.c-memberListSimple__nameEn {
  color: #2c0065;
  font-weight: 500;
  font-size: 0.9375rem;
}
.c-memberListSimple__body p {
  font-weight: 500;
  font-size: 0.9375rem;
}

.c-occupationList {
  margin: 80px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .c-occupationList {
    flex-direction: column;
    align-items: stretch;
  }
}
.c-occupationList__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc((100% - 40px) / 3);
  padding: 10px 20px;
  border-radius: 10px;
  background: #2c0065;
  text-align: center;
  color: #fff;
  text-decoration: none !important;
}
@media screen and (max-width: 1199px) {
  .c-occupationList__item {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    width: 100%;
    border-radius: 8px;
  }
}
.c-occupationList__title {
  font-weight: 500;
  font-size: 1.125rem;
}
.c-occupationList__titleSub {
  font-weight: 500;
  font-size: 0.875rem;
}

.c-occupationDetail {
  margin: 80px 0 0;
}
.c-occupationDetail__item {
  border-bottom: 1px solid #2c0065;
}
.c-occupationDetail__item h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 10px 40px;
  border-radius: 10px;
  background: #2c0065;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .c-occupationDetail__item h3 {
    padding: 10px 20px;
    border-radius: 8px;
  }
}
.c-occupationDetail__item h3:not(::first-child) {
  margin-top: 40px;
}
.c-occupationDetail__title {
  font-size: 1.5625rem;
}
@media screen and (max-width: 1199px) {
  .c-occupationDetail__title {
    font-size: 1.5rem;
  }
}
.c-occupationDetail__titleSub {
  font-size: 1.25rem;
}
@media screen and (max-width: 1199px) {
  .c-occupationDetail__titleSub {
    font-size: 1.125rem;
  }
}
.c-occupationDetail__wrapper {
  display: flex;
  padding: 40px 0;
}
@media screen and (max-width: 1199px) {
  .c-occupationDetail__wrapper {
    flex-direction: column;
  }
}
.c-occupationDetail__heading {
  width: 25%;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 1199px) {
  .c-occupationDetail__heading {
    width: 100%;
  }
}
.c-occupationDetail__body {
  width: 75%;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 1199px) {
  .c-occupationDetail__body {
    width: 100%;
  }
}
.c-occupationDetail__body * {
  line-height: 2;
}
.c-occupationDetail__body > *:first-child {
  margin-top: 0;
}
.c-occupationDetail__body > *:last-child {
  margin-bottom: 0;
}
.c-occupationDetail__body h4 {
  margin-bottom: 0;
  color: #2c0065;
  font-weight: 500;
  font-size: 1.125rem;
}
.c-occupationDetail__body h4 + * {
  margin-top: 0;
}

.p-homeFirst {
  color: #fff;
  position: relative;
}
.p-homeFirst::before {
  content: "";
  display: block;
  width: 100svw;
  height: calc(100% + 140px);
  background: #2c0065 url("../img/bg_header_large.webp") repeat top center/1920px 1020px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .p-homeFirst::before {
    height: calc(100% + 70px);
    background-size: 960px 510px;
  }
}
.p-homeFirst__content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 0 80px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1200px) and (max-height: 850px) {
  .p-homeFirst__content {
    padding: 2.352vh 0 9.411vh;
  }
}
@media screen and (max-width: 1199px) {
  .p-homeFirst__content {
    padding: 20px 3vw 80px;
    flex-direction: column;
  }
}
.p-homeFirst__heading {
  width: 50%;
  padding-left: 4vw;
  padding-bottom: 5vw;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1199px) {
  .p-homeFirst__heading {
    width: 100%;
    padding-bottom: 40px;
  }
}
.p-homeFirst__heading svg {
  height: 5vw;
  overflow: visible;
}
@media screen and (max-width: 1199px) {
  .p-homeFirst__heading svg {
    height: 16vw;
  }
}
.p-homeFirst .s01 {
  font-weight: 700;
  font-size: 3.125rem;
  text-anchor: start;
  dominant-baseline: hanging;
  fill: transparent;
}
@media screen and (max-width: 1199px) {
  .p-homeFirst .s01 {
    font-size: 10vw;
  }
}
.p-homeFirst .s01.is-animated {
  animation-name: kf_s01;
  animation-duration: 2s;
  stroke-dasharray: 500;
  stroke: #fff;
  animation-fill-mode: forwards;
}
@keyframes kf_s01 {
  0% {
    stroke-dashoffset: 500;
    stroke-width: 1px;
    fill: transparent;
  }
  40% {
    fill: transparent;
  }
  60% {
    stroke-width: 1px;
  }
  90% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-width: 0;
    fill: #fff;
  }
}
.p-homeFirst__body {
  width: 50%;
  padding-left: 5vw;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 2;
}
@media screen and (min-width: 1200px) and (max-height: 850px) {
  .p-homeFirst__body {
    font-size: 2vh;
  }
}
@media screen and (max-width: 1199px) {
  .p-homeFirst__body {
    width: 100%;
    font-size: 3.1vw;
  }
}
.p-homeFirst__body > *:first-child {
  margin-top: 0;
}
.p-homeFirst__body > *:last-child {
  margin-bottom: 0;
}
.p-homeFirst__body p {
  margin: 2em 0;
  transition: 1s;
  transform: translateY(80px);
  opacity: 0;
}
@media screen and (min-width: 1200px) and (max-height: 850px) {
  .p-homeFirst__body p {
    margin: 3.827vh 0;
  }
}
.p-homeFirst__body p.is-animated {
  transform: translateY(0);
  opacity: 1;
}

.p-homeNews {
  margin: 80px 0;
}
@media screen and (max-width: 1199px) {
  .p-homeNews {
    margin: 40px 0;
  }
}
.p-homeNews h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
}
.p-homeNews__list {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1199px) {
  .p-homeNews__list {
    padding: 0 25px;
  }
}
.p-homeNews__item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #46466b;
}
@media screen and (max-width: 1199px) {
  .p-homeNews__item {
    flex-wrap: wrap;
  }
}
.p-homeNews__itemCategories {
  flex-grow: 0;
  flex-shrink: 0;
  width: 130px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-homeNews__itemCategory {
  width: 130px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #2c0065;
  color: #fff;
  font-size: 0.875rem;
}
.p-homeNews__itemDate {
  flex-grow: 0;
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.125rem;
}
@media screen and (max-width: 1199px) {
  .p-homeNews__itemDate {
    width: calc(100% - 20px - 130px);
  }
}
.p-homeNews__itemLink {
  width: 100%;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none !important;
}
.p-homeNews__more {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1199px) {
  .p-homeNews__more {
    padding: 0 25px;
  }
}
.p-homeNews__more a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none !important;
}
.p-homeNews__more a::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url("../img/arrow_right_light.svg") no-repeat center/contain;
}

.p-homeContents {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #2c0065 url("../img/bg_header_large.webp") repeat top center/1920px 1020px;
  color: #fff;
}
@media screen and (max-width: 1199px) {
  .p-homeContents {
    padding: 50px 25px;
    background-size: 960px 510px;
    gap: 50px;
  }
}
.p-homeContents__link {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .p-homeContents__link {
    flex-direction: column;
    gap: 50px;
  }
}
.p-homeContents__link:hover .p-homeContents__img::before {
  transform: scale(1.1);
}
.p-homeContents__link:hover .p-homeContents__item {
  opacity: 0.5;
}
@media screen and (min-width: 1200px) {
  .p-homeContents__link:nth-child(2n) .p-homeContents__item {
    order: -1;
  }
}
.p-homeContents__img {
  width: calc((100% - 40px) / 2);
  height: 400px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1199px) {
  .p-homeContents__img {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-homeContents__img::after {
    content: attr(data-title);
    display: inline-block;
    color: #fff;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 2.1875rem;
    text-decoration: none !important;
    text-transform: uppercase;
  }
}
.p-homeContents__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.5s;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-homeContents__img[data-title=technology]::before {
  background-image: url("../img/bg_contents_technology.webp");
}
.p-homeContents__img[data-title=recruit]::before {
  background-image: url("../img/bg_contents_recruit.webp");
}
.p-homeContents__img[data-title=company]::before {
  background-image: url("../img/bg_contents_company.webp");
}
.p-homeContents__img[data-title=contact]::before {
  background-image: url("../img/bg_contents_contact.webp");
}
.p-homeContents__item {
  width: calc((100% - 40px) / 2);
  height: 400px;
  padding: 0 min(5.5vw, 80px);
  background: #49217d;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.2s;
}
@media screen and (max-width: 1199px) {
  .p-homeContents__item {
    width: 100%;
    height: auto;
    padding: 20px;
    position: relative;
  }
  .p-homeContents__item::after {
    content: "";
    display: block;
    width: 40px;
    height: 20px;
    background: url("../img/arrow_down_home.svg") no-repeat center/contain;
    position: absolute;
    left: 50%;
    top: -35px;
    transform: translateX(-50%);
    z-index: 1;
  }
}
.p-homeContents__item h2 {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 2.8125rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1199px) {
  .p-homeContents__item h2 {
    display: none;
  }
}
.p-homeContents__item p {
  margin: 20px 0 0;
  padding: 0;
  font-weight: 500;
  font-size: min(1.2vw, 18px);
  line-height: 2;
}
@media screen and (max-width: 1199px) {
  .p-homeContents__item p {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 1200px) {
  .p-homeContents .is-left-pc,
  .p-homeContents .is-right-pc {
    position: relative;
  }
  .p-homeContents .is-left-pc::after,
  .p-homeContents .is-right-pc::after {
    content: "";
    display: block;
    width: 30px;
    height: 60px;
    background: url("../img/arrow_right_home.svg") no-repeat center/contain;
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .p-homeContents .is-right-pc::after {
    right: auto;
    left: -35px;
  }
}

.p-newsList {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-newsList__item {
  margin: 0;
  padding: 40px 0;
  border-bottom: 1px solid #000;
}
.p-newsList__item:first-child {
  padding-top: 0;
}
.p-newsList__itemMeta {
  display: flex;
  align-items: center;
  gap: 40px;
}
.p-newsList__itemMetaDate {
  font-weight: 500;
  font-size: 1.5625rem;
}
.p-newsList__itemMetaCategories {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-newsList__itemMetaCategory {
  width: 130px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #2c0065;
  color: #fff;
  font-size: 0.875rem;
}
.p-newsList__itemLink {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-weight: 500;
  font-size: 1.25rem;
  text-decoration: none !important;
}
.p-newsList__itemLink::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/arrow_right.svg") no-repeat center/contain;
  flex-grow: 0;
  flex-shrink: 0;
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 40px;
}
.p-news__metaDate {
  color: #fff;
  font-weight: 500;
  font-size: 1.875rem;
}
.p-news__metaCategories {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-news__metaCategory {
  width: 130px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #2c0065;
  color: #fff;
  font-size: 1.0625rem;
}
.p-news__share {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-news__share a {
  display: block;
  width: 110px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-news__shareX {
  background-image: url("../img/btn_share_x.svg");
}
.p-news__shareFb {
  background-image: url("../img/btn_share_fb.svg");
}
.p-news__back {
  margin: 80px 0 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: none !important;
}
.p-news__back::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url("../img/arrow_right_light.svg") no-repeat center/contain;
}/*# sourceMappingURL=style.css.map */