@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}

body, html {
  margin: 0; padding: 0;
}

body {
  font-family: 'Noto Sans JP', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(90deg, #111d44, #3151b8);
  color: #333333;
}

.txt_blue{
  color: #24387A;
}
.txt_gray{
  color: #3B3B3B;
}

.animation-container {
  width: 100%;
  height: auto;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}

#animation-container-1 {

}

#animation-container-2 {
  min-height: 400px;
  height: auto;
}

#canvas-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none; /* バックグラウンドのアニメーションが前面のクリックを邪魔しないように設定 */
}

#ui {
  position: relative;
  width: 100%; 
  height: auto;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* UIコンテナ自体はクリックを透過させ、子要素に必要な設定を行う */
  color: white;
  z-index: 10;
  box-sizing: border-box;
}

#animation-container-3 #ui {
  padding: 0 0 60px 0;
}
#animation-container-5 #ui {
  padding: 0;
}
.animation-container .mv_box {
  position: relative;
  padding: 0 0 0 80px;
  width: 100%;
  box-sizing: border-box;
}

.animation-container .mv_container {
  max-width: 1920px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.animation-container .mv_txt {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-shadow: 0 3px 5px rgba(165, 85, 180, 0.68);
}
.animation-container .mv_txt img{
  max-width: 23rem;
}

.animation-container .mv_txt h2 {
  position: relative;
  display: inline-block;
  font-size: 56px; 
  margin: 0;
  margin-top: 30px;
  line-height: 1.2;
  white-space: nowrap;
}

.animation-container .mv_txt h2 small {
  font-size: 4rem;
}

.contact_btn{
  position: relative;
  margin-top: 8rem;
}
.contact_btn a {
  position: relative;
  display: inline-block;
  font-size: 3.0rem;
  font-weight: 600;
  padding: 2rem;
  min-width: 56rem;
  background: linear-gradient(
    45deg, 
    #F9686E 30%, 
    #FBAB70 100%
  );
  color: #fff;
  border-radius: 6rem;
  text-align: center;
  pointer-events:auto;
  opacity: 1;
  transition: 0.3s;
}
.contact_btn a:hover{
  opacity: 0.8;
  transition: 0.3s;
}
.contact_btn a::after{
  position: absolute;
  content: "";
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 1.0rem;
  height: 1.5rem;
  background: url("../images/icon_btn.svg") no-repeat center/1rem 1.5rem;
  transition: 0.3s;
}
.contact_btn a:hover::after{
  transition: 0.3s;
  right: 8%;
}
.contact_btn .husen{
  position: absolute;
  top: -4.5rem;
  left: -3rem;
  z-index: 1;
}
.contact_btn .husen img{
  width: 24.3rem;
  height: auto;
}

.kouka {
  position: absolute;
  width: 184px; 
  height: 184px;
  top: 0;
  right: 20px; 
  display: flex;
  justify-content: center;
  align-content: center; 
  line-height: 1.4; 
  background: linear-gradient(
    45deg, 
    rgba(244, 59, 71, 1) 30%, 
    rgba(69, 58, 148, 1) 100%
  );
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 50%;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  flex-wrap: wrap;
  align-items: baseline;
}

.kouka .break {
  flex-basis: 100%; 
  height: 0;
}

.kouka strong {
  font-size: 48px;
}

.animation-container .mv_txt p {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
  line-height: 1.3;
}

.mv_image_zone {
  position: relative;
  flex: 0 0 50%;
  display: flex;
  align-items: flex-start;
  pointer-events: auto;
  flex-direction: column;
}

.animation-container .point {
  display: inline-block;
  padding: 5px 40px;
  font-weight: 600;
  font-size: 20px;
  background: linear-gradient(90deg, #F43B47, #453A94);
  border-radius: 8px;
  margin-left: 11%;
}
.mv_image_zone img {
  width: 100%;
  max-height: 600px; 
  object-fit: contain;
  margin-right: -100px;
  margin-top: 10px;
}

#lottie-container {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -8.2rem;
  right: 0;
}

@media (max-width: 767px) {
  .animation-container {
    min-height: 600px;
  }
}

.problem {
  position: relative;
  width: 100%;
  background-color: #F7F7F7;
  clip-path: polygon(
    0% 0%, 
    100% 0%, 
    100% calc(100% - 200px), 
    50% 100%, 
    0% calc(100% - 200px)
  );
  padding-bottom: 100px; 
  z-index: 10;
}

.contents_container {
  max-width: 126rem;
  margin: 0 auto;
  padding: 12rem 3rem;
  text-align: center;
}

.problem .contents_container {
  padding-top: 8rem;
  padding-bottom: 10rem;
}

.contents_container h2 {
  color: #24387A;
  font-size: 3.2rem;
  line-height: 1;
}

.contents_container h2 small {
  color: #6F6F6F;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 1.8rem;
  line-height: 1;
}

.features .contents_container h2 {
  font-size: 3.2rem;
}
.features .contents_container .features_solution h2 {
  font-size: 2.8rem;
  color: #333333;
}
.features .contents_container h2 small {
  font-size: 1.8rem;
}
.features .contents_container h2 {
  font-size: 3.2rem;
}

.contents_container p.read {
  font-size: 1.6rem;
  margin-top: 3.2rem;
}

.contents_box {
  margin-top: 14.2rem;
}

.contents_box h3 {
  color: #24387A;
  font-size: 3.2rem;
}

.problem_read{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.problem_read img{
  width: 36.3rem;
}
.problem_read .read{
  text-align: left;
}

.problem_list {
  display: flex;
  justify-content: space-between;
  margin-top: 8rem;
}

.problem_list li {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 4.8rem 3rem 20rem 3rem;
  width: 30%;
  background: #fff url("../images/img_problem01.png") no-repeat bottom center/contain;
}

.problem_list li:nth-child(2) {
  background: #fff url("../images/img_problem02.png") no-repeat bottom center/contain;
}

.problem_list li:last-child {
  background: #fff url("../images/img_problem03.png") no-repeat bottom center/contain;
}

.problem_list li h4 {
  font-size: 2.8rem;
}

.problem_list li p {
  font-size: 1.6rem;
  margin-top: 3rem;
}

.contents_box h3.problem_title {
  font-size: 1.8rem;
  color: #082C4E;
  margin-top: 8rem;
}

footer {
  background-color: #fff;
}

#animation-container-2 {
  margin-top: -10rem;
  padding-top: 10rem;
}

#animation-container-2 #canvas-wrapper canvas {
  min-height: 600px;
}

