@charset "UTF-8";
/* main */
:root {
  --default-font-color: #FFFFFF;
  --main-color: #994FBD;
  --white-lightest: #FFFFFF;
  --black-darkest: #000000;
  --text-shadow-color: var(--white-lightest);
}

.bg-white {
  background: var(--white-lightest);
}

.bg-base {
  background: var(--black-darkest);
}

/* マージン・パディングのサニタイズ */
body,
h1, h2, h3, h4, h5, h6, p,
div, figcaption, figure, main,
ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* リスト要素のサニタイズ */
ul {
  list-style: none;
  padding-left: 0;
}

/* リンク要素のサニタイズ */
a {
  text-decoration: none;
  color: inherit;
}

:root {
  --font-size-x-small: 10px;
  --font-size-small: 12px;
  --font-size-light-small: 13px;
  --font-size-normal: 14px;
  --font-size-medium: 16px;
  --font-size-medium-large: 18px;
  --font-size-large: 20px;
  --font-size-large-22: 22px;
  --font-size-large-24: 24px;
  --font-size-x-large: 26px;
  --font-size-x-large-28: 28px;
  --font-size-xx-large: 32px;
  --font-size-xxx-large: 34px;
  --font-size-xxxhalf-large: 40px;
  --font-size-x-large-48: 48px;
  --font-size-xxxx-large: 64px;
  --font-size-bg-large: 81px;
  --font-size-mobile-small: 10px;
  --font-size-mobile-normal: 12px;
  --font-size-mobile-xxx-large: 26px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--default-font-color);
  font-weight: 400;
}

/* 400（標準） */
.normal-weight {
  font-weight: 400;
}

/* 500（中太） */
.medium-weight {
  font-weight: 500;
}

/* 700（太字） */
.bold-weight {
  font-weight: 700;
}

/* 900（超太字） */
.extra-bold-weight {
  font-weight: 900;
}

.text-size-x-small {
  font-size: var(--font-size-x-small);
}

.text-size-small {
  font-size: var(--font-size-small);
}

.text-size-light-small {
  font-size: var(--font-size-light-small);
}

.text-size-normal {
  font-size: var(--font-size-normal);
}

.text-size-medium {
  font-size: var(--font-size-medium);
}

.text-size-large {
  font-size: var(--font-size-large);
}

.text-size-x-large {
  font-size: var(--font-size-x-large);
}

.text-size-xx-large {
  font-size: var(--font-size-xx-large);
}

.text-size-xxx-large {
  font-size: var(--font-size-xxx-large);
}

.text-size-xxxhalf-large {
  font-size: var(--font-size-xxxhalf-large);
}

.text-size-xxxx-large {
  font-size: var(--font-size-xxxx-large);
}

