@charset "utf-8";

/* CSS Document */


/***********
pageHeading
************/

.pageHeading {
  margin-top: var(--header-height);
  margin-left: var(--fv-padding);
  margin-right: var(--fv-padding);
  border-radius: var(--rounded-main);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  position: relative;
  font-size: 0.85rem;
  height: 17em;
  background: url(../../img/pagevisual01.jpg) no-repeat center center / cover ;
  background-size: max(100%,1400px) auto;
}
.pageHeading-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.pageHeading-block {
  letter-spacing: 0.04em;
}
.pageHeading-title {
  font-weight: 900;
  font-size: 275%;
}
.pageHeading-lead {
  font-weight: 700;
  color: var(--color-brand01);
  padding-top: 0.2em;
}

@media screen and (max-width:834px) {

  .pageHeading {
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    font-size: 0.85rem;
    height: 12em;
    background-size: max(100%,1400px) auto;
  }
  .pageHeading-block {
    letter-spacing: 0;
  }
  .pageHeading-title {
    font-size: 185%;
  }

}


/***********
breadcrumb
************/

.breadcrumb{
  font-size: 0.9rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0;
  position: relative;
  z-index: 100;
}
.breadcrumb-lists{
  display: flex;
  position: absolute;
  width: 100%;
  padding-top: 1.2em;
}
.breadcrumb-lists li{
  position: relative;
}
.breadcrumb-lists li:not(:has(a)){
  opacity: 0.6;
}
.breadcrumb-lists li:not(:last-child)::after{
  content: "／";
  display: inline-block;
  padding: 0 0.5em;
}
.breadcrumb-lists li a{
  color: inherit;
  text-decoration: none;
  transition: 0s;
}
body.is-pc .breadcrumb-lists li a:hover{
  text-decoration: underline;
  color: var(--color-brand02);
}


.breadcrumb-lists li:last-child {
  max-width: 12em;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

@media screen and (max-width:834px) {

  .breadcrumb{
    font-size: 0.6rem;
    -webkit-overflow-scrolling: touch;
    letter-spacing: 0;
  }
  .breadcrumb-lists{
    overflow: auto;
    display: flex;
    white-space: nowrap;
    padding-left: 3%;
    padding-top: 1em;
  }
  .breadcrumb-lists li a{
  }
  .breadcrumb-lists li:last-child {
    max-width: 12em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  body.is-pc .breadcrumb-lists li a:hover{
  }
  .breadcrumb-lists li:not(:last-child)::after{
    padding: 0 0.3em;
  }

}


/***********
box
************/

.box {
  background-color: var(--color-base);
  padding: min(5vw,4em) min(4vw,6%);
}

@media screen and (max-width:834px) {

  .box {
    margin-left: -3vw;
    margin-right: -3vw;
  }
}


/***********
pageVisual
************/

.pageVisual {
  margin-top: 5em;
  position: relative;
}

.pageVisual-img {
  position: relative;
  overflow: hidden;
}
.pageVisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 12 / 4;
}

.pageVisual-title {
  font-family: var(--font-family-gothic-en02);
  font-weight: 900;
  font-size: 800%;
  line-height: 1;
  white-space: nowrap;
  color: var(--color-base);
  text-align: center;
  margin-top: -0.1em;
  margin-bottom: -0.2em;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

/*
message
*/

.pageVisual-message {
  position: relative;
  margin-top: -2em;
  display: flex;
  justify-content: center;
}
.pageVisual-message-section {
  width: clamp(80px,16em, 210px);
  margin: 0 1em;
  text-align: center;
  font-size: clamp(10px,1.4vw, 16px);
  white-space: nowrap;
}
.pageVisual-message-section a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.pageVisual-message-img {
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  margin: 0 auto;
}
.pageVisual-message-inner {
  margin-top: -1.5em;
  position: relative;
  z-index: 9;
}
.pageVisual-message-job {
  display: inline-block;
  background-color: var(--color-brand03);
  color: var(--color-base);
  padding: 0.4em 1em;
  font-weight: 600;
}
.pageVisual-message-pos {
  padding-top: 0.5em;
}
.pageVisual-message-name {
  font-size: 240%;
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-brand03);
}
.pageVisual-message-name::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f358";
  font-size: 55%;
  margin-left: 0.4em;
  vertical-align: middle;
  translate: 0 -0.15em;
  transition: 0.2s;
}
body.is-pc .pageVisual-message-section a:hover .pageVisual-message-name::after {
  translate: 0 0;
}




