@charset "UTF-8";
:root {
  --color-bg: #f7f7f7;
  --color-border: #d6d9e0;
  --color-danger: #dc3545;
  --color-info: #17a2b8;
  --color-primary: #002f7b;
  --color-primary-hover: hsl(215, 100%, 20%);
  --color-secondary: #ed6d47;
  --color-secondary-hover: hsl(13, 100%, 60%);
  --color-success: #28a745;
  --color-text: #000;
  --color-text-muted: #777c85;
  --color-warning: #ffc107;
  --font-family-base: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", Meiryo, sans-serif;
  --font-family-mono: "Courier New", monospace;
  --line-height-base: 1.6;
  --line-height-heading: 1.2;
  --spacing-lg: 1.5rem;
  --spacing-md: 1rem;
  --spacing-sm: .5rem;
  --spacing-unit: 1rem;
  --spacing-xl: 2rem;
  --spacing-xs: .25rem;
  --transition-base: all .3s ease;
  --transition-fast: all .15s ease;
  --transition-slow: all .5s ease;
  --width-pc: 1320px;
  --width-sp: 767px;
}

.pageHeader {
  padding: 18px 0;
  height: 255px;
  background-color: var(--color-primary);
  background-image: url(../img/common/bg_pageHeader.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
@media (max-width: 767px) {
  .pageHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 18px;
    padding-bottom: 20px;
    min-height: 335px;
    height: auto;
    background-image: url(../img/common/bg_pageHeader_sp.png);
  }
}
.container__inner .pageHeader {
  margin-right: calc(50% - var(--vw, 1vw) * 50);
  margin-left: calc(50% - var(--vw, 1vw) * 50);
}
.pageHeader .breadcrumbNew {
  padding: 0 32px;
}
@media (max-width: 767px) {
  .pageHeader .breadcrumbNew {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .pageHeader .wrap {
    display: contents;
  }
}
.pageHeader-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 52px 48px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 56px;
}
@media (max-width: 767px) {
  .pageHeader-contents {
    display: contents;
  }
}
.pageHeader-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .pageHeader-title {
    margin-top: 48px;
    padding: 0 20px;
  }
}
.pageHeader-title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  line-height: 1;
}
.pageHeader-title-sub::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.pageHeader-title-main {
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 6rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .pageHeader-title-main {
    font-size: 4rem;
  }
}
.pageHeader-body {
  max-width: 587px;
}
@media (max-width: 767px) {
  .pageHeader-body {
    margin-top: auto;
    padding: 0 20px;
    max-width: 100%;
  }
}
.pageHeader-body-text {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .pageHeader-body-text {
    font-size: 1.6rem;
  }
}

.breadcrumbNew {
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1;
}
.breadcrumbNew-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
}
.breadcrumbNew-item:not(:first-child) {
  margin-left: 12px;
}
.breadcrumbNew-item:not(:first-child)::before {
  content: "ー";
  color: var(--color-text-muted);
}
.breadcrumbNew-item:last-child {
  color: var(--color-text-muted);
}
:last-child > .breadcrumbNew-link {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 767px) {
  :last-child > .breadcrumbNew-link {
    max-width: calc(100vw - 220px);
  }
}

.pageContents {
  padding: 64px 0 200px;
}
@media (max-width: 767px) {
  .pageContents {
    padding: 64px 0 96px;
  }
}
.pageContents-section + .pageContents-section {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .pageContents-section + .pageContents-section {
    margin-top: 96px;
  }
}
.pageContents-section-body {
  margin-top: 40px;
  margin-bottom: 80px;
}
.pageContents-section-item {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .pageContents-section-item {
    margin-top: 48px;
  }
}
@media (max-width: 767px) {
  .pageContents-section-item-img {
    margin: 0 auto;
    max-width: 480px;
  }
}
.pageContents-section-title {
  position: relative;
  padding: 12px 16px 12px 32px;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .pageContents-section-title {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}
.pageContents-section-title::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 16px;
  margin: auto;
  width: 4px;
  height: 0.5em;
  background-color: var(--color-secondary);
}
@media (max-width: 767px) {
  .pageContents-section-title::before {
    width: 2px;
  }
}
.pageContents-section-subTitle {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .pageContents-section-subTitle {
    margin-bottom: 24px;
    font-size: 1.8rem;
  }
}
.pageContents-section-subTitle::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: var(--color-primary);
}
.pageContents-section-text {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .pageContents-section-text {
    font-size: 1.4rem;
  }
}
.pageContents-section-note {
  margin-top: 24px;
  font-weight: 500;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .pageContents-section-note {
    margin-top: 12px;
    font-size: 1.2rem;
  }
}
.pageContents-section-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pageContents-section-note a:hover {
  text-decoration: none;
}
.pageContents-relation-list {
  display: grid;
  gap: 12px 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .pageContents-relation-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pageContents-relation-list-item-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 12px 16px 12px 12px;
  background-color: var(--color-bg);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .pageContents-relation-list-item-link {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
    padding: 8px 12px 8px 8px;
  }
}
.pageContents-relation-list-item-link::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: block;
  margin: auto;
  width: 28px;
  height: 28px;
  background-image: url(../img/common/icn_arrow_horizontal_short.svg);
  background-position: center;
  background-size: 13px auto;
  background-repeat: no-repeat;
}
.pageContents-relation-list-item-link:hover {
  opacity: 0.7;
}
.pageContents-relation-list-item-img {
  width: 200px;
}
@media (max-width: 767px) {
  .pageContents-relation-list-item-img {
    width: 110px;
  }
}
.pageContents-relation-list-item-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.pageContents-relation-list-item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 0;
}
@media (max-width: 767px) {
  .pageContents-relation-list-item-body {
    padding: 0;
  }
}
.pageContents-relation-list-item-body-title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .pageContents-relation-list-item-body-title {
    font-size: 1.4rem;
  }
}

