@charset "UTF-8";
/*
* ＊＊＊＊＊＊＊＊＊＊ Org-Design Settings
* Written by  syam
* @author     ＊＊＊＊＊
* @copyright  Author
* @version    2.3.1 (＊＊/01/2024)
* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shippori+Mincho&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");
@import url("./icon-fonts.css");

:root {
  --base_bg: rgb(255, 255, 255);
  --head_bg: rgb(255, 255, 255);
  --main_bg: rgb(27, 44, 73);
  --foot_bg: rgb(27, 44, 73);
  --box-size: 325px;
  --mv-height: 312px;
  --cv-height_pc: 535px;
  --cv-height_sp: 350px;
  --bk: 0, 0, 0;
  --white: 255, 255, 255;
  --bk-a: 51, 51, 51;
  --bk-b: 85, 85, 85;
  --bk-c: 159, 159, 159;
  --bk-d: 242, 242, 242;
  --red: 213, 0, 0;
  --pink: 235, 40, 118;
  --blue: 0, 160, 233;
  --blue-b: 4, 136, 196;
  --blue-c: 31, 156, 197;
  --green: 149, 193, 31;
  --green-b: 65, 195, 192;
  --yerrow: 255, 220, 0;
  --yerrow-b: 221, 191, 3;
  --orange: 243, 159, 19;
  --blue-c: 62, 188, 210;
  --sns-color_fb: rgb(59, 89, 152);
  --sns-color_tw: rgb(29, 161, 242);
  --sns-color_in: linear-gradient(-135deg, rgb(192, 0, 158) 5%, rgb(223, 0, 65) 15%, rgb(251, 137, 21) 80%);
  --sns-color_li: rgb(0, 185, 0);
  --base-font: Noto Sans JP, Roboto, 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, Yu Gothic M, 游ゴシック Medium, Yu Gothic Medium, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN W3, HiraKakuProN-W3, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --mincho-font: Noto Serif JP, system-ui;
  --eng-font: Roboto, system-ui;
  --gothic-font: Noto Sans JP, Roboto, 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, Yu Gothic M, 游ゴシック Medium, Yu Gothic Medium, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN W3, HiraKakuProN-W3, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --number-font: Roboto, system-ui;
  --over-wrap: 1600px;
  --max-wrap: 100%;
  --inner-wrap_ll: 1400px;
  --inner-wrap_l: 1200px;
  --inner-wrap: 1100px;
  --inner-wrap_ml: 980px;
  --inner-wrap_m: 900px;
  --inner-wrap_ms: 800px;
  --inner-wrap_sl: 750px;
  --inner-wrap_s: 700px;
  --inner-wrap_ss: 640px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1 !important;
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

  100% {
    opacity: 1 !important;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

  100% {
    opacity: 1 !important;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1 !important;
    transform: translateY(0);
  }
}

@keyframes fadeBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1 !important;
    transform: translateY(0);
  }
}

@keyframes active_menu {
  from {
    top: -200vh;
  }

  to {
    top: 0;
  }
}

@keyframes hidden_menu {
  from {
    top: 0;
  }

  to {
    top: -200vh;
  }
}

.anim {
  opacity: 0;
}

.fadeIn {
  animation: fadeIn 1s ease-in 0s 1 normal backwards;
}

.fadeLeft {
  animation: fadeLeft 1s ease-in 0s 1 normal backwards;
}

.fadeRight {
  animation: fadeRight 1s ease-in 0s 1 normal backwards;
}

.fadeUp {
  animation: fadeUp 1s ease-in 0s 1 normal backwards;
}

.fadeBottom {
  animation: fadeBottom 1s ease-in 0s 1 normal backwards;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

nav,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

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

input[type=submit],
input[type=reset] {
  -webkit-appearance: button;
  appearance: button;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  resize: horizontal;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:focus {
  outline: none;
}

label,
button,
input[type=submit],
input[type=image] {
  cursor: pointer;
}

sup,
sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
}

sup {
  bottom: 1.5ex;
  font-size: clamp(1.4rem, 1.4rem + 0vw, 1.4rem);
}

sub {
  top: 0.5ex;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

html,
body {
  overflow-x: hidden;
}

input {
  line-height: 1;
}

header,
main,
footer,
section,
a,
nav,
.base_section,
article {
  position: relative;
}

a {
  display: inline-block;
  text-decoration: none;
}

a:hover {
  opacity: 0.75;
}

@media (min-width: 771px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

header,
main,
footer {
  width: 100%;
}

time {
  white-space: nowrap;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

object {
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
img {
  line-height: 1.1;
}

.testcontainer {
  container: my-container/inline-size;
}

/*
-- margin-top（ボタン直前）
   ・PC：100px  /  ・SP：35px
*/
/*
-- margin-bottom（ボタン直前）
   ・PC：100px  /  ・SP：35px
*/
/*
-- 画像のPC/SP切り替え
*/
/*
-- 基本のテキストリンク設定
   ・デフォ下線：あり
   ・下線が消える
*/
/*
-- 基本のテキストリンク設定B
   ・デフォ下線：なし
   ・左から右へ下線が流れて消える
*/
/*
-- 基本のテキストリンク設定C
   ・デフォ下線：なし
   ・中央で下線が流れて消える
*/
/*
-- 画像hoverでズーム
*/
/*
-- 画像hoverでズーム&うっすら罫線
*/
/*
-- 画像のキャプション付きリンク
   ・デフォ下線：なし
   ・左から右へ下線が流れて消える
*/
html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--base-font);
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  background: var(--base_bg);
  color: var(--foot_bg);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1;
}