@media screen and (max-width:1024px) {

  .pageVisual-img img {
    min-height: 160px;
    max-height: 300px;
    object-fit: cover;
    aspect-ratio: 16 / 12;
  }
  .pageVisual-title {
    font-size: clamp(16px,18vw, 120px);
    letter-spacing: -0.04em;
  }

}

@media screen and (max-width:834px) {

  .pageVisual {
    margin-top: var(--padding-main);
  }

  /*
  message
  */

  .pageVisual-message {
    margin-top: -1em;
  }
  .pageVisual-message-section {
    width: clamp(80px,16em, 210px);
    font-size: clamp(9px,2.8vw, 12px);
    margin: 0 0.5em;
  }
  .pageVisual-message-inner {
    margin-top: -1em;
  }
  .pageVisual-message-job {
    padding: 0.4em 0.4em;
  }
  .pageVisual-message-pos {
    padding-top: 0.5em;
    font-size: 110%;
  }
  .pageVisual-message-name {
    font-size: 240%;
  }

}

/***********
divide
************/

.divide {
  display: flex;
  flex-wrap: wrap;
}
.divide.-reverse {
  flex-direction: row-reverse;
}
.divide.-center {
  align-items: center;
}
.divide.-end {
  align-items: end;
}
.divide-visual {
  width: 33%;
  min-width: 240px;
  padding-right: 5%;
  padding-top: 0.5em;
}
.divide-inner {
  flex: 1;
}

@media screen and (max-width:640px) {

  .divide {
    display: block;
  }
  .divide-visual,
  .divide-visual.-small  {
    width: auto;
    min-width: initial;
    padding-right: 0;
  }
  .divide-img {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }
  .divide-img-caption {
    font-size: 93%;
    text-align: left;
  }

  .divide-visual,
  .divide-visual.-offset {
    padding-top: 2em;
  }

}

/***********
separate
************/

.separate {
  display: flex;
  justify-content: space-between;
}
.separate-item.-large {
  width: 50%;
}
.separate-item.-small {
  width: 45%;
}
.separate-item.-xlarge {
  width: 55%;
}
.separate-item.-xsmall {
  width: 40%;
}
.separate-item.-xxlarge {
  width: 60%;
}
.separate-item.-xxsmall {
  width: 35%;
}
.separate-item.-xxxlarge {
  width: 62%;
}
.separate-item.-xxxsmall {
  width: 33%;
}

.separate-item.-half {
  width: 47.5%;
}
.separate.-reverse {
  flex-direction: row-reverse;
}
.separate.-end {
  align-items: end;
}

.separate-item.-offsetTop {
  padding-top: 0.5em;
}

@media screen and (max-width:640px) {

  .separate {
    display: block;
  }
  .separate-item {
    width: auto !important;
  }
  .separate-item:first-child {
    padding-bottom: 1.6rem;
  }

}

/***********
salesChart
************/

.salesChart {
  position: relative;
  max-width: 900px;
  margin: 3em auto 3em;
}
.salesChart-base {
}
.salesChart-bar {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  transition: 1.6s cubic-bezier(0.25, 1, 0.5, 1)  0.2s;
}
.is-inview.salesChart-bar{
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/***********
blockCard
************/

.blockCard {
  display: flex;
  justify-content: space-between;
  margin-bottom: -3%;
}
.blockCard-section {
  width: 48.5%;
  background: url(../../img/pattern03.jpg) no-repeat center center / cover;
  padding: min(7vw,2em) min(5vw,3em);
  margin-bottom: 3%;
}

@media screen and (max-width:834px) {

  .blockCard {
    display: block;
    margin-bottom: -1em;
  }
  .blockCard-section {
    width: auto;
    margin-bottom: 1em;
  }
}


/***********
pointList
************/

.pointList {
  margin-top: -0.8em;
}
.pointList li {
  padding: 1em 0 1em 1.8em;
  position: relative;
  line-height: 1.6;
  position: relative;
}
.pointList li::before {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 400; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f0eb";
  color: var(--color-brand01);
  position: absolute;
  left: 0.3em;
  top: 1.5em;
  scale: 1.2;
}
.pointList li:not(:last-child){
  border-bottom: 2px dotted rgba(16, 43, 133, 0.3);
}

/***********
analysis
************/

.analysis {
  background: url(../../img/pattern01.jpg);
  background-size: max(100%,1000px);
  padding: min(7vw,3em) min(5vw,4em);
}

.analysis-section {
  display: flex;
  align-items: start;
}
.analysis-section:not(:last-child) {
  padding-bottom: min(7vw,3em);
  margin-bottom: min(7vw,3em);
  border-bottom: 2px dotted rgba(16, 43, 133, 0.3);
}


.analysis-block {
  font-size: clamp(1.15em,2.6vw, 1.3em);
  width: 14em;
  background: url(../../img/symbol_bg01.png) no-repeat center 60% / 65% auto;
  background-color: var(--color-base);
  border-radius: var(--rounded-sub);
  text-align: center;
  margin-top: 0.4em;
}

.analysis-badge {
  letter-spacing: 0;
  margin-top: -1em;
}
.analysis-badge-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 2.8em;
  height: 2.8em;
  font-size: 120%;
  color: var(--color-base);
  background-color: var(--color-brand01);
  border-radius: 50%;
  white-space: nowrap;
  position: relative;
}
.analysis-badge-title {
  font-family: var(--font-family-gothic-en);
  font-size: 42%;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-top: 0.4em;
}
.analysis-badge-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 900;
  line-height: 1.1;
}