.button-01-primary {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 60px 8px 12px;
  width: 189px;
  height: 48px;
  border: none;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), var(--color-primary);
  background: linear-gradient(to right, #fff, #fff), var(--color-primary);
  background-position: left top, left top;
  background-size: 0 100%, 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: background-size 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.button-01-primary::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 48px;
  height: 32px;
  border-left: 1px solid #6685b7;
  background-image: url(../img/common/icn_arrow_horizontal_short_white.svg);
  background-position: center;
  background-size: 13px auto;
  background-repeat: no-repeat;
  -webkit-transition: border-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: border-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: filter 0.4s ease, border-color 0.4s ease;
  transition: filter 0.4s ease, border-color 0.4s ease, -webkit-filter 0.4s ease;
}
.button-01-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button-01-primary:hover:not(:disabled) {
  border-color: var(--color-primary);
  background-size: 100% 100%, 100% 100%;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
}
.button-01-primary:hover:not(:disabled)::after {
  border-color: var(--color-primary);
  background-image: url(../img/common/icn_arrow_horizontal_short.svg);
}
.button-01-back {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 12px 8px 60px;
  width: 189px;
  height: 48px;
  border: none;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), var(--color-primary);
  background: linear-gradient(to right, #fff, #fff), var(--color-primary);
  background-position: left top, left top;
  background-size: 0 100%, 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: background-size 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.button-01-back::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 48px;
  height: 32px;
  border-left: 1px solid #6685b7;
  background-image: url(../img/common/icn_arrow_horizontal_short_white.svg);
  background-position: center;
  background-size: 13px auto;
  background-repeat: no-repeat;
  -webkit-transition: border-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: border-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: filter 0.4s ease, border-color 0.4s ease;
  transition: filter 0.4s ease, border-color 0.4s ease, -webkit-filter 0.4s ease;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.button-01-back:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button-01-back:hover:not(:disabled) {
  border-color: var(--color-primary);
  background-size: 100% 100%, 100% 100%;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
}
.button-01-back:hover:not(:disabled)::after {
  border-color: var(--color-primary);
  background-image: url(../img/common/icn_arrow_horizontal_short.svg);
}
.button-01-more {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 60px 8px 12px;
  width: 189px;
  height: 48px;
  border: none;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff)), var(--color-primary);
  background: linear-gradient(to right, #fff, #fff), var(--color-primary);
  background-position: left top, left top;
  background-size: 0 100%, 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.4rem;
  cursor: pointer;
  -webkit-transition: background-size 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  transition: background-size 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.button-01-more::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 48px;
  height: 32px;
  border-left: 1px solid #6685b7;
  background-image: url(../img/common/icn_plus_white.svg);
  background-position: center;
  background-size: 20px auto;
  background-repeat: no-repeat;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.button-01-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.button-01-more:hover:not(:disabled) {
  border-color: var(--color-primary);
  background-size: 100% 100%, 100% 100%;
  -webkit-box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
}
.button-01-more:hover:not(:disabled)::after {
  border-color: var(--color-primary);
  background-image: url(../img/common/icn_plus.svg);
}
.button-01-mail {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 72px 8px 24px;
  width: 315px;
  height: 72px;
  border: none;
  background: #fff;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .button-01-mail {
    padding: 8px 56px 8px 16px;
    width: 100%;
    height: 48px;
    font-size: 1.6rem;
  }
}
.button-01-mail::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  display: block;
  margin: auto;
  width: 52px;
  height: 32px;
  border-left: 1px solid var(--color-border);
  background-image: url(../img/common/icn_mail.svg);
  background-position: center;
  background-size: 24px auto;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .button-01-mail::after {
    right: 0;
    width: 48px;
    height: 24px;
    background-size: 20px auto;
  }
}
.button-01-mail:hover:not(:disabled) {
  opacity: 0.7;
}

.cardProject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  height: 100%;
}
@container (min-width: 600px) {}
.cardProject-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.cardProject-link:hover {
  opacity: 0.7;
}
.cardProject-link:hover .cardProject-image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.cardProject-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  background-image: url(../img/common/icn_arrow_horizontal_short_white.svg);
  background-position: center;
  background-size: 13px auto;
  background-repeat: no-repeat;
}
.cardProject-image {
  overflow: hidden;
  margin-bottom: 16px;
  width: 100%;
  height: auto;
  aspect-ratio: 400/231;
}
.cardProject-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.cardProject-date {
  margin-bottom: 12px;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  line-height: 1;
}
.cardProject-title {
  font-weight: bold;
  font-size: 1.8rem;
}
.cardProject-text {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.cardProject-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-right: 36px;
  min-height: 28px;
}
.cardProject-tags-item {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}

.bottomContact {
  padding: 80px 0;
  background-color: var(--color-primary);
  color: #fff;
}
@media (max-width: 767px) {
  .bottomContact {
    padding: 40px 0;
  }
}
.container__inner .bottomContact {
  margin-right: calc(50% - var(--vw, 1vw) * 50);
  margin-left: calc(50% - var(--vw, 1vw) * 50);
}
.bottomContact-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.bottomContact-title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .bottomContact-title-sub {
    font-size: 1.2rem;
  }
}
.bottomContact-title-sub::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}
@media (max-width: 767px) {
  .bottomContact-title-sub::before {
    width: 4px;
    height: 4px;
  }
}
.bottomContact-title-main {
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .bottomContact-title-main {
    font-size: 2.4rem;
  }
}
.bottomContact-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .bottomContact-contents {
    gap: 24px;
  }
}
.bottomContact-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-right: 500px;
}
@media (max-width: 960px) {
  .bottomContact-header {
    padding-right: 0;
  }
}
.bottomContact-button {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 960px) {
  .bottomContact-button {
    position: static;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    margin-top: 12px;
  }
}
.bottomContact-button-title {
  font-weight: 500;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .bottomContact-button-title {
    font-size: 1.4rem;
  }
}
@media (max-width: 960px) {
  .bottomContact-button-body {
    width: 100%;
  }
}
.bottomContact-lead {
  margin-top: 24px;
  font-weight: 500;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .bottomContact-lead {
    margin-top: 0;
    font-size: 1.6rem;
  }
}
.bottomContact-body {
  padding-top: 40px;
  border-top: 1px solid #021534;
}
@media (max-width: 767px) {
  .bottomContact-body {
    padding-top: 24px;
  }
}
.bottomContact-note {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .bottomContact-note {
    font-size: 1.4rem;
  }
}
.bottomContact-note a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bottomContact-note a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(../img/common/icn_blank_white.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.bottomContact-note a:hover {
  text-decoration: none;
}
.bottomContact .homeSection-title-sub {
  color: #fff;
}

.otherContents {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  padding: 40px;
  background-color: var(--color-bg);
}
@media (max-width: 767px) {
  .otherContents {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
    padding: 20px;
  }
}
.container__inner .otherContents {
  margin-right: calc(50% - var(--vw, 1vw) * 50);
  margin-left: calc(50% - var(--vw, 1vw) * 50);
}
.otherContents-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  padding: 40px;
  height: 367px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .otherContents-item {
    gap: 48px;
    padding: 20px;
    height: auto;
  }
}
.otherContents-item:hover {
  opacity: 0.7;
}
.otherContents-item::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: block;
  width: 48px;
  height: 48px;
  background-color: #fff;
  background-image: url(../img/common/icn_arrow_horizontal_short.svg);
  background-position: center;
  background-size: 16px auto;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .otherContents-item::after {
    content: none;
  }
}
.otherContents-item.strategy {
  background-image: url(../img/common/bg_otherContents_strategy.png);
}
.otherContents-item.vision {
  background-image: url(../img/common/bg_otherContents_vision.png);
}
.otherContents-item.project {
  background-image: url(../img/common/bg_otherContents_project.png);
}
.otherContents-item.message {
  background-image: url(../img/common/bg_otherContents_message.png);
}
.otherContents-item-title {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.otherContents-item-title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .otherContents-item-title-sub {
    font-size: 1.2rem;
  }
}
.otherContents-item-title-sub::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}
@media (max-width: 767px) {
  .otherContents-item-title-sub::before {
    width: 4px;
    height: 4px;
  }
}
.otherContents-item-title-main {
  position: relative;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .otherContents-item-title-main {
    font-size: 2.4rem;
  }
  .otherContents-item-title-main::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    margin: auto;
    width: 20px;
    height: 20px;
    background-color: #fff;
    background-image: url(../img/common/icn_arrow_horizontal_short.svg);
    background-position: center;
    background-size: 8px auto;
    background-repeat: no-repeat;
  }
}
.otherContents-item-text {
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .otherContents-item-text {
    font-size: 1.4rem;
  }
}