p {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}

.base_wrapper {
  margin: auto;
  max-width: var(--max-wrap);
  padding-left: 3%;
  padding-right: 3%;
}

@media (max-width: 880px) {
  .base_wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
}

main .base_wrapper {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

@media (max-width: 880px) {
  main .base_wrapper {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

.youtube_frame {
  aspect-ratio: 16/9;
}

.youtube_frame iframe {
  width: 100% !important;
  height: 100% !important;
}

#page_top,
#login_mode,
#page_edit {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  z-index: 90005;
}

#page_top:before,
#login_mode:before,
#page_edit:before {
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#login_mode,
#page_edit {
  bottom: 2%;
  color: rgba(var(--bk), 0.6);
  width: 25px;
  height: 25px;
}

#login_mode:before,
#page_edit:before {
  font-size: clamp(1.4rem, 1.0444444444rem + 0.7407407407vw, 1.8rem);
}

#page_top {
  right: 2%;
  bottom: 5%;
  background: rgba(var(--bk), 0.8);
  color: rgba(var(--white), 1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
}

#page_top:before {
  content: "\e978";
  font-size: clamp(1.8rem, 1.2666666667rem + 1.1111111111vw, 2.4rem);
}

#login_mode {
  right: 2%;
}

#login_mode:before {
  content: "\e9a8";
}

#page_edit {
  right: 4%;
}

#page_edit:before {
  content: "\e917";
}

header {
  position: absolute;
  z-index: 99999;
}

@media (max-width: 570px) {
  header {
    position: fixed;
  }
}

header h1 {
  max-width: 55%;
  position: absolute;
  left: 5%;
  top: 15px;
  z-index: 10;
}

header h1 a img:nth-of-type(1) {
  display: block;
}

header h1 a img:nth-of-type(2) {
  display: none;
}

@media (max-width: 770px) {
  header h1 a img:nth-of-type(1) {
    display: none;
  }

  header h1 a img:nth-of-type(2) {
    display: block;
  }
}

@media (max-width: 770px) {
  header h1 {
    max-width: 255px;
    left: 10px;
    top: 13px;
  }
}

header nav {
  position: fixed;
  top: -200dvh;
  width: 100dvw;
  max-height: 100dvh;
  background: var(--foot_bg);
  padding: 110px 5% 50px;
  transition: 0.5s;
}

header nav .page_link li a,
header nav .ft_link li a {
  color: rgba(var(--white), 1);
}

header nav .page_link li {
  display: flex;
  margin-bottom: 35px !important;
}

header nav .page_link li:before {
  content: "■";
  color: rgba(var(--blue-c), 1);
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  position: relative;
  top: 4px;
}

header nav .page_link li a {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  display: inline-block;
  margin-left: 5px;
}

header nav .ft_link li a {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}

header nav .cv_link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px !important;
}

header nav .cv_link li a {
  border: 3px solid rgba(var(--white), 1);
  background: rgba(var(--blue-c), 1);
  color: var(--foot_bg);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 35px;
  border-radius: 300px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  align-items: center;
}

header nav .cv_link li a:before {
  content: "";
  display: block;
  min-width: 60px;
  width: 60px;
  height: 50px;
  position: relative;
  top: 3px;
}

