/* *******************************************************************************************************
// # Virtual Human Assist LP
// ******************************************************************************************************/
:root {
  --primary-color: #7DBD17;
  --secondary-color: #2A72D2;
  --tertiary-color: #DEEBE8;
  --primary-grad: linear-gradient(0deg, #239BE5 0%, #33AD7E 100%);
}

#readspeaker_button1 {
  display: none !important;
}

#rsbtn_popup {
  display: none !important;
}

#virtual-human-assist {
  position: relative;
  margin: 0;
  background-color: #e5e5e5;
  color: #444464;
  overflow: hidden;
  font-feature-settings: "palt" 1;
}

/* *********************************************
// # text-button
// ********************************************/
.text-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 64px;
  padding-inline: 45px;
  background-color: var(--primary-color);
  border-radius: 9999px;
  font-size: 26px;
  font-weight: 700;
  color: #FFF;
  transition: var(--transition);
}
@media only screen and (max-width: 768px) {
  .text-button {
    font-size: 18px;
    min-height: 58px;
  }
}
@media (any-hover: hover) {
  .text-button:hover {
    background-color: var(--secondary-color);
  }
}

/* *********************************************
// # section-title
// ********************************************/
.section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 11px;
}
@media only screen and (max-width: 768px) {
  .section-title {
    align-items: center;
  }
}

.section-title-center {
  align-items: center;
}

.section-title-sub {
  padding: 2px 18px;
  border: solid 1px var(--secondary-color);
  border-radius: 9999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-color);
}
@media only screen and (max-width: 768px) {
  .section-title-sub {
    font-size: 12px;
    line-height: 1;
    padding: 4px 12px;
  }
}

.section-title-main {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .section-title-main {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-align: center;
  }
}

.section-title-main-center {
  text-align: center;
}

.section-title-main-strong {
  color: var(--secondary-color);
}

/* *********************************************
// # header
// ********************************************/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  height: 76px;
  border-bottom: none;
  background: none;
  transition: var(--transition);
}
@media screen and (max-width: 1020px) {
  #header {
    border-bottom: none;
  }
}
@media only screen and (max-width: 768px) {
  #header {
    height: 60px;
    border-bottom: none;
  }
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: auto;
}
@media screen and (max-width: 1020px) {
  .header-inner {
    padding-right: 24px;
  }
}
@media only screen and (max-width: 768px) {
  .header-inner {
    padding-inline: 16px;
  }
}

.header-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .header-title-container {
    width: auto;
  }
}

.header-title {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .header-title {
    font-size: 16px;
  }
}

#header #nav_toggle {
  display: none;
}
@media screen and (max-width: 1020px) {
  #header #nav_toggle {
    display: block;
    width: 28px;
    height: 20px;
  }
}

header #nav_toggle.show {
  position: relative;
  right: auto;
}

@media screen and (max-width: 1020px) {
  #header #nav_toggle i {
    height: 2px;
    border-radius: none;
    background-color: #222;
  }
}

header #nav_toggle i:nth-child(2) {
  bottom: calc(50% - 1px);
}

.header-menu-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-inline: 32px;
  z-index: 10;
}
@media screen and (max-width: 1020px) {
  .header-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    justify-content: flex-start;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    transform: translate(100%, 0);
    transition: var(--transition);
    padding: 108px 16px 16px;
    background: center/cover no-repeat url(../images/virtual-human-assist/img_kv_bg.jpg);
    z-index: -10;
  }
}

@media screen and (max-width: 1020px) {
  #nav_toggle.show + .header-menu-container {
    transform: translate(0, 0);
  }
}

.header-menu-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1020px) {
  .header-menu-nav {
    width: 100%;
    max-width: 344px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

.header-menu-nav-item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #222;
  opacity: 1;
  transition: var(--transition);
}
@media screen and (max-width: 1020px) {
  .header-menu-nav-item {
    color: #222;
  }
}

.header-menu-nav-item:hover {
  opacity: 0.6;
}

.header-menu-button {
  font-size: 16px;
  min-height: 40px;
  padding-inline: 26px;
  color: #222;
}
@media screen and (max-width: 1020px) {
  .header-menu-button {
    min-height: 66px;
    width: 100%;
    max-width: 344px;
    font-size: 18px;
  }
}
@media (any-hover: hover) {
  .header-menu-button:hover {
    color: #FFF;
  }
}

/* scroll animation */
.is-in .header-title {
  color: #FFF;
}
.is-in .header-menu-nav-item {
  color: #FFF;
}
@media screen and (max-width: 1020px) {
  .is-in #nav_toggle i {
    background-color: #FFF !important;
  }
}