.tableOfContents {
  margin-top: 40px;
  padding: 40px 32px 12px;
  background-color: var(--color-bg);
}
@media (max-width: 767px) {
  .tableOfContents {
    padding: 24px 20px 20px;
  }
}
.tableOfContents-title {
  margin-bottom: 4px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .tableOfContents-title {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}
.tableOfContents-list {
  margin: 0;
  padding: 0;
}
.tableOfContents-list-item {
  position: relative;
  padding: 20px 0;
  padding-left: 48px;
  list-style: none;
  counter-increment: list;
  font-weight: 500;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .tableOfContents-list-item {
    padding: 12px 0;
    padding-left: 32px;
    font-size: 1.6rem;
  }
}
.tableOfContents-list-item + .tableOfContents-list-item {
  border-top: 1px solid var(--color-border);
}
.tableOfContents-list-item::before {
  content: "0" counter(list);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  width: 32px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: Inter, sans-serif;
}
@media (max-width: 767px) {
  .tableOfContents-list-item::before {
    width: 24px;
    font-size: 1.4rem;
  }
}

.subNav {
  position: fixed;
  right: 0;
  bottom: 100px;
  z-index: 10;
  overflow: hidden;
  margin-left: auto;
  padding-bottom: 16px;
  width: 146px;
  pointer-events: none;
}
@media (max-width: 767px) {
  .subNav {
    display: none;
  }
}
.subNav-button {
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: right 0.3s, opacity 0.3s;
  transition: right 0.3s, opacity 0.3s;
  pointer-events: all;
}
@media (min-width: 768px) {
  .subNav-button:hover, .subNav:has(.subNav-list:hover) .subNav-button {
    right: 60px;
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .subNav-button {
    display: none;
  }
}
.subNav-button-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 24px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
.subNav-button-icon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  height: 3px;
  background-color: #fff;
}
.subNav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  background-color: var(--color-primary);
  color: #fff;
  list-style: none;
  white-space: nowrap;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  pointer-events: all;
}
@media (min-width: 768px) {
  .subNav-list {
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8px 20px 24px 20px;
    width: 146px;
    border-radius: 16px;
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s, padding 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, visibility 0.3s, padding 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s, padding 0.3s;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s, padding 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(40px) translateY(16px);
            transform: translateX(40px) translateY(16px);
  }
  .subNav:has(.subNav-button:hover) .subNav-list, .subNav:has(.subNav-list:hover) .subNav-list {
    visibility: visible;
    padding: 8px 20px;
    opacity: 1;
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@media (max-width: 767px) {
  .subNav-list {
    overflow-x: auto;
    gap: 4px;
    padding: 12px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .subNav-list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .subNav-list-item:first-child {
    margin-left: 12px;
  }
}
.subNav-list-item + .subNav-list-item {
  border-top: 1px solid #021534;
}
@media (max-width: 767px) {
  .subNav-list-item + .subNav-list-item {
    border: none;
  }
}
.subNav-list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .subNav-list-item-link {
    padding: 12px 16px;
    background-color: #002663;
    font-size: 1.4rem;
  }
}
.subNav-list-item-link::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: url(../img/common/icn_arrow_horizontal_short_white.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .subNav-list-item-link::after {
    content: none;
  }
}

.homeSection-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.homeSection-title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  line-height: 1;
}
.homeSection-title-sub::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.homeSection-title-main {
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}

.homeMv {
  position: relative;
  height: auto;
}
@media (min-width: 961px) {
  .homeMv .wrap {
    max-width: 86.6666666667vw;
  }
}
.homeMv-img img {
  display: block;
  width: 100%;
  aspect-ratio: 72/25;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
@media (max-width: 767px) {
  .homeMv-img img {
    height: 500px;
  }
}
.homeMv-img::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.3)));
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}
.homeMv-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}
.homeMv-img[class*=homeMv-overlay-]::before {
  content: "";
}
.homeMv-img.homeMv-overlay-1::after {
  background-image: url(../img/home/overlay_homeMv_01.svg);
}
@media (max-width: 767px) {
  .homeMv-img.homeMv-overlay-1::after {
    background-image: url(../img/home/overlay_homeMv_01_sp.svg);
  }
}
.homeMv-img.homeMv-overlay-2::after {
  background-image: url(../img/home/overlay_homeMv_02.svg);
}
@media (max-width: 767px) {
  .homeMv-img.homeMv-overlay-2::after {
    background-image: url(../img/home/overlay_homeMv_02_sp.svg);
  }
}
.homeMv-img.homeMv-overlay-3::after {
  background-image: url(../img/home/overlay_homeMv_03.svg);
}
@media (max-width: 767px) {
  .homeMv-img.homeMv-overlay-3::after {
    background-image: url(../img/home/overlay_homeMv_03_sp.svg);
  }
}
.homeMv-movie video {
  display: block;
  width: 100%;
  aspect-ratio: 72/25;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  pointer-events: none;
}
@media (max-width: 767px) {
  .homeMv-movie video {
    height: 500px;
  }
}
.homeMv-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  overflow: hidden;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 5px;
}
@media (max-width: 767px) {
  .homeMv-icon {
    right: 12px;
    bottom: 12px;
    width: 64px;
    border-radius: 3px;
  }
}
.homeMv-contents {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
}
@media (max-width: 767px) {
  .homeMv-contents {
    top: 40px;
    bottom: auto;
  }
}
.homeMv-contents.js-homeMv-contents-video .js-homeMv-ttl-video, .homeMv-contents.js-homeMv-contents-video .js-homeMv-lead-video {
  opacity: 0;
}
.homeMv-contents.js-homeMv-contents-video.animated .js-homeMv-ttl-video {
  -webkit-animation: fadeIn 1s 0s forwards;
          animation: fadeIn 1s 0s forwards;
}
.homeMv-contents.js-homeMv-contents-video.animated .js-homeMv-lead-video {
  -webkit-animation: fadeIn 1s 0.1s forwards;
          animation: fadeIn 1s 0.1s forwards;
}
.homeMv-contents-ttl {
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: clamp(3.2rem, 3.33vw, 4.8rem);
  line-height: 1.4;
}
@media (min-width: 1201px) {
  .homeMv-contents-ttl {
    font-size: 3.33vw;
  }
}
@media (max-width: 767px) {
  .homeMv-contents-ttl {
    font-size: 3.2rem;
    line-height: 1.2;
  }
}
.homeMv-contents-lead {
  margin-top: 16px;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.11vw, 1.6rem);
  line-height: 1.8;
}
@media (min-width: 1201px) {
  .homeMv-contents-lead {
    font-size: 1.11vw;
  }
}
@media (max-width: 767px) {
  .homeMv-contents-lead {
    margin-top: 12px;
    font-size: 1.4rem;
  }
}