.glass {
  pointer-events: auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 80rem;
  width: 90%;
  margin: 6rem auto;
  padding: 4rem;
  color: #fff;
  text-align: center;
}

.glass h2 {
  font-size: 5.6rem;
}

.glass h2 small {
  font-size: 4.0rem;
}

.glass p {
  font-size: 1.6rem;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .problem {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), 50% 100%, 0% calc(100% - 60px));
    padding-bottom: 60px;
  }
}

.features {
  background-color: #F7F7F7;
}

.features_list{
  max-width: 100rem;
  margin: 0 auto;
}
.features_list_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 8rem;
}

.features_list_box .features_list_txt {
  width: 50%;
  text-align: left;
}

.features_list_box .features_list_img {
  max-width: 46.5rem;
}

.features_list_box .features_list_txt h3 {
  font-size: 1.8rem;
}

.features_list_box .features_list_txt h3 span.left {
  color: #fff;
  display: inline-block;
  background-color: #24387A;
  border: 1px solid #24387A;
  padding: 1.8rem;
  line-height: 1rem;
  border-top-left-radius: 0.8rem;
  border-bottom-left-radius: 0.8rem;
}

.features_list_box .features_list_txt h3 span.right {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #24387A;
  padding: 1.8rem;
  line-height: 1rem;
  border-top-right-radius: 0.8rem;
  border-bottom-right-radius: 0.8rem;
}

.features_list_box .features_list_txt h4 {
  font-size: 2.8rem;
  margin-top: 3rem;
}

.features_list_box .features_list_txt p {
  font-size: 1.6rem;
  margin-top: 3rem;
}

.features_list .features_list_box:nth-child(even) {
  flex-direction: row-reverse;
}

.features_list .features_list_box:nth-child(even) .features_list_txt {
  text-align: right;
}

.features_solution {
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  padding: 4rem;
  border-radius: 0.8rem;
  margin-top: 12rem;
}

.features_solution h2 {
  font-size: 2.5rem;
}

.features_solution h2 small {
  font-size: 2.0rem;
}

.features_solution_both {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  gap: 2rem;
  margin-top: 4rem;
}

.features_solution_before {
  flex: 0 0 30%;
  border: 1px solid #D6D6D6;
  border-radius: 0.8rem;
  padding: 3rem 3rem 17rem;
  background: url("../images/features_solution_before_bg.png") no-repeat center bottom / contain;
}

.features_solution_arrow {
  position: relative;
  flex: 0 0 3%;
}

.features_solution_arrow::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.3rem;
  height: 4rem;
  background-color: #24387A;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.features_solution_after {
  flex: 0 0 35%;
  border: 0.4rem solid #24387A;
  border-radius: 0.8rem;
  padding: 3rem 3rem 17rem;
  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.2),
    inset 0 2px 5px rgba(0, 0, 0, 0.2);
  background: url("../images/features_solution_after_bg.png") no-repeat center bottom / contain;
}

.features_solution_both div img {
  margin-top: 4rem;
}

.features_solution_both div p {
  margin-top: 4rem;
  text-align: left;
  font-size: 1.6rem;
}