/* 英字用 */
.inter {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-size-title {
  font-size: 64px;
}
@media all and (max-width: 1560px) {
  .text-size-title {
    font-size: 52px;
  }
}
@media all and (max-width: 1024px) {
  .text-size-title {
    font-size: 40px;
  }
}
@media all and (max-width: 768px) {
  .text-size-title {
    font-size: 24px;
  }
}

@keyframes scroll_lineAffect {
  0% {
    transform: translateX(0%) scaleX(0);
  }
  20% {
    transform: translateX(0%) scaleX(0);
  }
  50% {
    transform: translateX(0%) scaleX(1);
  }
  80% {
    transform: translateX(100%) scaleX(0);
  }
  100% {
    transform: translateX(100%) scaleX(0);
  }
}
/* アニメーション関連 */
/* スライドインの初期状態 */
.slide-in-left {
  opacity: 0; /* 初期状態で非表示 */
  transform: translateX(-100px); /* 左にオフセット */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* アニメーション */
}

/* 表示時の状態 */
.slide-in-left.show {
  opacity: 1; /* 表示 */
  transform: translateX(0); /* 元の位置に戻す */
}

/* 右からスライドインの基本アニメーション */
.slide-in-right {
  opacity: 0;
  transform: translateX(100px); /* 右にオフセット */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* アニメーション表示時のスタイル */
.slide-in-right.show {
  opacity: 1;
  transform: translateX(0); /* 元の位置に戻す */
}

/* 下からスライドインの基本アニメーション */
.slide-in-up {
  opacity: 0;
  transform: translateY(50px); /* 下にオフセット */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* アニメーション表示時のスタイル */
.slide-in-up.show {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
}
.fadein.fadein-left {
  transform: translate(-30px, 0);
}
.fadein.fadein-right {
  transform: translate(30px, 0);
}
.fadein.fadein-up {
  transform: translate(0, -30px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.stack {
  display: flex;
  flex-direction: column;
}

.row {
  display: flex;
  flex-direction: row;
}

.stack.spacing-4px > :not(:first-child) {
  margin-top: 4px;
}
.stack.spacing-8px > :not(:first-child) {
  margin-top: 8px;
}
.stack.spacing-12px > :not(:first-child) {
  margin-top: 12px;
}
.stack.spacing-16px > :not(:first-child) {
  margin-top: 16px;
}
.stack.spacing-32px > :not(:first-child) {
  margin-top: 32px;
}
.stack.spacing-40px > :not(:first-child) {
  margin-top: 40px;
}
.stack.spacing-64px > :not(:first-child) {
  margin-top: 64px;
}

.row.spacing-4px > :not(:first-child) {
  margin-left: 4px;
}
.row.spacing-8px > :not(:first-child) {
  margin-left: 8px;
}
.row.spacing-12px > :not(:first-child) {
  margin-left: 12px;
}
.row.spacing-16px > :not(:first-child) {
  margin-left: 16px;
}
.row.spacing-32px > :not(:first-child) {
  margin-left: 32px;
}
.row.spacing-40px > :not(:first-child) {
  margin-left: 40px;
}
.row.spacing-64px > :not(:first-child) {
  margin-left: 64px;
}

.grid {
  display: grid;
}
.grid.spacing-4px {
  gap: 4px;
}
.grid.spacing-8px {
  gap: 8px;
}
.grid.spacing-12px {
  gap: 12px;
}
.grid.spacing-16px {
  gap: 16px;
}
.grid.spacing-32px {
  gap: 32px;
}
.grid.spacing-40px {
  gap: 40px;
}
.grid.spacing-64px {
  gap: 64px;
}

.flex {
  display: flex;
}

.flex-left {
  justify-content: flex-start;
}

.flex-right {
  justify-content: flex-end;
}

.flex-upper {
  justify-content: flex-start;
}

.flex-bottom {
  justify-content: flex-end;
}

.flex-center {
  justify-content: center;
}

.flex-both {
  justify-content: space-between;
}

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

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

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

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

.align-bottom {
  align-items: end;
}

.self-bottom {
  align-self: end;
}

.no-padding {
  padding: 0px;
}

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

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

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

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

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

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

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

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

.fill-parent {
  width: 100%;
  height: 100%;
}

.content-width {
  width: 100%;
  max-width: 960px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

html body {
  font-size: 16px;
  width: 100%;
  height: 100%;
  position: relative;
  touch-action: pan-y;
  /* touch-action: pinch-zoom; */
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed; /* ビューポートに固定 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: repeat; /* 繰り返し表示 */
  background-size: auto; /* 元のサイズで表示 */
  z-index: -50; /* 背景を下げる */
  pointer-events: none; /* 背景に対するクリックなどを無効化 */
}

a {
  display: block;
  position: relative;
}
a.disabled {
  pointer-events: none;
  cursor: default;
}

img {
  width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6, p, time {
  display: block;
}

address {
  font-style: normal;
}

.hr {
  display: block;
  position: relative;
  height: var(--font-size-normal);
}
.hr::after {
  content: "";
  position: absolute;
  transform-origin: left top;
  top: 50%;
  left: 0px;
  width: 100%;
  height: 0.5px;
  background-color: currentColor;
}

.hidden {
  display: none;
}

.image-mask {
  /* マスクとして使う画像 */
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: currentColor;
}

.img-vertical-fit {
  width: auto;
  object-fit: cover;
}

.img-horizontal-fit {
  height: auto;
  object-fit: cover;
}

.white-fill {
  background-color: var(--default-font-color);
}

.text-glow {
  text-shadow: 0px 0px 10px var(--text-shadow-color);
}

.scrollbar {
  overflow: scroll;
}
.scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  /* レスポンシブ用ブレークポイント */
}
@media all and (max-width: 1023px) {
  .scrollbar::-webkit-scrollbar {
    display: initial !important;
  }
}
@media all and (max-width: 767px) {
  .scrollbar::-webkit-scrollbar {
    display: initial !important;
  }
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #FFFFFF;
}
.scrollbar::-webkit-scrollbar-track {
  background: hsla(276, 100%, 88%, 0.438);
}

.contact-button-wrapper {
  display: inline-block;
  border-radius: 9999px;
  background-color: #fff;
  min-height: 75px;
  min-width: 512px;
}

.contact-button {
  min-height: 75px;
  min-width: 512px;
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  font-size: var(--font-size-large-24);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  /* 通常時：グラデーションテキスト、背景は白 */
  background-color: #fff;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-button .arrow-icon {
  vertical-align: middle;
  position: relative;
  top: -1px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  width: 32px;
  height: 32px;
  color: #A1B5EF;
}
.contact-button:hover {
  /* ホバー時：背景をグラデーションに、テキストを白に */
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
  background-clip: initial;
  color: white;
  /* ボーダーを削除または変更 */
  /* 矢印アイコンのアニメーションと色変更 */
}
.contact-button:hover::before {
  opacity: 0;
}
.contact-button:hover .arrow-icon {
  color: white;
  transform: translateX(3px);
}

.contact-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* ボーダーの太さ */
  border-radius: 9999px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.fixed-background-container {
  position: relative;
  background-image: url("../image/common/BG.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #F2F2F4;
}

.pc-only {
  display: block !important;
}

.mobile-only {
  display: none !important;
}

@media all and (max-width: 767px) {
  .contact-button-wrapper {
    min-height: 22px;
    min-width: 153px;
  }
  .contact-button {
    min-height: 22px;
    min-width: 153px;
    padding: 10px 45px;
    font-size: var(--font-size-medium);
  }
  .pc-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .fixed-background-container {
    background-image: url("../image/common/BG-mobile.png");
  }
}
.section-header {
  position: relative;
  width: 100%;
  height: 56.25vw;
  max-height: 100vh;
  overflow: hidden;
  margin-top: 0;
  z-index: 3;
  /* ロゴを左に配置 */
}
.section-header .video-container {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: fit-content;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-header .header {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  z-index: 2;
  padding: 10px 20px;
  height: 78px; /* ヘッダーの高さ */
  position: relative;
}
.section-header .header-image {
  max-width: 203px;
  width: 100%;
  height: auto; /* ロゴの高さをヘッダーに合わせる */
  margin-right: auto; /* ロゴを左に寄せる */
}
.section-header .header-menu {
  width: 100%;
  min-width: 19.531vw;
  height: 4.166vw;
  position: relative;
  z-index: 1000;
}
.section-header .menu-container {
  position: fixed;
  width: 100%;
  padding-left: 1.875vw;
  padding-right: 2.916vw;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.section-header .menu-container.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.section-header .menu-container.scrolled::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  z-index: 1;
}
.section-header .menu-container .logo-area .logo {
  height: 1.562vw;
  width: 8.02vw;
}
.section-header .menu-container .menu-area {
  padding: 0.833vw 0px;
  display: flex;
}
.section-header .menu-container .menu-area-mobile {
  display: none;
}
.section-header .menu-container .menu-button {
  color: #FFFFFF;
  width: fit-content;
  margin-left: 1vw;
  font-size: var(--font-size-normal);
  background-color: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  margin-top: 5px;
}
.section-header .menu-container .menu-button::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  background: #FFFFFF;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}
.section-header .menu-container .menu-button:hover::after {
  width: 100%;
}
.section-header .menu-container .menu-button-wrapper {
  display: inline-block;
  border-radius: 9999px;
  background-color: #fff;
  min-width: 120px;
  margin-left: 2vw;
}
.section-header .menu-container .menu-content-button {
  min-width: 120px;
  position: relative;
  display: inline-block;
  padding: 0.7em 3em;
  font-size: 15px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  background-color: #fff;
  /* グラデーション文字 */
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section-header .menu-container .menu-content-button:hover {
  /* ホバー時：背景をグラデーションに、テキストを白に */
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: initial;
  -webkit-text-fill-color: white;
  background-clip: initial;
  color: white;
  /* ボーダーを削除または変更 */
}
.section-header .menu-container .menu-content-button:hover::before {
  opacity: 0;
}
.section-header .menu-container .menu-content-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* ボーダーの太さ */
  border-radius: 9999px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.section-header .menu-mobile-folding-area {
  display: none;
}
.section-header .overlay-wrapper {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.section-header .overlay-wrapper .overlay-text {
  height: fit-content;
  width: fit-content;
  /* グラデーション文字 */
  margin-bottom: 10px;
  color: transparent;
  text-align: center;
  z-index: 100;
  display: flex;
  align-items: flex-end; /* 下揃え */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.section-header .overlay-wrapper .overlay-text .container-overlay {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.section-header .overlay-wrapper .text {
  padding-top: 8px;
  padding-left: 50px;
  padding-right: 50px;
  font-size: var(--font-size-xxxx-large);
  font-weight: bold;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  opacity: 0;
  background: white;
  -webkit-background-clip: text;
  background-clip: text;
  transition: -webkit-text-fill-color 4.5s ease-in-out;
}
.section-header .overlay-wrapper .text.gradient {
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradient-fade-in 0.8s ease-out forwards;
}
.section-header .overlay-wrapper .grad-mask,
.section-header .overlay-wrapper .white-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #fff;
}
.section-header .overlay-wrapper .grad-mask {
  left: -100%;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  animation: grad-in 0.6s ease-out forwards, grad-out 0.6s ease-in forwards;
  animation-delay: 0s, 0.7s;
}
.section-header .overlay-wrapper .white-mask {
  left: 0;
  background: white;
  opacity: 0;
  animation: white-fade-in 0.6s ease-out forwards;
  animation-delay: 1.4s;
}
@keyframes grad-in {
  0% {
    left: -100%;
  }
  100% {
    left: 0%;
  }
}
@keyframes grad-out {
  0% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes white-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gradient-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.section-header .video-bottom-image-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.section-header .text-emphasis {
  font-weight: bold;
  font-size: clamp(36px, 4.5vw, 74px); /* 他の部分より少し大きく設定 */
  position: relative;
}
.section-header .gradient-char {
  background: linear-gradient(90deg, #CB83C5, #99B4E0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
@media (max-aspect-ratio: 1080/2344) {
  .section-header {
    max-height: 217.037037037vw;
  }
}
@media all and (max-width: 767px) {
  .section-header {
    height: 86.0465116279vw;
    overflow-x: clip !important;
  }
  .section-header .overlay-wrapper {
    position: absolute;
    width: 100%;
    top: 75%;
    left: 2%;
    gap: 5px;
  }
  .section-header .overlay-wrapper .container-overlay {
    background-color: #FFFFFF;
  }
  .section-header .overlay-wrapper .text {
    padding-left: 15px;
    padding-right: 15px;
    font-size: var(--font-size-large-24);
    opacity: 1;
    z-index: 3;
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .section-header .overlay-wrapper .text.gradient {
    animation: none;
  }
  .section-header .overlay-wrapper .grad-mask,
  .section-header .overlay-wrapper .white-mask {
    display: none;
  }
  .section-header .header-menu {
    height: 14.883vw;
  }
  .section-header .menu-container {
    padding-left: 3.72vw;
    padding-right: 0px;
  }
  .section-header .menu-container .logo-area .logo {
    height: 6.511vw;
    width: 33.023vw;
  }
  .section-header .menu-container .menu-area {
    display: none;
  }
  .section-header .menu-container .menu-area-mobile {
    display: block;
  }
  .section-header .menu-container .menu-area-mobile .mobile-menu-button {
    height: 100%;
    padding: 3.72vw;
  }
  .section-header .menu-container .menu-area-mobile .mobile-menu-button .menu-icon {
    height: 7.441vw;
    width: 7.441vw;
  }
  .section-header .header-image {
    max-width: 207px;
    width: 100%;
  }
  .section-header .menu-area-mobile .mobile-menu-button {
    height: 100%;
    padding: 3.72vw;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-header .menu-area-mobile .mobile-menu-button .menu-button-circle {
    width: 40px;
    height: 40px;
    background: white; /* デフォルト背景 */
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px; /* 二本のラインの間隔 */
    transition: background 0.3s ease; /* 背景の変化をスムーズに */
  }
  .section-header .menu-area-mobile .mobile-menu-button .menu-button-circle .gradient-line {
    display: block;
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    border-radius: 1px;
    transition: background 0.3s ease;
  }
  .section-header .menu-area-mobile .mobile-menu-button:hover .menu-button-circle {
    background: linear-gradient(to right, #F794A2, #A1B5EF); /* ホバー時にグラデーション背景 */
  }
  .section-header .menu-area-mobile .mobile-menu-button:hover .menu-button-circle .gradient-line {
    background: white; /* ホバー時に線を白に */
  }
  .section-header .menu-mobile-folding-area {
    display: block;
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: var(--white-lightest);
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
    transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  }
  .section-header .menu-mobile-folding-area.show {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0%);
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 3.72vw;
    padding-right: 0px;
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button {
    height: 100%;
    padding: 3.72vw;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button .close-button-circle {
    width: 40px;
    height: 40px;
    background: var(--default-font-color);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.3s ease;
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button .close-button-circle .gradient-x-line {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: linear-gradient(to right, #F794A2, #A1B5EF); /* 通常時はグラデーション背景 */
    border-radius: 1px;
    transition: background 0.3s ease;
    /* 1本目は右下がりの線（\） */
    /* 2本目は左下がりの線（/） */
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button .close-button-circle .gradient-x-line:first-child {
    transform: rotate(45deg);
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button .close-button-circle .gradient-x-line:last-child {
    transform: rotate(-45deg);
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button:hover .close-button-circle {
    background: linear-gradient(to right, #A1B5EF, #F794A2); /* ホバー時にグラデーションを反転 */
  }
  .section-header .menu-mobile-folding-area .mobile-menu-header .close-button-area-mobile .menu-button:hover .close-button-circle .gradient-x-line {
    background: black; /* 線は白のまま */
  }
  .section-header .folding-menu-list-area {
    margin-top: 9.302vw;
    padding: 20px;
  }
  .section-header .folding-menu-list-area .folding-menu-contact-button {
    font-size: var(--font-size-large);
    background-color: #333; /* 黒背景 */
    border-radius: 30px; /* 角丸 */
    padding: 12px 24px; /* パディングを調整 */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 軽い影を追加 */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; /* グラデーションテキストのために必要 */
    /* グラデーションテキスト */
    /* ホバー効果 */
  }
  .section-header .folding-menu-list-area .folding-menu-contact-button span, .section-header .folding-menu-list-area .folding-menu-contact-button::before {
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }
  .section-header .folding-menu-list-area .folding-menu-contact-button:hover {
    /* ホバー時：背景をグラデーションに、テキストを白に */
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    /* ボーダーを削除または変更 */
  }
  .section-header .folding-menu-list-area .folding-menu-contact-button:hover::before {
    opacity: 0;
  }
  .section-header .folding-menu-list-area .folding-menu-contact-button:hover span {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: #4D4D4D;
    background-clip: initial;
    color: #4D4D4D;
  }
  .section-header .folding-menu-list-area .menu-button {
    color: #4D4D4D;
    width: fit-content;
    margin-left: 1vw;
    font-size: var(--font-size-large);
    background-color: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
  }
}

/* お問い合わせボタンのスタイル */
.grobal-contact-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 393px;
  max-height: 241px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  letter-spacing: 3px;
  text-decoration: none;
  overflow: visible;
  z-index: 4;
  font-size: 16px;
  /* 各レイヤーの重なり順 */
  /* 画面幅が640px以下の場合*/
}
.grobal-contact-button .widget-mask {
  position: fixed;
  right: 10px;
  bottom: 30px;
  width: 100%;
  height: 100%;
  max-width: 393px;
  max-height: 241px;
  z-index: 4;
}
.grobal-contact-button .widget-mask img {
  width: 100%;
  height: 100%;
  height: auto;
}
.grobal-contact-button .widget-person {
  position: fixed;
  right: 30px;
  bottom: 25px;
  width: 100%;
  height: 100%;
  max-width: 348px;
  max-height: 216px;
  z-index: 5;
}
.grobal-contact-button .widget-person img {
  width: 100%;
  height: 100%;
  height: auto;
}
.grobal-contact-button .widget-button {
  position: fixed;
  right: 10px;
  bottom: -10px;
  width: 100%;
  height: 100%;
  max-width: 393px;
  max-height: 103px;
  z-index: 6;
}
.grobal-contact-button .widget-button img {
  width: 100%;
  height: 100%;
  height: auto;
}
@media all and (max-width: 768px) {
  .grobal-contact-button {
    right: 10px;
    bottom: 10px;
    max-width: 295px;
    max-height: 180px;
    font-size: 12px;
  }
  .grobal-contact-button .header-image {
    max-width: 207px;
    width: 100%;
  }
  .grobal-contact-button .widget-mask {
    right: 0px;
    bottom: 20px;
    max-width: 295px;
    max-height: 180px;
  }
  .grobal-contact-button .widget-person {
    right: 20px;
    bottom: 25px;
    max-width: 261px;
    max-height: 162px;
  }
  .grobal-contact-button .widget-button {
    right: 0px;
    bottom: -10px;
    max-width: 295px;
    max-height: 77px;
  }
}

section {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
}
section .slate-bg {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: -100;
  transform: skewY(6.5deg);
}
section .container {
  width: 100%;
  max-width: 1920px;
  min-width: 375px;
  position: relative;
}
section .title-layer {
  position: relative;
  padding-left: 20px;
}
section .title-layer > :not(:first-child) {
  margin-left: 32px;
}
section .title-layer .title-layer-point-area {
  padding-left: 32px;
  margin-bottom: 16px;
}
@media all and (max-width: 1560px) {
  section .title-layer .title-layer-point-area {
    padding-left: 26px;
    margin-bottom: 13px;
  }
}
@media all and (max-width: 1024px) {
  section .title-layer .title-layer-point-area {
    padding-left: 14px;
    margin-bottom: 7px;
  }
}
@media all and (max-width: 768px) {
  section .title-layer .title-layer-point-area {
    padding-left: 10.5px;
    margin-bottom: 5.25px;
  }
}
@media all and (max-width: 440px) {
  section .title-layer .title-layer-point-area {
    padding-left: 7px;
    margin-bottom: 3.5px;
  }
}
@media all and (max-width: 1560px) {
  section .title-layer > :not(:first-child) {
    margin-left: 26px;
  }
}
@media all and (max-width: 1024px) {
  section .title-layer > :not(:first-child) {
    margin-left: 20px;
  }
}
@media all and (max-width: 768px) {
  section .title-layer > :not(:first-child) {
    margin-left: 12px;
  }
}
@media all and (max-width: 440px) {
  section .title-layer > :not(:first-child) {
    margin-left: 9.5px;
  }
}
section .title-layer .title-number {
  max-height: 151px;
}
@media all and (max-width: 1560px) {
  section .title-layer .title-number {
    max-height: 122.6875px;
  }
}
@media all and (max-width: 1024px) {
  section .title-layer .title-number {
    max-height: 94.375px;
  }
}
@media all and (max-width: 768px) {
  section .title-layer .title-number {
    max-height: 49.546875px;
  }
}
@media all and (max-width: 440px) {
  section .title-layer .title-number {
    max-height: 33.03125px;
  }
}
section .title-layer .title-number-point {
  max-height: 35px;
}
@media all and (max-width: 1560px) {
  section .title-layer .title-number-point {
    max-height: 28.4375px;
  }
}
@media all and (max-width: 1024px) {
  section .title-layer .title-number-point {
    max-height: 21.875px;
  }
}
@media all and (max-width: 768px) {
  section .title-layer .title-number-point {
    max-height: 11.484375px;
  }
}
@media all and (max-width: 440px) {
  section .title-layer .title-number-point {
    max-height: 7.65625px;
  }
}
section .title-layer .title-text-area {
  padding-bottom: 6px;
}
section .title-layer .title-text-area .title-text {
  position: relative;
  white-space: nowrap;
}
section .text-size-title {
  font-size: 64px;
}
@media all and (max-width: 1560px) {
  section .text-size-title {
    font-size: 52px;
  }
}
@media all and (max-width: 1024px) {
  section .text-size-title {
    font-size: 40px;
  }
}
@media all and (max-width: 768px) {
  section .text-size-title {
    font-size: 24px;
  }
}
@media all and (max-width: 440px) {
  section .text-size-title {
    font-size: 19px;
  }
}

.section-conversation .gradient-text {
  background: linear-gradient(90deg, #4490B1, #994FBD);
  -webkit-background-clip: text;
  color: transparent;
}
.section-conversation .explanation-layer {
  display: flex;
  flex-direction: row;
  padding-left: 65px;
  padding-right: 65px;
  margin-top: 35px;
}
.section-conversation .explanation-group {
  height: fit-content;
}
.section-conversation .Line1 {
  width: 5px;
  margin-right: 20px;
  height: initial;
}
.section-conversation .background-image {
  width: 1048px; /* 画面幅に応じてリサイズ */
  height: 750px; /* 1920px基準で高さもリサイズ */
  position: absolute;
  z-index: -1;
  top: 207px;
  left: -311px;
}
.section-conversation .conversation-movie-layer {
  padding-left: 64px;
  padding-right: 64px;
}
.section-conversation .conversation-movie-layer .conversation-movie-wrapper {
  width: 100%;
  height: 100%;
  max-height: 657px;
  max-width: 1168px;
}
.section-conversation .conversation-movie-layer .conversation-movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 657px;
  max-width: 1168px;
  margin-top: 35px;
  box-shadow: 16px 16px 0px rgba(204, 126, 255, 0.5);
}
.section-conversation .conversation-movie-layer .video-js:hover .vjs-big-play-button {
  background-color: rgba(152, 79, 189, 0.5176470588);
}
.section-conversation .conversation-movie-layer .video-js .vjs-big-play-button {
  background-color: rgba(84, 78, 87, 0.5176470588);
  border-radius: 50%;
  border: none;
  width: 72px;
  height: 72px;
  font-size: 40px;
  line-height: 72px;
}
.section-conversation .conversation-movie-layer .video-js .vjs-control-bar {
  background-color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4470588235));
}
.section-conversation .conversation-movie-layer .video-js .vjs-control-bar .vjs-play-progress {
  background: linear-gradient(90deg, #48C9EB, #994FBD);
}
.section-conversation .conversation-movie-layer .video-js .vjs-control-bar .vjs-play-progress:before {
  color: #994FBD;
}
.section-conversation .conversation-movie-layer .video-js .vjs-control-bar .vjs-load-progress {
  background-color: rgba(170, 0, 255, 0.5058823529);
}
.section-conversation .conversation-movie-layer .video-js .vjs-control-bar .vjs-picture-in-picture-control {
  display: none;
}
.section-conversation .conversation-movie-layer .video-js .vjs-control-bar .vjs-fullscreen-control {
  display: none;
}
@media all and (max-width: 1024px) {
  .section-conversation .background-image {
    width: 733.6px; /* 画面幅に応じてリサイズ */
    height: 525px; /* 1920px基準で高さもリサイズ */
    top: 171px;
    left: -311px;
  }
  .section-conversation br.text-display {
    display: none;
  }
  .section-conversation .title-number {
    max-height: 97px;
    max-width: 103px;
  }
  .section-conversation .explanation-layer {
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-conversation .Line1 {
    width: 4px;
  }
  .section-conversation .conversation-movie-layer {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-conversation .conversation-movie {
    box-shadow: 6px 6px 0px rgba(204, 126, 255, 0.5);
  }
}
@media all and (max-width: 768px) {
  .section-conversation .background-image {
    width: 461.12px; /* 画面幅に応じてリサイズ */
    height: 330px; /* 1920px基準で高さもリサイズ */
    top: 238px;
    left: -190px;
  }
  .section-conversation .title-number {
    max-height: 68px;
    max-width: 72px;
  }
  .section-conversation .explanation-layer {
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-conversation .Line1 {
    width: 2px;
  }
  .section-conversation .conversation-movie-layer {
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-conversation .conversation-movie {
    box-shadow: 4px 4px 0px rgba(204, 126, 255, 0.5);
  }
  .section-conversation .video-js .vjs-big-play-button {
    left: calc(50% + 24px);
  }
}

.section-design {
  margin-top: 200px;
}
.section-design .title-layer {
  left: 0;
  bottom: 0;
  position: relative;
  padding-left: 20px;
}
.section-design .title-number {
  max-height: 194px;
  max-width: 206px;
}
.section-design .gradient-text1 {
  background: linear-gradient(90deg, #48C9EB, #708FD5);
  -webkit-background-clip: text;
  color: transparent;
}
.section-design .gradient-text2 {
  background: linear-gradient(90deg, #7980CF, #9B4CBC);
  -webkit-background-clip: text;
  color: transparent;
}
.section-design .explanation-layer {
  display: flex;
  flex-direction: row;
  padding-left: 65px;
  padding-right: 65px;
  margin-top: 35px;
}
.section-design .explanation-group {
  height: fit-content;
}
.section-design .Line1 {
  width: 5px;
  margin-right: 20px;
  height: initial;
}
.section-design .background-image {
  width: 1787px; /* 画面幅に応じてリサイズ */
  height: 668px; /* 1920px基準で高さもリサイズ */
  position: absolute;
  z-index: -1;
  transform: rotate(-34deg);
  top: -236%;
  left: -175px;
}
.section-design .background-image1 {
  width: 1425px; /* 画面幅に応じてリサイズ */
  height: 749px; /* 1920px基準で高さもリサイズ */
  position: absolute;
  z-index: -1;
  transform: rotate(26deg);
  bottom: -492px;
  left: 605px;
}
.section-design .image-container-list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 40px; /* セクション間のスペース */
}
.section-design .image-container {
  display: flex;
  gap: 0px; /* 画像間のスペースを調整 */
  left: 0;
}
.section-design .image-container img {
  width: 100%;
  max-width: 500px; /* 各画像の最大幅を指定 */
  min-width: 200px; /* 各画像の最小幅を指定 */
  height: auto;
}
@media all and (max-width: 1024px) {
  .section-design .background-image {
    width: 1250.9px; /* 画面幅に応じてリサイズ */
    height: 467.6px; /* 1920px基準で高さもリサイズ */
    top: -345%;
    left: -150px;
  }
  .section-design .background-image1 {
    width: 997.5px; /* 画面幅に応じてリサイズ */
    height: 524.3px; /* 1920px基準で高さもリサイズ */
    bottom: -348px;
    left: 342px;
  }
  .section-design .title-number {
    max-height: 97px;
    max-width: 103px;
  }
  .section-design .explanation-layer {
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-design .Line1 {
    width: 4px;
  }
}
@media all and (max-width: 768px) {
  .section-design .background-image {
    width: 786.28px; /* 画面幅に応じてリサイズ */
    height: 293.92px; /* 1920px基準で高さもリサイズ */
    top: -311%;
    left: -76px;
  }
  .section-design .background-image1 {
    width: 627px; /* 画面幅に応じてリサイズ */
    height: 329.56px; /* 1920px基準で高さもリサイズ */
    bottom: -222px;
    left: 180px;
  }
  .section-design br.text-display {
    display: none;
  }
  .section-design .title-number {
    max-height: 68px;
    max-width: 72px;
  }
  .section-design .explanation-layer {
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-design .Line1 {
    width: 2px;
  }
  .section-design .image-container-list {
    gap: 20px; /* セクション間のスペース */
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-design .image-container {
    flex-direction: column; /* 縦並びに切り替え */
    align-items: center; /* 中央に配置 */
    gap: 20px;
  }
}

.section-character {
  padding-bottom: 120px;
  overflow-y: clip;
}
.section-character .title-layer {
  left: 0;
  bottom: 0;
  position: relative;
  padding-left: 20px;
}
.section-character .title-number {
  max-height: 194px;
  max-width: 206px;
}
.section-character .gradient-text {
  background: linear-gradient(90deg, #4490B1, #994FBD);
  -webkit-background-clip: text;
  color: transparent;
}
.section-character .explanation-layer {
  display: flex;
  flex: 1;
  flex-direction: row;
  padding-left: 65px;
  padding-right: 65px;
  margin-top: 35px;
  min-width: 513px;
}
.section-character .explanation-group {
  height: fit-content;
}
.section-character .Line1 {
  width: 5px;
  margin-right: 20px;
  height: initial;
}
.section-character .background-image2 {
  width: 1787px; /* 画面幅に応じてリサイズ */
  height: 668px; /* 1920px基準で高さもリサイズ */
  position: absolute;
  z-index: -1;
  transform: rotate(37.5deg);
  top: 500px;
  left: -400px;
}
.section-character .container-list {
  display: flex;
  flex-direction: row;
  gap: 20px; /* セクション間のスペース */
  padding: 10px;
}
.section-character .container-image-list {
  max-width: 1000px;
  display: flex;
  flex: 1.5;
  flex-direction: column;
  margin-top: 50px;
  gap: 40px; /* セクション間のスペース */
  overflow-x: scroll; /* 横スクロールを許可 */
  overflow-y: hidden; /* 横スクロールを許可 */
}
.section-character .image-container {
  display: flex;
  gap: 40px; /* 画像間のスペース */
  left: 0;
  padding-bottom: 10px;
}
.section-character .image-container img {
  flex: 0 0 auto;
  width: 100%;
  max-width: 384px; /* 各画像の最大幅を指定 */
  height: auto;
  scroll-snap-align: center; /* 画像がスクロールスナップの中心に来るように設定 */
}
@media all and (max-width: 1024px) {
  .section-character .title-number {
    max-height: 97px;
    max-width: 103px;
  }
  .section-character .explanation-layer {
    padding-left: 35px;
    padding-right: 35px;
    min-width: 250px;
  }
  .section-character .Line1 {
    width: 4px;
  }
  .section-character .image-container {
    align-items: center; /* 中央に配置 */
    gap: 10px;
    padding-left: 5px;
    padding-right: 5px;
    max-width: 250px; /* 各画像の最大幅を指定 */
  }
  .section-character .background-image2 {
    width: 1250.9px; /* 画面幅に応じてリサイズ */
    height: 467.6px; /* 1920px基準で高さもリサイズ */
    top: 307px;
    left: -348px;
  }
}
@media all and (max-width: 768px) {
  .section-character br.text-display {
    display: none;
  }
  .section-character .title-number {
    max-height: 68px;
    max-width: 72px;
  }
  .section-character .explanation-layer {
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
    min-width: 250px;
  }
  .section-character .Line1 {
    width: 2px;
  }
  .section-character .container-list {
    flex-direction: column;
    gap: 10px; /* セクション間のスペース */
  }
  .section-character .container-image-list {
    gap: 10px; /* セクション間のスペース */
    padding-left: 5px;
    padding-right: 5px;
  }
  .section-character .image-container {
    align-items: center; /* 中央に配置 */
    gap: 10px;
    padding-left: 5px;
    padding-right: 5px;
    max-width: 192px; /* 各画像の最大幅を指定 */
  }
  .section-character .background-image2 {
    width: 786.28px; /* 画面幅に応じてリサイズ */
    height: 293.92px; /* 1920px基準で高さもリサイズ */
    top: 233px;
    left: -208px;
  }
}

.section-talk .title-layer {
  left: 0;
  bottom: 0;
  position: relative;
  padding-left: 20px;
}
.section-talk .title-number {
  max-height: 194px;
  max-width: 206px;
}
.section-talk .gradient-text {
  background: linear-gradient(90deg, #4FBCE5, #9557C0);
  -webkit-background-clip: text;
  color: transparent;
}
.section-talk .explanation-layer {
  display: flex;
  flex-direction: row;
  padding-left: 65px;
  padding-right: 65px;
  margin-top: 35px;
}
.section-talk .Line1 {
  width: 5px;
  margin-right: 20px;
  height: auto;
}
.section-talk .container-list {
  display: flex;
  flex-direction: row;
  gap: 8vw; /* セクション間のスペース */
  margin-top: 50px;
  padding-left: 32px;
  padding-right: 32px;
}
.section-talk .container-item {
  display: flex;
  flex-direction: column; /* 縦に並べる */
  align-items: center; /* 中央揃え */
  gap: 15px; /* 各要素の間に余白 */
  text-align: center; /* テキストを中央揃え */
  flex: 0.25;
}
.section-talk .container-item-num-img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.section-talk .container-item-icon-img {
  width: 100%;
  max-width: 326px;
  height: auto;
}
.section-talk .container-item p {
  margin: 0;
  font-size: 1rem;
}
@media all and (max-width: 1024px) {
  .section-talk .title-number {
    max-height: 97px;
    max-width: 103px;
  }
  .section-talk .explanation-layer {
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-talk .Line1 {
    width: 4px;
  }
}
@media all and (max-width: 768px) {
  .section-talk .title-number {
    max-height: 68px;
    max-width: 72px;
  }
  .section-talk .explanation-layer {
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-talk .Line1 {
    width: 2px;
  }
  .section-talk .container-list {
    flex-direction: column;
    gap: 30px; /* セクション間のスペース */
    margin-top: 50px;
  }
  .section-talk .container-item {
    margin-bottom: 32px;
  }
  .section-talk .container-item-num-img {
    max-width: 9.7674418605vw;
  }
  .section-talk .container-item-icon-img {
    max-width: 21.8604651163vw;
  }
}

.section-request {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 200px;
  height: fit-content;
  /* 背景ボックス */
  /* テキストの強調 */
  /* ボタン */
}
.section-request .title-layer {
  left: 0;
  bottom: 0;
  position: relative;
  margin-bottom: 32px;
}
.section-request .image-request-layer {
  width: 100%;
  display: flex;
  height: fit-content;
  justify-content: center; /* 等間隔に配置 */
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 120px;
  padding-left: 120px;
}
.section-request .image-request {
  display: flex;
  flex-direction: row;
  gap: 0px; /* セクション間のスペース */
  background: linear-gradient(90deg, #46CAEB 0%, #B02EB0 100%);
  max-width: 1622px; /* 最大幅を1622pxに制限 */
  width: 100%;
  max-height: 476px; /* 高さは必要に応じて調整 */
  height: fit-content;
}
.section-request .image-item {
  width: 25%;
  height: 476px; /* 高さは必要に応じて調整 */
  display: flex;
  position: relative;
  justify-content: center; /* 等間隔に配置 */
  align-items: center;
  text-align: center;
  margin: auto;
}
.section-request .text-item {
  color: var(--white-lightest);
  font-size: clamp(16px, 1.7vw, 32px);
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .section-request .text-item {
    font-size: clamp(16px, 4vw, 32px);
  }
}
.section-request .text-box {
  color: var(--default-font-color);
  font-size: clamp(16px, 1.7vw, 32px);
  font-weight: bold;
}
@media all and (max-width: 1024px) {
  .section-request .text-box {
    font-size: clamp(12px, 2.4vw, 32px);
  }
}
.section-request .container-vector-img {
  height: 100%;
  max-width: 38px;
  width: 100%;
  position: absolute;
  top: 0px;
  right: -32px;
}
.section-request .contact-box-layer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center; /* 等間隔に配置 */
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
}
.section-request .contact-box {
  margin-left: 10px;
  margin-right: 10px;
  padding: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5); /* 半透明の白い枠線 */
  text-align: center;
  color: var(--white-lightest);
  font-family: Arial, sans-serif;
  position: relative;
  /* 全体に光彩を追加 */
}
.section-request .contact-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3); /* 光彩のボーダー */
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.5); /* 全方向に広がる光彩 */
  pointer-events: none;
  z-index: -1; /* 背景の後ろに配置 */
}
.section-request .contact-section span.highlight {
  color: #46CAEB; /* 強調文字色 */
  font-weight: bold;
}
.section-request .contact-section span.highlight-purple {
  color: #B02EB0;
  font-weight: bold;
}
.section-request .contact-button {
  width: 24vw;
  letter-spacing: 2px;
  display: inline-block;
  padding: 10px 30px;
  margin-top: 50px;
  color: var(--white-lightest);
  font-weight: bold;
  text-decoration: none;
  border: 2px solid;
  border-image: linear-gradient(90deg, #46CAEB, #B02EB0) 1;
  width: 493px;
  padding-top: 17px;
  font-size: clamp(12px, 3vw, 32px);
  /* ボタンホバー時 */
}
.section-request .contact-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #46CAEB, #B02EB0);
  opacity: 0;
  transition: opacity 0.5s;
}
.section-request .contact-button:hover::before {
  opacity: 1;
}
.section-request .gradient-text {
  background: linear-gradient(90deg, #46CAEB, #B02EB0);
  -webkit-background-clip: text;
  color: transparent;
}
.section-request .text-size-title {
  font-size: 64px;
}
@media all and (max-width: 1560px) {
  .section-request .text-size-title {
    font-size: 52px;
  }
}
@media all and (max-width: 1024px) {
  .section-request .text-size-title {
    font-size: 40px;
  }
}
@media all and (max-width: 768px) {
  .section-request .text-size-title {
    font-size: 32px;
  }
}
.section-request .pc {
  display: block;
}
.section-request .mobile {
  display: none;
}
@media all and (max-width: 1024px) {
  .section-request {
    /* ボタン */
  }
  .section-request .title-number {
    max-height: 97px;
    max-width: 103px;
  }
  .section-request .image-request-layer {
    padding-top: 0;
    padding-right: 20vw;
    padding-left: 20vw;
  }
  .section-request .explanation-layer {
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-request .Line1 {
    width: 4px;
  }
  .section-request .image-request {
    display: flex;
    flex-direction: column;
    gap: 0px; /* セクション間のスペース */
    background: linear-gradient(180deg, #46CAEB 0%, #B02EB0 100%);
    width: 100%;
    max-height: 1622px; /* 高さは必要に応じて調整 */
    height: 100%;
  }
  .section-request .image-item {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center; /* 等間隔に配置 */
    align-items: center;
    text-align: center;
    margin: auto;
    height: fit-content;
    padding: 78px;
  }
  .section-request .container-vector-img {
    max-height: 19px;
    height: 100%;
    max-width: 100%;
    width: 100%;
    position: absolute;
    top: 100%;
    right: 0%;
  }
  .section-request .contact-button {
    text-align: center;
    padding: 10px 30px;
    margin-top: 50px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    vertical-align: middle;
    padding-bottom: 18px;
    font-size: clamp(12px, 1.8vw, 32px);
    border: 2px solid;
    border-image: linear-gradient(90deg, #46CAEB, #B02EB0) 1;
    width: 493px;
    padding-top: 17px;
    /* ボタンホバー時 */
  }
  .section-request .contact-button::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, #46CAEB, #B02EB0);
    opacity: 0;
    transition: opacity 0.5s;
  }
  .section-request .contact-button:hover::before {
    opacity: 1;
  }
  .section-request .pc {
    display: none;
  }
  .section-request .mobile {
    display: block;
  }
}
@media all and (max-width: 768px) {
  .section-request .image-request-layer {
    padding-right: 20vw;
    padding-left: 20vw;
  }
  .section-request .text-size-xxx-large {
    font-size: 30px;
  }
  .section-request .text-size-xx-large {
    font-size: 21px;
  }
  .section-request .text-size-xxxhalf-large {
    font-size: 30px;
  }
  .section-request .explanation-layer {
    font-size: 10px;
    padding-left: 35px;
    padding-right: 35px;
  }
  .section-request .Line1 {
    width: 2px;
  }
  .section-request .image-item {
    height: fit-content;
    padding: 48px;
  }
  .section-request .contact-box {
    padding: 16px;
  }
}

.section-feature .feature-layer {
  display: flex;
  flex-flow: column;
  position: relative;
  margin-top: 50px;
}
.section-feature .background-tex {
  width: 1787px; /* 画面幅に応じてリサイズ */
  height: 668px; /* 1920px基準で高さもリサイズ */
  position: absolute;
  z-index: -2;
  top: -150%;
  left: -138%;
}
.section-feature .Line1 {
  width: 4px;
  height: 93px;
}
.section-feature .title-text {
  font-size: 64px;
  bottom: 0;
  letter-spacing: 3px;
}
@media all and (max-width: 1024px) {
  .section-feature .title-text {
    font-size: 40px;
    bottom: -35px;
  }
  .section-feature .background-tex {
    width: 1250.9px; /* 画面幅に応じてリサイズ */
    height: 467.6px; /* 1920px基準で高さもリサイズ */
    top: -120%;
    left: -167%;
  }
}
@media all and (max-width: 768px) {
  .section-feature .title-text {
    font-size: 40px;
    bottom: -29px;
  }
  .section-feature .Line1 {
    width: 4px;
  }
  .section-feature .background-tex {
    width: 786.28px; /* 画面幅に応じてリサイズ */
    height: 293.92px; /* 1920px基準で高さもリサイズ */
    top: -54%;
    left: -86%;
  }
}

.section-footer {
  width: 100%;
  color: var(--white-lightest);
}
.section-footer .footer-line {
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  height: 1vh;
  width: 100%;
}
.section-footer .footer-menu {
  width: 100%;
}
.section-footer .footer-menu .menu-button {
  margin-right: 1.562vw;
  margin-left: 1.562vw;
  font-size: var(--font-size-medium);
  color: var(--white-lightest);
  font-weight: 500;
  -webkit-text-stroke: 0.5px;
}
.section-footer .footer-menu .menu-button a::after {
  bottom: -0.208vw;
  background-color: var(--white-lightest);
}
.section-footer .footer-info {
  padding-left: 3vw;
  padding-right: 3vw;
  padding-bottom: 32px;
  padding-top: 4.3vw;
  height: 200px;
  background-color: #000000;
}
.section-footer .footer-info .logo {
  height: 62px;
  width: 254px;
  padding-bottom: 30px;
}
.section-footer .footer-info .company-info {
  display: grid;
  gap: 10px;
}
.section-footer .footer-info .company {
  letter-spacing: -0.4px;
  font-size: 16px;
}
.section-footer .footer-info .company:hover {
  text-decoration: underline;
}
.section-footer .footer-info .link-icon {
  font-size: 0.9em;
  margin-left: 2px;
}
.section-footer .footer-info .address {
  font-size: 14px;
}
.section-footer .footer-info .copyright {
  margin-top: 1.25vw;
  letter-spacing: -0.4px;
  font-size: 13px;
}
.section-footer .sp-only {
  display: none;
}
@media all and (max-width: 767px) {
  .section-footer {
    margin-top: 11.145vw;
    width: 100%;
  }
  .section-footer .footer-info {
    padding-top: 5.947vw;
    height: 265px;
    padding-left: 6vw;
    padding-right: 6vw;
    display: flex;
    flex-direction: column;
    align-items: baseline;
  }
  .section-footer .footer-info .copyright {
    margin-top: 4vw;
  }
  .section-footer .footer-info .self-bottom {
    align-self: baseline;
  }
  .section-footer .sp-only {
    display: inline;
  }
}

html body {
  background-color: var(--bg-color);
  z-index: -4;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, sans-serif;
}

#business {
  --main-color: #F77888DD;
  --main-color-focused: #F77888;
  --main-color-text: #86A3EDDD;
  --default-font-color: #4D4D4D;
  --bg-color: #FFFFFF;
  --sub-bg-color: #F2F2F4;
  --gradient-color-start: #F77888DD;
  --gradient-color-end: #86A3EDDD;
  --gradient-color-start-focused: #F77888;
  --gradient-color-end-focused: #86A3ED;
}
#business button {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#business .business-background-tex {
  width: 716px; /* 画面幅に応じてリサイズ */
  height: 736px; /* 1920px基準で高さもリサイズ */
  position: absolute;
  z-index: -3;
  transform: rotate(-10.01deg);
}
@media all and (max-width: 1024px) {
  #business .business-background-tex {
    width: 501.2px; /* 画面幅に応じてリサイズ */
    height: 515.2px; /* 1920px基準で高さもリサイズ */
  }
}
@media all and (max-width: 768px) {
  #business .business-background-tex {
    width: 315.04px; /* 画面幅に応じてリサイズ */
    height: 323.84px; /* 1920px基準で高さもリサイズ */
  }
}
#business .business-background-fragment-big {
  width: 22.5520833333vw; /* 画面幅に応じてリサイズ */
  height: 24.0625vw; /* 1920px基準で高さもリサイズ */
  max-width: 433px;
  max-height: 462px;
  position: absolute;
  z-index: 2;
}
#business .business-background-fragment-01 {
  width: 150px;
  height: 159px;
  position: absolute;
  z-index: -1;
}
@media all and (max-width: 1024px) {
  #business .business-background-fragment-01 {
    width: 105px; /* 画面幅に応じてリサイズ */
    height: 111.3px; /* 1920px基準で高さもリサイズ */
  }
}
@media all and (max-width: 768px) {
  #business .business-background-fragment-01 {
    width: 66px; /* 画面幅に応じてリサイズ */
    height: 69.96px; /* 1920px基準で高さもリサイズ */
  }
}
#business .business-background-fragment-02 {
  width: 136px;
  height: 145px;
  position: absolute;
  z-index: -1;
}
@media all and (max-width: 1024px) {
  #business .business-background-fragment-02 {
    width: 95.2px; /* 画面幅に応じてリサイズ */
    height: 101.5px; /* 1920px基準で高さもリサイズ */
  }
}
@media all and (max-width: 768px) {
  #business .business-background-fragment-02 {
    width: 59.84px; /* 画面幅に応じてリサイズ */
    height: 63.8px; /* 1920px基準で高さもリサイズ */
  }
}
#business .business-background-fragment-03 {
  width: 100px;
  height: 107px;
  position: absolute;
  z-index: -1;
}
@media all and (max-width: 1024px) {
  #business .business-background-fragment-03 {
    width: 70px; /* 画面幅に応じてリサイズ */
    height: 74.9px; /* 1920px基準で高さもリサイズ */
  }
}
@media all and (max-width: 768px) {
  #business .business-background-fragment-03 {
    width: 44px; /* 画面幅に応じてリサイズ */
    height: 47.08px; /* 1920px基準で高さもリサイズ */
  }
}
#business .business-background-fragment-04 {
  width: 100px;
  height: 107px;
  position: absolute;
  z-index: -1;
}
@media all and (max-width: 1024px) {
  #business .business-background-fragment-04 {
    width: 70px; /* 画面幅に応じてリサイズ */
    height: 74.9px; /* 1920px基準で高さもリサイズ */
  }
}
@media all and (max-width: 768px) {
  #business .business-background-fragment-04 {
    width: 44px; /* 画面幅に応じてリサイズ */
    height: 47.08px; /* 1920px基準で高さもリサイズ */
  }
}
#business .business-background-fragment-05 {
  width: 45px;
  height: 48px;
  position: absolute;
  z-index: -1;
}
@media all and (max-width: 1024px) {
  #business .business-background-fragment-05 {
    width: 31.5px; /* 画面幅に応じてリサイズ */
    height: 33.6px; /* 1920px基準で高さもリサイズ */
  }
}
@media all and (max-width: 768px) {
  #business .business-background-fragment-05 {
    width: 19.8px; /* 画面幅に応じてリサイズ */
    height: 21.12px; /* 1920px基準で高さもリサイズ */
  }
}
#business section .text-colored {
  color: var(--main-color-text);
}
#business section .highlighted-text {
  display: inline-block;
  position: relative;
}
#business section .highlighted-text::before {
  content: "";
  position: absolute;
  bottom: -4%; /* 下線位置の微調整 */
  left: 0;
  width: 100%;
  height: 18%; /* 下線の太さ */
  background: linear-gradient(90deg, var(--gradient-color-start), var(--gradient-color-end));
  z-index: -1; /* テキストの後ろに配置 */
}
#business section .slate-bg {
  position: absolute;
  top: -220px;
  left: 0;
  right: 0;
  bottom: -180px;
  z-index: -100;
  transform: skewY(-7.5deg);
  background-color: var(--sub-bg-color);
}
@media all and (max-width: 768px) {
  #business section .slate-bg {
    top: -64px;
    bottom: -64px;
  }
}
#business .section-header {
  overflow: initial;
}
#business .section-header .business-background-fragment-big {
  bottom: -19%;
  right: 1%;
}
@media all and (max-width: 768px) {
  #business .section-header .business-background-fragment-big {
    width: 129.9px; /* 画面幅に応じてリサイズ */
    height: 138.6px; /* 1920px基準で高さもリサイズ */
    bottom: -5%;
    right: 1%;
  }
}
#business .section-conversation .bg-01.business-background-tex {
  top: 270px;
  left: -40px;
}
#business .section-conversation .bg-01.business-background-fragment-02 {
  top: 920px;
  left: 40px;
}
#business .section-conversation .bg-02.business-background-tex {
  bottom: -570px;
  right: -185px;
}
#business .section-conversation .bg-02.business-background-fragment-01 {
  bottom: -200px;
  right: 66px;
}
@media all and (max-width: 1024px) {
  #business .section-conversation .bg-01.business-background-tex {
    top: 215px;
    left: -40px;
  }
  #business .section-conversation .bg-01.business-background-fragment-02 {
    top: 690px;
    left: -36px;
  }
  #business .section-conversation .bg-02.business-background-tex {
    bottom: -400px;
    right: -302px;
  }
  #business .section-conversation .bg-02.business-background-fragment-01 {
    bottom: -162px;
    right: -40px;
  }
}
@media all and (max-width: 768px) {
  #business .section-conversation .bg-01.business-background-tex {
    top: 180px;
    left: -40px;
  }
  #business .section-conversation .bg-01.business-background-fragment-02 {
    top: 480px;
    left: -16px;
  }
  #business .section-conversation .bg-02.business-background-tex {
    bottom: -240px;
    right: -40px;
  }
  #business .section-conversation .bg-02.business-background-fragment-01 {
    bottom: -103px;
    right: 80px;
  }
}
#business .section-conversation .conversation-movie-layer .conversation-movie {
  box-shadow: 16px 16px 0px rgba(135, 135, 135, 0.25);
}
#business .section-conversation .video-js:hover .vjs-big-play-button {
  background-color: rgba(247, 120, 136, 0.3490196078);
}
#business .section-conversation .video-js .vjs-big-play-button {
  background-color: rgba(52, 54, 47, 0.431372549);
}
#business .section-conversation .video-js .vjs-control-bar {
  background-color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4470588235));
}
#business .section-conversation .video-js .vjs-control-bar .vjs-play-progress {
  background: linear-gradient(90deg, var(--gradient-color-start), var(--gradient-color-end));
}
#business .section-conversation .video-js .vjs-control-bar .vjs-play-progress:before {
  color: var(--main-color);
}
#business .section-conversation .video-js .vjs-control-bar .vjs-load-progress {
  background-color: rgba(247, 120, 136, 0.3490196078);
}
#business .section-design .image-container {
  padding-left: 4vw;
  padding-right: 4vw;
}
#business .section-design .image-container img {
  max-width: 571px;
}
#business .section-character {
  margin-top: 300px;
  overflow: visible;
}
#business .section-character .bg-01.business-background-tex {
  top: -568px;
  left: -249px;
}
#business .section-character .bg-01.business-background-fragment-03 {
  top: -180px;
  left: 400px;
}
#business .section-character .bg-02.business-background-tex {
  top: -462px;
  left: 1040px;
}
@media all and (max-width: 1024px) {
  #business .section-character .bg-01.business-background-tex {
    top: -410px;
    left: -160px;
  }
  #business .section-character .bg-01.business-background-fragment-03 {
    top: -140px;
    left: 285px;
  }
  #business .section-character .bg-02.business-background-tex {
    top: -320px;
    left: 640px;
  }
}
@media all and (max-width: 768px) {
  #business .section-character .bg-01.business-background-tex {
    top: -257px;
    left: -125px;
  }
  #business .section-character .bg-01.business-background-fragment-03 {
    top: -100px;
    left: 160px;
  }
  #business .section-character .bg-02.business-background-tex {
    top: -210px;
    left: 420px;
  }
}
#business .section-character .explanation-layer {
  min-width: 385px;
}
#business .section-character .explanation-text {
  max-width: 385px;
}
#business .section-character .container-image-list {
  max-width: 70%;
  flex: auto;
  overflow-x: hidden;
  margin-top: 38px;
}
#business .section-character .container-image-list .image-container .stack {
  height: calc(35.4166666667vw + 120px);
  max-height: 840px;
}
#business .section-character .container-image-list .image-container img {
  width: 20vw;
}
@media all and (max-width: 1750px) {
  #business .section-character .container-list {
    flex-direction: column;
  }
  #business .section-character .container-image-list {
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }
  #business .section-character .explanation-text {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  #business .section-character {
    margin-top: 180px;
    margin-bottom: 32px;
  }
  #business .section-character .image-container {
    max-width: 100%;
  }
  #business .section-character .container-image-list {
    max-width: 100%;
    flex: auto;
    overflow-x: hidden;
    margin-top: 38px;
  }
  #business .section-character .container-image-list .image-container .stack {
    height: 49.5833333333vw;
    max-height: 840px;
  }
  #business .section-character .container-image-list .image-container img {
    width: 28vw;
  }
}
#business .section-talk .bg-01.business-background-tex {
  z-index: -101;
  top: -680px;
  left: -256px;
}
#business .section-talk .bg-01.business-background-fragment-02 {
  top: -232px;
  left: 280px;
}
@media all and (max-width: 1024px) {
  #business .section-talk .bg-01.business-background-tex {
    top: -580px;
    left: -60px;
  }
  #business .section-talk .bg-01.business-background-fragment-02 {
    top: -250px;
    left: 200px;
  }
}
@media all and (max-width: 768px) {
  #business .section-talk .bg-01.business-background-tex {
    top: -312px;
    left: -48px;
  }
  #business .section-talk .bg-01.business-background-fragment-02 {
    top: -90px;
    left: 80px;
  }
}
#business .section-talk .container-list {
  gap: 32px;
}
#business .section-talk .container-item {
  background-color: var(--white-lightest);
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: clamp(48px, 2vw, 120px);
  padding-right: clamp(48px, 2vw, 120px);
  border-radius: 16px;
  flex: 0.25;
}
#business .section-request {
  margin-top: clamp(164px, 20vw, 400px);
}
#business .section-request .title-layer {
  padding-left: 0;
}
#business .section-request .title-text-area img {
  width: 100%;
  max-width: 80vw;
  height: auto;
}
#business .section-request .image-request {
  background: linear-gradient(90deg, var(--gradient-color-start) 0%, var(--gradient-color-end) 100%);
}
@media all and (max-width: 1024px) {
  #business .section-request .image-request {
    background: linear-gradient(180deg, var(--gradient-color-start) 0%, var(--gradient-color-end) 100%);
  }
}
#business .section-request .contact-box-layer {
  position: relative;
  margin-top: 120px;
  /* ボタン */
}
#business .section-request .contact-box-layer .business-background-fragment-03 {
  top: -87px;
  right: 120px;
}
#business .section-request .contact-box-layer .business-background-fragment-04 {
  bottom: 0px;
  left: 0px;
}
#business .section-request .contact-box-layer .business-background-fragment-05 {
  bottom: -16px;
  right: 132px;
}
@media all and (max-width: 1024px) {
  #business .section-request .contact-box-layer .business-background-fragment-03 {
    top: -63px;
    right: 183px;
  }
  #business .section-request .contact-box-layer .business-background-fragment-04 {
    bottom: 0px;
    left: 0px;
  }
  #business .section-request .contact-box-layer .business-background-fragment-05 {
    bottom: -16px;
    right: 183px;
  }
}
@media all and (max-width: 768px) {
  #business .section-request .contact-box-layer .business-background-fragment-03 {
    top: -40px;
    right: 68px;
  }
  #business .section-request .contact-box-layer .business-background-fragment-04 {
    bottom: 0px;
    left: 0px;
  }
  #business .section-request .contact-box-layer .business-background-fragment-05 {
    bottom: -10px;
    right: 68px;
  }
}
#business .section-request .contact-box-layer .bg-element {
  position: absolute;
  left: -50vw;
  right: -50vw;
  height: 100%;
  background-color: var(--sub-bg-color);
  z-index: -50; /* テキストの後ろに配置 */
}
#business .section-request .contact-box-layer .highlighted-text::before {
  bottom: 14%;
}
#business .section-request .contact-box-layer .contact-box {
  border: none;
}
#business .section-request .contact-box-layer .contact-box::after {
  display: none;
}
@media (max-width: 768px) {
  #business .section-request .contact-box-layer .contact-box {
    padding-top: 48px;
  }
}
#business .section-request .contact-box-layer .contact-button {
  transition: all 0.3s;
  padding-top: 15px;
  border-image: linear-gradient(90deg, var(--gradient-color-start), var(--gradient-color-end)) 1;
  background: linear-gradient(90deg, var(--gradient-color-start), var(--gradient-color-end));
  /* ボタンホバー時 */
}
#business .section-request .contact-box-layer .contact-button::before {
  display: none;
}
#business .section-request .contact-box-layer .contact-button:hover {
  background: linear-gradient(90deg, var(--gradient-color-start-focused), var(--gradient-color-end-focused));
}
#business .section-footer .footer-layer {
  height: fit-content;
}
#business .section-footer .footer-info-area {
  background-color: #000000;
}
#business .section-footer .footer-info-area .footer-logo-text {
  color: var(--white-lightest);
}
#business .slidein-text span {
  display: inline-block;
  opacity: 0;
  transform: translateX(-1em);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#business .slidein-text.animate span {
  opacity: 1;
  transform: translateX(0);
}