.analysis-title {
  font-size: 95%;
  color: var(--color-brand01);
  font-weight: 900;
  padding-top: 1em;
}


.analysis-data {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
  height: 4.8em;
  padding-bottom: 1em;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
  color: var(--color-brand01);
}
.analysis-data-text {
}
.analysis-data-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 250%;
  letter-spacing: -0.06em;
}
.analysis-data-num.-small {
  font-size: 180%;
}
.analysis-data-num.-xsmall {
  font-size: 160%;
}
.analysis-data-unit {
  padding-left: 0.1em;
}

.analysis-inner {
  flex: 1;
  padding-left: 5%;
}

@media screen and (max-width:834px) {


  .analysis-block {
    font-size: clamp(0.7em,2vw, 1.1em);
    width: 14em;
  }
  .analysis-badge-container {
    font-size: 140%;
  }
  .analysis-title {
    font-size: 95%;
  }

  .analysis-data {
    font-size: 200%;
    height: 4.8em;
    padding-bottom: 1em;
  }

}

@media screen and (max-width:640px) {

  .analysis {
    padding: min(14vw,3em) min(5vw,4em);
  }

  .analysis-section {
    display: block;
  }
  .analysis-section:not(:last-child) {
    padding-bottom: 0;
    margin-bottom: 4em;
    border-bottom: none;
  }


  .analysis-block {
    font-size: clamp(1.15em,2.6vw, 1.3em);
    width: auto;
    margin-top: 0.4em;
    background-size: min(50%,220px) auto;
  }

  .analysis-badge {
    letter-spacing: 0;
    margin-top: 0;
    translate: 0 -1em;
  }
  .analysis-badge-container {
    width: 2.8em;
    height: 2.8em;
  }


  .analysis-title {
    margin-top: -0.5em;
    font-size: 100%;
    padding-top: 0;
  }


  .analysis-data {
    font-size: 2.4rem;
    height: auto;
    padding-bottom: 0.5em;
  }

  .analysis-inner {
    padding-left: 0;
    padding-top: 1.2em;
  }
}


/***********
office
************/

.office {
  position: relative;
  margin-top: -4em;
}
.office-map {
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}
.office-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 67%;
  z-index: 2;
  padding-top: 4em;
}

@media screen and (max-width:1024px) {

  .office {
    margin-top: -2em;
    padding-top: 4em;
  }
  .office-box {
    padding-top: 2em;
  }
}

@media screen and (max-width:834px) {

  .office {
    padding-top: 0;
    margin-top: 0;
  }
  .office-map {
    margin: -2em -5vw 1em -8vw;
  }
  .office-box {
    position: static;
    width: auto;
    padding-top: 0;
  }

}


/***********
pageList
************/

.pageList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -3%;
}
.pageList li {
  width: 48.5%;
  margin-bottom: 3%;
}
.pageList li a {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: var(--rounded-sub);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.pageList-img {
}
.pageList-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  z-index: 9;
}
.pageList-block {
  display: inline-block;
  background-color: var(--color-base);
  min-width: 15em;
  padding: 1em 1em 1em 2.5em;
  letter-spacing: 0;
  position: relative;
}
.pageList-block::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: 0.8em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  line-height: normal;
  color: var(--color-brand01);
}
.pageList-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.pageList-subTitle {
  font-size: 0.8rem;
  color: var(--color-brand03);
  padding-top: 0.2em;
}