#animation-container-3 {
  min-height: 800px; 
  height: auto;
}

#animation-container-3 .contents_container h2 {
  color: #fff;
  text-align: center;
}
#animation-container-3 .contents_container h2 small{
  color: #fff;
}
/* ==========================================================================
   波の重なり防止のため、3番コンテナのレイヤー順序のみを明確に定義
   ========================================================================== */
#animation-container-3 #canvas-wrapper {
  z-index: 2;
}

#animation-container-3 #ui {
  z-index: 3;
}

/* ==========================================================================
   ここから：円形アニメーションメニューのカスタムスタイル
   ========================================================================== */

/* [中央アニメーションセクション]
   他のページの中間セクションとして挿入されるため、このセクション自体で左右にはみ出る円をカットします。
*/
.agent-section {
  position: relative;
  width: 100%;           /* 100%로 설정 */
  max-width: 100vw;      
  min-height: 100vh; 
  height: auto;          
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25vw 0;
  overflow: hidden;      /* 여기서 넘치는 부분을 잘라내지만, 아래 container를 키워 해결 */
}

/* メニュー全体のコンテナ - 中央の円のサイズ(50vw)を基準に合わせて42vwに調整し、見切れを防止 */
.agent {
  position: relative;
  width: 50vw;
  height: 50vw;
}

/* 中央の円のスタイル (ブラウザ幅の50%、不透明度40%の半透明白、ぼかし効果) */
.agent .trigger {
  position: absolute;
  top: 50%;         
  left: 50%;
  width: 40vw;      /* 💡 45vw로 조정 */
  height: 40vw;     /* 💡 45vw로 조정 */
  margin-top: -20vw;  /* 💡 크기(45vw)의 절반만큼 위로 이동 */
  margin-left: -20vw; /* 💡 크기(45vw)의 절반만큼 왼쪽으로 이동 */
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4); 
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.agent .trigger img {
  width: 25rem;
  height: auto;
}

/* 周辺の5つの円のスタイル - サイズを30vwに拡大、中心座標を固定、かつ前面に配置してクリック可能にする */
.agent .btn-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30vw;        
  height: 30vw;       
  margin-top: -15vw;  
  margin-left: -15vw; 
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); 
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 110;       
  pointer-events: auto; 
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}

.agent .item1 .btn-icon{
  justify-content: flex-start;
}

.agent .rotater img {
  height: auto;
}

.agent .rotater.item1 img { width: 14rem; margin-top: 3rem; }
.agent .rotater.item2 img { width: 8.5rem; }
.agent .rotater.item3 img { width: 6.5rem; }
.agent .rotater.item4 img { width: 6.7rem; }
.agent .rotater.item5 img { width: 13rem; }

.agent .rotater .btn-icon h3 {
  margin-top: 1rem;
  font-size: 2.8rem;
}

.agent .rotater .btn-icon ul {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.agent .rotater .btn-icon ul li {
  font-size: 1.8rem;
  font-weight: 600;
  background-color: #1A224C;
  border-radius: 2rem;
  padding: 0.4rem 2rem;
  color: #fff;
}

.agent .rotater .btn-icon a {
  font-size: 1.6rem;
  padding: 1.5rem;
  min-width: 25rem;
  background: linear-gradient(
    45deg, 
    rgba(69, 58, 148, 1) 30%, 
    rgba(244, 59, 71, 1) 100%
  );
  border-radius: 3rem;
  margin-top: 2rem;
  text-align: center;
}

/* 回転軸の設定 */
.agent .rotater {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  z-index: 110;
}

.agent .rotater.item1 { transform: rotate(0deg); }
.agent .rotater.item2 { transform: rotate(72deg); }
.agent .rotater.item3 { transform: rotate(144deg); }
.agent .rotater.item4 { transform: rotate(216deg); }
.agent .rotater.item5 { transform: rotate(288deg); }

/* アクティブ（展開）状態 */
.agent.active .btn-icon {
  opacity: 1;
}

/* 四方へ広がる距離の設定 - 画面外への飛び出しによる見切れを防ぐため30vwに調整 */
.agent.active .rotater.item1 .btn-icon { transform: translateY(-33vw) rotate(0deg); }
.agent.active .rotater.item2 .btn-icon { transform: translateY(-33vw) rotate(-72deg); }
.agent.active .rotater.item3 .btn-icon { transform: translateY(-33vw) rotate(-144deg); }
.agent.active .rotater.item4 .btn-icon { transform: translateY(-33vw) rotate(-216deg); }
.agent.active .rotater.item5 .btn-icon { transform: translateY(-33vw) rotate(-288deg); }



.detail{
  background-color: #fff;
}
.detail p.read{
  font-size: 1.6rem;
  margin-top: 8rem;
}
.detail ul{
  margin-top: 8rem;
}
.detail h2,
.compare h2{
  line-height: 1.4;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

/* 각 체크리스트 아이템 */
.check-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.check-item .check-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #23315a;
  border-radius: 2px;
  box-sizing: border-box;
}

.check-item .check-icon::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #23315a;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 텍스트 스타일 */
.check-item .check-text {
  font-size: 1.8rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.4;
  white-space: nowrap;
}


@media (max-width: 767px) {
  .check-list {
    grid-template-columns: 1fr;
    gap: 16px 0; 
    padding: 0 20px;
  }
  
  .check-item .check-text {
    font-size: 16px;
    white-space: normal;
  }
}



.detail_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  margin-top: 8rem;
}
.detail_box .detail_box_img{
  flex: 0 0 35%;
  background-color: #F5F5F5;
}
.detail_box .detail_box_img img{
  max-width: 90%;
}
.detail_box .detail_box_txt{
  flex: 0 0 65%;
  padding: 3rem;
}
.detail_box .detail_box_txt h3{
  text-align: left;
  font-size: 2.8rem;
}
.detail_box .detail_box_txt h3 small{
  font-size: 1.8rem;
}
.detail_box .detail_box_txt p{
  font-size: 1.6rem;
  text-align: left;
  margin-top: 4rem;
}
.detail .attention{
  margin-top: 2rem;
  text-align: left;
  font-size: 1.6rem;
}