.conversation-character {
  margin-top: 25vh;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Swiper本体のサイズ調整 */
  /* Swiper用構造の修正 */
  /* 左ボタン用画像 */
  /* 右ボタン用画像 */
  /* ページネーションドットのスタイル改善 */
}
.conversation-character .character-header {
  margin-bottom: 40px;
  width: 100%;
  max-width: 900px;
  margin-left: 60vh;
}
.conversation-character .character-header .character-header-title {
  font-size: var(--font-size-xx-large);
  font-weight: 700;
  color: #555;
  margin-bottom: 20px;
  text-align: right;
  margin-right: 15vh;
}
.conversation-character .character-header .character-detail {
  font-size: var(--font-size-medium);
  line-height: 1.8;
  color: #555;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.conversation-character .character-section {
  position: relative;
  margin-top: 60px;
  width: 100%;
  max-width: 1920px;
}
.conversation-character .character-title {
  font-size: var(--font-size-xxx-large);
  font-weight: 700;
  margin-left: 25vh;
  margin-bottom: 3vh;
  text-align: left;
  background: linear-gradient(to right, #B468AD, #789FE0);
  background-size: 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.conversation-character .character-title img {
  position: absolute;
  left: 6%;
  top: -12%;
  width: 369px;
  height: 200px;
}
.conversation-character .character-slide-list {
  display: flex;
  transition: transform 0.5s ease;
  padding: 30px 0; /* 拡大したアイテムのためのスペース */
  margin: 0 auto;
  cursor: grab;
  user-select: none;
}
.conversation-character .character-list-item {
  flex: 0 0 auto;
  max-width: 245px;
  max-height: 442px;
  margin: 0 15px;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  transform-origin: center center;
  opacity: 0.7; /* デフォルトは少し透明に */
  /* 中心アイテムのスタイル */
}
.conversation-character .character-list-item.center-item {
  transform: scale(1.2); /* 中心アイテムを20%拡大 */
  opacity: 1; /* 完全に不透明 */
  z-index: 1; /* 他のアイテムより前面に */
}
.conversation-character .character-list-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s ease;
}
.conversation-character .character-list-wrapper {
  position: relative;
  height: 700px;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: visible;
}
.conversation-character .character-swiper {
  width: 100%;
  height: 100%;
}
.conversation-character .character-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}
.conversation-character .character-swiper .swiper-slide {
  width: 100%;
  min-width: 0;
  max-height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.5;
}
.conversation-character .character-swiper .swiper-slide img {
  max-height: 100%;
  object-fit: contain;
}
.conversation-character .character-swiper .swiper-slide.center-item {
  opacity: 1;
  transform: scale(1.1);
}
.conversation-character .character-left-button,
.conversation-character .character-right-button {
  position: absolute;
  margin-left: 10vh;
  top: 50px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border: none;
  cursor: pointer;
}
.conversation-character .character-left-button::after,
.conversation-character .character-right-button::after {
  display: none !important; /* Swiperデフォルト矢印を非表示にする */
  content: none;
}
.conversation-character .character-left-button {
  left: 0;
  background-image: url("../image/business/character/left_button.png");
}
.conversation-character .character-right-button {
  left: 50px;
  background-image: url("../image/business/character/right_button.png");
}
.conversation-character .character-pagination-dot {
  position: absolute;
  bottom: 10px;
  margin-top: 10px;
  z-index: 5;
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}
.conversation-character .character-pagination-dot .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 5px;
  cursor: pointer;
  position: relative;
}
.conversation-character .character-pagination-dot .dot.active {
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  width: 19px;
  height: 19px;
}
.conversation-character .character-pagination-dot .dot.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000;
}
@media (max-width: 1491px) {
  .conversation-character .character-title {
    background-size: 65%;
  }
}
@media (max-width: 1200px) {
  .conversation-character .character-title {
    background-size: 100%;
  }
}
@media (max-width: 768px) {
  .conversation-character {
    margin-top: 18vh;
  }
  .conversation-character .character-header {
    margin-bottom: 20px;
    max-width: 768px;
    margin: 0 auto;
  }
  .conversation-character .character-header .character-header-title {
    font-size: var(--font-size-large);
    margin: 0 auto;
    text-align: left;
  }
  .conversation-character .character-header .character-detail {
    font-size: var(--font-size-normal);
    max-width: 768px;
    margin: 0 auto;
  }
  .conversation-character .character-title {
    font-size: var(--font-size-medium-large);
    margin-left: 3vh;
    margin-bottom: 0vh;
    margin-top: 6vh;
    background-size: 100%;
  }
  .conversation-character .character-title img {
    left: -13%;
    top: 0;
    width: 148px;
    height: 100px;
  }
  .conversation-character .character-swiper .swiper-slide {
    max-height: 416px;
  }
  .conversation-character .character-list-wrapper {
    position: relative;
    height: 500px;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
  }
  .conversation-character .character-list-item {
    max-width: 196px;
    max-height: 353px;
  }
  .conversation-character .character-left-button,
  .conversation-character .character-right-button {
    display: none;
  }
  .conversation-character .character-pagination-dot {
    margin-top: 20px;
  }
}