@media screen and (max-width:834px) {

  .pageList-block {
    min-width: 13em;
    padding: 1em 1em 1em 2em;
  }
  .pageList-block::after {
    left: 0.2em;
  }
  .pageList-img img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
  }
  .pageList-title {
    font-size: 1.1rem;
  }
  .pageList-subTitle {
    font-size: 0.75rem;
  }

}

@media screen and (max-width:640px) {

  .pageList {
    display: block;
    margin-bottom: -10px;
  }
  .pageList li {
    width: auto;
    margin-bottom: 10px;
  }

  .pageList-img img {
    min-height: 140px;
    aspect-ratio: 16 / 7;
  }

  .pageList-container {
    justify-content: end;
    padding-bottom: 5%;
  }
  .pageList-block {
    min-width: 14em;
    padding: 0.6em 1em 0.6em 1.6em;
  }
  .pageList-block::after {
    left: 0.2em;
  }
  .pageList-title {
    font-size: 1.1rem;
  }
  .pageList-subTitle {
    font-size: 0.7rem;
  }

}

/***********
voiceIndex
************/

.voiceIndex {
  max-width: 1000px;
  margin: 0 auto;
}
.voiceIndex-section {
  position: relative;
}
.voiceIndex-section + .voiceIndex-section  {
  margin-top: 2.5em;
}
.voiceIndex-section a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.voiceIndex-img {
  border-radius: var(--rounded-main);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.voiceIndex-container {
  position: absolute;
  left: -1.5em;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding-bottom: 1.2em;
  pointer-events: none;
  z-index: 9;
}
.voiceIndex-block {
}

.voiceIndex-data {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  color: var(--color-base);
  background-color: var(--color-brand01);
  padding: 0.4rem 1.5rem ;
}
.voiceIndex-data-num {
  font-family: var(--font-family-gothic-en02);
  font-weight: 600;
  padding-right: 1em;
}
.voiceIndex-data-num span {
  font-size: 130%;
}
.voiceIndex-data-corp {
  font-size: 1.2rem;
  font-weight: 600;
  padding-right: 0.6em;
}
.voiceIndex-data-name {
  font-size: 1.4rem;
  font-family: var(--font-family-gothic-en02);
  font-weight: 600;
  line-height: 1.3;
}
.voiceIndex-data-name span {
  padding-right: 0.1em;
}
.voiceIndex-data-name small {
  font-size: 70%;
}

.voiceIndex-lead {
  margin-top: 0.2em;
}
.voiceIndex-lead-text {
  font-size: 1.55rem;
  font-weight: 900;
  padding: 0.5rem 1.5rem ;
  display: inline;
  line-height: 2.2em;
  background: linear-gradient(transparent 0%, var(--color-base) 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media screen and (max-width:640px) {

  .voiceIndex {
  }
  .voiceIndex-section + .voiceIndex-section  {
    margin-top: 2.5em;
  }

  .voiceIndex-img {
    border-radius: var(--rounded-main);
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
  }
  .voiceIndex-img img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    aspect-ratio: 16 / 13;
  }
  .voiceIndex-container {
    left: -1em;
    padding-bottom: 1.2em;
  }

  .voiceIndex-data {
    padding: 0.1rem 1rem ;
    font-size: clamp(0.7rem,3.6vw, 1rem);
  }
  .voiceIndex-data-corp {
    font-size: clamp(0.7rem,3.6vw, 1rem);
  }
  .voiceIndex-data-name {
    font-size: clamp(0.8rem,4.6vw, 1.2rem);
  }

  .voiceIndex-lead {
    margin-top: 0.2em;
  }
  .voiceIndex-lead-text {
    font-size: clamp(0.8rem,4vw, 1.3rem);
    padding: 0.2rem 1rem ;
    line-height: 2em;
  }

}

/***********
voiceHeader
************/

.voiceHeader {
  border-radius: var(--rounded-sub);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  position: relative;
}
.voiceHeader-img {
}
.voiceHeader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 100 / 44;
}

.voiceHeader-container {
  position: absolute;
  left: 50%;
  bottom: 5.5em;
  translate: -50% 0;
  z-index: 9;
  width: 10px;
  height: 10px;
}
.voiceHeader-container::after {
  content: "×";
  font-weight: 800;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  font-size: 2.4rem;
  color: var(--color-base);
}
.voiceHeader-item {
  white-space: nowrap;
  background-color: var(--color-base);
  display: flex;
  align-items: center;
  padding: 0.7em 1.2em;
  position: absolute;
  bottom: 50%;
  translate: 0 50%;
}
.voiceHeader-item.-left {
  right: 1.5em;
}
.voiceHeader-item.-right {
  left: 1.5em;
}
.voiceHeader-corp {
  font-size: 1.3rem;
  font-weight: 700;
  padding-right: 1em;
}
.voiceHeader-heading {
}
.voiceHeader-heading-pos {
  font-weight: 700;
  font-size: 0.9rem;
}
.voiceHeader-heading-name {
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 700;
}
.voiceHeader-heading-name span {
  font-size: 200%;
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  letter-spacing: 0;
}

@media screen and (max-width:834px) {

  .voiceHeader-img img {
    aspect-ratio: 100 / 60;
  }


  .voiceHeader-container {
    bottom: 4.5em;
  }
  .voiceHeader-container::after {
    font-size: 1.6rem;
  }
  .voiceHeader-item {
    padding: 0.5em 1em;
    font-size: clamp(0.7rem,3.6vw, 1rem);
  }
  .voiceHeader-item.-left {
    right: 1.2em;
  }
  .voiceHeader-item.-right {
    left: 1.2em;
  }
  .voiceHeader-corp {
    font-size: 100%;
    padding-right: 0.5em;
  }
  .voiceHeader-heading-pos {
    font-size: 90%;
  }
  .voiceHeader-heading-name {
    font-size: 120%;
  }
  .voiceHeader-heading-name span {
    font-size: 150%;
  }

}

@media screen and (max-width:520px) {

  .voiceHeader-container {
    bottom: 3.5em;
  }
  .voiceHeader-img img {
    aspect-ratio: 100 / 90;
  }
  .voiceHeader-item {
    display: block;
    font-size: clamp(0.7rem,4vw, 1.1rem);
  }
  .voiceHeader-heading-pos {
    font-size: 80%;
  }
}

/***********
voiceHeadline
************/

.voiceHeadline {
  font-size: clamp(1.15rem,3vw, 1.7rem);
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 0.7em;
}
.voiceHeadline-badge {
  width: 2.6em;
  height: 3.2em;
  position: absolute;
  top: 50%;
  translate: 0 -55%;
  left: -0.6em;
}
svg.voiceHeadline-badge-balloon {
  width: 100%;
  height: 100%;
}
.voiceHeadline-badge-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  color: var(--color-base);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  padding-top: 0.1em;
}