.compare{
  background-color: #F7F7F7;
}

.compare_plan{
  background-color: #fff;
  padding: 8rem;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  margin-top: 8rem;
}
.compare_plan_img{
  margin: 6rem auto;
  max-width: 90rem;
}

.compare_plan_table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare_plan_table .pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0 20px;
  text-align: center;
  font-family: sans-serif;
}

/* 共通セル */
.compare_plan_table .pricing-table th,
.compare_plan_table .pricing-table td {
  border: 1px solid #bdbdbd;
  background: #f5f5f5;
  padding: 20px 12px;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: 600;
  color: #333;
  line-height: 1;
}

/* プラン名ヘッダー */
.compare_plan_table .pricing-table thead th {
  background: #dfe8f5;
  font-weight: 700;
}

/* 左側の見出しセル */
.compare_plan_table .pricing-table tbody th {
  background: #d9e8fb;
  width: 140px;
  line-height: 1.5;
}

/* 左上の空白セル */
.compare_plan_table .pricing-table thead th:first-child {
  background: transparent;
  border: none;
}

/* 月間タスク利用数（上限）のデータセル */
.compare_plan_table .pricing-table .task-row td {
  background: #fff;
  border-top: none;
  font-size: 2.0rem;
}
.compare_plan_table .pricing-table .task-row th {
  background: #fff; 
}
/* 月額基本利用料のデータセル */
.compare_plan_table .pricing-table tbody tr:nth-child(3) td,
.compare_plan_table .pricing-table tbody tr:nth-child(4) td {
  background: #fff;
}
.compare_plan_table .pricing-table tbody tr:nth-child(2) {
  transform: translateY(-10px);
}
.compare_plan_table .pricing-table tbody tr:nth-child(4) {
  transform: translateY(-21px);
}

/* ヘッダーと月間タスク利用数を結合 */
.compare_plan_table .pricing-table .task-row {
  transform: translateY(-20px);
}

/* 小文字 */
.compare_plan_table .pricing-table td small {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
}
.compare_waribiki_box td small{
  font-size: 12px;
}
/* スマートフォン表示 */
@media (max-width: 767px) {
  .compare_plan{
    padding: 3rem 2rem;
  }
  .compare_plan_table .pricing-table {
    min-width: 980px;
  }

  .compare_plan_table .pricing-table th,
  .compare_plan_table .pricing-table td {
    padding: 16px 10px;
    font-size: 16px;
  }

  .compare_plan_table .pricing-table tbody th {
    font-size: 14px;
  }
}





.compare_contents_title{
  margin-top: 12rem;
}

.tab-container {
  width: 100%;
  margin-top: 8rem;
}

/* タブボタン */
.tab-buttons {
  display: flex;
}

.tab-button {
  flex: 1;
  padding: 3rem 0;
  border: 1px solid #ccc;
  background: #B4B4B4;
  color: #24387A;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 600;
  transition: 0.3s;
}