.section-contact {
  position: relative;
  width: 100%;
  height: 20vh;
  background-color: #EEF3FF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20vh;
  margin-top: 90px;
}
.section-contact .content-area {
  max-width: 800px;
  width: 100%;
  text-align: center;
  padding: 20px;
}
.section-contact .contact-message {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: #86A3ED;
}
@media all and (max-width: 767px) {
  .section-contact {
    margin-top: 120px;
    margin-bottom: 0;
    height: 172px;
  }
  .section-contact .contact-message {
    font-size: var(--font-size-medium);
  }
}

.section-process {
  padding: 60px 0;
  background-color: transparent;
  padding-top: 20vh;
}
.section-process .process-header {
  margin-bottom: 40px;
  padding-left: 15%;
  padding-right: 15%;
}
.section-process .process-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-process .process-header-content-left {
  display: flex;
  align-items: flex-start;
  margin-top: 15vh;
}
.section-process .process-header-content-left h2 {
  font-size: var(--font-size-xxxhalf-large);
  font-weight: 700;
  color: #4D4D4D;
  position: relative;
}
.section-process .process-header-content .process-icon {
  width: 75px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: -1;
}
.section-process .process-header-content .process-charactor-icon {
  height: 267px;
  width: 430px;
  margin-right: -10vh;
}
.section-process .process-header-content .process-bubble-icon {
  width: 259px;
  height: 115px;
  margin-right: -10vh;
  position: relative;
}
.section-process .process-header-content .process-bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-process .process-header-content .process-bubble-icon .bubble-text {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  width: 80%;
  line-height: 1.4;
}
.section-process .process-header-line {
  height: 1px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
}
.section-process .process-content {
  padding: 0 10%;
}
.section-process .process-content-explain {
  padding-left: 8%;
  padding-right: 8%;
  text-align: left;
  font-size: var(--font-size-large);
  font-weight: 700;
  color: #4D4D4D;
  margin-bottom: 50px;
  line-height: 1.6;
}
.section-process .process-content .process-step-bubble-list {
  margin-bottom: -25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-process .process-content .process-step-cardlist {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-process .process-content .process-step-detail-list {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-process .process-content .process-steps {
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  min-width: 900px;
  position: relative;
}
@media (max-width: 1200px) {
  .section-process .process-content .process-steps {
    justify-content: center;
  }
}
.section-process .process-content .process-step {
  width: 25%;
  min-width: 250px;
  position: relative;
}
@media (max-width: 768px) {
  .section-process .process-content .process-step {
    width: 100%;
    margin-bottom: 40px;
  }
}
.section-process .process-content .process-step-bubble {
  height: 59px;
  width: 80%;
  margin-bottom: 20px;
}
.section-process .process-content .process-step-bubble .bubble-icon {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-process .process-content .process-step-bubble .bubble-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-process .process-content .process-step-bubble .bubble-icon img:nth-child(2) {
  top: -10%;
}
.section-process .process-content .process-step-bubble .bubble-icon p {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: var(--font-size-medium);
  line-height: 1.4;
}
.section-process .process-content .process-step-card {
  padding: 25px 20px;
  margin-bottom: 20px;
  width: 350px;
  position: relative;
  z-index: 2;
}
.section-process .process-content .process-step-title {
  font-size: var(--font-size-large);
  font-weight: 700;
  text-align: left;
  margin-bottom: 15px;
  line-height: 1.4;
  /* グラデーション文字 */
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-process .process-content .process-step-line {
  width: 100%;
  height: 16px;
  margin: 15px 0;
  display: flex;
  justify-content: center;
}
.section-process .process-content .process-step-line img {
  width: 100%;
  height: auto;
}
.section-process .process-content .process-step-summary {
  font-size: var(--font-size-large);
  font-weight: 700;
  color: #4D4D4D;
  text-align: left;
}
.section-process .process-content .process-step-detail {
  width: 350px;
  padding-left: 14px;
}
.section-process .process-content .process-step-detail p {
  font-size: var(--font-size-normal);
  line-height: 1.6;
  color: #4D4D4D;
  font-weight: 700;
}
.section-process .process-content .process-step-detail p .highlight-text {
  color: #86A3ED;
}
.section-process .process-content .process-notes {
  margin-top: 40px;
  padding: 0 5%;
}
.section-process .process-content .process-notes p {
  font-size: var(--font-size-small);
  color: #4D4D4D;
  margin-bottom: 10px;
  line-height: 1.6;
}
.section-process .gradient-char {
  color: var(--default-font-color);
}
@media (max-width: 1400px) {
  .section-process .process-content .process-step-bubble .bubble-icon img {
    position: absolute;
    width: 95%;
  }
  .section-process .process-content .process-step-bubble .bubble-icon p {
    top: 30%;
    font-size: 11px;
  }
  .section-process .process-content .process-step-summary {
    font-size: var(--font-size-medium);
  }
  .section-process .process-content .process-step-detail p {
    font-size: var(--font-size-x-small);
  }
}
@media (max-width: 768px) {
  .section-process {
    padding-top: 60px;
    overflow-x: hidden;
  }
  .section-process .process-header {
    margin-bottom: 40px;
    padding-left: 0%;
    padding-right: 0%;
    position: relative;
  }
  .section-process .process-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 200px;
    overflow-x: hidden;
  }
  .section-process .process-header-content-left {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    padding-left: 5%;
  }
  .section-process .process-header-content-left h2 {
    font-size: var(--font-size-large-24);
    margin-top: 15px;
  }
  .section-process .process-header-content-right {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
  }
  .section-process .process-header-content .process-charactor-icon {
    height: 179px;
    width: 211px;
    margin-right: 0px;
    align-self: flex-end;
    position: relative;
    will-change: transform;
    clip-path: inset(0 0 0 0);
  }
  .section-process .process-header-content .process-bubble-icon {
    width: 160px;
    height: 80px;
    right: 24vh;
    position: absolute;
  }
  .section-process .process-header-content .process-bubble-icon .bubble-text {
    left: 50%;
    font-size: var(--font-size-small);
  }
  .section-process .process-header-line {
    height: 1px;
    position: relative;
    z-index: 1;
    margin-left: 5%;
    margin-right: 5%;
  }
  .section-process .process-content {
    padding: 0 10px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-process .process-content-explain {
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
    font-size: var(--font-size-medium);
    margin-bottom: 0px;
    margin-bottom: 20px;
  }
  .section-process .process-content .process-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    min-width: 100%;
    position: relative;
  }
  .section-process .process-content .process-step {
    width: 100%;
    margin-bottom: 60px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-process .process-content .process-step-bubble {
    max-width: 320px;
    height: 60px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -10px;
    z-index: 2;
  }
  .section-process .process-content .process-step-bubble .bubble-icon {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .section-process .process-content .process-step-bubble .bubble-icon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .section-process .process-content .process-step-bubble .bubble-icon img:nth-child(2) {
    top: -10%;
  }
  .section-process .process-content .process-step-bubble .bubble-icon p {
    position: absolute;
    top: 25%;
    left: 51%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: var(--font-size-medium);
    line-height: 1.4;
  }
  .section-process .process-content .process-step-card {
    padding: 25px 20px;
    margin-bottom: 20px;
    width: 350px;
    position: relative;
    z-index: 1;
  }
  .section-process .process-content .process-step-card-bg {
    position: absolute;
    top: -5px;
    left: -23px;
    width: 395px;
    height: 329px;
    object-fit: cover;
    z-index: -1;
  }
  .section-process .process-content .process-step-title {
    font-size: var(--font-size-large-24);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.4;
    /* グラデーション文字 */
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    background-size: 100% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-process .process-content .process-step-line {
    width: 100%;
    height: 1px;
    margin: 15px 0;
    display: flex;
    justify-content: center;
  }
  .section-process .process-content .process-step-line img {
    width: 100%;
    height: auto;
  }
  .section-process .process-content .process-step-summary {
    font-size: var(--font-size-large);
    font-weight: 700;
    color: #4D4D4D;
    text-align: center;
  }
  .section-process .process-content .process-step-detail {
    width: 350px;
    padding: 0 20px;
  }
  .section-process .process-content .process-step-detail p {
    font-size: var(--font-size-normal);
    line-height: 1.6;
    color: #4D4D4D;
    font-weight: 700;
  }
  .section-process .process-content .process-step-detail p .highlight-text {
    color: #86A3ED;
  }
  .section-process .process-content .step4-bg {
    top: -20px !important;
  }
  .section-process .process-content .process-notes {
    margin-top: 40px;
    padding: 0 5%;
  }
  .section-process .process-content .process-notes p {
    font-size: var(--font-size-small);
    color: #4D4D4D;
    margin-bottom: 10px;
    line-height: 1.6;
  }
}

.section-question {
  background-color: transparent;
  padding-top: 200px;
}
.section-question .question-header {
  margin-bottom: 20px;
  padding-left: 15%;
  padding-right: 15%;
}
.section-question .question-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-question .question-header-content-left {
  display: flex;
  align-items: flex-start;
  margin-top: 10vh;
}
.section-question .question-header-content-left h2 {
  font-size: var(--font-size-xxxhalf-large);
  font-weight: 700;
  color: #333;
  position: relative;
}
.section-question .question-header-content .question-talkmate-icon {
  width: 75px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: -1;
}
.section-question .question-header-line {
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
}
.section-question .question-list {
  width: 65%;
  margin: 0 auto;
  margin-top: 5vh;
  padding: 0 20px;
}
.section-question .question-item {
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s linear;
  text-align: left;
  font-size: var(--font-size-large);
}
.section-question .question-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.section-question .question-item.active .question-item-header .question-item-title {
  color: #4D4D4D;
}
.section-question .question-item.active .question-item-icon .plus {
  display: none;
}
.section-question .question-item.active .question-item-icon .minus {
  display: block;
}
.section-question .question-item.active .question-item-content {
  max-height: 1000px;
  padding: 20px;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.1s linear, opacity 0.1s linear, padding 0.1s linear;
}
.section-question .question-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.section-question .question-item-title {
  font-size: var(--font-size-medium);
  font-weight: 700;
  color: #4D4D4D;
  font-size: var(--font-size-large);
  margin: 0;
  padding-right: 20px;
  transition: color 0.2s ease;
  flex: 1;
  text-align: left;
}
.section-question .question-item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.section-question .question-item-icon .plus, .section-question .question-item-icon .minus {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #4D4D4D;
  transition: all 0.3s ease;
}
.section-question .question-item-icon .minus {
  display: none;
}
.section-question .question-item-content {
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.1s linear, opacity 0.1s linear, padding 0.1s linear;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}
.section-question .question-item-content::before {
  content: "";
  position: absolute;
  bottom: 95%;
  left: 20px;
  right: 20px;
  height: 1px;
  border-top: 1px dotted #666;
  display: block;
}
.section-question .question-item-content p {
  margin: 0;
  font-size: var(--font-size-large);
  line-height: 1.6;
  color: #4D4D4D;
  font-weight: 700;
  text-align: left;
  flex: 1;
}
.section-question .icon-wrapper {
  margin-right: 15px;
  flex-shrink: 0;
  height: 68px;
  width: 68px;
}
.section-question .fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.section-question .fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .section-question {
    padding-top: 150px;
  }
  .section-question .question-header {
    margin-bottom: 15px;
    padding-left: 5%;
    padding-right: 5%;
  }
  .section-question .question-header .question-talkmate-icon {
    margin-bottom: 10px;
  }
  .section-question .question-header-content-left {
    margin-top: 22px;
  }
  .section-question .question-header-content-left h2 {
    font-size: var(--font-size-large-24);
  }
  .section-question .question-header-line {
    margin-top: 22px;
  }
  .section-question .question-list {
    width: 100%;
  }
  .section-question .question-item-title {
    font-size: var(--font-size-small);
  }
  .section-question .question-item-content p {
    font-size: var(--font-size-small);
  }
  .section-question .icon-wrapper {
    height: 34px;
    width: 34px;
  }
}
.section-question .gradient-char {
  color: var(--default-font-color);
}

.section-utilization {
  padding: 60px 0;
  background-color: #fff;
}
.section-utilization .utilization-header {
  margin-bottom: 40px;
  padding-left: 15%;
  padding-right: 15%;
}
.section-utilization .utilization-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-utilization .utilization-header-content-left {
  display: flex;
  align-items: flex-start;
  margin-top: 15vh;
}
.section-utilization .utilization-header-content-left h2 {
  font-size: var(--font-size-xxxhalf-large);
  font-weight: 700;
  color: #4D4D4D;
  position: relative;
}
.section-utilization .utilization-header-content .utilization-icon {
  width: 75px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: -1;
}
.section-utilization .utilization-header-content .utilization-charactor-icon {
  height: 267px;
  width: 430px;
  margin-right: -10vh;
}
.section-utilization .utilization-header-content .utilization-bubble-icon {
  width: 220px;
  height: 115px;
  margin-right: -10vh;
  position: relative;
}
.section-utilization .utilization-header-content .utilization-bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-utilization .utilization-header-content .utilization-bubble-icon .bubble-text {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  width: 80%;
  line-height: 1.4;
}
.section-utilization .utilization-header-line {
  height: 1px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
}
.section-utilization .utilization-list {
  padding-bottom: 0;
}
.section-utilization .utilization-list-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding-left: 20%;
  padding-right: 20%;
}
.section-utilization .utilization-list-item {
  width: 32%;
  max-width: 408px;
  max-height: 486px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-utilization .utilization-list-item .tag-wrapper {
  display: inline-block; /* インラインブロック要素として表示 */
  width: auto; /* 幅を自動調整 */
}
.section-utilization .utilization-list-item-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #EEF3FF;
  color: #86A3ED;
  border-radius: 20px;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
}
.section-utilization .utilization-list-item-image {
  height: fit-content;
  background-color: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 15px;
  margin-top: 15px;
  overflow: hidden;
}
.section-utilization .utilization-list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-utilization .utilization-list-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #4D4D4D;
  margin-bottom: 10px;
}
.section-utilization .utilization-list-item-line {
  height: 2px;
  width: 40px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  margin: 10px 0 15px;
}
.section-utilization .utilization-list-item-detale {
  line-height: 1.6;
  color: #4D4D4D;
}
.section-utilization .other-text {
  font-size: var(--font-size-large);
  line-height: 1.6;
  color: #86A3ED;
}
.section-utilization .gradient-char {
  color: var(--default-font-color);
}
.section-utilization .pc-only {
  display: block;
}
.section-utilization .mobile-only {
  display: none;
}
@media all and (max-width: 768px) {
  .section-utilization {
    overflow-x: hidden;
  }
  .section-utilization .utilization-header {
    margin-bottom: 40px;
    padding-left: 0%;
    padding-right: 0%;
    position: relative;
  }
  .section-utilization .utilization-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 200px;
    overflow-x: hidden;
  }
  .section-utilization .utilization-header-content-left {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    padding-left: 5%;
  }
  .section-utilization .utilization-header-content-left h2 {
    font-size: var(--font-size-large-24);
    margin-top: 15px;
  }
  .section-utilization .utilization-header-content-right {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    overflow-x: hidden;
    width: 100%;
  }
  .section-utilization .utilization-header-content .utilization-charactor-icon {
    height: 179px;
    width: 210px;
    align-self: flex-end;
    position: relative;
    will-change: transform;
    margin-right: 0px;
    clip-path: inset(0 0 0 0);
  }
  .section-utilization .utilization-header-content .utilization-bubble-icon {
    width: 148px;
    height: 67px;
    right: 24vh;
    position: absolute;
  }
  .section-utilization .utilization-header-content .utilization-bubble-icon .bubble-text {
    left: 50%;
    font-size: var(--font-size-small);
  }
  .section-utilization .utilization-header-line {
    height: 1px;
    position: relative;
    z-index: 1;
    margin-left: 5%;
    margin-right: 5%;
  }
  .section-utilization .pc-only {
    display: none;
  }
  .section-utilization .mobile-only {
    display: block;
  }
  .section-utilization .slide-in-left {
    transform: translateX(-30px);
  }
  .section-utilization .slide-in-left.show {
    opacity: 1; /* 表示 */
    transform: translateX(0); /* 元の位置に戻す */
  }
  .section-utilization .utilization-list-swiper {
    width: 100%;
    margin-bottom: 60px;
  }
  .section-utilization .utilization-list-swiper .utilization-swiper {
    width: 100%;
    padding-bottom: 50px;
  }
  .section-utilization .utilization-list-swiper .utilization-swiper .swiper-slide {
    display: flex;
    justify-content: center;
  }
  .section-utilization .utilization-list-swiper .utilization-swiper .utilization-list-item {
    width: 100%;
    height: 486px;
    max-width: 100%;
    max-height: 486px;
  }
  .section-utilization .utilization-list-swiper .utilization-left-button,
  .section-utilization .utilization-list-swiper .utilization-right-button {
    color: #86A3ED;
  }
  .section-utilization .utilization-list-swiper .utilization-left-button:after,
  .section-utilization .utilization-list-swiper .utilization-right-button:after {
    font-size: 24px;
  }
  .section-utilization .utilization-list-swiper .utilization-left-button.swiper-button-disabled,
  .section-utilization .utilization-list-swiper .utilization-right-button.swiper-button-disabled {
    opacity: 0.5;
  }
  .section-utilization .utilization-list-swiper .utilization-pagination-dot {
    bottom: 10px;
    display: flex;
    gap: 6px;
    justify-content: center;
    align-items: center;
  }
  .section-utilization .utilization-list-swiper .utilization-pagination-dot .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    position: relative;
  }
  .section-utilization .utilization-list-swiper .utilization-pagination-dot .swiper-pagination-bullet-active {
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    width: 19px;
    height: 19px;
  }
  .section-utilization .utilization-list-swiper .utilization-pagination-dot .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #000;
  }
  .section-utilization .utilization-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-bottom: 24px;
  }
  .section-utilization .utilization-tags > * {
    width: auto;
    max-width: 100%;
    text-align: center;
  }
}