.voiceHeadline-badge i {
  font-size: 65%;
}
.voiceHeadline-badge-name {
  font-size: 55%;
}
.voiceHeadline-badge-name span{
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 130%;
  letter-spacing: 0;
}
.voiceHeadline-title {
}

/*
color
*/

.voiceHeadline.-brand01 {
  color: var(--color-brand01);
}
.voiceHeadline.-brand01 svg.voiceHeadline-badge-balloon {
  fill: var(--color-brand01);
}

.voiceHeadline.-brand03 {
  color: var(--color-brand03);
}
.voiceHeadline.-brand03 svg.voiceHeadline-badge-balloon {
  fill: var(--color-brand03);
}


/***********
symbolBlock
************/

.symbolBlock {
}
.symbolBlock-visual {
  position: relative;
}
.symbolBlock-visual-ram {
  width: clamp(200px,40%, 400px);
  position: absolute;
  right: -50px;
  top: -70px;
}

.symbolBlock-block {
  padding-top: 2em;
  background: url(../../img/symbol_bg02.png) no-repeat 4% -14% / 350px auto;
  display: flex;
  justify-content: end;
}
.symbolBlock-inner {
  max-width: 900px;
}

@media screen and (max-width:834px) {

  .symbolBlock-visual-ram {
    width: clamp(120px,40%, 200px);
    right: -5vw;
    top: -20px;
  }

  .symbolBlock-block {
    padding-top: 1.5em;
    background-size: clamp(120px,60vw, 240px);
    background-position: right -10%;
    display: block;
  }
}


/***********
message
************/

