@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;
  --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";
}

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-seminor #kv_field {
  position: relative;
}
.ai_omni_agent-seminor #kv_field img {
  width: 100dvw;
}
.ai_omni_agent-seminor #kv_field h1 {
  position: absolute;
  left: 5.5%;
  top: 3%;
  max-width: 30%;
  width: 100%;
}
@media (max-width: 480px) {
  .ai_omni_agent-seminor #kv_field h1 {
    left: 9%;
    top: 5%;
    max-width: 60%;
  }
}
.ai_omni_agent-seminor #kv_field .btn {
  position: absolute;
  right: 5.5%;
  bottom: 3%;
  max-width: 24%;
  transition: transform 0.3s ease-out;
}
@media (max-width: 480px) {
  .ai_omni_agent-seminor #kv_field .btn {
    right: 9%;
    bottom: 5%;
    max-width: 80%;
  }
}
.ai_omni_agent-seminor #kv_field .btn:hover {
  transform: translateY(-10px);
}
.ai_omni_agent-seminor .main_content {
  max-width: var(--inner-wrap);
  margin: auto;
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
@media (max-width: 1299px) {
  .ai_omni_agent-seminor .main_content {
    padding: 0 5%;
  }
}
@media (max-width: 570px) {
  .ai_omni_agent-seminor .main_content {
    padding-top: 60px !important;
    padding-bottom: 80px !important;
  }
}
.ai_omni_agent-seminor .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: 80px !important;
  line-height: 1.6;
  text-align: center;
}
.ai_omni_agent-seminor .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-seminor .section_title:after {
    width: 89px;
    height: 8px;
  }
}
.ai_omni_agent-seminor #whoareyou ul {
  padding-top: 80px !important;
  display: flex;
  justify-content: center;
  gap: 80px 25px;
}
.ai_omni_agent-seminor #whoareyou ul li {
  position: relative;
  width: 33.3333333333%;
  border: 3px solid #3FBBD1;
  border-radius: 15px;
  background: #F8FDFF;
  padding: 75px 1% 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 400;
}
.ai_omni_agent-seminor #whoareyou ul li:before {
  content: "";
  display: block;
  width: 170px;
  height: 120px;
  background: url(../image/ic_about.png) no-repeat center/contain;
  position: absolute;
  top: -80px;
}
@media (max-width: 880px) {
  .ai_omni_agent-seminor #whoareyou ul {
    flex-wrap: wrap;
    padding-top: 20px !important;
  }
  .ai_omni_agent-seminor #whoareyou ul li {
    min-width: 300px;
    max-width: 300px;
    margin: auto;
    padding: 45px 1% 25px;
  }
  .ai_omni_agent-seminor #whoareyou ul li:before {
    width: 110px;
    height: 80px;
    top: -40px;
  }
}
@media (max-width: 770px) {
  .ai_omni_agent-seminor #whoareyou ul {
    flex-direction: column;
  }
  .ai_omni_agent-seminor #whoareyou ul li {
    max-width: 380px;
    width: 100%;
  }
}
.ai_omni_agent-seminor #exp {
  background: #F2F2F2;
}
.ai_omni_agent-seminor #exp .catch_about p {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 35px !important;
}
@media (max-width: 570px) {
  .ai_omni_agent-seminor #exp .catch_about p {
    margin-bottom: 15px !important;
  }
}
.ai_omni_agent-seminor #exp h2 {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 85px !important;
  font-weight: 600;
  color: #3FBBD1;
}
@media (max-width: 570px) {
  .ai_omni_agent-seminor #exp h2 {
    margin-bottom: 55px !important;
  }
}
.ai_omni_agent-seminor #exp .about_unit {
  position: relative;
  margin-left: 30%;
  margin-bottom: 100px !important;
  border-radius: 10px;
  background: rgba(var(--white), 1);
  box-shadow: 10px 10px 10px rgba(var(--bk), 0.1);
  display: flex;
  align-items: center;
}
.ai_omni_agent-seminor #exp .about_unit figure {
  max-width: 360px;
  max-height: 240px;
  position: relative;
  left: -25%;
  top: -40px;
}
.ai_omni_agent-seminor #exp .about_unit dl {
  position: absolute;
  padding: 0 5% 0 230px;
}
.ai_omni_agent-seminor #exp .about_unit dl dt {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 600;
  color: #3FBBD1;
  border-left: 7px solid #3FBBD1;
  padding-left: 10px;
  line-height: 1.2;
  margin-bottom: 25px !important;
}
.ai_omni_agent-seminor #exp .about_unit dl dd {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
@media (max-width: 880px) {
  .ai_omni_agent-seminor #exp .about_unit {
    flex-direction: column;
    margin: auto;
  }
  .ai_omni_agent-seminor #exp .about_unit figure {
    max-width: 280px;
    max-height: 180px;
    left: auto;
  }
  .ai_omni_agent-seminor #exp .about_unit dl {
    width: 100%;
    position: relative;
    padding: 0 5% 30px;
  }
}
@media (max-width: 770px) {
  .ai_omni_agent-seminor #exp .about_unit {
    max-width: 70%;
  }
}
@media (max-width: 570px) {
  .ai_omni_agent-seminor #exp .about_unit {
    max-width: 380px;
  }
  .ai_omni_agent-seminor #exp .about_unit figure {
    max-width: 220px;
    max-height: 150px;
  }
}
.ai_omni_agent-seminor #exec dl {
  max-width: var(--inner-wrap_m);
  margin: auto;
  border: 3px solid #3FBBD1;
  border-radius: 15px;
  background: #F8FDFF;
  display: flex;
  align-items: center;
  padding: 35px 50px;
}
.ai_omni_agent-seminor #exec dl:not(:last-of-type) {
  margin-bottom: 15px !important;
}
.ai_omni_agent-seminor #exec dl dt {
  min-width: 200px;
  width: 200px;
  font-weight: 600;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  color: #3FBBD1;
}
@media (max-width: 880px) {
  .ai_omni_agent-seminor #exec dl dt {
    min-width: 120px;
    width: 120px;
  }
}
.ai_omni_agent-seminor #exec dl dt {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
@media (max-width: 570px) {
  .ai_omni_agent-seminor #exec dl {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .ai_omni_agent-seminor #exec dl dt {
    margin-bottom: 15px !important;
  }
}
.ai_omni_agent-seminor #last {
  position: relative;
  background: url(../image/bg_last_pc.png) no-repeat center/cover;
}
@media (max-width: 570px) {
  .ai_omni_agent-seminor #last {
    background: url(../image/bg_last_sp.png) no-repeat center/cover;
  }
}
.ai_omni_agent-seminor #last:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  max-height: 100%;
  background: rgba(var(--white), 0.3);
}
.ai_omni_agent-seminor #last p {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 45px !important;
}
.ai_omni_agent-seminor #last .btn {
  max-width: 440px;
  margin: auto;
  display: block;
  transition: transform 0.3s ease-out;
}
.ai_omni_agent-seminor #last .btn:hover {
  transform: translateY(-10px);
}/*# sourceMappingURL=design.css.map */