#header:has(#nav_toggle.show) .header-inner {
  border-bottom: solid 1px #FFF;
}
#header:has(#nav_toggle.show) .header-title {
  color: #FFF;
}
#header:has(#nav_toggle.show) .header-menu-nav-item {
  color: #FFF;
}
@media screen and (max-width: 1020px) {
  #header:has(#nav_toggle.show) #nav_toggle i {
    background-color: #FFF !important;
  }
}

/* *********************************************
// # kv
// ********************************************/
#kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 640px;
  max-height: 780px;
  padding: 40px 160px;
  background: center/cover no-repeat url(../images/virtual-human-assist/img_kv_bg.jpg);
}
@media only screen and (max-width: 768px) {
  #kv {
    padding: 16px;
  }
}

.kv-inner {
  width: 100%;
  max-width: 1120px;
  padding-inline: 40px;
}
@media only screen and (max-width: 768px) {
  .kv-inner {
    padding-inline: 0;
  }
}

.kv-title {
  font-size: 86px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  word-break: normal;
  color: #FFF;
}
@media screen and (max-width: 1440px) {
  .kv-title {
    font-size: 72px;
  }
}
@media screen and (max-width: 1280px) {
  .kv-title {
    font-size: 64px;
  }
}
@media only screen and (max-width: 768px) {
  .kv-title {
    font-size: 60px;
    text-align: center;
  }
}

.kv-lead {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.7;
  letter-spacing: 5%;
  color: #FFF;
}
@media screen and (max-width: 1440px) {
  .kv-lead {
    font-size: 24px;
  }
}
@media screen and (max-width: 1280px) {
  .kv-lead {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .kv-lead {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }
}

.kv-button {
  margin-top: 40px;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .kv-button {
    margin-inline: auto;
  }
}
@media (any-hover: hover) {
  .kv-button:hover {
    color: #FFF;
  }
}

.kv-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.kv-background-01 {
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 7px;
  height: 92px;
  background: center/contain no-repeat url(../images/virtual-human-assist/img_kv_bg_01.png);
  translate: -556.5px 0;
}
@media screen and (max-width: 1440px) {
  .kv-background-01 {
    left: 160px;
    right: auto;
    translate: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .kv-background-01 {
    top: 49px;
    left: 0;
    right: auto;
    width: 59.5px;
    height: 31px;
    background-image: url(../images/virtual-human-assist/img_kv_bg_04.png);
    translate: 0 0;
  }
}

.kv-background-02 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-inline: auto;
  width: 49px;
  height: 87px;
  background: center/contain no-repeat url(../images/virtual-human-assist/img_kv_bg_02.png);
  translate: -559px 0;
}
@media screen and (max-width: 1440px) {
  .kv-background-02 {
    left: 137px;
    right: auto;
    translate: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .kv-background-02 {
    top: 60px;
    left: auto;
    right: 0;
    width: 91px;
    height: 30px;
    background-image: url(../images/virtual-human-assist/img_kv_bg_05.png);
    translate: 0 0;
  }
}

.kv-background-03 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 607px;
  height: 64px;
  background: center/contain no-repeat url(../images/virtual-human-assist/img_kv_bg_03.png);
}
@media only screen and (max-width: 768px) {
  .kv-background-03 {
    left: 0;
    right: auto;
    width: 59px;
    height: 88px;
    background-image: url(../images/virtual-human-assist/img_kv_bg_06.png);
  }
}

.kv-background-04 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-inline: auto;
  width: 1px;
  background-color: #FFF;
  translate: -560px 0;
}
@media screen and (max-width: 1440px) {
  .kv-background-04 {
    left: 160px;
    right: auto;
    translate: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .kv-background-04 {
    top: auto;
    left: auto;
    right: 0;
    width: 128px;
    height: 125px;
    background-color: transparent;
    background: center/cover no-repeat url(../images/virtual-human-assist/img_kv_bg_07.png);
    translate: 0 0;
  }
}

.header-background-01 {
  position: absolute;
  left: 0;
  top: 68px;
  width: 6px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 768px) {
  .header-background-01 {
    display: none;
  }
}

.header-background-02 {
  position: absolute;
  left: 0;
  right: 0;
  top: 76px;
  margin-inline: auto;
  width: 15px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  translate: -552.5px 0;
}
@media screen and (max-width: 1440px) {
  .header-background-02 {
    left: 160px;
    right: auto;
    translate: 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .header-background-02 {
    display: none;
  }
}

.header-background-03 {
  position: absolute;
  top: 65px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 30px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.7);
  translate: -110px 0;
}
@media only screen and (max-width: 768px) {
  .header-background-03 {
    display: none;
  }
}

.header-background-04 {
  position: absolute;
  top: 76px;
  right: 171px;
  width: 107px;
  height: 19px;
  background-color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 768px) {
  .header-background-04 {
    display: none;
  }
}

.header-background-05 {
  position: absolute;
  top: 76px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .header-background-05 {
    top: 60px;
  }
}

/* *********************************************
// # about
// ********************************************/
#about {
  display: grid;
  grid-template-columns: minmax(40px, auto) minmax(auto, 1120px) minmax(40px, auto);
  background-color: var(--tertiary-color);
}
@media only screen and (max-width: 768px) {
  #about {
    padding-block: 60px 80px;
    grid-template-columns: 1fr;
  }
}