.tab-button.active {
  background: linear-gradient(to bottom, #19254D, #2F4BA8);
  color: #fff;
  transition: 0.3s;
}

/* タブ内容 */
.tab-content {
  position: relative;
  width: 100%;
  transition: height 0.3s ease;
  background-color: #fff;
}
.tab-content h3{  
  font-size: 2.8rem;
}

.tab-panel {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  padding: 8rem 4rem;
}

.tab-panel p.read strong{
  font-size: 110%;
}

.tab-panel.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

/* スマートフォン */
@media (max-width: 767px) {

  .tab-buttons {
    flex-direction: column;
  }

}



.compare_waribiki_box{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8rem;
}

.compare_waribiki_before{
  flex-grow: 0;
  flex-shrink: 0;
  width: 44%;
}

.compare_waribiki_center{
  flex-grow: 0;
  flex-shrink: 0;
  width: 12%;
}

.compare_waribiki_after{
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  width: 44%;
}
.compare_waribiki_after::before{
  position: absolute;
  content: "";
  width: 13rem;
  height: 12.3rem;
  top: -4rem;
  left: -10rem;
  background: url("../images/icon_50p.svg") no-repeat center/contain;
  z-index: 1;
}
.compare_waribiki_after::after{
  position: absolute;
  content: "";
  width: 11rem;
  height: 10rem;
  top: auto;
  bottom: 0;
  left: -10rem;
  background: url("../images/icon_20p.svg") no-repeat center/contain;
  z-index: 1;
}
.compare_waribiki_box.waribiki_box2{
  margin-bottom: 10rem;
}
.compare_waribiki_box.waribiki_box2 .compare_waribiki_after::before{
  background: url("../images/icon_60p.svg") no-repeat center/contain;
}
.compare_waribiki_box.waribiki_box2 .compare_waribiki_after::after{
  background: none;
}
.compare_waribiki_box table {
  border-collapse: collapse;
  width: 100%;
}

.compare_waribiki_box th, td {
  position: relative;
  border: 1px solid #707070;
  padding: 1.5rem 1rem;
  font-size: 1.6rem;
}
.compare_waribiki_box th{
  font-weight: 600;
  background-color: #DFE8FA;
}
.compare_waribiki_box tr th:first-child{
  background: none;
  border: 0;
}
.compare_waribiki_box tr td:first-child{
  background-color: #C4DDFF;
}
.compare_waribiki_box table tr:nth-child(2) td:not(:first-child){
  background-color: #F5F5F5;
}
.compare_waribiki_box p.attention{
  color: #FF0000;
  font-size: 1.2rem;
  text-align: right;
}
.compare_waribiki_before td:not(:first-child)::before{
  position: absolute;
  content: "";
  width: 70%;
  height: 3px;
  background-color: #FD0000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.compare_waribiki_after td:not(:first-child){
  color: #FD0000;
  font-size: 2.5rem;
  font-weight: 600;
}

.tab-content h3.txt_blue{
  margin-top: 8rem;
}

.form{
  padding: 6rem;
  min-height: 130rem;
  border: 1px solid #707070;
  max-width: 90rem;
  margin: 4rem auto 0;
}
.tab-content h3.form_title{
  font-size: 3.2rem;
}

.tab-panel h3.txt_gray{
  margin-top: 8rem;
}
.tab-panel .read2{
  font-size: 2rem;
  margin-top: 3rem;
  font-weight: 600;
}


.tab-panel .plan_list{
  margin-top: 6rem;
  
}
.tab-panel .plan_list ul{
  display: flex;
  justify-content: space-between;
  align-items:stretch;
}
.tab-panel .plan_list ul li{
  width: 46%;
  text-align: center;
}
.tab-panel .plan_list ul li .top_coment{
  position: relative;
  display: inline-block;
  background-color: #25387A;
  font-size: 1.6rem;
  color:#fff;
  padding: 0.5rem 5rem;
  border-radius: 1rem;
}
.tab-panel .plan_list ul li .top_coment::after{
  position: absolute;
  content:"";
  border-top: 10px solid #25387A;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  bottom:-15px;
  left:50%;
  transform: translateX(-50%);
}
  
.tab-panel .plan_list ul li .plan_box{
  border:3px solid #25387A;
  border-top-width: 12px;
  border-radius: 1rem;
  padding: 3rem;
  height: 100%;
  margin-top: 2rem;
  position: relative;
}
  
.tab-panel .plan_list ul li .plan_box.choice{
  border-color: #25387A;
}

.tab-panel .plan_list ul li .plan_box.choice .plan_spec_list p::before{
  background: url("../images/icon_check2.svg") no-repeat center right/contain;
}

.plan_box h3{
  font-size:2.2rem;
}
.plan_box h3 span{
  display: block;
  font-size: 1.2rem;
  color:#24387A;
}
.plan_box img{
  max-width: 73rem;
}
.plan_box .first_cost{
  margin-top: 3rem;
  font-size:1.8rem;
}
.plan_box .cost{
  margin-top: 0;
  font-size:2.0rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1;
  gap:2rem;
}
.plan_box .cost .fst{
  font-size:2.0rem;
}
.plan_box .cost .fst strong{
  font-size:5.0rem;
}
.plan_box .cost .snd{
  color: #D51212;
  font-size: 2.0rem;
}
.plan_box .cost .snd strong{
  font-size:8.0rem;
}
.plan_box .cost .icon_right{
  width:2.0rem;
  height:4.0rem;
  background: url("../images/icon_right.svg") no-repeat right center/contain;
}
.plan_box .cost2{
  color: #D51212;
  font-weight: 600;
}
.plan_spec_list{
  margin-top: 3rem;
  text-align: left;
  display: inline-block;
}
.plan_spec_list p{
  position: relative;
  font-size: 1.6rem;
  margin-top: 1.5rem;
  padding-left: 2rem;
  display: inline-block;
  text-align: left;
}
.plan_spec_list p::before{
  position: absolute;
  content: "";
  top:50%;
  transform: translateY(-50%);
  left:0;
  width: 1.17rem;
  height:0.85rem;
  background: url("../images/icon_check.svg") no-repeat center right/contain;
}
  
.tab-panel .plan_list ul li .plan_box.choice{
  border-color: #25387A;
}

.tab-panel .plan_list ul li .plan_box.choice .plan_spec_list p::before{
  background: url("../images/icon_check2.svg") no-repeat center right/contain;
}

.plan_box  .plan_info{
  margin-top: 5rem;
  border-top:1px solid #C4C4C4;
  text-align: left;
  padding-top: 2rem;
}
.plan_box  .plan_info h4{
  font-size: 1.6rem;
  color:#025AAF;
}
.plan_box  .plan_info p{
  font-size: 1.6rem;
  margin-top: 1rem;
}

.tex{
  text-align: right;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .plan_list ul{
    flex-flow: column;
  }
  .plan_list ul li{
    width: 100%;
  }
  .plan_list ul li:last-child{
    margin-top: 3rem;
  }
  .plan_list ul li .plan_box {
    padding: 2rem 1.5rem;
  }
  .plan_box img {
    max-width: 100%;
  }
}



.migration-banner {
  width: 100%;
  padding: 32px;
  box-sizing: border-box;

  background: linear-gradient(
    to right,
    #253b84 0%,
    #253b84 18%,
    #b9d0e1 18%,
    #b9d0e1 100%
  );
  margin-top: 3rem;
}

.migration-banner__inner {
  background: #fff;
  padding: 48px 20px;
  text-align: center;
}

.migration-banner__title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.migration-banner__discount {
  margin: 12px 0;
  color: #333;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.2;
}

.migration-banner__discount span {
  font-size: 2.5rem;
  color: #ff0000;
}
.migration-banner__discount span strong {
  font-size: 3.5rem;
  font-weight: 800;
}
.migration-banner__text {
  margin: 0;
  font-size: 2.0rem;
  font-weight: 700;
}

/* スマートフォン */
@media (max-width: 767px) {
  .migration-banner {
    padding: 16px;

    background: linear-gradient(
      to right,
      #253b84 0%,
      #253b84 15%,
      #b9d0e1 15%,
      #b9d0e1 100%
    );
  }

  .migration-banner__inner {
    padding: 32px 16px;
  }

  .migration-banner__title {
    font-size: 20px;
  }

  .migration-banner__discount {
    font-size: 20px;
  }

  .migration-banner__discount span {
    font-size: 34px;
  }

  .migration-banner__text {
    font-size: 18px;
  }
}

.white_waku{
  background-color: #fff;
  border-radius: 2rem;
  padding: 3rem 4rem;
  font-size: 1.8rem;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
  display: inline-block;
}
.white_waku h4{
  color: #D51212;
  font-size: 2.4rem;
}

#ui.work{
  padding: 0;
}
#ui.work h2,
.contact h2{
  color: #fff;
  line-height: 1.4;
}
#ui.work h2 small{
  color: #fff;
}
.work .glass_box{
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 120rem;
  margin-top: 6rem;
}
.work .glass_box .glass{
  width: 40%;
  text-align: left;
  margin: 0;
  padding: 3rem 4rem;
}
.work .glass_box .glass h3{
  border-bottom: 1px solid #fff;
  padding-bottom: 2rem;
  font-size: 2.8rem;
}