.message {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-visual {
  width: 28%;
  min-width: 240px;
  padding-top: 0.5em;
}
.message-inner {
  width: 67%;
}

.message-prof {
  color: var(--color-brand01);
}
.message-prof-text {
  padding-top: 0.8em;
  font-weight: 600;
}
.message-prof-name {
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 180%;
  line-height: 1.2;
  padding-left: 0.2em;
}


@media screen and (max-width:640px) {

  .message {
    display: block;
  }
  .message-visual,
  .message-visual.-small  {
    width: auto;
    min-width: initial;
    padding-right: 0;
  }

  .message-inner {
    width: auto;
  }

  .message-inner + .message-visual,
  .message-visual.-offset {
    padding-top: 2em;
  }



  .message-prof {
    text-align: center;
    padding-bottom: 1.2em;
  }
  .message-prof img {
    width: 140px;
    margin: 0 auto;
    border-radius: 50% !important;
  }
  .message-prof-text {
    padding-top: 0.8em;
    font-weight: 600;
  }

}


/***********
jobNavi
************/


.jobNavi {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
}
.jobNavi-section {
  width: 31.3%;
  margin-left: 2%;
}
.jobNavi-section a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.jobNavi-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  white-space: nowrap;
  width: 8em;
  height: 8em;
  border-radius: 50%;
  background-color: var(--color-brand01);
  color: var(--color-base);
  position: absolute;
  left: 2em;
  top: -2em;
  z-index: 9;
  pointer-events: none;
}
.jobNavi-badge-title {
  line-height: 1.2;
}
.jobNavi-badge-num {
  font-size: 270%;
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  padding-top: 0.1em;
}
.jobNavi-img {
  border-radius: var(--rounded-sub);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  margin-right: 1em;
}
.jobNavi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 375 / 480;
}
.jobNavi-inner {
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 9;
}
.jobNavi-box {
  width: clamp(16em,66%, 25em);
  background-color: var(--color-base);
  border-radius: var(--rounded-sub);
  padding: 1.2em 7% 1.6em;
  margin-top: -30%;
}
.jobNavi-heading {
  padding-bottom: 0.8em ;
}
.jobNavi-heading-title {
  display: inline-block;
  color: var(--color-brand01);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.jobNavi-heading-title::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f358";
  position: absolute;
  left: calc(100% + 0.2em);
  top: 50%;
  translate: 0 -50%;
  scale: 0.7;
  transition: 0.2s;
  line-height: normal;
}
body.is-pc a:hover .jobNavi-heading-title::after {
  translate: 0 -40%;
}
.jobNavi-heading-subTitle {
  font-size: max(75%,11px);
  color: var(--color-brand03);
}
.jobNavi-text {
  font-size: 0.9rem;
  text-align: justify;
  line-height: 1.7;
}

.jobNavi-link {
  padding-top: 3.5em;
  text-align: center;
}

@media screen and (min-width:641px) and (max-width:834px) {

  .jobNavi {
    display: block;
    margin-left: 0;
    padding-top: 2em;
    margin-bottom: -2em;
  }
  .jobNavi-section {
    width: auto;
    margin-left: 0;
    margin-bottom: 2em;
  }
  .jobNavi-section a {
    display: flex;
    align-items: end;
  }
  .jobNavi-badge {
    left: -1.5em;
    font-size: 0.7rem;
  }
  .jobNavi-img {
    width: 60%;
    margin-right: 0;
    padding-bottom: 2em;
  }
  .jobNavi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }

  .jobNavi-inner {
    flex: 1;
    display: block;
  }
  .jobNavi-box {
    width: auto;
    padding: 1.2em 1.5em 1.6em;
    margin-top: 0;
    margin-left: -20%;
  }

}

@media screen and (max-width:640px) {

  .jobNavi {
    display: block;
    margin-left: 0;
    padding-top: 2em;
    margin-bottom: -3em;
  }
  .jobNavi-section {
    width: auto;
    margin-left: 0;
    margin-bottom: 3em;
  }
  .jobNavi-section a {
  }
  .jobNavi-badge {
    font-size: 0.7rem;
    left: -1em;
    top: -2em;
  }
  .jobNavi-badge-title {
    line-height: 1.2;
  }

  .jobNavi-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 12;
  }

  .jobNavi-inner {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 9;
  }
  .jobNavi-box {
    width: clamp(16em,100%, 45em);
    padding: 1.2em 7% 1.6em;
    margin-top: -20%;
    margin-right: -4vw;
  }

  .jobNavi-link {
    padding-top: 2.5em;
  }
}


/***********
stickyColumn
************/

.stickyColumn {
  display: flex;
}
.stickyColumn-first {
  width: 28%;
  min-width: 260px;
  padding-right: 6%;
}

.stickyColumn-second {
  flex: 1;
}

@media screen and (max-width:834px) {

  .stickyColumn {
    display: flex;
  }
  .stickyColumn-first {
    width: 25%;
    min-width: 200px;
    padding-right: 3%;
  }

  .stickyColumn-second {
    flex: 1;
  }
}