.about-box-01 {
  height: 120px;
}
@media only screen and (max-width: 768px) {
  .about-box-01 {
    display: none;
  }
}

.about-box-02 {
  height: 120px;
  border-left: solid 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .about-box-02 {
    display: none;
  }
}

.about-box-03 {
  height: 120px;
  border-left: solid 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .about-box-03 {
    display: none;
  }
}

.about-box-04 {
  border-top: solid 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .about-box-04 {
    display: none;
  }
}

.about-box-05 {
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .about-box-05 {
    border: none;
  }
}

.about-box-06 {
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .about-box-06 {
    display: none;
  }
}

.about-box-07 {
  border-top: solid 1px #FFF;
  height: 64px;
}
@media only screen and (max-width: 768px) {
  .about-box-07 {
    display: none;
  }
}

.about-box-08 {
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
  height: 64px;
}
@media only screen and (max-width: 768px) {
  .about-box-08 {
    display: none;
  }
}

.about-box-09 {
  border-top: solid 1px #FFF;
  border-left: solid 1px #FFF;
  height: 64px;
}
@media only screen and (max-width: 768px) {
  .about-box-09 {
    display: none;
  }
}

.about-box-10 {
  border-top: solid 1px #FFF;
}
@media only screen and (max-width: 768px) {
  .about-box-10 {
    display: none;
  }
}

.about-box-11 {
  border-top: solid 1px #FFF;
}

.about-box-12 {
  position: relative;
  border-left: solid 1px #FFF;
}
.about-box-12::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50px;
  border-top: solid 1px #FFF;
  content: "";
}
@media only screen and (max-width: 768px) {
  .about-box-12 {
    display: none;
  }
}

.about-box-13 {
  position: relative;
}
.about-box-13::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 50px;
  border-top: solid 1px #FFF;
  content: "";
}
@media only screen and (max-width: 768px) {
  .about-box-13 {
    display: none;
  }
}

.about-box-14 {
  border-top: solid 1px #FFF;
}

.about-box-15 {
  position: relative;
  border-top: solid 1px #FFF;
}
.about-box-15::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 67px;
  border-left: solid 1px #FFF;
  content: "";
}
@media only screen and (max-width: 768px) {
  .about-box-15 {
    display: none;
  }
}

.about-catch-container {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .about-catch-container {
    flex-direction: column-reverse;
    gap: 32px;
    padding: 0 16px 32px;
  }
}