header nav .cv_link li:nth-of-type(1) a:before {
  background: url(../image/ic-btn_note.svg) no-repeat center/contain;
}

header nav .cv_link li:nth-of-type(2) a {
  padding-left: 0;
}

header nav .cv_link li:nth-of-type(2) a:before {
  background: url(../image/ic-btn_check.svg) no-repeat center/contain;
}

@media (max-width: 770px) {
  header {
    min-height: 45px;
  }

  header .menu-trigger,
  header .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  header .menu-trigger {
    position: fixed;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 99999;
    right: 10px;
    top: 12px;
  }

  header .menu-trigger span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    background: rgba(var(--white), 1);
    transition: all 1s;
  }

  header .menu-trigger span:nth-of-type(1) {
    top: 0;
  }

  header .menu-trigger span:nth-of-type(2) {
    top: calc(50% - 1px);
  }

  header .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  header .menu-trigger.active span {
    background: rgba(var(--blue-c), 1);
  }

  header .menu-trigger.active span:nth-of-type(1) {
    transform: translateY(18px) rotate(-330deg);
    top: -8px;
  }

  header .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }

  header .menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-14px) rotate(330deg);
    bottom: -6px;
  }
}

@media (max-width: 770px) and (max-width: 570px) {
  header {
    background: var(--foot_bg);
  }
}

header.active nav {
  top: 0;
}

footer {
  background: var(--foot_bg);
  padding: 40px 0;
  position: relative;
}

footer article {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer h1 {
  max-width: 400px;
  margin-right: auto;
}

@media (max-width: 1299px) {
  footer h1 {
    max-width: 300px;
  }
}

footer ul {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 5px 20px;
}

@media (max-width: 480px) {
  footer ul {
    margin: auto;
    max-width: 280px;
    justify-content: flex-start;
    gap: 5px 20px;
  }
}

footer ul li {
  white-space: nowrap;
}

footer ul li a {
  color: rgba(var(--white), 1);
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}

footer small {
  margin-left: auto;
  color: rgba(var(--white), 1);
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  line-height: 1.1;
}

@media (max-width: 1070px) {
  footer article {
    flex-direction: column;
  }

  footer article ul {
    position: relative;
    flex-wrap: wrap;
  }

  footer article h1,
  footer article small {
    margin: auto;
  }
}

.ai_omni_agent-forsales #kv_field {
  position: relative;
  aspect-ratio: 16/9;
  background: url(../image/kv_pc.png) no-repeat right bottom/cover;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales #kv_field {
    aspect-ratio: 375/1079;
    background: url(../image/kv_sp.png) no-repeat right bottom/cover;
  }
}

.ai_omni_agent-forsales #kv_field ul {
  position: absolute;
  left: 5%;
  bottom: 8%;
  width: 55%;
  max-width: 800px;
  display: flex;
  gap: 20px;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales #kv_field ul {
    display: none;
  }
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #kv_field ul {
    gap: 5px;
    bottom: 5%;
  }
}

.ai_omni_agent-forsales #kv_field ul li {
  flex: 1;
  display: flex;
}

.ai_omni_agent-forsales #kv_field ul li a {
  width: 100%;
  border: 2px solid var(--foot_bg);
  background: rgba(var(--blue-c), 1);
  color: var(--foot_bg);
  box-shadow: 0 0 10px rgba(var(--bk), 0.2);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 35px;
  border-radius: 300px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  align-items: center;
  opacity: 1 !important;
  transition: transform 0.3s ease-out;
}

@media (max-width: 1299px) {
  .ai_omni_agent-forsales #kv_field ul li a {
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    padding: 10px;
    gap: 10px;
  }
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #kv_field ul li a {
    padding: 10px 0;
    line-height: 1.4;
  }
}

.ai_omni_agent-forsales #kv_field ul li a:before {
  content: "";
  flex: 0 0 60px;
  height: 50px;
  position: relative;
  top: 3px;
  background: no-repeat center/contain;
}

@media (max-width: 1299px) {
  .ai_omni_agent-forsales #kv_field ul li a:before {
    flex: 0 0 50px;
    height: 35px;
  }
}

@media (max-width: 880px) {
  .ai_omni_agent-forsales #kv_field ul li a:before {
    flex: 0 0 30px;
    height: 25px;
  }
}

.ai_omni_agent-forsales #kv_field ul li a:hover {
  transform: translateY(-10px);
  background: rgba(var(--white), 1);
}

