/*====================================================================================

[TABLE OF CONTENT]

1. COMPONENT.
   1.1. BUTTON.
   1.2. TAG.
   1.3. TITLE.
   1.4. HEADING.
   1.5. ITEM.
   1.6. CARD.
   1.7. BOX.
   1.8. BLOCK.
   1.9. BANNER.
   1.10. SLOGAN.
   1.11. SLIDER.
   1.12. MAP.
2. PROJECT.
   2.1. GALLERY.
   2.2. PINNED.
   3.3. SECTION MAIN VISUAL.
   3.4. SECTION TOP NOTIFY.
   3.5. SECTION TOP ABOUT.
   3.6. SECTION TOP VOICE.
   3.7. SECTION TOP FEATURE.
   3.8. SECTION TOP JOB.
   3.9. SECTION TOP TIMELINE.
   3.10. SECTION TOP QA.
   3.11. SECTION TOP NEWS.
3. KEYFRAMES.

====================================================================================*/
/*====================================================================================
1. COMPONENT.
====================================================================================*/
/*------------------------------------------------------------------------------------
1.1. BUTTON.
------------------------------------------------------------------------------------*/
.c-btn-top {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14.5rem;
  min-height: 4rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border-radius: 2rem;
  overflow: hidden;
  transform: translateY(0);
  border: 1px solid var(--theme-color-tertiary);
  background-color: var(--theme-color-secondary);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  touch-action: manipulation;
}
.c-btn-top__text {
  color: var(--theme-color-tertiary);
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 900;
}