.about-catch-texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 26px;
  width: 384px;
}
@media screen and (max-width: 1440px) {
  .about-catch-texts {
    width: 320px;
  }
}
@media screen and (max-width: 1080px) {
  .about-catch-texts {
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .about-catch-texts {
    gap: 16px;
    width: auto;
  }
}

.about-catch-logos {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .about-catch-logos {
    width: 240px;
  }
}
@media screen and (max-width: 1080px) {
  .about-catch-logos {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .about-catch-logos {
    width: 240px;
  }
}

.about-catch-lead {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .about-catch-lead {
    font-size: 22px;
  }
}
@media screen and (max-width: 1080px) {
  .about-catch-lead {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .about-catch-lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
  }
}

.about-catch-video {
  aspect-ratio: 16/9;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .about-catch-video {
    max-width: 360px;
  }
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .about-list {
    grid-template-columns: 1fr;
  }
}

.about-list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-left: solid 1px #FFF;
  padding: 32px;
  min-height: 168px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #222;
}
@media screen and (max-width: 1440px) {
  .about-list-item {
    font-size: 22px;
  }
}
@media screen and (max-width: 1080px) {
  .about-list-item {
    font-size: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .about-list-item {
    padding: 16px;
    min-height: auto;
    border-left: none;
    border-bottom: solid 1px #FFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.about-list-item-label {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 31px;
  padding-inline: 6px;
  background: var(--primary-grad);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .about-list-item-label {
    position: static;
    height: 22px;
    padding-inline: 8px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
  }
}

.about-description-container {
  padding: 92px 0 116px;
}
@media only screen and (max-width: 768px) {
  .about-description-container {
    padding: 48px 16px 0;
  }
}

.about-description-text {
  margin-top: 9px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .about-description-text {
    margin-top: 2px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
}

.about-description-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, auto));
  gap: 32px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .about-description-list {
    grid-template-columns: minmax(auto, 360px);
    gap: 16px;
    justify-content: center;
  }
}

.about-description-list-item {
  padding: 24px;
  width: 480px;
  max-width: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 768px) {
  .about-description-list-item {
    padding: 16px;
    width: 100%;
  }
}

.about-description-list-thumbnail {
  width: 100%;
  height: auto;
}

.about-description-list-lead {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .about-description-list-lead {
    margin-top: 16px;
    font-size: 14px;
    letter-spacing: 0.03em;
  }
}

.about-description-list-item-text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .about-description-list-item-text {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

/* *********************************************
// # advantage
// ********************************************/
#advantage {
  position: relative;
  padding: 80px 40px;
  background-color: var(--tertiary-color);
}
@media only screen and (max-width: 768px) {
  #advantage {
    padding: 80px 16px 0;
  }
}

.advantage-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .advantage-inner {
    gap: 24px;
  }
}

.advantage-box {
  width: 100%;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, auto));
  gap: 32px;
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .advantage-list {
    gap: 8px;
    margin-top: 24px;
    grid-template-columns: minmax(auto, 360px);
    justify-content: center;
  }
}

.advantage-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 480px;
  max-width: 100%;
  padding: 24px 24px 20px;
}
@media only screen and (max-width: 768px) {
  .advantage-list-item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    padding: 16px;
  }
}

.advantage-list-item-black {
  background-color: #E8E8E8;
  mix-blend-mode: multiply;
}

.advantage-list-item-white {
  background-color: rgba(255, 255, 255, 0.5);
}

.advantage-list-icon {
  width: 80px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .advantage-list-icon {
    width: 60px;
  }
}

.advantage-list-item-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .advantage-list-item-text {
    font-size: 14px;
    letter-spacing: 0.03em;
    text-align: start;
  }
}

.advantage-arrow {
  width: 40px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .advantage-arrow {
    width: 36px;
  }
}

.advantage-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .advantage-background {
    display: none;
  }
}

.advantage-background-01 {
  position: absolute;
  right: 96px;
  bottom: 0;
  width: 25px;
  height: 21px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* *********************************************
// # case
// ********************************************/
#case {
  position: relative;
  padding: 80px 40px;
  border-top: solid 1px #FFF;
  background-color: var(--tertiary-color);
}
@media only screen and (max-width: 768px) {
  #case {
    padding: 48px 16px;
    border-top: none;
  }
}

.case-inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, auto));
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .case-list {
    grid-template-columns: minmax(auto, 360px);
    gap: 12px;
  }
}

.case-list-item {
  width: 480px;
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .case-list-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    gap: 4px 8px;
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .case-list-item:not(:first-child) {
    padding-top: 12px;
    border-top: solid 1px #222;
  }
}

.case-list-thumbnail-wrapper {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .case-list-thumbnail-wrapper {
    grid-area: 1/1/3/2;
    aspect-ratio: 1/1;
  }
}

.case-list-thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-list-lead {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--secondary-color);
}
@media only screen and (max-width: 768px) {
  .case-list-lead {
    align-self: flex-end;
    margin-top: 0;
    line-height: 1.4;
    font-weight: 500;
  }
}

.case-child-list {
  margin-top: 4px;
}
@media only screen and (max-width: 768px) {
  .case-child-list {
    align-self: flex-start;
    margin-top: 0;
  }
}

.case-child-list-item {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .case-child-list-item {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
}

.case-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.case-background-01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 115px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 768px) {
  .case-background-01 {
    display: none;
  }
}