.ai_omni_agent-forsales #kv_field ul li:nth-of-type(1) a:before {
  background-image: url(../image/ic-btn_note.svg);
}

.ai_omni_agent-forsales #kv_field ul li:nth-of-type(2) a:before {
  background-image: url(../image/ic-btn_check.svg);
}

.ai_omni_agent-forsales .main_content {
  max-width: var(--inner-wrap);
  margin: auto;
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

@media (max-width: 1299px) {
  .ai_omni_agent-forsales .main_content {
    padding: 0 5%;
  }
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales .main_content {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
  }
}

.ai_omni_agent-forsales .section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(1.25rem, 0.682rem + 2.84vw, 2.813rem);
  font-weight: 600;
  margin-bottom: 70px !important;
  line-height: 1.6;
  text-align: center;
}

.ai_omni_agent-forsales .section_title:after {
  margin-top: 15px !important;
  content: "";
  display: block;
  width: 151px;
  height: 13px;
  background: url(../image/title_border.png) no-repeat center bottom/contain;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales .section_title:after {
    width: 89px;
    height: 8px;
  }
}

.ai_omni_agent-forsales #about .about_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

.ai_omni_agent-forsales #about .about_wrapper figure:nth-of-type(1) {
  max-width: 370px;
}

.ai_omni_agent-forsales #about .about_wrapper figure:nth-of-type(2) {
  max-width: 320px;
}

.ai_omni_agent-forsales #about .about_wrapper .text_wrap p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
}

.ai_omni_agent-forsales #about .about_wrapper .text_wrap p:not(:last-of-type) {
  margin-bottom: 35px !important;
}

.ai_omni_agent-forsales #about .about_wrapper .text_wrap p span {
  color: rgba(var(--blue-c), 1);
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #about .about_wrapper {
    flex-direction: column;
  }

  .ai_omni_agent-forsales #about .about_wrapper figure:nth-of-type(1) {
    max-width: 210px;
  }

  .ai_omni_agent-forsales #about .about_wrapper figure:nth-of-type(2) {
    max-width: 260px;
  }
}

.ai_omni_agent-forsales #exec {
  background: transparent linear-gradient(233deg, rgb(65, 183, 208) 0%, rgb(128, 91, 160) 100%) 0% 0% no-repeat padding-box;
}

.ai_omni_agent-forsales #exec:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(var(--white), 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ai_omni_agent-forsales #exec article {
  position: relative;
  z-index: 10;
}

.ai_omni_agent-forsales #exec article .exec_unit {
  border-radius: 5px;
  border: 2px solid var(--foot_bg);
  background: rgba(var(--white), 1);
  margin-bottom: 45px !important;
}

.ai_omni_agent-forsales #exec article .exec_unit>dl {
  display: flex;
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  font-weight: 600;
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #exec article .exec_unit>dl {
    flex-direction: column;
  }
}

.ai_omni_agent-forsales #exec article .exec_unit>dl dt,
.ai_omni_agent-forsales #exec article .exec_unit>dl dd {
  padding: 5px;
}

.ai_omni_agent-forsales #exec article .exec_unit>dl dt {
  color: rgba(var(--white), 1);
  background: var(--foot_bg);
  position: relative;
  display: flex;
  align-items: center;
  min-width: 220px;
  justify-content: center;
}

@media (max-width: 880px) {
  .ai_omni_agent-forsales #exec article .exec_unit>dl dt {
    min-width: 180px;
  }
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #exec article .exec_unit>dl dt {
    flex-direction: column;
  }
}

.ai_omni_agent-forsales #exec article .exec_unit>dl dt:after {
  content: "▲";
  display: inline-block;
  transform: rotate(90deg);
  color: var(--foot_bg);
  position: absolute;
  right: -15px;
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #exec article .exec_unit>dl dt:after {
    right: auto;
    bottom: -15px;
    transform: rotate(-60deg);
  }
}