@media only screen and (min-width: 768px) {
  .c-btn-top {
    transition: box-shadow 0.05s ease-in, transform 0.05s ease-in;
  }
  .c-btn-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 0 var(--theme-color-tertiary);
  }
}
/*------------------------------------------------------------------------------------
1.2. TAG.
------------------------------------------------------------------------------------*/
.c-tag-top {
  position: absolute;
  z-index: 2;
}
.c-tag-top::before, .c-tag-top::after {
  position: absolute;
  content: "";
}
.c-tag-top::before {
  inset-inline-end: -0.6rem;
  border-block-end: 1rem solid var(--theme-color-fifth);
  border-inline-end: 0.6rem solid transparent;
}
.c-tag-top::after {
  z-index: -1;
  inset-inline-end: -0.4rem;
  inset-block-end: -0.4rem;
  width: 100%;
  height: 70%;
  background-color: rgba(0, 0, 0, 0.15);
}
.c-tag-top__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 7.2rem;
  min-height: 2.4rem;
  padding-inline: 0.5rem;
  background-color: var(--theme-color-quaternary);
}
.c-tag-top__text {
  color: var(--theme-color-secondary);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

/*------------------------------------------------------------------------------------
1.3. TITLE.
------------------------------------------------------------------------------------*/
/*---------- TITLE MAIN VISUAL ----------*/
.c-title-mv {
  display: flex;
  justify-content: center;
  line-height: 1;
  font-weight: 900;
}
.c-title-mv__right {
  position: relative;
}
.c-title-mv__box {
  position: absolute;
  inset-inline: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-title-mv__box-line {
  flex: 1;
  height: 1px;
  background-color: var(--theme-color-secondary);
}
.c-title-mv__box-text {
  flex: 0 0 auto;
  font-family: var(--theme-font-en-secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 767px) {
  .c-title-mv__right {
    margin-inline-start: 0.5rem;
    padding-block-start: 1.7rem;
  }
  .c-title-mv__box {
    inset-block-start: 0;
  }
  .c-title-mv__box-text {
    padding-inline-start: 1rem;
    font-size: 1.2rem;
  }
  .c-title-mv__text--v1 {
    font-size: 4.5rem;
  }
  .c-title-mv__text--v2 {
    font-size: 2.2rem;
  }
  .c-title-mv__text--v3 {
    font-size: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-title-mv__right {
    margin-inline-start: 0.7rem;
    padding-block-start: 2.5rem;
  }
  .c-title-mv__box {
    inset-block-start: 0.3rem;
  }
  .c-title-mv__box-text {
    padding-inline-start: 1.7rem;
    font-size: 1.5rem;
  }
  .c-title-mv__text--v1 {
    font-size: 8rem;
  }
  .c-title-mv__text--v2 {
    font-size: 4.8rem;
  }
  .c-title-mv__text--v3 {
    font-size: 6rem;
  }
}
/*---------- TITLE TOP ----------*/
.c-title-top {
  color: var(--theme-color-tertiary);
  font-weight: 900;
}
.c-title-top__text {
  display: block;
  text-align: center;
}
.c-title-top__text-line {
  background: linear-gradient(0deg, var(--theme-color-tenth) 25%, transparent 25%);
}

@media only screen and (max-width: 767px) {
  .c-title-top__text--sm {
    margin-block-end: 0.5rem;
    font-size: 1.6rem;
  }
  .c-title-top__text-main {
    font-size: 2.3rem;
  }
  .c-title-top__text-sub {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-title-top__text {
    line-height: 1.6;
  }
  .c-title-top__text--sm {
    font-size: 2.4rem;
  }
  .c-title-top__text-main {
    font-size: 3.6rem;
  }
  .c-title-top__text-sub {
    font-size: 2.4rem;
  }
}
/*---------- TITLE NOTIFY ----------*/
.c-title-notify {
  position: relative;
  padding-inline-start: 2.7rem;
  color: var(--theme-color-quaternary);
  font-size: 1.6rem;
  font-weight: 700;
}
.c-title-notify::before {
  position: absolute;
  content: "";
  inset-block-start: 0.2rem;
  inset-inline-start: 0;
  width: 2rem;
  height: 2rem;
  background: url("./../images/common/icon-notify-orange.webp") no-repeat center center/100% auto;
}

/*------------------------------------------------------------------------------------
1.4. HEADING.
------------------------------------------------------------------------------------*/
.c-heading-mv {
  color: var(--theme-color-secondary);
}
.c-heading-mv__line--v2 {
  margin-block-start: var(--spacing-sp-10-pc-15);
}

/*------------------------------------------------------------------------------------
1.5. ITEM.
------------------------------------------------------------------------------------*/
/*---------- LIST ITEM MAIN VISUAL ----------*/
.c-list-item-mv {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .c-list-item-mv {
    max-width: 40rem;
    margin: -0.5rem;
  }
  .c-list-item-mv .c-item-mv {
    margin: 0.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-item-mv {
    max-width: 50rem;
    margin: -0.8rem;
  }
  .c-list-item-mv .c-item-mv {
    margin: 0.8rem;
  }
}
/*---------- ITEM MAIN VISUAL ----------*/
.c-item-mv {
  border-radius: 0.4rem;
  background-color: var(--theme-color-secondary);
}
.c-item-mv__text {
  color: var(--theme-color-tertiary);
  line-height: 1.5;
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .c-item-mv {
    padding: 0.5rem 1.5rem;
  }
  .c-item-mv__text {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-item-mv {
    padding: 0.6rem 1.8rem;
  }
  .c-item-mv__text {
    font-size: 2.4rem;
  }
}
/*---------- LIST ITEM TOP ----------*/
@media only screen and (max-width: 767px) {
  .c-list-item-top .c-item-top:not(:first-child) {
    margin-block-start: 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-item-top .c-item-top:not(:first-child) {
    margin-block-start: 1.6rem;
  }
}
/*---------- ITEM TOP ----------*/
.c-item-top__link {
  text-decoration: none;
}
.c-item-top__link:hover .c-item-top__right {
  color: var(--theme-color-quaternary);
}
.c-item-top__left {
  color: var(--theme-color-tertiary);
  font-weight: 700;
}
.c-item-top__right {
  color: var(--theme-color-eighth);
  transition: color 0.3s ease;
}
.c-item-top__right p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .c-item-top__link {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .c-item-top__link {
    display: flex;
  }
  .c-item-top__left {
    width: 11rem;
  }
  .c-item-top__right {
    flex: 1;
    min-width: 1px;
    letter-spacing: 0.007em;
  }
}
/*---------- LIST ITEM TIMELINE ----------*/
.c-list-item-timeline .c-item-timeline {
  border-block-end: 1px solid var(--theme-color-sixth);
}
.c-list-item-timeline .c-item-timeline:first-child {
  border-block-start: 1px solid var(--theme-color-sixth);
}

/*---------- ITEM TIMELINE ----------*/
.c-item-timeline {
  position: relative;
}
.c-item-timeline--v1::before {
  background-color: var(--theme-color-eleventh);
}
.c-item-timeline--v1 .c-item-timeline__number, .c-item-timeline--v1 .c-item-timeline__title {
  color: var(--theme-color-eleventh);
}
.c-item-timeline--v2::before {
  background-color: var(--theme-color-twelfth);
}
.c-item-timeline--v2 .c-item-timeline__number, .c-item-timeline--v2 .c-item-timeline__title {
  color: var(--theme-color-twelfth);
}
.c-item-timeline--v3::before {
  background-color: var(--theme-color-thirteenth);
}
.c-item-timeline--v3 .c-item-timeline__number, .c-item-timeline--v3 .c-item-timeline__title {
  color: var(--theme-color-thirteenth);
}
.c-item-timeline--v4::before {
  background-color: var(--theme-color-fourteenth);
}
.c-item-timeline--v4 .c-item-timeline__number, .c-item-timeline--v4 .c-item-timeline__title {
  color: var(--theme-color-fourteenth);
}
.c-item-timeline--v5::before {
  background-color: var(--theme-color-fifteenth);
}
.c-item-timeline--v5 .c-item-timeline__number, .c-item-timeline--v5 .c-item-timeline__title {
  color: var(--theme-color-fifteenth);
}
.c-item-timeline--v6::before {
  background-color: var(--theme-color-sixteenth);
}
.c-item-timeline--v6 .c-item-timeline__number, .c-item-timeline--v6 .c-item-timeline__title {
  color: var(--theme-color-sixteenth);
}
.c-item-timeline--v7::before {
  content: none;
}
.c-item-timeline--v7 .c-item-timeline__number, .c-item-timeline--v7 .c-item-timeline__title {
  color: var(--theme-color-seventeenth);
}
.c-item-timeline::before {
  position: absolute;
  content: "";
  width: 2px;
}
.c-item-timeline__number {
  position: absolute;
  display: inline-block;
  font-family: var(--theme-font-en-primary);
  line-height: 1.2;
}
.c-item-timeline__title {
  margin-block-end: var(--spacing-sp-15-pc-25);
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .c-item-timeline {
    padding: 2rem 0 2rem 5rem;
  }
  .c-item-timeline::before {
    inset-block: 6rem -1.2rem;
    inset-inline-start: 1.6rem;
  }
  .c-item-timeline__number {
    inset-block-start: 1.3rem;
    inset-inline-start: 0;
    font-size: 4rem;
  }
  .c-item-timeline__title {
    font-size: 1.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-item-timeline {
    padding: 2.4rem 0 2.4rem 7rem;
  }
  .c-item-timeline::before {
    inset-block: 6.8rem -1.2rem;
    inset-inline-start: 2.2rem;
  }
  .c-item-timeline__number {
    inset-block-start: 1.8rem;
    inset-inline-start: 0.7rem;
    font-size: 4.2rem;
  }
  .c-item-timeline__title {
    font-size: 1.8rem;
  }
}
/*---------- LIST ITEM QA ----------*/
.c-list-item-qa .c-item-qa {
  border-block-end: 1px solid var(--theme-color-eighteenth);
}
.c-list-item-qa .c-item-qa:first-child {
  border-block-start: 1px solid var(--theme-color-eighteenth);
}

/*---------- ITEM QA ----------*/
.c-item-qa__header, .c-item-qa__inner {
  position: relative;
}
.c-item-qa__header {
  cursor: pointer;
}
.c-item-qa__header.is-active .c-item-qa__title {
  color: var(--theme-color-quaternary);
}
.c-item-qa__header.is-active .c-icon-plus::before, .c-item-qa__header.is-active .c-icon-plus::after {
  background-color: rgba(41, 41, 70, 0.5);
}
.c-item-qa__header.is-active .c-icon-plus::before {
  transform: rotate(0deg);
}
.c-item-qa__header:hover .c-item-qa__title {
  color: var(--theme-color-quaternary);
}
.c-item-qa__title {
  color: var(--theme-color-tertiary);
  font-weight: 900;
}
.c-item-qa__char {
  position: absolute;
  font-family: var(--theme-font-en-secondary);
  line-height: 1;
  font-weight: 600;
}
.c-item-qa__char--q {
  color: var(--theme-color-quaternary);
}
.c-item-qa__char--a {
  color: var(--theme-color-tertiary);
}
.c-item-qa__char span {
  font-family: var(--theme-font-en-primary);
  line-height: 1;
}
.c-item-qa__body {
  display: none;
}

@media only screen and (max-width: 767px) {
  .c-item-qa__header {
    padding: 2rem 2.5rem 2rem 4rem;
  }
  .c-item-qa__header .c-icon-plus {
    inset-inline-end: 0;
  }
  .c-item-qa__title {
    font-size: 1.6rem;
  }
  .c-item-qa__char {
    font-size: 3rem;
  }
  .c-item-qa__char--q {
    inset-block-start: 1.8rem;
    inset-inline-start: 0;
  }
  .c-item-qa__char--a {
    inset-block-start: -0.3rem;
    inset-inline-start: 0.3rem;
  }
  .c-item-qa__inner {
    padding: 0 0 2rem 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-item-qa__header {
    padding: 2.5rem 5rem 2.5rem 7rem;
  }
  .c-item-qa__header .c-icon-plus {
    inset-inline-end: 1.2rem;
  }
  .c-item-qa__title {
    font-size: 1.8rem;
    transition: color 0.3s ease;
  }
  .c-item-qa__char {
    font-size: 3.8rem;
  }
  .c-item-qa__char--q {
    inset-block-start: 2.2rem;
    inset-inline-start: 0.7rem;
  }
  .c-item-qa__char--a {
    inset-block-start: 0.3rem;
    inset-inline-start: 1rem;
  }
  .c-item-qa__inner {
    padding: 0.5rem 5rem 2.5rem 7rem;
  }
}
/*------------------------------------------------------------------------------------
1.6. CARD.
------------------------------------------------------------------------------------*/
/*---------- LIST CARD TOP ----------*/
@media only screen and (max-width: 767px) {
  .c-list-card-top .c-card-top:not(:first-child) {
    margin-block-start: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-card-top {
    display: flex;
    flex-wrap: wrap;
    margin: -2rem;
  }
  .c-list-card-top .c-card-top {
    width: calc(50% - 4rem);
    margin: 2rem;
  }
}
/*---------- CARD TOP ----------*/
.c-card-top {
  position: relative;
}
.c-card-top__wrap {
  height: 100%;
  background-color: var(--theme-color-secondary);
}
.c-card-top .c-tag-top {
  top: -1rem;
  inset-inline-end: 5.2rem;
}
.c-card-top__row {
  display: flex;
  align-items: center;
  border-block-end: 1px solid var(--theme-color-sixth);
}
.c-card-top__right {
  flex: 1;
}
.c-card-top__title {
  margin-inline-end: -1rem;
  color: var(--theme-color-tertiary);
  font-weight: 700;
}
.c-card-top__item {
  color: var(--theme-color-eighth);
}

@media only screen and (max-width: 767px) {
  .c-card-top {
    border-radius: 2.6rem;
    border-inline-end: 0.6rem solid rgba(0, 0, 0, 0.1);
    border-block-end: 0.6rem solid rgba(0, 0, 0, 0.1);
  }
  .c-card-top__wrap {
    padding: 2rem;
    border-radius: 2rem;
    border: 3px solid var(--theme-color-tertiary);
  }
  .c-card-top__row {
    margin-block-end: 1.7rem;
    padding-block-end: 2rem;
  }
  .c-card-top__left {
    width: 8rem;
  }
  .c-card-top__right {
    padding-block-start: 0.5rem;
    padding-inline-start: 1.5rem;
  }
  .c-card-top__title {
    font-size: 1.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-card-top {
    border-radius: 3rem;
    border-inline-end: 0.7rem solid rgba(0, 0, 0, 0.1);
    border-block-end: 0.7rem solid rgba(0, 0, 0, 0.1);
  }
  .c-card-top__wrap {
    padding: 2.2rem 4.5rem 4rem 4.5rem;
    border-radius: 2.4rem;
    border: 4px solid var(--theme-color-tertiary);
  }
  .c-card-top__row {
    min-height: 15.4rem;
    margin-block-end: 2.2rem;
    padding-block-end: 3rem;
  }
  .c-card-top__left {
    width: 10.5rem;
  }
  .c-card-top__right {
    padding-block-start: 0.5rem;
    padding-inline-start: 2.5rem;
  }
  .c-card-top__title {
    font-size: 2.2rem;
  }
}
/*------------------------------------------------------------------------------------
1.7. BOX.
------------------------------------------------------------------------------------*/
/*---------- LIST BOX TOP ----------*/
.c-list-box-top {
  display: grid;
}

@media only screen and (max-width: 575px) {
  .c-list-box-top {
    gap: 2.5rem 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 576px) {
  .c-list-box-top {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-list-box-top {
    gap: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-box-top {
    gap: 5rem;
  }
}
/*---------- BOX TOP ----------*/
.c-box-top {
  text-align: center;
}
.c-box-top__title {
  margin-block-start: var(--spacing-sp-10-pc-20);
  color: var(--theme-color-tertiary);
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .c-box-top__title {
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-box-top__title {
    font-size: 1.8rem;
  }
}
/*---------- LIST BOX RUN ----------*/
.c-list-box-run {
  display: inline-flex;
  align-items: center;
}
.c-list-box-run .c-box-run {
  margin-inline: 0.4rem;
}

@media only screen and (max-width: 767px) {
  .c-list-box-run {
    animation: 20s k-Slides infinite linear;
  }
}
@media only screen and (min-width: 768px) {
  .c-list-box-run {
    animation: 40s k-Slides infinite linear;
  }
}
/*---------- BOX RUN ----------*/
.c-box-run {
  position: relative;
  display: flex;
  align-items: center;
}
.c-box-run::before {
  position: absolute;
  content: "";
  inset-inline: 0;
  margin-inline: auto;
  background: url("./../images/s4-box-arrow.webp") no-repeat center center/auto 100%;
}
.c-box-run__text {
  color: var(--theme-color-tertiary);
  font-weight: 900;
}

@media only screen and (max-width: 767px) {
  .c-box-run {
    min-height: 5rem;
    padding: 1rem;
    border-radius: 1.2rem;
    border: 3px solid var(--theme-color-tertiary);
  }
  .c-box-run::before {
    inset-block-end: -0.9rem;
    width: 1.7rem;
    height: 0.9rem;
  }
  .c-box-run__text {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-box-run {
    min-height: 7.2rem;
    padding: 1rem 3.2rem;
    border-radius: 2rem;
    border: 4px solid var(--theme-color-tertiary);
  }
  .c-box-run::before {
    inset-block-end: -1.3rem;
    width: 2.1rem;
    height: 1.3rem;
  }
  .c-box-run__text {
    font-size: 1.6rem;
  }
}
/*------------------------------------------------------------------------------------
1.8. BLOCK.
------------------------------------------------------------------------------------*/
/*---------- BLOCK TOP ----------*/
.c-block-top {
  margin-inline: auto;
  background-color: var(--theme-color-tenth);
  color: var(--theme-color-secondary);
  font-weight: 900;
}
.c-block-top__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-block-top__item--v2 .c-block-top__item-text::before {
  inset-block-start: 50%;
}
.c-block-top__item-text {
  position: relative;
  margin-block-start: -0.12em;
  line-height: 1;
}
.c-block-top__item-text::before {
  position: absolute;
  content: "";
  margin-block: auto;
  background: url("./../images/common/deco-star-white.webp") no-repeat center center/100% auto;
}

@media only screen and (max-width: 575px) {
  .c-block-top {
    display: flex;
    justify-content: center;
    padding: 0.5rem 2rem;
  }
  .c-block-top__left, .c-block-top__right {
    padding-block: 1.7rem;
  }
  .c-block-top__left {
    border-block-end: 2px solid var(--theme-color-secondary);
  }
}
@media only screen and (min-width: 576px) {
  .c-block-top__row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-block-top__left, .c-block-top__right {
    width: 50%;
  }
  .c-block-top__left {
    position: relative;
    padding-block: 1rem;
  }
  .c-block-top__left::before {
    position: absolute;
    content: "";
    inset-block-start: 0;
    inset-inline-end: -1px;
    width: 2px;
    height: 100%;
    background-color: var(--theme-color-secondary);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-block-top {
    padding: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-block-top__item--v1 .c-block-top__item-text {
    padding-inline: 1rem;
  }
  .c-block-top__item--v1 .c-block-top__item-text::before {
    inset-block-start: 0.3rem;
    inset-inline-end: -1.8rem;
  }
  .c-block-top__item--v2 .c-block-top__item-text {
    padding-inline-start: 1rem;
  }
  .c-block-top__item--v2 .c-block-top__item-text::before {
    inset-inline-end: -2.5rem;
    margin-block-start: -1.2rem;
  }
  .c-block-top__item-subtext {
    font-size: 2.2rem;
  }
  .c-block-top__item-text {
    font-size: 8rem;
  }
  .c-block-top__item-text::before {
    width: 3rem;
    height: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-block-top {
    max-width: 100.8rem;
    padding: 3rem 2rem;
  }
  .c-block-top__row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-block-top__item--v1 .c-block-top__item-text {
    padding-inline: 2.4rem 1.7rem;
  }
  .c-block-top__item--v1 .c-block-top__item-text::before {
    inset-block-start: 0.3rem;
    inset-inline-end: -2.7rem;
  }
  .c-block-top__item--v2 .c-block-top__item-text {
    padding-inline-start: 1.5rem;
  }
  .c-block-top__item--v2 .c-block-top__item-text::before {
    inset-inline-end: -4rem;
    margin-block-start: -2rem;
  }
  .c-block-top__item-subtext {
    font-size: 3.6rem;
  }
  .c-block-top__item-text {
    font-size: 12rem;
  }
  .c-block-top__item-text::before {
    width: 4.6rem;
    height: 4.3rem;
  }
}
/*------------------------------------------------------------------------------------
1.9. BANNER.
------------------------------------------------------------------------------------*/
/*---------- LIST BANNER TOP ----------*/
.c-list-bnr-top {
  display: grid;
}

@media only screen and (max-width: 575px) {
  .c-list-bnr-top .c-bnr-top:not(:first-child) {
    margin-block-start: 1px;
  }
}
@media only screen and (min-width: 576px) {
  .c-list-bnr-top {
    gap: 2px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .c-list-bnr-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) {
  .c-list-bnr-top {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*---------- BANNER TOP ----------*/
.c-bnr-top {
  position: relative;
  display: block;
}
.c-bnr-top__img {
  overflow: hidden;
}
.c-bnr-top__wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.c-bnr-top__title {
  color: var(--theme-color-secondary);
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .c-bnr-top__title {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-bnr-top__title {
    font-size: 3rem;
  }
}
/*---------- BANNER ----------*/
.c-bnr {
  padding-block: var(--spacing-sp-35-pc-50);
  line-height: 1;
  text-align: center;
}

/*------------------------------------------------------------------------------------
1.10. SLOGAN.
------------------------------------------------------------------------------------*/
/*---------- SLOGAN MAIN VISUAL ----------*/
.c-slogan-mv {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
}
.c-slogan-mv__text {
  font-weight: 700;
}
.c-slogan-mv__text--v1 {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .c-slogan-mv__left {
    width: 8.5rem;
  }
  .c-slogan-mv__center {
    padding-inline: 0.5rem 1rem;
  }
  .c-slogan-mv__right {
    margin-block-end: -0.4rem;
    width: 5rem;
  }
  .c-slogan-mv__text--v1 {
    top: -0.3rem;
    font-size: 4rem;
  }
  .c-slogan-mv__text--v2 {
    font-size: 5rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-slogan-mv__center {
    padding-inline: 0.5rem 1.5rem;
  }
  .c-slogan-mv__right {
    margin-block-end: -0.8rem;
  }
  .c-slogan-mv__text--v1 {
    top: -0.8rem;
    font-size: 8rem;
  }
  .c-slogan-mv__text--v2 {
    font-size: 10rem;
  }
}
/*------------------------------------------------------------------------------------
1.11. SLIDER.
------------------------------------------------------------------------------------*/
.c-slider-run {
  overflow: hidden;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .c-slider-run {
    padding-block-end: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-slider-run {
    padding-block-end: 1.2rem;
  }
}
/*------------------------------------------------------------------------------------
1.12. MAP.
------------------------------------------------------------------------------------*/
.c-map-top__row {
  display: flex;
  justify-content: center;
}
.c-map-top__left, .c-map-top__right {
  flex: 1;
}
.c-map-top__list--v1, .c-map-top__list--v4 {
  display: flex;
  justify-content: center;
}
.c-map-top__list--v1 {
  margin-block-end: var(--spacing-sp-15-pc-30);
}
.c-map-top__item {
  position: relative;
  color: var(--theme-color-tertiary);
  font-weight: 900;
  text-align: center;
  background-color: var(--theme-color-secondary);
}
.c-map-top__item::before {
  position: absolute;
  content: "";
}
.c-map-top__item--v1::before, .c-map-top__item--v6::before {
  inset-inline-start: 50%;
}

@media only screen and (max-width: 767px) {
  .c-map-top__row {
    align-items: center;
  }
  .c-map-top__center {
    width: 33%;
    padding-inline: 0.5rem 2.5vw;
  }
  .c-map-top__list--v1 {
    margin-block-end: -1rem;
  }
  .c-map-top__list--v4 {
    margin-block-start: -1rem;
  }
  .c-map-top__item {
    padding: 1rem 2vw;
    border-radius: 0.5rem;
    font-size: 2.3vw;
  }
  .c-map-top__item--v1, .c-map-top__item--v6 {
    padding: 1rem;
  }
  .c-map-top__item--v1::before, .c-map-top__item--v6::before {
    border-inline-start: 0.6rem solid transparent;
    border-inline-end: 0.6rem solid transparent;
    margin-inline-start: -0.6rem;
  }
  .c-map-top__item--v1::before {
    inset-block-end: -1rem;
    border-block-start: 1rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v2, .c-map-top__item--v4 {
    margin-block-end: 1.5rem;
  }
  .c-map-top__item--v2::before, .c-map-top__item--v3::before {
    inset-block-start: 50%;
    inset-inline-end: -1rem;
    border-inline-end: 1rem solid transparent;
  }
  .c-map-top__item--v2::before {
    border-block-end: 1rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v3::before {
    border-block-start: 1rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v4::before, .c-map-top__item--v5::before {
    inset-block-start: 50%;
    inset-inline-start: -1rem;
    border-inline-start: 1rem solid transparent;
  }
  .c-map-top__item--v4::before {
    border-block-end: 1rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v5::before {
    border-block-start: 1rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v6::before {
    top: -1rem;
    border-block-end: 1rem solid var(--theme-color-secondary);
  }
}
@media only screen and (min-width: 768px) {
  .c-map-top__center {
    width: 32rem;
    margin-inline: 0.5rem 1.5rem;
    padding-block-end: 5.5rem;
  }
  .c-map-top__list--v2, .c-map-top__list--v3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-block-start: 1.5rem;
  }
  .c-map-top__list--v4 {
    margin-block-start: -2.2rem;
  }
  .c-map-top__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6.4rem;
    padding: 0.5rem 3rem;
    border-radius: 0.8rem;
  }
  .c-map-top__item--v1::before, .c-map-top__item--v6::before {
    border-inline: 1.2rem solid transparent;
    margin-inline-start: -1.2rem;
  }
  .c-map-top__item--v1::before {
    inset-block-end: -1.2rem;
    border-block-start: 1.3rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v2::before, .c-map-top__item--v3::before {
    inset-inline-end: 2.4rem;
    border-inline-start: 2.4rem solid transparent;
  }
  .c-map-top__item--v2::before {
    inset-block-end: -1.2rem;
    border-block-start: 1.3rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v3::before {
    inset-block-start: -1.2rem;
    border-block-end: 1.3rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v4::before, .c-map-top__item--v5::before {
    inset-inline-start: 2.4rem;
    border-inline-end: 2.4rem solid transparent;
  }
  .c-map-top__item--v4::before {
    inset-block-end: -1.2rem;
    border-block-start: 1.3rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v5::before {
    inset-block-start: -1.2rem;
    border-block-end: 1.3rem solid var(--theme-color-secondary);
  }
  .c-map-top__item--v6 {
    min-width: 24rem;
  }
  .c-map-top__item--v6::before {
    inset-block-start: -1.2rem;
    border-block-end: 1.3rem solid var(--theme-color-secondary);
  }
}
/*====================================================================================
2. PROJECT.
====================================================================================*/
/*------------------------------------------------------------------------------------
2.1. GALLERY.
------------------------------------------------------------------------------------*/
.p-gallery-mv__item {
  width: 100%;
}

@media only screen and (min-width: 576px) {
  .p-gallery-mv {
    display: flex;
  }
  .p-gallery-mv__item--v1 img {
    object-position: right center;
  }
  .p-gallery-mv__item--v2 img {
    object-position: left center;
  }
  .p-gallery-mv__item img {
    object-fit: cover;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .p-gallery-mv__item img {
    height: 40rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-gallery-mv__item img {
    height: 64.8rem;
  }
}
/*------------------------------------------------------------------------------------
2.2. PINNED.
------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .p-pinned__pin .c-title {
    margin-block-end: 2.5rem;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) {
  .p-pinned {
    display: flex;
    align-items: flex-start;
  }
  .p-pinned__pin {
    width: 28.8rem;
  }
  .p-pinned__pin .c-title {
    text-align: start;
  }
  .p-pinned__scroll {
    flex: 1;
    min-width: 1px;
  }
}
/*------------------------------------------------------------------------------------
3.3. SECTION MAIN VISUAL.
------------------------------------------------------------------------------------*/
.p-mv {
  position: relative;
}
.p-mv__wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-mv__lists {
  display: flex;
  justify-content: center;
  margin-block-start: var(--spacing-sp-25-pc-45);
}
.p-mv__btn {
  margin-block-start: var(--spacing-sp-30-pc-55);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .p-mv__body {
    padding-inline: 1.5rem;
  }
}
/*------------------------------------------------------------------------------------
3.4. SECTION TOP NOTIFY.
------------------------------------------------------------------------------------*/
.p-top--notify {
  padding-block: 3.5rem;
  background-color: var(--theme-color-seventh);
}

@media only screen and (max-width: 767px) {
  .p-top--notify .p-top__left {
    margin-block-end: 1.7rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top--notify .p-top__row {
    display: flex;
    align-items: center;
  }
  .p-top--notify .p-top__left {
    width: 19rem;
  }
  .p-top--notify .p-top__right {
    flex: 1;
    min-width: 1px;
  }
}
/*------------------------------------------------------------------------------------
3.5. SECTION TOP ABOUT.
------------------------------------------------------------------------------------*/
.p-top--about .p-top__header {
  position: relative;
  padding-block-start: var(--spacing-sp-30-pc-45);
  background-color: var(--theme-color-tertiary);
}
.p-top--about .p-top__header::before {
  position: absolute;
  content: "";
  inset-inline: 0;
  margin-inline: auto;
  background-color: var(--theme-color-tertiary);
}
.p-top--about .p-top__body {
  position: relative;
}
.p-top--about .p-top__body::before {
  position: absolute;
  content: "";
  inset-inline: 0;
  inset-block-end: -1.8rem;
  width: 0.8rem;
  height: 3.5rem;
  margin-inline: auto;
  background: url("./../images/s2-dot-indigo.webp") no-repeat center center/100% auto;
}
.p-top--about .p-top__body .c-title {
  margin-inline: -1.5rem;
}

@media only screen and (max-width: 767px) {
  .p-top--about .p-top__header::before {
    inset-block-end: -4rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    width: 65%;
    height: 4.1rem;
  }
  .p-top--about .p-top__body {
    padding-block: 6rem 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top--about .p-top__header::before {
    inset-block-end: -7.1rem;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    width: 72rem;
    height: 7.2rem;
  }
  .p-top--about .p-top__body {
    padding-block: 12.5rem 7.5rem;
  }
}
/*------------------------------------------------------------------------------------
3.6. SECTION TOP VOICE.
------------------------------------------------------------------------------------*/
.p-top--voice {
  background-color: var(--theme-color-ninth);
}
.p-top--voice .c-title {
  margin-block-end: var(--spacing-sp-30-pc-55);
}

@media only screen and (max-width: 767px) {
  .p-top--voice {
    padding-block: 4rem 5rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top--voice {
    padding-block: 6rem 10rem;
  }
}
/*------------------------------------------------------------------------------------
3.7. SECTION TOP FEATURE.
------------------------------------------------------------------------------------*/
.p-top--feature {
  padding-block-start: var(--spacing-sp-45-pc-90);
}
.p-top--feature .c-title {
  margin-block-end: var(--spacing-sp-30-pc-55);
}

/*------------------------------------------------------------------------------------
3.8. SECTION TOP JOB.
------------------------------------------------------------------------------------*/
.p-top--job {
  padding-block: var(--spacing-sp-50-pc-100);
}
.p-top--job .p-top__row {
  display: flex;
  margin-block-start: var(--spacing-sp-25-pc-45);
}
.p-top--job .p-top__title {
  color: var(--theme-color-quaternary);
  font-weight: 900;
}
.p-top--job .c-title-top {
  margin-block-end: var(--spacing-sp-35-pc-75);
}
.p-top--job .c-block-top {
  margin-block-start: var(--spacing-sp-35-pc-70);
}
.p-top--job .c-slider-run {
  margin-block-start: var(--spacing-sp-50-pc-100);
}

@media only screen and (max-width: 575px) {
  .p-top--job .p-top__row {
    align-items: center;
    flex-direction: column-reverse;
  }
  .p-top--job .p-top__left {
    margin-block-start: 1.5rem;
  }
}
@media only screen and (min-width: 576px) {
  .p-top--job .p-top__row {
    align-items: flex-end;
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .p-top--job .p-top__right {
    padding-inline-start: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-top--job .p-top__left img {
    width: 20rem;
  }
  .p-top--job .p-top__title {
    font-size: 2.2rem;
    line-height: 1.8;
  }
}
@media only screen and (min-width: 768px) {
  .p-top--job .p-top__right {
    padding-inline-start: 4rem;
  }
  .p-top--job .p-top__title {
    font-size: 3.6rem;
    line-height: 2;
  }
}
/*------------------------------------------------------------------------------------
3.9. SECTION TOP TIMELINE.
------------------------------------------------------------------------------------*/
.p-top--timeline {
  z-index: 2;
  padding-block: var(--spacing-sp-50-pc-100);
}

@media only screen and (max-width: 767px) {
  .p-top--timeline .c-deco__wrap {
    background: url("./../images/common/bg-gray-left-sp.webp") repeat-y left top/35% auto, url("./../images/common/bg-gray-right-sp.webp") repeat-y right top/25% auto, var(--theme-color-ninth);
  }
}
@media only screen and (min-width: 768px) {
  .p-top--timeline .c-deco__wrap {
    background: url("./../images/common/bg-gray-left.webp") no-repeat left top/auto 100%, url("./../images/common/bg-gray-right.webp") no-repeat right top/auto 100%, var(--theme-color-ninth);
  }
  .p-top--timeline .c-deco__img {
    height: 100%;
  }
  .p-top--timeline .c-deco__img--v1, .p-top--timeline .c-deco__img--v2 {
    inset-block-start: 0;
  }
  .p-top--timeline .c-deco__img--v1 {
    inset-inline-start: 0;
  }
  .p-top--timeline .c-deco__img--v2 {
    inset-inline-end: 0;
  }
  .p-top--timeline .c-deco__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/*------------------------------------------------------------------------------------
3.10. SECTION TOP QA.
------------------------------------------------------------------------------------*/
.p-top--qa {
  padding-block: var(--spacing-sp-50-pc-100);
}

/*------------------------------------------------------------------------------------
3.11. SECTION TOP NEWS.
------------------------------------------------------------------------------------*/
.p-top--news {
  padding-block: var(--spacing-sp-45-pc-90) var(--spacing-sp-50-pc-100);
  background-color: var(--theme-color-ninth);
}

@media only screen and (max-width: 767px) {
  .p-top--news .p-top__left {
    margin-block-end: 1.5rem;
  }
  .p-top--news .p-top__btn {
    text-align: center;
    margin-block-start: 2.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .p-top--news .p-top__row {
    display: flex;
  }
  .p-top--news .p-top__left {
    width: 19rem;
  }
  .p-top--news .p-top__right {
    flex: 1;
    min-width: 1px;
  }
  .p-top--news .p-top__btn {
    margin-block-start: 3.2rem;
  }
  .p-top--news .c-title {
    text-align: start;
  }
}
/*====================================================================================
3. KEYFRAMES.
====================================================================================*/
@keyframes k-Slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}