.aishalom-faq.sec-faq{
  padding: 0;
  background-color: #fff;
}
.aishalom-faq.sec-faq h2{
  margin-bottom: 6rem;
}
.aishalom-faq.sec-faq .faq-list dt{
  background-color: #F5F3F0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
.aishalom-faq.sec-faq .faq-list dd{
  background-color: #fff;
  text-align: left;
}

.aishalom-faq.sec-faq .faq-list dt::before {
  width: 2.1rem;
  height: 2.9rem;
  background: url(../images/icon-q.svg) no-repeat center / contain;
}
.aishalom-faq.sec-faq .faq-list__box::before{
  background: none;
}
.aishalom-faq.sec-faq .faq-list dt .open::before, .aishalom_.sec-faq .faq-list dt .open::after{
  background-color: #3B3B3B;
}

.contact{
  z-index: 10;
  pointer-events: auto;
}




.agent-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:99999;
}

.agent-modal.show{
  display:flex;
}

.agent-modal-content{
  position:relative;
  width:min(900px,90vw);
  background:#fff;
  border-radius:10px;
  padding:50px;
  text-align:center;
  overflow:hidden;
}

.agent-modal-content h2{
  color:#24387A;
  font-size:2.8rem;
  margin-bottom:30px;
}
.agent-modal-content p{
  font-size: 1.6rem;
  margin-top: 2rem;
}

