@charset "UTF-8";
.service-detail-kv {
  background-color: #FAFAFA;
  padding: 6%;
}
@media (max-width: 1110px) {
  .service-detail-kv {
    padding-top: 150px;
  }
}
.service-detail-kv__inner {
  max-width: 1120px;
  display: flex;
  flex-direction: row;
  gap: 5%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service-detail-kv__inner {
    flex-direction: column;
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detail-kv__left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .service-detail-kv__left {
    width: 90%;
    margin: 0 auto;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detail-kv__left figure {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-detail-kv__left figure img {
  width: 100%;
  height: auto;
}
.service-detail-kv__right {
  width: 54%;
}
@media screen and (max-width: 768px) {
  .service-detail-kv__right {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detail-kv__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00B3BA;
  padding-left: 24px;
}
.service-detail-kv__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 22px;
  background: url("../image/keyvisual-text-bar-green.svg") no-repeat;
  background-size: contain;
}
.service-detail-kv__title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
}
.service-detail-kv__description {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .service-detail-kv__description {
    width: 80%;
    margin: 40px auto;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detail-kv__description p:first-child {
  margin-bottom: 24px;
  font-weight: 600;
}
.service-detail-kv__nav {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .service-detail-kv__nav {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detail-kv__nav ol {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}
.service-detail-kv__nav li {
  flex: 1 1 0;
  text-align: center;
  width: 30%;
}
.service-detail-kv__nav a {
  width: 100%;
  display: inline-block;
  line-height: 1.4;
  color: #00B3BA;
  font-weight: bold;
  font-size: clamp(12px, 1.7vw, 22px);
  text-decoration: none;
  position: relative;
  padding-bottom: 20px;
}
.service-detail-kv__nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #E0F6F0;
  border-radius: 2px;
  z-index: 0;
}
.service-detail-kv__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #00B3BA;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.service-detail-kv__nav a:hover {
  color: #008287;
}
.service-detail-kv__nav a:hover::after {
  transform: scaleX(1);
}
.service-detail-kv .pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .service-detail-kv .pc {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detail-kv .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .service-detail-kv .sp {
    display: block;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.sp-nav {
  display: none;
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .sp-nav {
    display: block;
    background: #fff;
    width: 100%;
    border-top: 2px solid #00B3BA;
    border-bottom: 1px solid #e0e0e0;
    overflow-x: auto;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.sp-nav__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.sp-nav ol {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
}
.sp-nav li {
  flex: 1 1 0;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
}
.sp-nav li:first-child {
  border-left: none;
}
.sp-nav li:last-child {
  border-right: none;
}
.sp-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  width: 100%;
  height: 100%;
}
.sp-nav a span {
  display: block;
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1.6;
  font-weight: bold;
  color: #222;
}
.sp-nav a::after {
  content: "›";
  color: #00b7a0;
  font-size: 20px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

.service-detaile-content {
  padding: 6%;
}
@media screen and (max-width: 768px) {
  .service-detaile-content {
    padding: 14% 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detaile-content__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .service-detaile-content__inner {
    flex-direction: column;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detaile-content__left {
  width: 45%;
  position: sticky;
  top: 40px;
  align-self: flex-start;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .service-detaile-content__left {
    position: static;
    width: 90%;
    margin: 0 auto;
    padding: 6% 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detaile-content__left h2 {
  margin-bottom: 40px;
}
.service-detaile-content__left p {
  font-size: 14px;
  line-height: 1.8;
}
.service-detaile-content__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #00B3BA;
  padding-left: 24px;
}
.service-detaile-content__subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 22px;
  background: url("../image/keyvisual-text-bar-green.svg") no-repeat;
  background-size: contain;
}
.service-detaile-content__title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: clamp(21px, 7vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}
.service-detaile-content__right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service-detaile-content__right {
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detaile-content__right li {
  background-color: #FAFAFA;
  padding: 6%;
  border-radius: 6px;
  margin-bottom: 4%;
}
.service-detaile-content__right li:last-child {
  margin-bottom: 0;
}
.service-detaile-content__right li h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: clamp(21px, 1.65vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00B3BA;
}
@media screen and (max-width: 768px) {
  .service-detaile-content__right li h3 {
    font-size: clamp(16px, 5vw, 17px);
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-detaile-content__right li p {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  line-height: 1.8;
}

.job-change-section {
  padding: 100px 6%;
  border-top: 1px solid #efefef;
}
@media screen and (max-width: 768px) {
  .job-change-section {
    padding: 60px 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.job-change-section .container {
  max-width: 1240px;
  margin: 0 auto;
}
.job-change-section .section-header {
  margin-bottom: 50px;
  height: auto;
}
.job-change-section .job-change__title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.job-change-section .job-change__title-symbol {
  color: #00bcd4;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 6px;
}
.job-change-section .job-change__title-en {
  color: #00bcd4;
  font-size: 18px;
  font-weight: bold;
  margin-right: 8px;
  margin-left: 4px;
  margin-top: 6px;
}
.job-change-section .job-change__title-ja {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .job-change-section .job-change__title-ja {
    font-size: clamp(28px, 2.5vw, 24px);
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.job-change-section .job-change__title-ja::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50.5%;
  transform: translateY(-50%);
  width: 14px;
  height: 22px;
  background: url("../image/keyvisual-text-bar-green.svg") no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .job-change-section .job-change__title-ja::before {
    top: 20.5%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.job-change-section .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .job-change-section .sp {
    display: block;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.job-change-section p {
  margin-top: 40px;
  font-size: 16px;
  line-height: 3;
  background-color: #fafafa;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .job-change-section p {
    font-size: 12px;
    line-height: 2.5;
    padding: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.job-change-section .job-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .job-change-section .job-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .job-change-section .job-categories {
    gap: 15px;
  }
}
.job-change-section .job-category {
  transition: transform 0.3s ease;
}
.job-change-section .job-image {
  margin: 0;
  overflow: hidden;
}
.job-change-section .job-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.job-change-section .job-image img:hover {
  transform: scale(1.05);
}
.job-change-section .job-title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  margin: 15px 0 0;
  font-size: 1rem;
  font-weight: bold;
  color: black;
}
@media screen and (max-width: 768px) {
  .job-change-section .job-title {
    font-size: 12px;
    line-height: 1.5;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.job-change-section .job-title .icon-arrow {
  display: inline-flex;
  align-items: center;
}
.job-change-section .job-title .icon-arrow::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../image/cta-arrow-green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 8px;
}

.agent {
  height: auto;
  overflow: hidden;
  background: linear-gradient(135deg, #78519E 0%, #0D0D0D 100%);
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .agent {
    padding: 60px 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent__inner {
  max-width: 100%;
  margin: 0 auto;
}
.agent__title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  text-align: center;
  color: white;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .agent__title {
    text-align: left;
    padding: 0 6%;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 60px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent__title-en {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 8px;
  padding-right: 6px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .agent__title-en {
    display: block;
    margin-bottom: 0;
    margin-top: 8px;
    font-size: 24px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent__title-ja {
  display: block;
  font-size: 21px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .agent__title-ja {
    font-size: 12px;
    gap: 0px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent__title-ja::before {
  content: "";
  display: block;
  background-image: url(../image/keyvisual-text-bar.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 15px;
  position: static;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}
.agent__slider {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .agent__slider {
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent__slider .swiper-wrapper {
  display: flex;
  will-change: transform;
  touch-action: pan-x;
  cursor: grab;
}
.agent__slider .swiper-wrapper::after {
  content: "";
  display: block;
  width: 100%;
  flex: 0 0 auto;
}
.agent__slider .swiper-slide {
  flex-shrink: 0;
  width: 245px;
}
.agent .swiper-slide {
  height: auto !important;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .agent .swiper-slide {
    margin-bottom: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent .swiper-slide .agent__card-link {
  display: block;
  text-decoration: none;
}
.agent .swiper-slide .agent__card-figure {
  width: 100%;
  aspect-ratio: 245/375;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.agent .swiper-slide .agent__card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.agent .swiper-slide .agent__card-image:hover {
  transform: scale(1.1);
}
.agent .swiper-slide .agent__card-caption {
  position: static;
  padding: 0;
  background: none;
  text-align: left;
}
.agent .swiper-slide .agent__card-name-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  display: block;
  font-size: clamp(12px, 1vw, 12px);
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
  letter-spacing: 0.05em;
}
.agent .swiper-slide .agent__card-name-en {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  display: block;
  font-size: clamp(13px, 1vw, 13px);
  font-weight: bold;
  color: white;
}
.agent .swiper-slide:hover .agent__card-image {
  transform: scale(1.1);
}
.agent .swiper-slide.dragging .agent__card-image {
  transform: none !important;
  transition: none !important;
}

.career-flow-section {
  padding: 100px 6%;
}
@media screen and (max-width: 768px) {
  .career-flow-section {
    padding: 60px 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.career-flow-section .container {
  max-width: 1120px;
  margin: 0 auto;
}
.career-flow-section .section-header {
  margin-bottom: 50px;
  height: auto;
}
.career-flow-section .flow__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
}
.career-flow-section .flow__title .flow__title-en {
  color: #00B3BA;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}
.career-flow-section .flow__title .flow__title-en::before {
  content: "";
  display: block;
  background-image: url(../image/keyvisual-text-bar-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 20px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.career-flow-section .flow__title .flow__title-ja {
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .career-flow-section .flow__title .flow__title-ja {
    font-size: 1.5rem;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.career-flow-section .flow-description {
  margin-bottom: 50px;
}
.career-flow-section .flow-description p {
  font-size: 16px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .career-flow-section .flow-description p {
    font-size: 12px;
    line-height: 2;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.career-flow-section .flow-diagram {
  width: 100%;
  min-height: 300px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .career-flow-section .flow-diagram {
    min-height: 200px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.career-flow-section .flow-diagram img {
  max-width: 100%;
  height: auto;
  display: block;
}
.career-flow-section .flow-diagram-image {
  width: 100%;
  margin: 0;
}
.career-flow-section .flow-diagram-image .flow-image-pc {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .career-flow-section .flow-diagram-image .flow-image-pc {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.career-flow-section .flow-diagram-image .flow-image-sp {
  display: none;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .career-flow-section .flow-diagram-image .flow-image-sp {
    display: block;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.voice-section {
  padding: clamp(60px, 8vw, 100px) 6%;
}
@media screen and (max-width: 768px) {
  .voice-section {
    padding: 40px 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.voice-section__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 60px);
  height: auto;
}
.voice-section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-bottom: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  text-align: center;
  min-height: 40px;
}
@media screen and (max-width: 768px) {
  .voice-section__title {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    min-height: auto;
    gap: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.voice-section__title-en {
  font-size: 21px;
  font-weight: bold;
  padding-right: 6px;
  position: relative;
  color: black;
  margin: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .voice-section__title-en {
    text-align: left;
    font-size: 12px;
    gap: 0px;
    width: 100%;
    margin-bottom: 8px;
    color: #00B3BA;
    transition-property: all;
    transition-duration: 0.3s;
  }
  .voice-section__title-en::before {
    content: "";
    display: block;
    background-image: url(../image/keyvisual-text-bar-green.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 25px;
    height: 15px;
    position: static;
    transition: all 0.3s ease;
  }
}
.voice-section__title-jp {
  font-size: 21px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #00B3BA;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .voice-section__title-jp {
    display: block;
    text-align: left;
    margin-top: 8px;
    font-size: 24px;
    color: black;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.voice-section__title-jp::before {
  content: "";
  display: block;
  background-image: url(../image/keyvisual-text-bar-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 15px;
  position: static;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .voice-section__title-jp::before {
    display: none;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .voice-list {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
    margin-top: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}

.voice-card {
  overflow: hidden;
}
.voice-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
}
.voice-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.voice-card__content {
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 2vw, 20px);
}
.voice-card__category {
  display: inline-block;
  font-size: 14px;
  color: #00B3BA;
  font-weight: bold;
  margin-bottom: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}
.voice-card__title {
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
}
.voice-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .voice-card__text {
    font-size: 13px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.voice-card:hover .voice-card__image img {
  transform: scale(1.1);
}

#footer-cta {
  background-color: #FAFAFA;
  padding: 6% 6%;
}
@media screen and (max-width: 768px) {
  #footer-cta {
    padding: 14% 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#footer-cta .wrap {
  max-width: 770px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #footer-cta .wrap {
    max-width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#footer-cta .wrap ul {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #footer-cta .wrap ul {
    display: grid;
    gap: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#footer-cta .wrap ul li {
  width: 100%;
  display: grid;
  text-align: center;
}
#footer-cta .wrap ul li a {
  background-color: #00B3BA;
  color: white;
  padding: 6.5% 0;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  background-image: url(../image/cta-arrow-white.svg);
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: 50%;
  background-size: auto;
  position: relative;
  overflow: hidden;
  border: 2px solid #00B3BA;
  transition: color 0.3s ease;
  z-index: 1;
}
#footer-cta .wrap ul li a:hover {
  color: #00B3BA;
  background-color: white;
  background-image: url(../image/cta-arrow-green.svg);
  opacity: 1;
  border: 2px solid #00B3BA;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}
#footer-cta .wrap ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
  background-image: url(../image/cta-arrow-green.svg);
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-position-y: 50%;
  background-size: auto;
}
@media screen and (max-width: 768px) {
  #footer-cta .wrap ul li a {
    background-size: 2%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#footer-cta .wrap ul li a span {
  font-size: 12px;
  font-weight: normal;
  transition: color 0.3s ease;
}

#modal-cta {
  padding: 60px 6%;
}
#modal-cta ul {
  max-width: 770px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
#modal-cta ul ul {
  width: 100%;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #modal-cta ul ul {
    display: grid;
    gap: 30px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#modal-cta ul li {
  width: 100%;
  display: grid;
  text-align: center;
}
#modal-cta ul a {
  padding: 6.5% 0;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: auto;
  position: relative;
  overflow: hidden;
  border: 2px solid;
  transition: all 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #modal-cta ul a {
    background-size: 2%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#modal-cta ul a span {
  font-size: 12px;
  font-weight: normal;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  #modal-cta ul {
    grid-template-columns: 1fr;
    gap: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
#modal-cta ul a {
  background-color: white;
  color: #00B3BA;
  border-color: #00B3BA;
  background-image: url(../image/cta-arrow-green.svg);
}
#modal-cta ul a::before {
  background-color: #00B3BA;
  background-image: url(../image/cta-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
}
#modal-cta ul a:hover {
  background-color: #00B3BA;
  color: white;
  background-image: url(../image/cta-arrow-white.svg);
  opacity: 1;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  border: 2px solid white;
}

.agent-cta, .news-cta, .career-cta, .what-cta, .voice-cta, .other-cta, .service-list__cta {
  text-align: center;
  margin-top: 40px;
}
.agent-cta .cta__button, .news-cta .cta__button, .career-cta .cta__button, .what-cta .cta__button, .voice-cta .cta__button, .other-cta .cta__button, .service-list__cta .cta__button {
  display: inline-block;
  width: 370px;
  height: 80px;
  line-height: 75px;
  background-color: #00B3BA;
  color: white;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  background-image: url(../image/cta-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: auto;
  position: relative;
  overflow: hidden;
  border: 2px solid #00B3BA;
  transition: color 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .agent-cta .cta__button, .news-cta .cta__button, .career-cta .cta__button, .what-cta .cta__button, .voice-cta .cta__button, .other-cta .cta__button, .service-list__cta .cta__button {
    width: 86%;
    font-size: 16px;
    background-size: 2%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.agent-cta .cta__button::before, .news-cta .cta__button::before, .career-cta .cta__button::before, .what-cta .cta__button::before, .voice-cta .cta__button::before, .other-cta .cta__button::before, .service-list__cta .cta__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
  background-image: url(../image/cta-arrow-green.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
}
.agent-cta .cta__button:hover, .news-cta .cta__button:hover, .career-cta .cta__button:hover, .what-cta .cta__button:hover, .voice-cta .cta__button:hover, .other-cta .cta__button:hover, .service-list__cta .cta__button:hover {
  background-color: white;
  color: #00B3BA;
  background-image: url(../image/cta-arrow-green.svg);
  opacity: 1;
  border: 2px solid white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  border: 2px solid #00B3BA;
}

.career-cta {
  margin-top: 100px;
}

.service-list__cta, .service-cta {
  text-align: left;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .service-list__cta, .service-cta {
    margin-top: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-list__cta .cta__button, .service-cta .cta__button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 370px;
  min-height: 80px;
  padding: 10px 20px;
  text-align: center;
  background-color: #00B3BA;
  color: white;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  background-image: url(../image/cta-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: auto;
  position: relative;
  overflow: hidden;
  border: 2px solid #00B3BA;
  transition: color 0.3s ease;
  z-index: 1;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .service-list__cta .cta__button, .service-cta .cta__button {
    width: 100%;
    min-height: 80px;
    font-size: 16px;
    background-size: 2%;
    padding-right: 30px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.service-list__cta .cta__button span, .service-cta .cta__button span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 2px;
  transition: color 0.3s ease;
}
.service-list__cta .cta__button::before, .service-cta .cta__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
  background-image: url(../image/cta-arrow-green.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
}
.service-list__cta .cta__button:hover, .service-cta .cta__button:hover {
  color: #00B3BA;
  background-image: url(../image/cta-arrow-green.svg);
  opacity: 1;
  border: 2px solid white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  border: 2px solid #00B3BA;
}

.cta-wrap {
  display: flex;
  gap: clamp(15px, 2vw, 20px);
  margin-top: clamp(40px, 6vw, 80px);
  max-width: 770px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .cta-wrap {
    flex-direction: column;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.cta-wrap .service-cta {
  flex: 1;
}
.cta-wrap .service-cta .cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(80px, 8vw, 80px);
  padding: clamp(10px, 1.5vw, 20px) clamp(15px, 2vw, 20px);
  border-radius: 100px;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #00B3BA;
  color: white;
  border: 2px solid #00B3BA;
  background-image: url("../image/cta-arrow-white.svg");
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: clamp(12px, 1.5vw, 16px);
  padding-right: clamp(30px, 4vw, 40px);
}
.cta-wrap .service-cta .cta__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
}
.cta-wrap .service-cta .cta__button:hover {
  color: #00B3BA;
  opacity: 1;
}
.cta-wrap .service-cta .cta__button:hover::before {
  width: 100%;
  height: 100%;
}
.cta-wrap .service-cta .cta__button:hover span {
  color: #00B3BA;
}
.cta-wrap .service-cta .cta__button--back {
  background-color: white;
  color: #00B3BA;
  background-image: url("../image/cta-arrow-green.svg");
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: clamp(12px, 1.5vw, 16px);
  padding-right: clamp(30px, 4vw, 40px);
}
.cta-wrap .service-cta .cta__button--back::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #00B3BA;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
}
.cta-wrap .service-cta .cta__button--back:hover {
  color: white;
  opacity: 1;
}
.cta-wrap .service-cta .cta__button--back:hover::before {
  width: 100%;
  height: 100%;
}
.cta-wrap .service-cta .cta__button--back:hover span {
  color: white;
}
.cta-wrap .service-cta .cta__button span {
  display: block;
  font-size: clamp(10px, 1.2vw, 12px);
  margin-top: clamp(2px, 0.3vw, 4px);
  transition: color 0.3s ease;
}

form .form-submit {
  text-align: left;
  margin-top: 80px;
}
form .form-submit .cta__button {
  display: inline-block;
  width: 370px;
  height: 80px;
  line-height: 75px;
  background-color: #0096a7;
  color: white;
  border-radius: 100px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  background-image: url(../image/cta-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: auto;
  position: relative;
  overflow: hidden;
  border: 2px solid #0096a7;
  transition: color 0.3s ease;
  z-index: 1;
}
@media (max-width: 767px) {
  form .form-submit .cta__button {
    width: 100%;
    font-size: 16px;
    background-size: 2%;
  }
}
form .form-submit .cta__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: -1;
  background-image: url(../image/cta-arrow-green.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
}
form .form-submit .cta__button:hover {
  color: #00B3BA;
  background-image: url(../image/cta-arrow-green.svg);
  opacity: 1;
  background-color: white;
  border: 2px solid #00B3BA;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.line-contact-button {
  position: fixed;
  bottom: 2%;
  right: 6%;
  z-index: 1000;
  opacity: 1;
  transition: opacity 0.3s ease;
  animation: fadeIn 0.5s ease;
}
.line-contact-button.hidden {
  display: none;
}
.line-contact-button a {
  display: block;
  font-size: 21px;
  font-weight: bold;
  background-color: #00B3BA;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .line-contact-button {
    right: 50%;
    transform: translateX(50%);
    width: 80%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.line-contact-button a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 21px;
  font-weight: bold;
  background-color: #00B3BA;
  color: white;
  padding: 0;
  height: 70px;
  width: 260px;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  line-height: 70px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  background-image: url(../image/cta-arrow-white.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
  background-size: 2%;
}
@media screen and (max-width: 768px) {
  .line-contact-button a {
    font-size: 18px;
    height: 60px;
    line-height: 60px;
    width: 100%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.line-contact-button a:hover {
  opacity: 0.8;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.what-section .what-cta {
  text-align: left;
}
.what-section .what-cta .cta__button {
  display: inline-block;
  text-align: center;
  margin-left: 0;
  margin-right: auto;
}

.faq {
  padding: 100px 0;
  background-color: #3D3D3D;
  padding-right: 6%;
  padding-left: 6%;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 12% 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq .container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 8%;
  background-color: white;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .faq .container {
    padding: 12% 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq h1 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  text-align: left;
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #00B3BA;
}
.faq h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  text-align: left;
  font-size: 21px;
  font-weight: bold;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .faq-list {
    margin-top: 40px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  border-radius: 1px;
}
.faq button {
  color: black;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: white;
  border-bottom: 2px solid #00B3BA;
  text-align: left;
  color: #333;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (max-width: 768px) {
  .faq-question {
    padding: 15px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq-question span {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 16px;
  text-align: left;
  display: block;
  line-height: 1.6;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: black;
}
.faq-question span::first-letter {
  color: #00B3BA;
}
@media screen and (max-width: 768px) {
  .faq-question span {
    font-size: 14px;
    color: #333;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.faq-question span.icon {
  font-size: 12px;
  color: #00B3BA;
  transition: transform 0.3s ease;
}
.faq-question span.icon img {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  width: auto;
  height: 12px;
}
.faq-question[aria-expanded=true] .icon img {
  transform: rotate(270deg);
}
.faq-question:hover {
  background-color: #FAFAFA;
}
.faq-question:active, .faq-question:focus {
  outline: none;
  background-color: #FAFAFA;
  color: #333;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding: 20px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  line-height: 1.8;
}

.user-voice-section {
  background: linear-gradient(135deg, #78519E 0%, #0D0D0D 100%);
  padding: 100px 6%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .user-voice-section {
    padding: 60px 6%;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .container {
  max-width: 1120px;
  margin: 0 auto;
}
.user-voice-section .section-header {
  max-width: 1120px;
  margin: 0 auto 20px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .user-voice-section .section-header {
    margin-bottom: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .section-header .section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  text-align: left;
  color: white;
}
@media screen and (max-width: 768px) {
  .user-voice-section .section-header .section-title {
    text-align: left;
    display: flex;
    flex-direction: column-reverse;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .section-header .section-title-en {
  font-size: 21px;
  font-weight: bold;
  padding-left: 35px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .user-voice-section .section-header .section-title-en {
    font-size: 12px;
    padding-left: 30px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .section-header .section-title-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 15px;
  background-image: url(../image/keyvisual-text-bar.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .user-voice-section .section-header .section-title-en::before {
    width: 20px;
    height: 12px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-wrapper {
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .user-voice-section .statistics-wrapper {
    margin-top: 0;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-title {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .user-voice-section .statistics-title {
    margin-bottom: 60px;
    font-size: 24px;
    margin-top: 10px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-grid {
  max-width: 1120px;
  margin: 0 auto;
}
.user-voice-section .statistics-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .user-voice-section .statistics-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-item {
  background: #fff;
  border-radius: 10px;
  padding: 80px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .user-voice-section .statistics-item {
    padding: 60px 15px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-item__title {
  color: #333;
  font-size: 21px;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .user-voice-section .statistics-item__title {
    font-size: 18px;
    margin-bottom: 20px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-item__number {
  color: #00B3BA;
  font-family: system-ui;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .user-voice-section .statistics-item__number {
    font-size: 60px;
    transition-property: all;
    transition-duration: 0.3s;
  }
}
.user-voice-section .statistics-item__number span {
  font-size: 21px;
}
.user-voice-section .statistics-item__text {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-size: 14px;
  margin-top: 20px;
  color: black;
  line-height: 2;
  text-align: left;
}
.user-voice-section .statistics-item__text span {
  font-size: 12px;
  color: #333;
  display: block;
  margin-top: 20px;
}