@media screen and (max-width:640px) {

  .stickyColumn {
    display: block;
  }
  .stickyColumn-first {
    width: auto;
    min-width: initial;
    padding-right: 0;
  }
  .stickyColumn-second {
  }
}


/***********
sideNavi
************/

.sideNavi {
  position: sticky;
  top: 100px;
}
.sideNavi-title {
  font-size: clamp(1rem,4vw, 1.2rem);
  font-weight: 700;
  color: var(--color-brand01);
  margin-bottom: 0.8em;
  text-align: center;
}
.sideNavi-title i {
  margin-right: 0.3em;
  margin-left: -0.5em;
  scale: 0.95;
}
.sideNavi-list {
}
.sideNavi-list li {
  margin-bottom: 1px;
}
.sideNavi-list a {
  display: block;
  font-size: clamp(1rem,4vw, 1.3rem);
  font-weight: 600;
  background-color: var(--color-sub03);
  padding: 1em 2.5em 1em 1em;
  line-height: 1.4;
  text-decoration: none;
  color: var(--color-brand03);
  position: relative;
}
.sideNavi-list a::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  right: 0.6em;
  top: 50%;
  translate: 0 -50%;
  line-height: normal;
  scale: 0.7;
  transition: 0.2s;
}
body.is-pc .sideNavi-list a:hover {
  background-color: var(--color-brand03);
  color: var(--color-base);
}


@media screen and (max-width:834px) {

  .sideNavi {
    position: sticky;
    top: 50px;
  }
  .sideNavi-title {
    font-size: 124%;
  }
  .sideNavi-list a {
    font-size: 100%;
  }
}

@media screen and (max-width:640px) {

  .sideNavi {
    display: none;
  }
}


/***********
jobTypes
************/

.jobTypes {
  display: flex;
  flex-wrap: wrap;
}
.jobTypes li {
  width: calc(25% - 2px);
  margin-left: 2px;
  margin-bottom: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  background-color: var(--color-sub03);
  color: var(--color-brand01);
  min-height: 5.2em;
  line-height: 1.4;
}

@media screen and (max-width:834px) {

  .jobTypes li {
    width: calc(33.3% - 2px);
    font-size: clamp(0.7rem,3.4vw, 1rem);
    min-height: 4.6em;
  }
}

/***********
flow
************/

.flow {
  background: url(../../img/pattern03.jpg) no-repeat center center / 100% 100%;
  padding: min(7vw,3.5em) min(3vw,3em);
  counter-reset : flow_num;
}
.flow-section {
  display: flex;
  border-radius: var(--rounded-min);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}
.flow-section + .flow-section {
  margin-top: 10px;
}
.flow-heading {
  background-color: var(--color-brand01);
  color: var(--color-base);
  width: 11em;
  padding: 1.8em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}
.flow-heading-title {
  font-weight: 500;
}
.flow-heading::before {
  display: inline-block;
  counter-increment:flow_num;
  content: 'STEP.' counter(flow_num) ;
  background-color: var(--color-base);
  color: var(--color-brand01);
  border-radius: 10em;
  font-family: var(--font-family-gothic-en);
  font-size: 85%;
  font-weight: 800;
  padding: 0.3em 0.6em;
  margin-bottom: 0.5em;
}


.flow-inner {
  flex: 1;
  background-color: var(--color-base);
  padding: 1.5em 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width:640px) {

  .flow {
    margin-left: -3vw;
    margin-right: -3vw;
  }
  .flow-section {
    display: block;
  }
  .flow-section + .flow-section {
    margin-top: 15px;
  }
  .flow-heading {
    width: auto;
    padding: 1.2em 0;
    display: block;
  }

  .flow-inner {
    padding: 1.2em 5%;
    display: block;
  }

}


/***********
inquiryFlow
************/

.inquiryFlow {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4em;
}
.inquiryFlow li {
  width: calc(33.3% - 1.5em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand01);
  height: 5em;
  border-radius: var(--rounded-min);
  background-color: var(--color-sub03);
  position: relative;
}
.inquiryFlow li:not(:last-child)::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f054";
  position: absolute;
  left: calc(100% + 0.8em);
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
  color: var(--color-brand01);
}
.inquiryFlow-num {
  display: inline-block;
  padding-right: 0.8em;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-family: var(--font-family-gothic-en02);
  font-size: 110%;
}
.inquiryFlow-text {
  display: inline-block;
}

.inquiryFlow li.is-active {
  background-color: var(--color-brand01);
  color: var(--color-base);
}