.agent-character img{
  width:120px;
  height:auto;
}

.agent-tags{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin:30px 0;
}

.agent-tags span{
  background:#1A224C;
  color:#fff;
  padding:10px 20px;
  border-radius:30px;
  font-size: 1.6rem;
}

.agent-checklist{
  display: inline-block;
  list-style:none;
  padding:0;
  margin:40px 0 0;
}

.agent-checklist li{
  position:relative;
  padding-left:38px;
  margin-bottom:20px;

  font-size: 1.6rem;
  font-weight:600;
  color:#24387A;
  text-align: left;
}

/* 네모 */
.agent-checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;

  width:20px;
  height:20px;

  border:2px solid #24387A;
  box-sizing:border-box;
}

/* 체크 표시 */
.agent-checklist li::after{
  content:"";
  position:absolute;

  left:7px;
  top:6px;

  width:6px;
  height:12px;

  border:solid #24387A;
  border-width:0 2px 2px 0;

  transform:rotate(45deg);
}

.agent-close{
  position:absolute;
  top:0;
  right:-1px;

  width:120px;
  height:120px;

  border:0;
  padding:0;
  cursor:pointer;

  background:#24387A;
  clip-path: polygon(100% 0, 0 0, 100% 100%);

  z-index:1000;
}

/* X 선 */
.agent-close span{
  position:absolute;
  top:28px;
  right:20px;

  width:24px;
  height:3px;

  background:#fff;
  border-radius:2px;

  display:block;
}

.agent-close span:nth-child(1){
  transform:rotate(45deg);
}

.agent-close span:nth-child(2){
  transform:rotate(-45deg);
}