.homeNews {
  padding: 64px 0 96px;
}
@media (max-width: 767px) {
  .homeNews {
    padding: 64px 0 80px;
  }
}
.homeNews-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 960px) {
  .homeNews-contents {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding-bottom: 88px;
  }
}
.homeNews-contents-header {
  width: 308px;
}
@media (max-width: 960px) {
  .homeNews-contents-header {
    width: 100%;
  }
}
.homeNews-contents-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.homeNews-contents-button {
  margin-top: 64px;
  width: 189px;
}
@media (max-width: 960px) {
  .homeNews-contents-button {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.homeNews-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 28px;
}
@media (max-width: 767px) {
  .homeNews-list {
    margin-top: 0;
  }
}
.homeNews-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 767px) {
  .homeNews-list-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    padding: 24px 0 20px;
  }
}
.homeNews-list-item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .homeNews-list-item-header {
    gap: 8px;
  }
}
.homeNews-list-item-date {
  width: 88px;
  color: var(--color-text-muted);
  font-weight: 400;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .homeNews-list-item-date {
    width: 100px;
    font-size: 1.4rem;
  }
}
.homeNews-list-item-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px 8px;
  width: 130px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .homeNews-list-item-cat {
    width: 120px;
    height: 30px;
    font-size: 1.2rem;
  }
}
.homeNews-list-item-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .homeNews-list-item-body {
    width: 100%;
  }
}
.homeNews-list-item-link {
  display: block;
  padding-right: 20px;
  background-image: url(../img/common/icn_arrow_horizontal_short.svg);
  background-position: right center;
  background-size: 13px auto;
  background-repeat: no-repeat;
  font-weight: 500;
  font-size: 1.8rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .homeNews-list-item-link {
    font-size: 1.4rem;
  }
}
.homeNews-list-item-link:hover {
  opacity: 0.7;
}