.case-background-02 {
  position: absolute;
  left: 95px;
  bottom: 0;
  width: 12px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 768px) {
  .case-background-02 {
    display: none;
  }
}

.case-background-03 {
  position: absolute;
  right: 74px;
  bottom: 0;
  width: 115px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 768px) {
  .case-background-03 {
    right: 0;
    width: 20px;
    height: 20px;
  }
}

/* *********************************************
// # column
// ********************************************/
#column {
  position: relative;
  border-top: solid 1px #FFF;
  padding: 80px 40px;
  background-color: var(--tertiary-color);
}
@media only screen and (max-width: 768px) {
  #column {
    padding: 32px 16px 110px;
  }
}

.column-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .column-inner {
    gap: 16px;
  }
}

.column-label {
  padding: 2px 18px;
  border-radius: 9999px;
  background-color: var(--secondary-color);
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .column-label {
    padding: 5px 12px;
    font-size: 12px;
  }
}

.column-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .column-list {
    gap: 8px;
  }
}

.column-list-item {
  padding: 16px 24px;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.4);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #222;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .column-list-item {
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.column-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.column-background-01 {
  position: absolute;
  top: 0;
  left: 195px;
  width: 33px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 768px) {
  .column-background-01 {
    left: 0;
    width: 30px;
    height: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .column-background-02 {
    position: absolute;
    top: 0;
    right: 97px;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (max-width: 768px) {
  .column-background-03 {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 20px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
  }
}

@media only screen and (max-width: 768px) {
  .column-background-04 {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #FFF;
  }
}

/* *********************************************
// # compare
// ********************************************/
#compare {
  position: relative;
  border-top: solid 1px #FFF;
  padding: 80px 40px;
  background-color: var(--tertiary-color);
}
@media only screen and (max-width: 768px) {
  #compare {
    padding: 80px 16px 48px;
  }
}

.compare-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .compare-inner {
    gap: 32px;
  }
}

.compare-box {
  width: 100%;
}

.compare-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 930px;
  margin-top: 32px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .compare-list {
    max-width: 360px;
  }
}

.compare-list-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .compare-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 8px 8px;
    background-color: #FFF;
  }
}

.compare-list-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px;
  height: 100%;
  background-color: var(--secondary-color);
}
@media only screen and (max-width: 768px) {
  .compare-list-heading {
    justify-content: center;
    width: 160px;
    height: 34px;
    padding: 0;
  }
}

.compare-list-icon {
  width: 30px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .compare-list-icon {
    width: 20px;
  }
}

.compare-list-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #FFF;
}
@media only screen and (max-width: 768px) {
  .compare-list-title {
    font-size: 12px;
    letter-spacing: 0%;
  }
}

.compare-list-description-container {
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .compare-list-description-container {
    padding: 0;
    background-color: transparent;
  }
}

.compare-list-description {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .compare-list-description {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-align: center;
  }
}

.compare-annotation {
  display: block;
  margin-top: 16px;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .compare-annotation {
    margin-top: 8px;
    font-size: 12px;
    max-width: 360px;
    text-align: start;
    margin-inline: auto;
  }
}

.compare-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, auto));
  gap: 32px;
  margin-top: 40px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .compare-images {
    grid-template-columns: minmax(auto, 360px);
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
  }
}
.compare-images::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  margin-inline: calc((100% - 100vw) / 2);
  width: 100vw;
  height: 1px;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .compare-images::before {
    display: none;
  }
}
.compare-images::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  margin-inline: calc((100% - 100vw) / 2);
  width: 100vw;
  height: 1px;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
  .compare-images::after {
    display: none;
  }
}

.compare-images-thumbnail {
  width: 400px;
  max-width: 100%;
  height: auto;
}

.compare-description {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .compare-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
    text-align: start;
    margin-inline: auto;
  }
}

.compare-description-strong {
  color: var(--secondary-color);
}

.compare-plus {
  width: 64px;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .compare-plus {
    width: 40px;
  }
}

.compare-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  .compare-background {
    display: none;
  }
}

.compare-background-01 {
  position: absolute;
  bottom: 0;
  left: 351px;
  width: 129px;
  height: 26px;
  background-color: rgba(255, 255, 255, 0.5);
}

/* *********************************************
// # contact
// ********************************************/
#contact {
  position: relative;
  padding: 120px 40px;
  background-color: #FFF !important;
}
@media only screen and (max-width: 768px) {
  #contact {
    padding: 32px 16px 40px;
  }
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 738px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .contact-inner {
    max-width: 360px;
    gap: 32px;
  }
}