@media (max-width: 767px) {
  
  .problem_read{
    flex-direction: column;
  }
  .problem_read img{
    width: 20rem;
  }
  .contents_container{
    padding: 6rem 2rem;
  }
  .animation-container .point {
    width: 70%;
    padding: 5px;
    text-align: center;
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8rem;
  }
  
  #animation-container-1{
    margin-top: 120px !important;
  }
  .animation-container .mv_txt h2 small {
    font-size: 2.2rem;
  }
  
  .animation-container .mv_box {
    padding: 0 24px; 
  }

  .animation-container .mv_container {
    flex-direction: column; 
    align-items: flex-start; 
  }

  .animation-container .mv_txt {
    flex: 0 0 100%; 
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .animation-container .mv_txt h2 {
    display: block;
    font-size: clamp(34px, 6vw, 42px);
  }

  .animation-container .kouka {
    width: 140px;
    height: 140px;
    top: 6rem;
    left: auto;
    right: 10%;
    font-size: 14px;
  }

  .animation-container .kouka strong {
    font-size: 30px;
  }

  .animation-container .mv_txt p {
    font-size: 16px; 
    text-align: left;
  }

  .animation-container .mv_image_zone {
    flex: 0 0 100%; 
    width: 130%;
    justify-content: center;
    padding-top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .animation-container .mv_image_zone img {
    width: 100%;
    max-width: 480px; 
    max-height: 380px;
    margin-right: 0;
  }
  #lottie-container{
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -4.6rem;
  }
  
  .contact_btn{
    width: 100%;
  }
  .contact_btn a {
    min-width: 100%;
    font-size: 2.0rem;
  }
  .contact_btn .husen {
    position: absolute;
    top: -4.5rem;
    left: -2rem;
    z-index: 1;
  }
  .contact_btn .husen img {
    width: 20rem;
    height: auto;
  }
  
  .contents_title h2{
    line-height: 1.4;
    font-size: 3rem;
  }
  .contents_title h2 small{
    line-height: 1.3;
    font-size: 1.8rem;
  }
  .contents_box {
    margin-top: 8rem;
  }
  .contents_box h3 {
    font-size: 2.6rem;
  }
  .problem_list,
  .features_list .features_list_box,
  .features_list .features_list_box:nth-child(even),
  .features_solution_both,
  .detail_box,
  .compare_waribiki_box,
  .glass_box{
    flex-direction: column;
  }
  .problem_list li,
  .features_solution_before,
  .compare_waribiki_before,
  .compare_waribiki_center,
  .compare_waribiki_after{
    width: 100%;
    margin-bottom: 3rem;
  }
  
  .features_solution{
    padding: 2rem 1.5rem;
  }
  .features_list_box .features_list_txt,
  .detail_box_img,
  .detail_box_txt,
  .work .glass_box .glass{
    width: 100%;
  }
  .features_list .features_list_box:nth-child(even) .features_list_txt {
    text-align: left;
  }
  .features_list_box .features_list_txt h3 span.left,
  .features_list_box .features_list_txt h3 span.right{
    padding: 2rem;
    font-size: 1.5rem;
  }
  .features_list_box .features_list_txt h4 {
    font-size: 2.0rem;
  }
  .features_solution_arrow::after {
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  .agent {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
  }

  .agent .trigger {
    position: relative;
    top: auto;
    left: auto;
    width: 90vw;
    height: 90vw;
    margin: 0 auto 2rem auto;
    transform: none;
  }
  .agent .trigger img {
      width: 10rem;
      height: auto;
  }
  .agent .rotater {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none !important;
    margin-bottom: 1.5rem;
  }

  .agent .btn-icon {
    position: relative;
    top: auto;
    left: auto;
    width: 90vw;
    height: auto;
    min-height: 20rem;
    margin: 0 auto;
    transform: none !important;
    opacity: 1;
    transition: none;
    padding: 1rem;
    aspect-ratio: 1/1;
  }
  .agent .btn-icon img{
    max-width: 7rem;
  }

  .agent .rotater .btn-icon h3 {
    margin-top: 1rem;
    font-size: 1.8rem;
  }
  .agent .item1 .btn-icon {
    justify-content: center;
  }
  .agent .rotater .btn-icon ul{
    gap: 1rem;
  }
  .agent .rotater .btn-icon ul li {
    font-size: 1.3rem;
  }
  .agent .rotater.item1 img {
    margin-top: 0;
  }
  .agent .rotater .btn-icon a {
    font-size: 1.6rem;
    padding: 1rem;
    min-width: 20rem;
  }
  
  .agent-section{
    padding-top: 2rem;
  }
  
  
  .detail_box .detail_box_txt h3 {
    font-size: 2.2rem;
  }
  .detail_box .detail_box_txt h3 small {
    font-size: 1.8rem;
  }
  .detail_box .detail_box_txt {
    padding: 2rem;
  }
  
  
  p.read{
    text-align: left;
  }
  
  .contents_container h2 {
    font-size: 2.2rem;
  }
  
  .tab-panel {
    padding: 3rem 1rem;
  }
  
  .compare_waribiki_after::before {
    width: 9rem;
    height: 8rem;
    top: -7rem;
    left: auto;
    right: 20%;
  }
  .compare_waribiki_after::after {
    width: 8rem;
    height: 7rem;
    top: auto;
    bottom: -3rem;
    left: 10%;
  }
  .compare_waribiki_box.waribiki_box2 {
    margin-bottom: 4rem;
  }
  .tab-content h3.txt_blue {
    margin-top: 4rem;
  }
  .tab-panel .plan_list ul{
    flex-direction: column;
  }
  .tab-panel .plan_list ul li{
    width: 100%;
  }
  
  .compare_waribiki_box {
    margin-top: 4rem;
  }
  .compare_waribiki_after td:not(:first-child) {
    font-size: 1.6rem;
  }
  
  .form {
    padding: 3rem 2rem;
    margin-top: 4rem;
    min-height: 130rem;
  }
  .tab-content h3.form_title{
    font-size: 2.2rem;
  }

  .work .glass_box .glass{
    padding: 2rem;
  }
  
  .work .glass_box .glass p {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  
  #animation-container-5.animation-container {
    min-height: 200px;
  }
  
  .contact .contact_btn {
    margin-top: 4rem;
  }
  
  .agent-modal-content{
    padding: 4rem 2rem 2rem;
  }
  .agent-modal-content p{
    font-size: 1.4rem;
  }
  
  .agent-close{
    width:80px;
    height:80px;
  }
  
  .agent-close span{
    top:20px;
    right:12px;
  }
  
  .white_waku{
    padding: 2rem;
    font-size: 1.6rem;
  }
  .white_waku h4{
    font-size: 2.0rem;
  }


}


@media (max-width: 1500px) {
  .mv_txt h2 {
    white-space:normal;
  }
}


#inquiry,
#campaign{
  scroll-margin-top: 120px;
}

.foot_link{
  display: none;
}



.floating-btn {
  position: fixed;
  bottom: -150px;
  left: 80px;
  transition: bottom 0.3s ease;
  z-index: 1000;
}

.floating-btn.show {
  bottom: 10px;
}
.floating-btn .husen {
  top: -1.5rem;
  left: -5rem;
  z-index: 1;
}

@media (max-width: 767px) {
  
  .floating-btn {
    left: 50%;
    transform: translateX(-50%);
    padding: 0 24px;
  }
  
  .floating-btn .husen {
    left: 0;
    top: -4rem;
  }
  
}