.homeVision {
  padding: 96px 0;
  background-color: var(--color-bg);
  background-image: url(../img/home/bg_home_01.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .homeVision {
    padding: 64px 0 80px;
    background-image: url(../img/home/bg_home_01_sp.png);
    background-position: center bottom 40%;
    background-size: contain;
  }
}
.homeVision-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 960px) {
  .homeVision-contents {
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-bottom: 88px;
  }
}
.homeVision-contents-header {
  width: 482px;
}
@media (max-width: 960px) {
  .homeVision-contents-header {
    width: 100%;
  }
}
.homeVision-contents-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 960px) {
  .homeVision-contents-body {
    width: 100%;
  }
}
@media (max-width: 960px) {
  .homeVision-contents-body-img {
    margin: 0 auto;
    max-width: 552px;
  }
}
.homeVision-contents-lead {
  margin-top: 40px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .homeVision-contents-lead {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.homeVision-contents-button {
  margin-top: 64px;
  width: 189px;
}
@media (max-width: 960px) {
  .homeVision-contents-button {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

.homeMessage {
  padding: 96px 0;
}
@media (max-width: 767px) {
  .homeMessage {
    padding: 64px 0 80px;
  }
}
.homeMessage-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .homeMessage-contents {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-bottom: 88px;
  }
}
.homeMessage-contents-header {
  max-width: 40%;
}
@media (max-width: 767px) {
  .homeMessage-contents-header {
    max-width: 100%;
  }
}
.homeMessage-contents-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .homeMessage-contents-body {
    width: 100%;
  }
}
.homeMessage-contents-body-img {
  max-width: 700px;
  width: 100%;
}
@media (max-width: 767px) {
  .homeMessage-contents-body-img {
    max-width: 100%;
  }
}
.homeMessage-contents-body-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 335/188;
  -o-object-fit: cover;
     object-fit: cover;
}
.homeMessage-contents-lead {
  margin-top: 40px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .homeMessage-contents-lead {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.homeMessage-contents-button {
  margin-top: 64px;
  width: 189px;
}
@media (max-width: 767px) {
  .homeMessage-contents-button {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

.homeStrategy {
  padding: 96px 0;
  background-color: var(--color-bg);
  background-image: url(../img/home/bg_home_01.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .homeStrategy {
    padding: 64px 0 80px;
    background-image: url(../img/home/bg_home_01_sp.png);
    background-position: center bottom 30%;
    background-size: contain;
  }
}
.homeStrategy-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 960px) {
  .homeStrategy-contents {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-bottom: 88px;
  }
}
@media (max-width: 960px) {
  .homeStrategy-contents-header {
    width: 100%;
  }
}
.homeStrategy-contents-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 960px) {
  .homeStrategy-contents-body {
    width: 100%;
  }
}
.homeStrategy-contents-body-img {
  margin-left: auto;
  max-width: 552px;
}
@media (max-width: 960px) {
  .homeStrategy-contents-body-img {
    margin: 0 auto;
  }
}
.homeStrategy-contents-lead {
  margin-top: 40px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .homeStrategy-contents-lead {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.homeStrategy-contents-button {
  margin-top: 64px;
  width: 189px;
}
@media (max-width: 960px) {
  .homeStrategy-contents-button {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

.homeProject {
  padding: 96px 0 120px;
}
@media (max-width: 960px) {
  .homeProject {
    padding: 64px 0 80px;
  }
}
.homeProject-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
}
@media (max-width: 960px) {
  .homeProject-contents {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .homeProject-contents {
    padding-bottom: 88px;
  }
}
.homeProject-contents-header {
  position: relative;
}
@media (max-width: 960px) {
  .homeProject-contents-header {
    position: static;
    width: 100%;
  }
}
.homeProject-contents-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 960px) {
  .homeProject-contents-body {
    width: 100%;
  }
}
.homeProject-contents-lead {
  margin-top: 40px;
  padding-right: 200px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
@media (max-width: 960px) {
  .homeProject-contents-lead {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .homeProject-contents-lead {
    margin-top: 24px;
    font-size: 1.4rem;
  }
}
.homeProject-contents-button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 189px;
}
@media (max-width: 960px) {
  .homeProject-contents-button {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.homeProject-list {
  display: grid;
  gap: 48px 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .homeProject-list {
    gap: 48px 16px;
  }
}
@media (max-width: 767px) {
  .homeProject-list {
    gap: 48px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.homeRecruit {
  padding: 40px;
}
@media (max-width: 767px) {
  .homeRecruit {
    padding: 20px;
  }
}
.homeRecruit-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 586px;
  background-image: url(../img/home/bg_home_recruit.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .homeRecruit-contents {
    padding: 80px 0;
    height: auto;
  }
}
.homeRecruit-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.homeRecruit-title::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-secondary);
}
@media (max-width: 767px) {
  .homeRecruit-title::after {
    width: 4px;
    height: 4px;
  }
}
.homeRecruit-title-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  letter-spacing: 0.2em;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: Inter, sans-serif;
  line-height: 1;
}
@media (max-width: 767px) {
  .homeRecruit-title-sub {
    font-size: 1.2rem;
  }
}
.homeRecruit-title-main {
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .homeRecruit-title-main {
    font-size: 2rem;
  }
}
.homeRecruit-lead {
  margin-top: 32px;
  font-weight: 700;
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .homeRecruit-lead {
    font-size: 2.6rem;
  }
}
.homeRecruit-button {
  margin-top: 32px;
  width: 189px;
}

.projectList {
  display: grid;
  gap: 48px 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .projectList {
    gap: 48px 16px;
  }
}
@media (max-width: 767px) {
  .projectList {
    grid-template-columns: repeat(1, 1fr);
  }
}
.projectList-item {
  display: none;
}
.projectList-item.is-active {
  display: block;
}
.projectList-bottom {
  margin: 96px auto 0;
  width: 189px;
  text-align: center;
}

.strategySection-01-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-top: 64px;
}
@media (max-width: 960px) {
  .strategySection-01-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    margin-top: 32px;
  }
}
.strategySection-01-body-img {
  max-width: 420px;
}
@media (max-width: 960px) {
  .strategySection-01-body-img {
    margin: 0 auto;
    width: 100%;
  }
}
.strategySection-01-body-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.strategySection-01-body-list-item {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 960px) {
  .strategySection-01-body-list-item {
    padding-bottom: 24px;
  }
}
.strategySection-01-body-list-item + .strategySection-01-body-list-item {
  margin-top: 32px;
}
@media (max-width: 960px) {
  .strategySection-01-body-list-item + .strategySection-01-body-list-item {
    margin-top: 24px;
  }
}
.strategySection-01-body-list-item-title {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
}
@media (max-width: 960px) {
  .strategySection-01-body-list-item-title {
    font-size: 2rem;
  }
}
.strategySection-01-body-list-item-text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 960px) {
  .strategySection-01-body-list-item-text {
    font-size: 1.4rem;
  }
}
.strategySection-05-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media (max-width: 767px) {
  .strategySection-05-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
}
.strategySection-05-body-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .strategySection-05-body-item {
    width: 100%;
  }
}

.detailBreadcrumb {
  padding: 18px 32px;
}
@media (max-width: 767px) {
  .detailBreadcrumb {
    padding: 16px 20px;
  }
}

.detailContents {
  margin: 0 auto;
  padding: 64px 0 160px;
  max-width: 800px;
}
@media (max-width: 767px) {
  .detailContents {
    padding: 48px 0 112px;
  }
}
.detailContents-header-date {
  color: var(--color-text-muted);
  font-size: 1.4rem;
  line-height: 1;
}
.detailContents-header-title {
  margin-top: 16px;
  font-weight: 700;
  font-size: 4rem;
}
@media (max-width: 767px) {
  .detailContents-header-title {
    font-size: 3.2rem;
  }
}
.detailContents-header-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .detailContents-header-tags {
    margin-top: 16px;
  }
}
.detailContents-header-tags-item {
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}
.detailContents-header-img {
  margin-top: 64px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .detailContents-header-img {
    margin-top: 40px;
    margin-bottom: 32px;
  }
}
.detailContents-header-img img {
  width: 100%;
  height: auto;
}
.detailContents-header-img video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.detailContents-header-img iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.detailContents-header-text {
  margin-top: 40px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .detailContents-header-text {
    margin-top: 32px;
    font-size: 1.6rem;
  }
}
.detailContents-header a:not([class]) {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.detailContents-header a:not([class]):hover {
  text-decoration: none;
}

.detailProject {
  padding: 80px 0 120px;
  border-top: 1px solid var(--color-border);
}
.detailProject-contents {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media (max-width: 960px) {
  .detailProject-contents {
    padding-bottom: 112px;
  }
}
.detailProject-contents-header {
  position: relative;
}
@media (max-width: 960px) {
  .detailProject-contents-header {
    position: static;
  }
}
.detailProject-contents-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.detailProject-contents-button {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 960px) {
  .detailProject-contents-button {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.detailProject-list {
  display: grid;
  gap: 48px 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 960px) {
  .detailProject-list {
    gap: 48px 16px;
  }
}
@media (max-width: 767px) {
  .detailProject-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.m-1 {
  margin: 4px;
}

.m-auto {
  margin: auto;
}

.mt-1 {
  margin-top: 4px;
}

.mt-auto {
  margin-top: auto;
}

.mr-1 {
  margin-right: 4px;
}

.mr-auto {
  margin-right: auto;
}

.ml-1 {
  margin-left: 4px;
}

.ml-auto {
  margin-left: auto;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-1 {
  margin-inline: 4px;
}

.mx-auto {
  margin-inline: auto;
}

.my-1 {
  margin-block: 4px;
}

.my-auto {
  margin-block: auto;
}

.p-1 {
  padding: 4px;
}

.pt-1 {
  padding-top: 4px;
}

.pr-1 {
  padding-right: 4px;
}

.pb-1 {
  padding-bottom: 4px;
}

.px-1 {
  padding-inline: 4px;
}

.py-1 {
  padding-block: 4px;
}

.m-2 {
  margin: 8px;
}

.m-auto {
  margin: auto;
}

.mt-2 {
  margin-top: 8px;
}

.mt-auto {
  margin-top: auto;
}

.mr-2 {
  margin-right: 8px;
}

.mr-auto {
  margin-right: auto;
}

.ml-2 {
  margin-left: 8px;
}

.ml-auto {
  margin-left: auto;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-2 {
  margin-inline: 8px;
}

.mx-auto {
  margin-inline: auto;
}

.my-2 {
  margin-block: 8px;
}

.my-auto {
  margin-block: auto;
}

.p-2 {
  padding: 8px;
}

.pt-2 {
  padding-top: 8px;
}

.pr-2 {
  padding-right: 8px;
}

.pb-2 {
  padding-bottom: 8px;
}

.px-2 {
  padding-inline: 8px;
}

.py-2 {
  padding-block: 8px;
}

.m-3 {
  margin: 12px;
}

.m-auto {
  margin: auto;
}

.mt-3 {
  margin-top: 12px;
}

.mt-auto {
  margin-top: auto;
}

.mr-3 {
  margin-right: 12px;
}

.mr-auto {
  margin-right: auto;
}

.ml-3 {
  margin-left: 12px;
}

.ml-auto {
  margin-left: auto;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-3 {
  margin-inline: 12px;
}

.mx-auto {
  margin-inline: auto;
}

.my-3 {
  margin-block: 12px;
}

.my-auto {
  margin-block: auto;
}

.p-3 {
  padding: 12px;
}

.pt-3 {
  padding-top: 12px;
}

.pr-3 {
  padding-right: 12px;
}

.pb-3 {
  padding-bottom: 12px;
}

.px-3 {
  padding-inline: 12px;
}

.py-3 {
  padding-block: 12px;
}

.m-4 {
  margin: 16px;
}

.m-auto {
  margin: auto;
}

.mt-4 {
  margin-top: 16px;
}

.mt-auto {
  margin-top: auto;
}

.mr-4 {
  margin-right: 16px;
}

.mr-auto {
  margin-right: auto;
}

.ml-4 {
  margin-left: 16px;
}

.ml-auto {
  margin-left: auto;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-4 {
  margin-inline: 16px;
}

.mx-auto {
  margin-inline: auto;
}

.my-4 {
  margin-block: 16px;
}

.my-auto {
  margin-block: auto;
}

.p-4 {
  padding: 16px;
}

.pt-4 {
  padding-top: 16px;
}

.pr-4 {
  padding-right: 16px;
}

.pb-4 {
  padding-bottom: 16px;
}

.px-4 {
  padding-inline: 16px;
}

.py-4 {
  padding-block: 16px;
}

.m-5 {
  margin: 20px;
}

.m-auto {
  margin: auto;
}

.mt-5 {
  margin-top: 20px;
}

.mt-auto {
  margin-top: auto;
}

.mr-5 {
  margin-right: 20px;
}

.mr-auto {
  margin-right: auto;
}

.ml-5 {
  margin-left: 20px;
}

.ml-auto {
  margin-left: auto;
}

.mb-5 {
  margin-bottom: 20px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-5 {
  margin-inline: 20px;
}

.mx-auto {
  margin-inline: auto;
}

.my-5 {
  margin-block: 20px;
}

.my-auto {
  margin-block: auto;
}

.p-5 {
  padding: 20px;
}

.pt-5 {
  padding-top: 20px;
}

.pr-5 {
  padding-right: 20px;
}

.pb-5 {
  padding-bottom: 20px;
}

.px-5 {
  padding-inline: 20px;
}

.py-5 {
  padding-block: 20px;
}

.m-6 {
  margin: 24px;
}

.m-auto {
  margin: auto;
}

.mt-6 {
  margin-top: 24px;
}

.mt-auto {
  margin-top: auto;
}

.mr-6 {
  margin-right: 24px;
}

.mr-auto {
  margin-right: auto;
}

.ml-6 {
  margin-left: 24px;
}

.ml-auto {
  margin-left: auto;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-6 {
  margin-inline: 24px;
}

.mx-auto {
  margin-inline: auto;
}

.my-6 {
  margin-block: 24px;
}

.my-auto {
  margin-block: auto;
}

.p-6 {
  padding: 24px;
}

.pt-6 {
  padding-top: 24px;
}

.pr-6 {
  padding-right: 24px;
}

.pb-6 {
  padding-bottom: 24px;
}

.px-6 {
  padding-inline: 24px;
}

.py-6 {
  padding-block: 24px;
}

.m-7 {
  margin: 28px;
}

.m-auto {
  margin: auto;
}

.mt-7 {
  margin-top: 28px;
}

.mt-auto {
  margin-top: auto;
}

.mr-7 {
  margin-right: 28px;
}

.mr-auto {
  margin-right: auto;
}

.ml-7 {
  margin-left: 28px;
}

.ml-auto {
  margin-left: auto;
}

.mb-7 {
  margin-bottom: 28px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-7 {
  margin-inline: 28px;
}

.mx-auto {
  margin-inline: auto;
}

.my-7 {
  margin-block: 28px;
}

.my-auto {
  margin-block: auto;
}

.p-7 {
  padding: 28px;
}

.pt-7 {
  padding-top: 28px;
}

.pr-7 {
  padding-right: 28px;
}

.pb-7 {
  padding-bottom: 28px;
}

.px-7 {
  padding-inline: 28px;
}

.py-7 {
  padding-block: 28px;
}

.m-8 {
  margin: 32px;
}

.m-auto {
  margin: auto;
}

.mt-8 {
  margin-top: 32px;
}

.mt-auto {
  margin-top: auto;
}

.mr-8 {
  margin-right: 32px;
}

.mr-auto {
  margin-right: auto;
}

.ml-8 {
  margin-left: 32px;
}

.ml-auto {
  margin-left: auto;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-8 {
  margin-inline: 32px;
}

.mx-auto {
  margin-inline: auto;
}

.my-8 {
  margin-block: 32px;
}

.my-auto {
  margin-block: auto;
}

.p-8 {
  padding: 32px;
}

.pt-8 {
  padding-top: 32px;
}

.pr-8 {
  padding-right: 32px;
}

.pb-8 {
  padding-bottom: 32px;
}

.px-8 {
  padding-inline: 32px;
}

.py-8 {
  padding-block: 32px;
}

.m-9 {
  margin: 36px;
}

.m-auto {
  margin: auto;
}

.mt-9 {
  margin-top: 36px;
}

.mt-auto {
  margin-top: auto;
}

.mr-9 {
  margin-right: 36px;
}

.mr-auto {
  margin-right: auto;
}

.ml-9 {
  margin-left: 36px;
}

.ml-auto {
  margin-left: auto;
}

.mb-9 {
  margin-bottom: 36px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-9 {
  margin-inline: 36px;
}

.mx-auto {
  margin-inline: auto;
}

.my-9 {
  margin-block: 36px;
}

.my-auto {
  margin-block: auto;
}

.p-9 {
  padding: 36px;
}

.pt-9 {
  padding-top: 36px;
}

.pr-9 {
  padding-right: 36px;
}

.pb-9 {
  padding-bottom: 36px;
}

.px-9 {
  padding-inline: 36px;
}

.py-9 {
  padding-block: 36px;
}

.m-10 {
  margin: 40px;
}

.m-auto {
  margin: auto;
}

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

.mt-auto {
  margin-top: auto;
}

.mr-10 {
  margin-right: 40px;
}

.mr-auto {
  margin-right: auto;
}

.ml-10 {
  margin-left: 40px;
}

.ml-auto {
  margin-left: auto;
}

.mb-10 {
  margin-bottom: 40px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-10 {
  margin-inline: 40px;
}

.mx-auto {
  margin-inline: auto;
}

.my-10 {
  margin-block: 40px;
}

.my-auto {
  margin-block: auto;
}

.p-10 {
  padding: 40px;
}

.pt-10 {
  padding-top: 40px;
}

.pr-10 {
  padding-right: 40px;
}

.pb-10 {
  padding-bottom: 40px;
}

.px-10 {
  padding-inline: 40px;
}

.py-10 {
  padding-block: 40px;
}

.m-11 {
  margin: 44px;
}

.m-auto {
  margin: auto;
}

.mt-11 {
  margin-top: 44px;
}

.mt-auto {
  margin-top: auto;
}

.mr-11 {
  margin-right: 44px;
}

.mr-auto {
  margin-right: auto;
}

.ml-11 {
  margin-left: 44px;
}

.ml-auto {
  margin-left: auto;
}

.mb-11 {
  margin-bottom: 44px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-11 {
  margin-inline: 44px;
}

.mx-auto {
  margin-inline: auto;
}

.my-11 {
  margin-block: 44px;
}

.my-auto {
  margin-block: auto;
}

.p-11 {
  padding: 44px;
}

.pt-11 {
  padding-top: 44px;
}

.pr-11 {
  padding-right: 44px;
}

.pb-11 {
  padding-bottom: 44px;
}

.px-11 {
  padding-inline: 44px;
}

.py-11 {
  padding-block: 44px;
}

.m-12 {
  margin: 48px;
}

.m-auto {
  margin: auto;
}

.mt-12 {
  margin-top: 48px;
}

.mt-auto {
  margin-top: auto;
}

.mr-12 {
  margin-right: 48px;
}

.mr-auto {
  margin-right: auto;
}

.ml-12 {
  margin-left: 48px;
}

.ml-auto {
  margin-left: auto;
}

.mb-12 {
  margin-bottom: 48px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-12 {
  margin-inline: 48px;
}

.mx-auto {
  margin-inline: auto;
}

.my-12 {
  margin-block: 48px;
}

.my-auto {
  margin-block: auto;
}

.p-12 {
  padding: 48px;
}

.pt-12 {
  padding-top: 48px;
}

.pr-12 {
  padding-right: 48px;
}

.pb-12 {
  padding-bottom: 48px;
}

.px-12 {
  padding-inline: 48px;
}

.py-12 {
  padding-block: 48px;
}

.m-13 {
  margin: 52px;
}

.m-auto {
  margin: auto;
}

.mt-13 {
  margin-top: 52px;
}

.mt-auto {
  margin-top: auto;
}

.mr-13 {
  margin-right: 52px;
}

.mr-auto {
  margin-right: auto;
}

.ml-13 {
  margin-left: 52px;
}

.ml-auto {
  margin-left: auto;
}

.mb-13 {
  margin-bottom: 52px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-13 {
  margin-inline: 52px;
}

.mx-auto {
  margin-inline: auto;
}

.my-13 {
  margin-block: 52px;
}

.my-auto {
  margin-block: auto;
}

.p-13 {
  padding: 52px;
}

.pt-13 {
  padding-top: 52px;
}

.pr-13 {
  padding-right: 52px;
}

.pb-13 {
  padding-bottom: 52px;
}

.px-13 {
  padding-inline: 52px;
}

.py-13 {
  padding-block: 52px;
}

.m-14 {
  margin: 56px;
}

.m-auto {
  margin: auto;
}

.mt-14 {
  margin-top: 56px;
}

.mt-auto {
  margin-top: auto;
}

.mr-14 {
  margin-right: 56px;
}

.mr-auto {
  margin-right: auto;
}

.ml-14 {
  margin-left: 56px;
}

.ml-auto {
  margin-left: auto;
}

.mb-14 {
  margin-bottom: 56px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-14 {
  margin-inline: 56px;
}

.mx-auto {
  margin-inline: auto;
}

.my-14 {
  margin-block: 56px;
}

.my-auto {
  margin-block: auto;
}

.p-14 {
  padding: 56px;
}

.pt-14 {
  padding-top: 56px;
}

.pr-14 {
  padding-right: 56px;
}

.pb-14 {
  padding-bottom: 56px;
}

.px-14 {
  padding-inline: 56px;
}

.py-14 {
  padding-block: 56px;
}

.m-15 {
  margin: 60px;
}

.m-auto {
  margin: auto;
}

.mt-15 {
  margin-top: 60px;
}

.mt-auto {
  margin-top: auto;
}

.mr-15 {
  margin-right: 60px;
}

.mr-auto {
  margin-right: auto;
}

.ml-15 {
  margin-left: 60px;
}

.ml-auto {
  margin-left: auto;
}

.mb-15 {
  margin-bottom: 60px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-15 {
  margin-inline: 60px;
}

.mx-auto {
  margin-inline: auto;
}

.my-15 {
  margin-block: 60px;
}

.my-auto {
  margin-block: auto;
}

.p-15 {
  padding: 60px;
}

.pt-15 {
  padding-top: 60px;
}

.pr-15 {
  padding-right: 60px;
}

.pb-15 {
  padding-bottom: 60px;
}

.px-15 {
  padding-inline: 60px;
}

.py-15 {
  padding-block: 60px;
}

.m-16 {
  margin: 64px;
}

.m-auto {
  margin: auto;
}

.mt-16 {
  margin-top: 64px;
}

.mt-auto {
  margin-top: auto;
}

.mr-16 {
  margin-right: 64px;
}

.mr-auto {
  margin-right: auto;
}

.ml-16 {
  margin-left: 64px;
}

.ml-auto {
  margin-left: auto;
}

.mb-16 {
  margin-bottom: 64px;
}

.mb-auto {
  margin-bottom: auto;
}

.mx-16 {
  margin-inline: 64px;
}

.mx-auto {
  margin-inline: auto;
}

.my-16 {
  margin-block: 64px;
}

.my-auto {
  margin-block: auto;
}

.p-16 {
  padding: 64px;
}

.pt-16 {
  padding-top: 64px;
}

.pr-16 {
  padding-right: 64px;
}

.pb-16 {
  padding-bottom: 64px;
}

.px-16 {
  padding-inline: 64px;
}

.py-16 {
  padding-block: 64px;
}

.none {
  display: none;
}

@media (min-width: 768px) {
  .none-sm-min {
    display: none;
  }
}

@media (max-width: 767px) {
  .none-sm-max {
    display: none;
  }
}

@media (min-width: 961px) {
  .none-md-min {
    display: none;
  }
}

@media (max-width: 960px) {
  .none-md-max {
    display: none;
  }
}

@media (min-width: 993px) {
  .none-lg-min {
    display: none;
  }
}

@media (max-width: 992px) {
  .none-lg-max {
    display: none;
  }
}

@media (min-width: 1201px) {
  .none-xl-min {
    display: none;
  }
}

@media (max-width: 1200px) {
  .none-xl-max {
    display: none;
  }
}

.main {
  padding-top: 121px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.6;
}
@media (max-width: 767px) {
  .main {
    padding-top: 72px;
  }
}
.main {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container:has(.main) {
  display: block;
  padding: 0;
}

.wrap {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--width-pc);
  width: 100%;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes widthExpand {
  0% {
    width: 0;
  }
  99% {
    overflow: hidden;
    width: 189px;
  }
  100% {
    overflow: visible;
    width: 189px;
  }
}
@keyframes widthExpand {
  0% {
    width: 0;
  }
  99% {
    overflow: hidden;
    width: 189px;
  }
  100% {
    overflow: visible;
    width: 189px;
  }
}
.fadeInDown {
  opacity: 0;
}
.fadeInDown.animated {
  -webkit-animation: fadeInDown;
          animation: fadeInDown;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.animated {
  -webkit-animation: fadeIn;
          animation: fadeIn;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeInUp {
  opacity: 0;
}
.fadeInUp.animated {
  -webkit-animation: fadeInUp;
          animation: fadeInUp;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.animated {
  -webkit-animation: fadeInRight;
          animation: fadeInRight;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.widthExpand {
  display: block;
  overflow: hidden;
  width: 0;
}
.widthExpand.animated {
  -webkit-animation: widthExpand;
          animation: widthExpand;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@media (min-width: 768px) {
  .delay-1 {
    -webkit-animation-delay: 0.25s !important;
            animation-delay: 0.25s !important;
  }
  .delay-2 {
    -webkit-animation-delay: 0.5s !important;
            animation-delay: 0.5s !important;
  }
  .delay-3 {
    -webkit-animation-delay: 0.75s !important;
            animation-delay: 0.75s !important;
  }
  .delay-4 {
    -webkit-animation-delay: 1s !important;
            animation-delay: 1s !important;
  }
  .delay-5 {
    -webkit-animation-delay: 1.25s !important;
            animation-delay: 1.25s !important;
  }
  .delay-6 {
    -webkit-animation-delay: 1.5s !important;
            animation-delay: 1.5s !important;
  }
  .delay-7 {
    -webkit-animation-delay: 1.75s !important;
            animation-delay: 1.75s !important;
  }
  .delay-8 {
    -webkit-animation-delay: 2s !important;
            animation-delay: 2s !important;
  }
  .delay-9 {
    -webkit-animation-delay: 2.25s !important;
            animation-delay: 2.25s !important;
  }
  .delay-10 {
    -webkit-animation-delay: 2.5s !important;
            animation-delay: 2.5s !important;
  }
}