.ai_omni_agent-forsales #exec article .exec_unit>dl dd {
  width: 100%;
  padding: 10px 10px 10px 25px;
  background: rgba(var(--blue-c), 1);
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #exec article .exec_unit>dl dd {
    padding: 25px 5px;
    text-align: center;
  }
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_catch {
  padding: 25px;
  background: rgba(var(--bk-d), 1);
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_catch p {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #exec article .exec_unit .unit_catch p {
    text-align: left;
  }
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper {
  padding: 35px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
}

@media (max-width: 880px) {
  .ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper {
    flex-direction: column;
  }
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl {
  flex: 1 1 calc((100% - 35px) / 2);
  display: flex;
  flex-direction: column;
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl dt span {
  border-radius: 5px 5px 0 0;
  border: 2px solid var(--foot_bg);
  min-width: 350px;
  background: rgba(var(--blue-c), 1);
  padding: 10px;
  display: inline-block;
  position: relative;
  bottom: -2px;
  text-align: center;
  font-weight: 600;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl dt span {
    min-width: 260px;
  }
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl dd {
  flex: 1;
  border-radius: 0 5px 5px 5px;
  border: 2px solid var(--foot_bg);
  padding: 35px;
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl dd ul li {
  text-indent: -0.7em;
  padding-left: 0.8em;
  line-height: 1.5;
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl dd ul li:before {
  content: "■";
  display: inline-block;
  margin-right: 5px;
}

.ai_omni_agent-forsales #exec article .exec_unit .unit_data-wrapper dl dd ul li:not(:last-of-type) {
  margin-bottom: 25px !important;
}

.ai_omni_agent-forsales #scene {
  background: rgba(var(--bk-d), 1);
}

.ai_omni_agent-forsales #scene .scene_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}

.ai_omni_agent-forsales #scene .scene_wrapper .scene_unit {
  flex: 1 1 calc((100% - 35px) / 2);
  background: rgba(var(--white), 1);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(var(--bk), 0.2);
}

.ai_omni_agent-forsales #scene .scene_wrapper .scene_unit figure {
  max-width: 260px;
  margin: auto;
  padding: 25px;
}

.ai_omni_agent-forsales #scene .scene_wrapper .scene_unit dl dt {
  background: rgba(var(--blue-c), 1);
  color: var(--foot_bg);
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.ai_omni_agent-forsales #scene .scene_wrapper .scene_unit dl dd {
  padding: 25px;
  text-align: center;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  font-weight: 400;
}

.ai_omni_agent-forsales #scene .scene_wrapper .scene_unit dl dd span {
  font-weight: 600;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales #scene .scene_wrapper {
    flex-direction: column;
  }
}

.ai_omni_agent-forsales #last {
  position: relative;
  background: url(../image/bg_last_pc.png) no-repeat center/cover;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales #last {
    background: url(../image/bg_last_sp.png) no-repeat center/cover;
  }
}

.ai_omni_agent-forsales #last:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  max-height: 100%;
  background: rgba(var(--white), 0.3);
}

.ai_omni_agent-forsales #last p {
  text-align: left;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 45px !important;
}

.ai_omni_agent-forsales #last .last_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #last .last_wrapper {
    flex-direction: column;
  }
}

.ai_omni_agent-forsales #last .last_wrapper picture {
  max-width: 420px;
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #last .last_wrapper picture {
    width: 100%;
    order: 3;
  }
}

.ai_omni_agent-forsales #last .last_wrapper .last_unit ul {
  display: flex;
  gap: 20px 5px;
}

@media (max-width: 570px) {
  .ai_omni_agent-forsales #last .last_wrapper .last_unit ul {
    flex-direction: column;
    max-width: 260px;
    margin: auto;
  }
}

.ai_omni_agent-forsales #last .last_wrapper .last_unit ul li {
  flex: 1;
  display: flex;
}

.ai_omni_agent-forsales #last .last_wrapper .last_unit ul li a {
  width: 100%;
  border: 2px solid var(--foot_bg);
  background: rgba(var(--blue-c), 1);
  color: var(--foot_bg);
  box-shadow: 0 0 10px rgba(var(--bk), 0.2);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px 35px;
  border-radius: 300px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  align-items: center;
  opacity: 1 !important;
  transition: transform 0.3s ease-out;
}

@media (max-width: 1299px) {
  .ai_omni_agent-forsales #last .last_wrapper .last_unit ul li a {
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    padding: 10px;
    gap: 10px;
  }
}

@media (max-width: 770px) {
  .ai_omni_agent-forsales #last .last_wrapper .last_unit ul li a {
    padding: 10px 0;
    line-height: 1.4;
  }
}

.ai_omni_agent-forsales #last .last_wrapper .last_unit ul li a:hover {
  transform: translateY(-10px);
  background: rgba(var(--white), 1);
}

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