.section-conversation-talkmate {
  background-color: #F2F2F4;
  margin-top: 0;
  /* 新しく追加するスタイル */
}
.section-conversation-talkmate .conversation-talkmate-header {
  margin-bottom: 20px;
  padding-left: 15%;
  padding-right: 15%;
}
.section-conversation-talkmate .conversation-talkmate-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-conversation-talkmate .conversation-talkmate-header-content-left {
  display: flex;
  align-items: flex-start;
  margin-top: 10vh;
}
.section-conversation-talkmate .conversation-talkmate-header-content-left h2 {
  font-size: var(--font-size-xxxhalf-large);
  font-weight: 700;
  color: #333;
  position: relative;
}
.section-conversation-talkmate .conversation-talkmate-header-content .conversation-talkmate-icon {
  width: 75px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: -1;
}
.section-conversation-talkmate .conversation-talkmate-header-line {
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
}
.section-conversation-talkmate .conversation-talkmate-text-contents {
  padding-left: 20%;
  padding-right: 20%;
  padding-top: 25px;
}
.section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-title {
  font-size: var(--font-size-xx-large);
  text-align: left;
  font-weight: 700;
  color: #333;
  position: relative;
}
.section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-detail {
  margin-top: 5vh;
}
.section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-movie-title {
  margin-top: 6vh;
  width: 182px;
  height: 30px;
  display: flex;
  align-self: center;
  text-align: center;
}
.section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-movie-title img {
  display: block;
  margin: 0 auto; /* 画像を中央揃え */
}
.section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-movie-detail {
  font-size: var(--font-size-large);
  margin-top: 4vh;
}
.section-conversation-talkmate .conversation-talkmate-explain-list {
  display: flex;
  margin-top: 30px;
  gap: 12px;
}
.section-conversation-talkmate .conversation-talkmate-explain-item {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.section-conversation-talkmate .conversation-talkmate-explain-item .explain-point {
  position: absolute; /* 変更: 絶対位置指定に */
  left: 50px; /* 追加: 左端に配置 */
  top: 30px; /* 追加: 上からの位置調整 */
  display: inline-block;
  font-size: var(--font-size-medium);
  font-weight: 700;
  color: #FFFFFF;
}
.section-conversation-talkmate .conversation-talkmate-explain-item .explain-point img {
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  width: 141px;
  height: 37px;
  z-index: -1;
}
.section-conversation-talkmate .conversation-talkmate-explain-item .explain-point img.img-point-bg {
  top: 75%;
}
.section-conversation-talkmate .conversation-talkmate-explain-item .explain-line {
  height: 1px;
  width: 100%;
  background: #333;
  margin: 10px auto 15px;
  margin-top: 6vh;
  margin-bottom: 30px;
}
.section-conversation-talkmate .conversation-talkmate-explain-item .explain-text {
  font-size: var(--font-size-large);
  line-height: 1.6;
  color: #333;
  font-weight: 700;
}
.section-conversation-talkmate .conversation-movie-layer {
  padding-left: 64px;
  padding-right: 64px;
}
.section-conversation-talkmate .conversation-movie-layer .conversation-movie-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 465px;
  max-width: 800px;
  border-radius: 15px;
  overflow: visible;
  transition: transform 0.3s ease;
  margin: 35px auto 0;
}
.section-conversation-talkmate .conversation-movie-layer .conversation-movie-wrapper::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  border-radius: 15px;
  z-index: -1;
}
@media (max-width: 768px) {
  .section-conversation-talkmate .conversation-movie-layer .conversation-movie-wrapper::after {
    top: 10px;
  }
}
.section-conversation-talkmate .conversation-movie-layer .conversation-movie {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 465px;
  max-width: 800px;
  border-radius: 15px;
  overflow: visible;
  overflow: hidden;
  z-index: 2;
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-tech {
  transition: transform 0.4s ease;
  transform-origin: center center;
  z-index: 10;
}
.section-conversation-talkmate .conversation-movie-layer .video-js:not(.vjs-playing):hover .vjs-tech {
  transform: scale(1.1);
}
.section-conversation-talkmate .conversation-movie-layer .video-js.has-played .vjs-tech {
  transform: scale(1);
  z-index: 0;
}
.section-conversation-talkmate .conversation-movie-layer .video-js.has-played:hover .vjs-tech {
  transform: scale(1);
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-big-play-button {
  background-color: rgba(84, 78, 87, 0.5176470588);
  border-radius: 50%;
  border: none;
  width: 72px;
  height: 72px;
  font-size: 40px;
  line-height: 72px;
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-control-bar {
  background-color: transparent;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4470588235));
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-control-bar .vjs-play-progress {
  background: linear-gradient(90deg, #F794A2, #A1B5EF);
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-control-bar .vjs-play-progress:before {
  color: #A1B5EF;
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-control-bar .vjs-load-progress {
  background-color: #A1B5EF;
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-control-bar .vjs-picture-in-picture-control {
  display: none;
}
.section-conversation-talkmate .conversation-movie-layer .video-js .vjs-control-bar .vjs-fullscreen-control {
  display: none;
}
.section-conversation-talkmate .bg {
  position: absolute;
  top: 67vh;
  left: 0;
  width: 100%;
  height: 1844px;
  z-index: 0;
  object-fit: cover;
}
.section-conversation-talkmate .custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}
.section-conversation-talkmate .custom-play-button .circle {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-conversation-talkmate .custom-play-button .circle .triangle {
  width: 30px;
  height: 30px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  clip-path: polygon(20% 15%, 80% 50%, 20% 85%);
  transform: rotate(0deg);
  transform: rotate(0deg);
}
.section-conversation-talkmate .custom-play-button .circle .label {
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
}
.section-conversation-talkmate .gradient-char {
  color: var(--default-font-color);
}
@media (max-width: 768px) {
  .section-conversation-talkmate {
    overflow-x: hidden;
  }
  .section-conversation-talkmate .conversation-talkmate-header {
    margin-bottom: 40px;
    padding-left: 5%;
    padding-right: 5%;
    position: relative;
    margin-top: 50px;
  }
  .section-conversation-talkmate .conversation-talkmate-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .section-conversation-talkmate .conversation-talkmate-header-content-left {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
  .section-conversation-talkmate .conversation-talkmate-header-content-left h2 {
    font-size: var(--font-size-large-24);
    margin-top: 15px;
  }
  .section-conversation-talkmate .conversation-talkmate-header-content-right {
    position: absolute;
    right: 80px;
    bottom: 0;
    display: flex;
    z-index: 1;
  }
  .section-conversation-talkmate .conversation-talkmate-header-line {
    height: 1px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
  }
  .section-conversation-talkmate .slide-in-left {
    transform: translateX(-30px);
  }
  .section-conversation-talkmate .slide-in-left.show {
    opacity: 1; /* 表示 */
    transform: translateX(0); /* 元の位置に戻す */
  }
  .section-conversation-talkmate .conversation-talkmate-text-contents {
    padding-left: 5%;
    padding-right: 5%;
    align-items: center;
  }
  .section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-title {
    font-size: var(--font-size-large);
    text-align: left !important;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
  .section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-detail {
    font-size: var(--font-size-normal);
    margin-top: 1vh;
  }
  .section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-movie-title {
    margin-top: 10vh;
    width: 182px;
    height: 30px;
    display: flex;
    align-self: center;
    text-align: center;
  }
  .section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-movie-title img {
    display: block;
    margin: 0 auto; /* 画像を中央揃え */
  }
  .section-conversation-talkmate .conversation-talkmate-text-contents .conversation-talkmate-movie-detail {
    font-size: var(--font-size-normal);
    text-align: left !important;
    display: block;
    margin-left: 0;
    margin-right: auto;
  }
  .section-conversation-talkmate .conversation-talkmate-explain-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px !important;
    padding: 0 15px;
    max-width: 400px;
    width: 100%;
    justify-self: center;
    margin-left: auto; /* 左右のマージンを自動で均等に */
    margin-right: auto; /* これにより中央に配置される */
  }
  .section-conversation-talkmate .conversation-talkmate-explain-item {
    min-width: 150px;
    min-height: 150px;
    border-radius: 8px;
    padding: 0px 0px;
    flex: 0 0 calc(50% - 8px);
    margin: 0;
    margin-left: 0px;
    justify-self: center;
  }
  .section-conversation-talkmate .conversation-talkmate-explain-item .explain-point {
    left: 34px;
    top: 19px;
  }
  .section-conversation-talkmate .conversation-talkmate-explain-item .explain-point img {
    width: 110px;
    height: 37px;
  }
  .section-conversation-talkmate .conversation-talkmate-explain-item .explain-point p {
    font-size: var(--font-size-medium);
    font-weight: normal;
  }
  .section-conversation-talkmate .conversation-talkmate-explain-item .explain-line {
    margin: 6px auto 8px;
    margin-top: 8.8vh;
    width: 80%;
  }
  .section-conversation-talkmate .conversation-talkmate-explain-item .explain-text {
    line-height: 1.2;
    margin-top: 1.8vh;
    font-size: var(--font-size-medium);
  }
  .section-conversation-talkmate .conversation-movie-layer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .section-conversation-talkmate .custom-play-button .circle {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }
  .section-conversation-talkmate .custom-play-button .circle .triangle {
    width: 15px;
    height: 15px;
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    clip-path: polygon(20% 15%, 80% 50%, 20% 85%);
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .section-conversation-talkmate .custom-play-button .circle .label {
    background: linear-gradient(to right, #F794A2, #A1B5EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    font-size: 6px;
    letter-spacing: 1px;
  }
  .section-conversation-talkmate .bg {
    position: absolute;
    top: 78vh;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    height: auto;
    max-width: none;
    object-position: center;
  }
}

.conversation-visual {
  margin-top: 20vh;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.conversation-visual .visual-section {
  position: relative;
  margin-top: 60px;
  width: 100%;
  max-width: 1920px;
}
.conversation-visual .visual-title {
  font-size: var(--font-size-xxx-large);
  font-weight: 700;
  color: #4D4D4D;
  margin-left: 25vh;
  margin-bottom: 3vh;
  text-align: left;
  /* グラデーション文字 */
  background: linear-gradient(to right, #B468AD, #789FE0);
  background-size: 30%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.conversation-visual .visual-title img {
  position: absolute;
  left: 6%;
  top: -12%;
  width: 369px;
  height: 200px;
}
.conversation-visual .visual-list-wrapper {
  width: 100%;
  min-width: 900px;
}
.conversation-visual .visual-list-wrapper .left {
  display: flex;
  justify-content: flex-start;
}
.conversation-visual .visual-list-wrapper .left img {
  width: 30%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.conversation-visual .visual-list-wrapper .right {
  display: flex;
  justify-content: flex-end;
}
.conversation-visual .visual-list-wrapper .right img {
  max-width: 30%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media (max-width: 1660px) {
  .conversation-visual .visual-title {
    background-size: 50%;
  }
}
@media (max-width: 1200px) {
  .conversation-visual .visual-title {
    background-size: 85%;
  }
}
@media (max-width: 768px) {
  .conversation-visual .visual-list-wrapper {
    min-width: 300px;
  }
  .conversation-visual .visual-list-wrapper .left, .conversation-visual .visual-list-wrapper .right {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
    flex-direction: column;
  }
  .conversation-visual .visual-list-wrapper .left img, .conversation-visual .visual-list-wrapper .right img {
    max-width: 100%;
    margin-bottom: 20px;
    margin-left: 0px;
  }
  .conversation-visual .visual-title {
    font-size: var(--font-size-medium-large);
    margin-left: 3vh;
    margin-bottom: 2vh;
    margin-top: 0;
    background-size: 65%;
  }
  .conversation-visual .visual-title img {
    left: -15%;
    top: -3%;
    width: 148px;
    height: 100px;
  }
}

.section-conversation-ai {
  position: relative;
  padding: 60px 0;
  padding-bottom: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-conversation-ai .container {
  display: flex; /* 追加: flexboxを使用 */
  justify-content: center; /* 追加: 水平方向の中央揃え */
  align-items: center;
}
.section-conversation-ai .conversation-ai-area {
  margin-top: 40px;
  max-width: 1600px;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-conversation-ai .conversation-ai-title {
  font-size: var(--font-size-xxxhalf-large);
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px;
  position: relative;
  position: absolute;
  top: -30px;
  left: 80px;
  padding: 5px 15px;
  z-index: 2;
  /* グラデーション文字 */
  background: linear-gradient(to right, #F794A2, #A1B5EF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section-conversation-ai .conversation-ai-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.section-conversation-ai .conversation-ai-item {
  flex: 1;
  padding: 25px;
  position: relative;
  align-items: center;
}
.section-conversation-ai .conversation-ai-item.high {
  margin-bottom: 40vh;
}
.section-conversation-ai .conversation-ai-item.middle {
  align-self: center;
}
.section-conversation-ai .conversation-ai-item.low {
  align-self: flex-end;
  margin-bottom: 0;
}
.section-conversation-ai .conversation-ai-item-image {
  width: 158px;
  height: 158px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-conversation-ai .conversation-ai-item-image img {
  max-width: 100%;
  max-height: 100%;
}
.section-conversation-ai .conversation-ai-item-text {
  padding-left: 5%;
  font-size: var(--font-size-large-24);
  font-weight: 700;
  color: #86A3ED;
  text-align: left !important;
  align-self: flex-start !important;
  margin-bottom: 30px;
  line-height: 1.4;
}
.section-conversation-ai .conversation-ai-item-detail {
  max-width: 90%;
  font-size: var(--font-size-medium);
  line-height: 1.6;
  color: #666;
  text-align: left;
}
.section-conversation-ai .slide-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideInUp 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-conversation-ai .bg-solution {
  position: absolute;
  top: 0;
  left: 0%;
  width: 1472.8px;
  height: 167.2px;
  z-index: -1;
}
.section-conversation-ai .bg-line {
  position: absolute;
  bottom: 357px;
  right: 0;
  width: 1349px;
  height: 710.3px;
  z-index: -1;
}
.section-conversation-ai .charactor-content {
  position: absolute;
  bottom: 0;
  left: 5%;
  margin-top: 200px;
}
.section-conversation-ai .charactor-content .charactor-icon {
  height: 267px;
  width: 430px;
  margin-right: -10vh;
  position: relative;
}
.section-conversation-ai .charactor-content .bubble-icon {
  width: 220px;
  height: 115px;
  margin-right: -15vh;
  margin-top: 12vh;
  position: relative;
}
.section-conversation-ai .charactor-content .bubble-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-conversation-ai .charactor-content .bubble-icon .bubble-text {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 16px;
  color: #FFFFFF;
  width: 80%;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .section-conversation-ai {
    padding-top: 120px;
    padding-bottom: 360px;
    overflow-x: hidden;
  }
  .section-conversation-ai .conversation-ai-list {
    flex-direction: column;
    gap: 0px;
  }
  .section-conversation-ai .conversation-ai-title {
    font-size: var(--font-size-large-22);
    text-align: center;
    margin-bottom: 40px;
    top: -25px;
    left: auto;
  }
  .section-conversation-ai .conversation-ai-area {
    max-width: 350px;
    position: relative;
    padding: 10px;
  }
  .section-conversation-ai .conversation-ai-item {
    padding: 15px;
  }
  .section-conversation-ai .conversation-ai-item.high {
    margin-top: 0;
    margin-bottom: 0;
  }
  .section-conversation-ai .conversation-ai-item.middle {
    margin: 20px 0;
  }
  .section-conversation-ai .conversation-ai-item.low {
    align-self: auto;
  }
  .section-conversation-ai .conversation-ai-item-text {
    padding-left: 0%;
    font-size: var(--font-size-medium);
  }
  .section-conversation-ai .conversation-ai-item-detail {
    max-width: 100%;
    font-weight: 700;
    font-size: var(--font-size-normal);
  }
  .section-conversation-ai .bg-solution {
    top: 120px;
    width: 762px;
    height: 100px;
  }
  .section-conversation-ai .bg-line {
    bottom: 173px;
    width: 508px;
    height: 252px;
  }
  .section-conversation-ai .charactor-content {
    position: absolute;
    bottom: 0;
    left: -12%;
    align-items: flex-end;
  }
  .section-conversation-ai .charactor-content .charactor-icon {
    height: 179px;
    width: 288px;
    margin-right: -10vh;
    position: relative;
  }
  .section-conversation-ai .charactor-content .bubble-icon {
    height: 168px;
    margin-right: -15vh;
    position: relative;
  }
  .section-conversation-ai .charactor-content .bubble-icon img {
    width: 215px;
    height: 82px;
  }
  .section-conversation-ai .charactor-content .bubble-icon .bubble-text {
    top: 24%;
  }
}

.section-interaction {
  background-color: transparent;
  padding-bottom: 25vh;
  margin-top: 10vh;
}
.section-interaction .interaction-header {
  margin-bottom: 20px;
  padding-left: 15%;
  padding-right: 15%;
}
.section-interaction .interaction-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-interaction .interaction-header-content-left {
  display: flex;
  align-items: flex-start;
  margin-top: 10vh;
}
.section-interaction .interaction-header-content-left h2 {
  font-size: var(--font-size-xxxhalf-large);
  font-weight: 700;
  color: #333;
  position: relative;
}
.section-interaction .interaction-header-content .interaction-icon {
  width: 75px;
  height: 32px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  order: -1;
}
.section-interaction .interaction-header-line {
  height: 1px;
  margin-top: 32px;
  background: linear-gradient(to right, #F794A2, #A1B5EF);
}
.section-interaction .interaction-card {
  height: 663px;
  margin: 50px auto;
  padding: 40px;
  margin-left: 15%;
  margin-right: 15%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
}
.section-interaction .interaction-card .interaction-bubble {
  position: relative;
  width: 100%;
  max-width: 730px;
  margin: 0 auto 30px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: bubbleAppear 0.6s ease forwards;
  animation-play-state: paused;
}
.section-interaction .interaction-card .interaction-bubble img {
  width: 100%;
  height: auto;
}
.section-interaction .interaction-card .interaction-bubble img:nth-of-type(2) {
  display: none;
}
@media (max-width: 768px) {
  .section-interaction .interaction-card .interaction-bubble img:nth-of-type(1) {
    display: none;
  }
  .section-interaction .interaction-card .interaction-bubble img:nth-of-type(2) {
    width: 302px;
    height: fit-content;
    display: block;
  }
}
.section-interaction .interaction-card .interaction-bubble .desktop-text {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: var(--font-size-large-24);
  font-weight: 700;
  color: #4D4D4D;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .section-interaction .interaction-card .interaction-bubble .desktop-text {
    display: none;
  }
}
.section-interaction .interaction-card .interaction-bubble .desktop-text .highlight-text {
  color: #86A3ED;
}
.section-interaction .interaction-card .interaction-bubble .mobile-text {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  font-size: var(--font-size-medium);
  font-weight: 700;
  color: #4D4D4D;
  text-align: center;
  line-height: 1.5;
  display: none;
}
@media (max-width: 768px) {
  .section-interaction .interaction-card .interaction-bubble .mobile-text {
    display: block;
  }
}
.section-interaction .interaction-card .interaction-bubble .mobile-text .highlight-text {
  color: #86A3ED;
}
@keyframes bubbleAppear {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.section-interaction .interaction-card .interaction-answer {
  font-size: var(--font-size-large-24);
  font-weight: 700;
  color: #4D4D4D;
  margin-bottom: 20px;
  line-height: 1.6;
}
.section-interaction .interaction-card .interaction-supplement {
  font-size: var(--font-size-medium-large);
  font-weight: 700;
  color: #4D4D4D;
  margin-bottom: 20px;
  line-height: 1.6;
}
.section-interaction .interaction-card .interaction-example-list {
  margin: 30px 0;
  width: 100%;
  max-width: 400px;
  align-self: center;
}
.section-interaction .interaction-card .interaction-example {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.section-interaction .interaction-card .interaction-example img {
  width: 34px;
  height: 34px;
  margin-right: 10px;
}
.section-interaction .interaction-card .interaction-example p {
  font-size: var(--font-size-large);
  color: #4D4D4D;
  font-weight: 700;
  text-align: left;
}
.section-interaction .interaction-card .interaction-postscript {
  margin: 20px 0 30px;
}
.section-interaction .interaction-card .interaction-postscript p {
  font-size: var(--font-size-medium);
  color: #4D4D4D;
  line-height: 1.6;
  font-weight: 700;
}
@media (max-width: 1100px) {
  .section-interaction .interaction-card .interaction-bubble .desktop-text {
    font-size: var(--font-size-normal);
  }
  .section-interaction .interaction-example {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .section-interaction .interaction-example img {
    width: 34px;
    height: 34px;
    margin-right: 10px;
  }
  .section-interaction .interaction-example p {
    font-size: var(--font-size-large);
    color: #4D4D4D;
    font-weight: 700;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .section-interaction {
    margin-top: 5vh;
  }
  .section-interaction .interaction-header {
    padding-left: 5%;
    padding-right: 5%;
  }
  .section-interaction .interaction-header .interaction-icon {
    margin-bottom: 10px;
  }
  .section-interaction .interaction-header h2 {
    font-size: var(--font-size-large-24);
    font-weight: 700;
    color: #333;
    position: relative;
  }
  .section-interaction .interaction-header-line {
    margin-top: 22px;
  }
  .section-interaction .interaction-card {
    padding: 30px 20px;
    width: 90%;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-interaction .interaction-card > div:not(.interaction-bubble):not(.interaction-example-list):not(.interaction-button):not(.interaction-postscript) {
    font-size: var(--font-size-medium);
  }
  .section-interaction .interaction-card .interaction-bubble {
    max-width: 302px;
  }
  .section-interaction .interaction-card .interaction-bubble img:nth-of-type(1) {
    display: none;
  }
  .section-interaction .interaction-card .interaction-bubble img:nth-of-type(2) {
    width: 302px;
    height: fit-content;
    display: block;
  }
  .section-interaction .interaction-card .interaction-bubble .mobile-text {
    font-size: var(--font-size-medium);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .section-interaction .interaction-card .interaction-bubble .mobile-text {
    display: block;
  }
}
@media (max-width: 768px) {
  .section-interaction .interaction-card .interaction-answer {
    font-size: var(--font-size-medium);
  }
  .section-interaction .interaction-card .interaction-supplement {
    font-size: var(--font-size-small);
  }
  .section-interaction .interaction-card .interaction-example p {
    font-size: var(--font-size-normal);
  }
  .section-interaction .interaction-card .interaction-postscript {
    margin: 20px 0 30px;
  }
  .section-interaction .interaction-card .interaction-postscript p {
    font-size: var(--font-size-normal);
  }
}

/*# sourceMappingURL=style.css.map */