@media screen and (max-width:834px) {

  .inquiryFlow {
    margin-bottom: 2em;
  }
  .inquiryFlow li {
    width: calc(33.3% - 1em);
    border-width: 1px;
    height: 4em;
    line-height: 1.2;
  }
  .inquiryFlow li:not(:last-child)::after {
    left: calc(100% + 0.6em);
    font-size: 85%;
  }
  .inquiryFlow-num {
    display: block;
    padding-right: 0;
    font-size: 90%;
  }
  .inquiryFlow-text {
    display: block;
  }

  .inquiryFlow li.is-active {
    background: var(--color-brand01);
    color: var(--color-base);
  }

}


/***********
dataTable
************/

.dataTable {
  line-height: 1.6;
  border-top: 1px solid var(--color-main);
}

.dataTable thead td {
  padding: 1em 1.2em ;
}
.dataTable thead th {
  padding: 1em 1.2em ;
}

.dataTable tbody tr {
  border-bottom: 1px solid var(--color-main);
}
.dataTable tbody th {
  padding: 1em 1em ;
  font-weight: 500;
  color: var(--color-brand01);
  background-color: var(--color-sub03);
  line-height: 1.4;
}
.dataTable tbody td {
  padding: 1em 1.5em 1em 1.5em ;
  position: relative;
  text-align: justify;
}

/*
setting
*/

.dataTable.-fixed {
  table-layout: fixed;
}

.dataTable.-vwide thead td ,
.dataTable.-vwide thead th{
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.dataTable.-vwide tbody td ,
.dataTable.-vwide tbody th{
  padding-top: 1.2em;
  padding-bottom: 1.2em;
}


.dataTable.-vtop,
.dataTable.-vtop th,
.dataTable.-vtop td {
  vertical-align: top;
}

.dataTable.-alignLeft,
.dataTable.-alignLeft th,
.dataTable.-alignLeft td {
  text-align: justify;
}

.dataTable.-alignCenter,
.dataTable.-alignCenter th,
.dataTable.-alignCenter td {
  text-align: center;
}


/*
size
*/

.dataTable-th.-trisect {
  width: 33%;
}
.dataTable-th.-small {
  width: 15em;
}
.dataTable-th.-xsmall {
  width: 12.5em;
}
.dataTable-th.-xxsmall {
  width: 10em;
}
.dataTable-th.-alignLeft {
  text-align: left;
}



@media screen and (max-width:834px) {

  .dataTable {
    font-feature-settings: "palt";
    line-height: 1.5;
  }
  .dataTable th,
  .dataTable td {
  }

  .dataTable thead td {
    padding: 1em 0.5em ;
  }
  .dataTable thead th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody th {
    padding: 1em 0.5em ;
  }
  .dataTable tbody td {
    padding: 1em 0.5em ;
  }

  /*
  setting
  */

  .dataTable.-fixed {
    table-layout: fixed;
  }

  .dataTable.-vwide thead td ,
  .dataTable.-vwide thead th{
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .dataTable.-vwide tbody td ,
  .dataTable.-vwide tbody th{
    padding-top: 1em;
    padding-bottom: 1em;
  }

  .dataTable.-fixed {
    table-layout: fixed;
  }
  .dataTable-th.-small {
    width: 8em;
  }
  .dataTable-th.-xxsmall {
    width: 22%;
  }


}

@media screen and (max-width:520px) {

  /*
  spBlock
  */

  .dataTable.-spBlock ,
  .dataTable.-spBlock tbody ,
  .dataTable.-spBlock th ,
  .dataTable.-spBlock td ,
  .dataTable.-spBlock tr {
    display: block;
    width: 100% !important;
  }

  .dataTable.-spBlock {
    border: none;
  }
  .dataTable.-spBlock tbody tr {
    border: none;
  }

  .dataTable.-spBlock tbody th {
    border: 1px solid var(--color-brand01);
    border-left: none;
    border-right: none;
    border-top: none;
    padding: 0.5em 1em ;
    text-align: left;
  }
  .dataTable.-spBlock tbody td {
    padding: 1em 0em 2em ;
    line-height: 1.7;
    text-align: left;
  }
  .dataTable.-spBlock tbody td::before,
  .dataTable.-spBlock tbody td::after {
    display: none;
  }

  .dataTable.-spBlock .dataTable-linkList {
    display: block;
    max-width: 19em;
    margin: 0 auto;
  }

}


/***********
xxxxx
************/

/***********
xxxxx
************/


/***********
xxxxx
************/

/***********
xxxxx
************/