.contact-lead {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
  color: #222;
}
@media only screen and (max-width: 768px) {
  .contact-lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
  }
}

.contact-content {
  width: 100%;
}

#virtual-human-assist .form-textfield {
  background-color: #F3F3F3;
}
#virtual-human-assist .form-textarea {
  background-color: #F3F3F3;
}
#virtual-human-assist .form-label-annotation {
  color: #828282;
}
#virtual-human-assist .form-label-required {
  background-color: #7DBD17;
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
  #virtual-human-assist .form-item {
    gap: 8px;
  }
}
#virtual-human-assist .form-item .form-check-container {
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  #virtual-human-assist .form-item .form-check-container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  #virtual-human-assist .form-label {
    grid-template-columns: auto 1fr;
    justify-content: flex-start;
    gap: 4px;
  }
}
@media only screen and (max-width: 768px) {
  #virtual-human-assist .form-label-text {
    justify-self: flex-start;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
  }
}
@media only screen and (max-width: 768px) {
  #virtual-human-assist .form-label-annotation {
    font-size: 12px;
    line-height: 1;
    justify-self: flex-start;
  }
}
@media only screen and (max-width: 768px) {
  #virtual-human-assist .form-label-annotation-narrow {
    grid-column: span 1;
  }
}
#virtual-human-assist .form-check-container .mwform-checkbox-field > label::before {
  background-color: #F3F3F3;
}
#virtual-human-assist .form-submit-btn {
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.1019607843);
  max-width: 466px;
}
#virtual-human-assist .form-annotation-recaptcha-link {
  color: #7DBD17;
}

/* *********************************************
// # thanks
// ********************************************/
#virtual-human-assist-thanks {
  margin-top: 0;
}

#thanks {
  position: relative;
  padding: 192px 40px 120px;
  background-color: var(--tertiary-color);
}
@media only screen and (max-width: 768px) {
  #thanks {
    padding: 140px 16px 80px;
  }
}

.thanks-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .thanks-inner {
    max-width: 360px;
  }
}

.thanks-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .thanks-title {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05;
  }
}

.thanks-lead {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .thanks-lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
  }
}

.thanks-description {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .thanks-description {
    font-size: 14px;
    letter-spacing: 0.03em;
    text-align: center;
  }
}

.thanks-button {
  margin-top: 32px;
  padding-inline: 26px;
  min-height: 40px;
  font-size: 16px;
  color: #222;
}
@media (any-hover: hover) {
  .thanks-button:hover {
    color: #FFF;
  }
}

/* *********************************************
// # footer
// ********************************************/
#footer {
  padding: 80px 40px;
  background: center/cover no-repeat url(../images/virtual-human-assist/img_kv_bg.jpg);
}
@media only screen and (max-width: 768px) {
  #footer {
    padding: 32px 16px;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  width: 100%;
  max-width: 1120px;
}
@media only screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .footer-info {
    margin-inline: auto;
    width: 100%;
    max-width: 360px;
  }
}

.footer-info-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
  .footer-info-title {
    font-size: 16px;
  }
}

.footer-sns-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .footer-sns-list {
    margin-top: 20px;
  }
}

.footer-info-list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 32px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .footer-info-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 32px;
  }
}

.footer-info-list-title {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  .footer-info-list-text + .footer-info-list-title {
    margin-top: 12px;
  }
}

.footer-info-list-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03;
  color: #FFF;
}

.footer-sns-list-item-content-facebook {
  width: 25px;
  height: auto;
}

.footer-sns-list-item-content-x {
  width: 21px;
  height: auto;
}

.footer-sns-list-item-content-linkedin {
  width: 23px;
  height: auto;
}

.footer-copyright {
  display: block;
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.03;
  color: #FFF;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: solid 1px #FFF;
  padding: 24px 65px;
}
@media only screen and (max-width: 768px) {
  .footer-contact {
    align-items: flex-start;
    padding: 16px;
    width: 100%;
    max-width: 360px;
  }
}

.footer-contact-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 768px) {
  .footer-contact-content {
    align-items: flex-start;
  }
}

.footer-contact-content-strong {
  font-family: "Montserrat", sans-serif;
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .footer-contact-content-strong {
    font-size: 26px;
  }
}

.footer-contact-content-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 768px) {
  .footer-contact-content-row {
    justify-content: flex-start;
    font-size: 13px;
  }
}/*# sourceMappingURL=virtual-human-assist.css.map */