﻿@charset "UTF-8";

/* ページ読み込み中はスムーススクロールを無効化 */
html {
  scroll-behavior: auto;
}

/* ページ読み込み完了後にスムーススクロールを有効化 */
html.loaded {
  scroll-behavior: smooth;
}

/* IDを持つ要素のスクロールマージン */
[id] {
  scroll-margin-top: 115px;
}

body.is-loading * {
  /* アニメーションを一時的に無効化 */
  animation-duration: 0s !important;
  transition-duration: 0s !important;
}

/* フォーカス時のアウトライン(アクセシビリティ) */
*[tabindex="-1"]:focus {
  outline: none;
}

/* ---------------------------------------- *
*   header
* ---------------------------------------- */
header {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: solid 1px #ddd;
  z-index: 9999;
  -moz-user-select: none;
  user-select: none;
  overflow: visible;
  height: 70px;
}

header .logo {
  padding: 15px 10px;
}

.header_wrapper .child_menu_wrap {
  top: 70px;
}

.header_wrap {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.header_wrap .logo_wrap h1 {
  height: 70px;
  padding: 0 10px;
  margin: 0;
}

.header_wrap .logo_wrap img {
  height: 100%;
}


#humburger {
  display: none;
}

.menu_button {
  display: none;
}

.nav_wrap {
  padding: 0;
  color: #000;
  visibility: visible;
  overflow-y: visible;
}

.global_menu>ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.global_menu>ul>li {
  list-style: none;
}


.menu {
  margin-bottom: -7px;
}

.menu>a {
  display: inline-flex;
  color: #1a1a1a;
  align-items: center;
  height: 67px;
  padding: 0 10px;
  text-decoration: none;
  /* background-colorのみtransitionさせる */
  transition: background-color .3s, color .3s;
  box-sizing: border-box;
}


.menu>a:visited {
  color: #000;
}

.menu:hover>a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  position: relative;
}

.menu:hover>a,
.menu:hover>a span {
  color: #21af5a !important;
  /* 文字を緑に */
  transition: color 0.3s;
}

/* 矢印アイコンには下線をつけない */
.menu>a[href="features_top.html"] .fa-chevron-down {
  margin-left: 5px;
  text-decoration: none !important;
}

/* 通常の状態ではリンクを無効化 */
.menu>a[href="features_top.html"] {
  pointer-events: none;
}

.menu>a span {
  display: inline-block;
  line-height: 1.2;
  padding-bottom: 2px;
  position: relative;
  font-weight: 600;
}

.menu>a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  color: #21af5a;
  background-color: #21af5a;
  transition: width 0.2s ease-out;
  /* 0.2秒でシュッと伸びる */
}

.menu:hover>a span::after {
  width: 100%;
}

/* アクティブ状態（常に線を出しておく場合） */
.menu.m--active>a span::after {
  width: 100%;
  background-color: #21af5a;
}

.menu.m--active>a,
.menu.m--active>a span {
  color: #21af5a !important;
  /* 選択中も緑を維持 */
}


/* ホバー時にリンクを有効化 */
.menu:hover>a[href="features_top.html"] {
  pointer-events: auto;
}

/* 子メニューが表示されている間はリンクを維持 */
.menu:hover .child_menu_wrap {
  opacity: 1;
  visibility: visible;
}

.menu>a .fas,
.menu>a .fa-chevron-down {
  margin-left: 5px;
  font-size: 0.6em;
  padding-bottom: 3px;
}

.child_menu_wrap {
  position: fixed;
  top: 110px;
  left: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s top, 0.3s opacity;
}

.child_menu_inner {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}

.child_menu {
  display: flex;
  flex-wrap: wrap;
  color: #333;
  background-color: #FFF;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 0 40px 20px 40px;
}

.child_menu_wrap.m--01 .child_menu {
  position: absolute;
  left: 75px;
  width: 440px;
}

.child_menu_wrap.m--02 .child_menu {
  position: absolute;
  left: 235px;
  width: 280px;
}

.child_menu_wrap.m--03 .child_menu {
  position: absolute;
  left: 295px;
  width: 180px;
}

.child_menu_wrap.m--04 .child_menu {
  position: absolute;
  left: 355px;
  width: 250px;
}

.child_menu_wrap.m--07 .child_menu {
  position: absolute;
  left: 445px;
  width: 210px;
}

.child_menu_wrap.m--05 .child_menu {
  position: absolute;
  left: 530px;
  width: 230px;
}

.child_menu_wrap.m--06 .child_menu {
  position: absolute;
  left: 670px;
  width: 210px;
}

.menu:hover .child_menu_wrap {
  opacity: 1;
  visibility: visible;
}

.child_menu li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #dae3ed;
  text-align: left;
  list-style: none;
}

.child_menu>li>a {
  display: block;
  color: #1a1a1a;
  line-height: 180%;
  text-decoration: none;
  padding: 25px 10px 5px 10px;
}

.child_menu>li a::after {
  position: absolute;
  font-weight: bold;
  color: #21af5a;
  top: 68%;
  right: 20px;
  transform: translateY(-50%);
  content: '\f054';
  font-family: "Font Awesome 5 Free";
}

.child_menu>li>a:visited {
  color: #1a1a1a;
}

.child_menu>li>a>i {
  padding-left: 5px;
}

.child_menu>li>a:hover {
  background: unset;
  color: #21af5a;
}

/* CTA */
.cta_wrap {
  position: absolute;
  top: 0;
  right: 0;
}

.cta_list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  height: 70px;
  padding: 0;
}

.cta_list li {
  margin: 0 5px;
}

.cta_list li:last-of-type {
  margin: 0 10px 0 5px;
}

.cta_item_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: #FFF;
}

.tel_wrap {
  color: #000;
  text-align: right;
}

.tel_wrap a:link {
  display: block;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  margin-top: 5px;
  margin-ringht: -6px;
  transform: scale(0.9);
}

.tel_wrap a i {
  margin-right: 5px;
}

.cta_item_contact a,
.cta_item_order a {
  display: block;
  text-decoration: none;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

.contact_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  background-color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  border: 2px solid #f39025;
  border-radius: 60px;
  padding: 0 15px;
}

.cta_item_contact a:hover .contact_wrap {
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
}

.contact_wrap>i {
  color: #f96c17;
  padding-left: 5px;
}

.contact_wrap .item_text {
  color: #f96c17;
  font-family: "Rounded Mplus 1c";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}

.order_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  background-color: #0064eb;
  text-align: center;
  text-decoration: none;
  border: 2px solid #0064eb;
  border-radius: 60px;
  padding: 0 15px;
}

.cta_item_order a:hover .order_wrap {
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
}

.order_wrap .item_text {
  color: #FFFFFF;
  font-family: "Rounded Mplus 1c";
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.order_wrap .item_text>small {
  position: relative;
  color: #eef856;
  font-size: 12px;
}

.order_wrap .item_text>small::before {
  position: absolute;
  left: -8px;
  top: 0;
  content: "";
  width: 1.5px;
  height: 100%;
  background: #eef856;
  transform: rotate(-40deg);
}

.order_wrap .item_text>small::after {
  position: absolute;
  content: "";
  right: -8px;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: #eef856;
  transform: rotate(40deg);
}

.order_wrap .item_text>span {
  display: block;
  line-height: 1.2;
}

.order_wrap>i {
  color: #FFFFFF;
  padding-left: 5px;
}

.wrapper {
  padding-top: 70px !important;
}

/* ---------------------------------------- *
 *   lphead内ボタン
 *   TOPページ(.lphead_pc_wrapper.m--index)
 * ---------------------------------------- */
.lphead_sp_wrapper.m--index {
  display: none;
}

.lphead_pc_wrapper.m--index .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 1080px;
  height: 640px;
  margin: 0 auto;
}

.lphead_pc_wrapper.m--index .lphead_title {
  position: absolute;
  top: 50px;
  left: 70px;
  z-index: 999;
}

.lphead_pc_wrapper.m--index .lphead_title img {
  width: 575px;
}

.lphead_pc_wrapper.m--index .lphead_choko {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* ---------------------------------------- *
 　　END
 * ---------------------------------------- */

/* ---------------------------------------- *
 *   lphead
 *   「SHISHIとは？」ページ
 * ---------------------------------------- */

.lphead_sp_wrapper.m--lstep {
  display: none;
}

.lphead_pc_wrapper.m--lstep .lphead_wrap {
  position: relative;
  z-index: 0;

  width: min(100% - 40px, 1200px);
  height: 540px;

  margin-inline: auto;
  transform: translateX(-2%);
}

.lphead_pc_wrapper.m--lstep .lphead_title {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 999;
}

.lphead_pc_wrapper.m--lstep .lphead_title h1 {
  color: #FFFFFF;
  font-size: 46px;
  font-weight: 900;
  line-height: 140%;
  text-align: left;
  padding: 0;
  margin: 0;
  text-shadow: 0px 0px 8px rgb(6 101 90 / 80%);
}

/* ---------------------------------------- *
 　　END
 * ---------------------------------------- */


/* ---------------------------------------- *
 *   lphead
 *   TOPページ以外
 * ---------------------------------------- */

.lphead_sp_wrapper.m--accompaniment {
  display: none;
}

.lphead_pc_wrapper.m--accompaniment .lphead_wrap {
  position: relative;
  z-index: 0;
  max-width: 1080px;
  height: 640px;
  margin: 0 auto;
}

.lphead_pc_wrapper.m--accompaniment .lphead_title {
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 999;
}

.lphead_pc_wrapper.m--accompaniment .lphead_title h1 {
  padding: 0;
  margin: 0;
}

.lphead_pc_wrapper.m--accompaniment .lphead_title img {
  width: 95%;
}

.lphead_pc_wrapper.m--accompaniment .lphead_choko {
  position: absolute;
  right: -90px;
  bottom: 0;
}

.lphead_pc_wrapper.m--accompaniment .lphead_choko img {
  width: 105%;
}

/* ---------------------------------------- *
 　　END
 * ---------------------------------------- */

/* ---------------------------------------- *
 *   contents内ボタン
     TOPページ、その他ページ
 * ---------------------------------------- */
.lphead_wrapper {
  position: relative;
}

.lphead_sp_wrapper {
  display: none;
}

.lphead_pc_wrapper.m--contents .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 980px;
  height: 80px;
  margin: 0 auto;
  text-align: center;
}

.lphead_pc_wrapper.m--other .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 150px;
  margin: 0 auto;
  text-align: center;
}

/* ---------------------------------------- *
 　　END
 * ---------------------------------------- */


/* ---------------------------------------- *
 　　button_list
 * ---------------------------------------- */

/* lphead内buttonエリア(.button_list_wrap.m--index)*/
.button_list_wrap.m--index {
  position: absolute;
  left: 40px;
  bottom: 12px;
  z-index: 99;
}


.button_list_wrap.m--accompaniment {
  position: absolute;
  left: 40px;
  bottom: 30px;
  z-index: 99;
}

.button_list_wrap.m--accompaniment p {
  font-size: 14px;
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding: 0 0;
  margin: 0;
}

/* contents内buttonエリア(.button_list_wrap.m--contents)*/
.button_list_wrapper {
  position: relative;
}

.button_list_wrap.m--contents.m--margin {
  position: relative;
  width: 780px;
  min-height: 150px;
  margin: 40px auto 60px auto;
  padding: 0;
}

.button_list_wrap.m--lp.m--partner {
  position: relative;
  bottom: 0;
  left: 0;
  width: 780px;
  margin: 0 auto;
  padding: 0;
}

.button_list_wrap.m--lp.m--accompaniment {
  position: relative;
  width: 780px;
  min-height: 150px;
  margin: 40px auto 60px auto;
  padding: 0;
}

.button_list_wrap.m--contents {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  width: 100%;
}

.button_list_wrap.m--contents.m--nomargin {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 20px 0;
}

/* lphead内buttonエリア
   「SHISHIとは？」ページ用
---------------------------------------- */

.button_list_wrap.m--lp.m--lstep {
  position: absolute;
  left: 10px;
  top: 56%;
  z-index: 99;
  width: auto;
}

.button_list_wrap.m--lp.m--lstep .button_text {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 26px);
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgb(6 101 90 / 80%);
}

.button_list_wrap.m--lp.m--lstep .button_list {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.button_list_wrap.m--lp.m--lstep .button_list li {
  width: auto;
}

.button_list_wrap.m--lp.m--lstep .button_wrap {
  width: 320px;
  /* お好みで 260〜320px 調整 */
}

.point_dl.m--plus {
  padding-top: 10px;
}


/* 「SHISHIとは？」ページ用 ex_link
---------------------------------------- */
.plus_box {
  padding: 28px 32px;
  text-align: center;
}

.plus_label {
  display: inline-block;
  color: #00c853;
  margin: 0 0 8px;
}

.plus_box h2 {
  font-size: 28px;
  margin: 0 0 14px;
}

.plus_box p {
  margin: 0 0 20px;
}

.ex_link.m--lstep-about {
  text-align: center;
  margin: 0;
  padding: 0;
}

.ex_link.m--lstep-about a {
  text-decoration: underline;
  font-size: 16px;
}

.ex_link.m--lstep-about a i {
  text-decoration: none !important;
  padding-right: 2px;
}

/* ---------------------------------------- *
 * aboutページ途中 CTAボタン
 * ---------------------------------------- */

.page_subtitlegrad.m--lstep-about-cta {
  padding: 45px 20px;
}

.button_list_wrap.m--lstep-about-cta {
  width: min(92%, 900px);
  margin: 0 auto;
}

.button_list_wrap.m--lstep-about-cta .button_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.button_list_wrap.m--lstep-about-cta .button_list li {
  width: min(100%, 390px);
}

.button_list_wrap.m--lstep-about-cta .button_wrap {
  width: 100%;
}

/* lpページ用のlphead内buttonエリア(.button_list_wrap.m--lp)*/
.button_list_wrap.m--lp {
  position: absolute;
  left: 40px;
  bottom: 40px;
}

/* セキュリティへの取り組みページcontents内buttonエリア(.button_list_wrap.m--lp.m--security)*/
.button_list_wrap.m--lp.m--security {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
}


/* *********************** */
/*    orange＆blue button    */
/* *********************** */
.button_list_wrap .button_list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  list-style: none;
  padding: 0;
  margin: 0;
}


.button_list_wrap .button_list li {
  padding: 0;
  margin-right: 20px;
}

.button_list_wrap .button_list li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}


.button_list_wrap .button_list li .button_wrap {
  position: relative;
  width: 380px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* orange */
.button_list_wrap .button_wrap.m--orange {
  background-color: #FFFFFF;
  color: #f96c17;
  font-family: "Rounded Mplus 1c";
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #f39025;
  border-radius: 60px;
  box-sizing: border-box;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.button_list_wrap .button_wrap.m--orange:hover {
  opacity: revert;
  background: -moz-linear-gradient(45deg, #f39025 0%, #f96c17 100%);
  background: -webkit-linear-gradient(45deg, #f39025 0%, #f96c17 100%);
  background: linear-gradient(45deg, #f39025 0%, #f96c17 100%);
  color: #FFFFFF;
  border: solid 2px #FFFFFF;
}

.button_list_wrap .button_wrap.m--orange .button_label_wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.button_list_wrap .button_wrap.m--orange .button_label {
  letter-spacing: 2px;
}

.button_list_wrap .button_wrap.m--orange:hover .button_label {
  color: #FFFFFF;
}

.button_list_wrap .button_wrap.m--orange .button_icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.button_list_wrap .button_wrap.m--orange .button_icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #f96c17;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.button_list_wrap .button_wrap.m--orange .button_icon::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 3px #fff;
  border-right: solid 3px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

.button_list_wrap .button_wrap.m--orange:hover .button_icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.button_list_wrap .button_wrap.m--orange:hover .button_icon::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 3px #f39025;
  border-right: solid 3px #f39025;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

/* blue */
.button_list_wrap .button_wrap.m--blue {
  background-color: #0064eb;
  background: -moz-linear-gradient(45deg, #02c0fc 0%, #0064eb 100%);
  background: -webkit-linear-gradient(45deg, #02c0fc 0%, #0064eb 100%);
  background: linear-gradient(45deg, #02c0fc 0%, #0064eb 100%);
  color: #FFFFFF;
  font-family: "Rounded Mplus 1c";
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  border: 2px solid #FFFFFF;
  border-radius: 60px;
  box-sizing: border-box;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.button_list_wrap .button_wrap.m--blue:hover {
  opacity: revert;
  background: #FFFFFF;
  color: #0064eb;
  border: solid 2px #0064eb;
}

.button_list_wrap .button_wrap.m--blue .button_label_wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.button_list_wrap .button_wrap.m--blue .button_label {
  letter-spacing: 2px;
}

.button_list_wrap .button_wrap.m--blue:hover .button_label {
  color: #0064eb;
}

.button_list_wrap .button_wrap.m--blue .button_icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.button_list_wrap .button_wrap.m--blue .button_icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.button_list_wrap .button_wrap.m--blue .button_icon::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 3px #0064eb;
  border-right: solid 3px #0064eb;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

.button_list_wrap .button_wrap.m--blue:hover .button_icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #0064eb;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.button_list_wrap .button_wrap.m--blue:hover .button_icon::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 3px #FFFFFF;
  border-right: solid 3px #FFFFFF;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

/* buttonの吹き出し */
/* orange */
.button_list_wrap .button_wrap.m--orange .button_balloon {
  position: absolute;
  top: -20px;
  width: 65%;
  display: inline-block;
  color: #FFFFFF;
  font-size: 14px;
  background-color: #f39025;
  padding: 4px 10px;
  border: solid 2px #FFFFFF;
  border-radius: 20px;
}

.button_list_wrap .button_wrap.m--orange:hover .button_balloon {
  color: #f96c17;
  background: #FFFFFF;
  border: solid 2px #f39025;
}

.button_list_wrap .button_wrap.m--orange .button_balloon::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  background-color: #f39025;
  rotate: 135deg;
  translate: -50%;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
}

.button_list_wrap .button_wrap.m--orange:hover .button_balloon::before {
  background-color: #FFFFFF;
  border-top: solid 2px #f96c17;
  border-right: solid 2px #f96c17;
}

.button_list_wrap .button_wrap.m--orange .button_balloon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #f96c17 #f96c17 transparent transparent;
  background-color: #ffffff;
  rotate: 135deg;
  translate: -50%;
}

.button_list_wrap .button_wrap.m--orange .button_balloon_label {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.button_list_wrap .button_wrap.m--orange .button_balloon_label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1.5px;
  height: 100%;
  background: #FFFFFF;
  transform: rotate(-45deg);
}

.button_list_wrap .button_wrap.m--orange .button_balloon_label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: #FFFFFF;
  transform: rotate(45deg);
}

.button_list_wrap .button_wrap.m--orange:hover .button_balloon_label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1.5px;
  height: 100%;
  background: #f96c17;
  transform: rotate(-45deg);
}

.button_list_wrap .button_wrap.m--orange:hover .button_balloon_label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: #f96c17;
  transform: rotate(45deg);
}


/* buttonの吹き出し */
/*blue*/
.button_list_wrap .button_wrap.m--blue .button_balloon {
  position: absolute;
  top: -20px;
  width: 70%;
  display: inline-block;
  color: #0064eb;
  font-size: 14px;
  background-color: #FFFFFF;
  padding: 4px 10px;
  border: solid 2px #0064eb;
  border-radius: 20px;
}

.button_list_wrap .button_wrap.m--blue:hover .button_balloon {
  color: #FFFFFF;
  background: #0064eb;
  border: solid 2px #FFFFFF;
}

.button_list_wrap .button_wrap.m--blue .button_balloon::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  rotate: 135deg;
  translate: -50%;
  border-top: solid 2px #0064eb;
  border-right: solid 2px #0064eb;
}

.button_list_wrap .button_wrap.m--blue:hover .button_balloon::before {
  background-color: #0064eb;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
}

.button_list_wrap .button_wrap.m--blue .button_balloon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 15px;
  height: 15px;
  box-sizing: border-box;
  border: 2px solid;
  border-color: #FFFFFF #FFFFFF transparent transparent;
  background-color: #0064eb;
  rotate: 135deg;
  translate: -50%;
}

.button_list_wrap .button_wrap.m--blue .button_balloon_label {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.button_list_wrap .button_wrap.m--blue .button_balloon_label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1.5px;
  height: 100%;
  background: #0064eb;
  transform: rotate(-45deg);
}

.button_list_wrap .button_wrap.m--blue .button_balloon_label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: #0064eb;
  transform: rotate(45deg);
}

.button_list_wrap .button_wrap.m--blue:hover .button_balloon_label::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 1.5px;
  height: 100%;
  background: #FFFFFF;
  transform: rotate(-45deg);
}

.button_list_wrap .button_wrap.m--blue:hover .button_balloon_label::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1.5px;
  height: 100%;
  background: #FFFFFF;
  transform: rotate(45deg);
}


/* ------------------------------------------------ *
 *   CTA(#ctabox)
 * ------------------------------------------------ */
#ctabox {
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
  background-image: none;
  background-size: cover;
  background-image: none;
  background: rgb(87, 177, 90);
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
}

.ctabox_title {
  margin: 0 auto;
  padding: 0 0 20px 0;
  color: #FFFFFF;
  font-size: 45px;
  font-weight: 900;
  text-align: center;
  line-height: 140%;
  font-family: "Rounded Mplus 1c";
}

.ctabox_list_wrap {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 0 0;
}

.ctabox_list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-around;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ctabox_list li {
  width: calc(100% / 3 - 30px);
  background-color: #FFFFFF;
  border-radius: 8px;
}

.ctabox_list li a,
.ctabox_list li a:link,
.ctabox_list li a:visited {
  color: inherit;
  box-sizing: border-box;
  cursor: pointer;
  transition: color .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

.ctabox_item_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
}

.ctabox_list li a:hover .ctabox_item_wrap {
  box-shadow: 12px 24px 32px rgba(0, 0, 0, .32);
}

.ctabox_item_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #00cd3f;
  border: solid 2px #00cd3f;
  margin: 0 auto 30px auto;
  border-radius: 50%;
  transition: color .3s ease, box-shadow .3s ease;
}

.ctabox_list li a:hover .ctabox_item_icon {
  background-color: #FFF;
}

.ctabox_item_icon i {
  color: #FFF;
  font-size: 40px;
}

.ctabox_list li a:hover .ctabox_item_icon i {
  color: #00cd3f;
  font-size: 40px;
}


.ctabox_item_text h3 {
  margin: 0;
  padding: 0 0 30px 0;
  font-size: 23px;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
}

.ctabox_list li a:hover .ctabox_item_text h3 {
  color: #00cd3f;
}

.ctabox_item_text p {
  font-size: 16px;
  line-height: 180%;
  margin: 0 0 30px 0;
}

.ctabox_item_sub {
  margin: 0 auto;
  padding: 0 0 10px 0;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 140%;
}


.ctabox_list li a:hover .ctabox_item_text p {
  color: #00cd3f;
}


.ctabox_item_button {
  width: 80%;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  background-color: #f39025;
  border: 2px solid #f39025;
  border-radius: 60px;
  padding: 10px;
}

.ctabox_list li a:hover .ctabox_item_button {
  background-color: #ffa500;
  border: 2px solid #ffa500;
}

.m--accompaniment-ctabox {
  margin: 0;
  padding: 0;
}

.button_list_wrap.m--accompaniment-ctabox {
  position: relative;
}

/* 電話お問い合わせセクション */
.ctabox_tel_wrap {
  width: calc(1040px - 30px);
  background-color: #FFFFFF;
  border-radius: 8px;
  margin: 30px auto;
  padding: 30px 20px;
}

.ctabox_tel_label {
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  line-height: 140%;
  font-family: "Rounded Mplus 1c";
  margin: 0 0 15px 0;
}

.ctabox_tel_number,
.ctabox_tel_number:link,
.ctabox_tel_number:active,
.ctabox_tel_number:visited {
  display: inline-block;
  color: #157efb;
  font-size: 56px;
  font-weight: 900;
  line-height: 120%;
  font-family: "Rounded Mplus 1c";
  text-decoration: none;
}

.ctabox_tel_number:hover {
  color: #00cd3f;
}

.ctabox_tel_hours {
  color: #000;
  font-size: 16px;
  font-weight: 900;
  margin: 0;
}

.ctabox_tel_note {
  color: #000;
  font-size: 16px;
  line-height: 180%;
  margin-top: 30px;
}

.ctabox_tel_note a,
.ctabox_tel_note a:link,
.ctabox_tel_note a:active,
.ctabox_tel_note a:visited {
  color: #157efb;
  text-decoration: underline;
}

.ctabox_tel_note a:hover {
  color: #157efb;
  text-decoration: none;
}

.ctabox_tel_closing {
  color: #000;
  font-size: 16px;
  line-height: 180%;
  margin-top: 30px;
}



/* ---------------------------------------- *
 　　END
 * ---------------------------------------- */

/* ------------------------------------------------ *
 *   lpページ(.lphead_pc_wrapper.m--lp)
 * ------------------------------------------------ */

.lp_page {
  position: relative;
  width: 1080px;
  min-height: 150px;
  margin: 0 auto 60px auto;
  padding: 0;
}

.lp_page.m--nomargin {
  width: 100%;
  margin: 0 auto 60px auto;
}

.lp_page.m--bg {
  width: 100%;
  background-color: #fcf8ef;
  margin: 0 auto;
  padding: 1px 0 1px 0;
}

.lp_page.m--bg .lp_contents>p {
  width: 780px;
  margin: 1em auto;
}

.lp_page.m--bg.m--margin {
  padding: 1px 0 5px 0;
}

.lp_page.m--width100 {
  width: 100%;
}

.page_subtitlegrad {
  position: relative;
  color: #FFFFFF;
  font-size: 45px;
  font-weight: 900;
  text-align: center;
  font-family: "Rounded Mplus 1c";
  padding: 20px 10px;
  background-image: none;
  background-size: cover;
  background-image: none;
  background: rgb(87, 177, 90);
  background: linear-gradient(130deg, rgba(0, 121, 143, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(87, 177, 90, 1) 100%);
  background: -moz-linear-gradient(130deg, rgba(0, 121, 143, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(87, 177, 90, 1) 100%);
  background: -webkit-linear-gradient(130deg, rgba(0, 121, 143, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(87, 177, 90, 1) 100%);
  background: linear-gradient(130deg, rgba(0, 121, 143, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(87, 177, 90, 1) 100%);
  margin: 0;
}

.page_subtitlegrad .caption {
  display: block;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 1px;
}

.lp_contents {
  width: 1080px;
  margin: 0 auto;
}

.check_wrap {
  display: flex;
  margin-top: 20px;
}

.check_wrap .photo {
  width: 35%;
  margin-right: 2%;
}

.check_wrap .check {
  width: 63%;
}

.reason_title {
  margin: 60px 0 10px 0;
  padding: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  text-align: center;
  font-family: "Rounded Mplus 1c";
}

.reason_line {
  width: 24px;
  margin: 10px auto 60px auto;
  height: 2px;
  background-color: #20af5a !important;
}

.lp_list_wrap {
  margin: 20px 0 60px 0;
}

.lp_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.lp_list>li {
  position: relative;
  margin: 10px 5px;
  color: #000000;
  transition: .3s;
  padding: 10px;
  border: solid 2px #20af5a;
  background-color: #FFFFFF;
}

.lp_list.m--col2>li {
  width: calc(100% / 2 - 35px);
}

.lp_list.m--col3>li {
  width: calc(100% / 3 - 35px);
}


.lp_item.m--flex {
  display: flex;
}

.lp_item.m--flex .photo {
  width: 50%;
  margin: 0 2% 0 0;
}

.lp_item.m--flex .text {
  width: 100%;
}

.lp_item h4 {
  margin: 0;
  padding: 0;
  min-height: 2.5em;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
  text-align: center;
  color: #20af5a;
}

.lp_item.m--flex h4 {
  text-align: left;
}

.lp_item p {
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 160%;
  white-space: normal;
}

.lp_item.m--flex p {
  margin: 0;
  padding: 5px 0 0 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 160%;
  white-space: normal;
}

.lp_item .caption {
  font-size: 10px;
  color: #000;
}

.lp_item .caption.m--right {
  display: block;
  text-align: right;
  margin: 0;
  padding: 8px 0 0 0;
}

.lp_item .photo {
  margin: 0;
}

.flow_list_wrap {
  width: 100%;
  margin-top: 60px;
}

.flow_list {
  list-style: none;
  padding: 0;
}

.flow_list>li {
  width: 100%;
  margin-bottom: 30px;
}

.flow_list>li i {
  display: block;
  color: #20af5a;
  font-size: 50px;
  text-align: center;
}

.flow_item {
  position: relative;
  display: flex;
  width: 100%;
  background-color: #f3f3f3;
  padding: 20px 0;
}

.flow_item .title {
  width: 20%;
  min-height: 2.5em;
  font-size: 18px;
  font-weight: bold;
  line-height: 150%;
  color: #20af5a;
  ;
  text-align: center;
  font-family: "Rounded Mplus 1c";
}

.flow_item .title .img_no {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 60px;
  margin-bottom: 20px;
}

.flow_item .title span {
  position: absolute;
  left: 25px;
}

.flow_item .text {
  width: 76%;
  margin: 0 2%;
}

.flow_item .text p {
  font-size: 16px;
  line-height: 170%;
}

.introduction_wrap {
  margin: 0 auto;
  padding: 15px 0;
  background-image: url("/img/business/council-training-20260716.jpg");
  background-position: top center;
  background-repeat: no-repeat;
  text-align: center;

}

.introduction_wrap_wh {
  margin: 0 auto;
  padding: 15px 0;
  background-color: #FFFFFF;
  text-align: center;
}

.introduction_wrap_wh img {
  width: 100%;
  max-width: 720px;
}

.introduction_wrap_wh .caption {
  max-width: 720px;
  margin: 15px auto 0;
}

.introduction_wrap_wh .caption p {
  display: flex;
  align-items: flex-start;
  margin: 0 0 8px;
  font-size: 0.8em;
  line-height: 1.3em;
  text-align: left;
}

.introduction_wrap_wh .caption .note {
  flex: 0 0 2.6em;
  min-width: 2.6em;
}

.introduction_wrap_wh .caption .note_text {
  flex: 1;
  line-height: 1.5;
}

.introduction_box {
  max-width: 1080px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 0;

}

.introduction_box img {
  width: 100%;
  max-width: 420px;
}

.introduction_left {
  width: 48%;
  align-items: center;
}

.introduction_right {
  width: 48%;
  text-align: left;
  align-items: center;
}

.introduction_right .caption {
  margin: 5px 0;
}

.introduction_right .caption p {
  display: flex;
  align-items: flex-start;
  margin: 0 0 10px;
  font-size: 0.7em;
  line-height: 1.3em;
  letter-spacing: 1px;
}

.introduction_right .caption .note {
  flex: 0 0 2.4em;
  min-width: 2.4em;
}

.introduction_right .caption .note_text {
  flex: 1;
}

.introduction_list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  list-style: none;
  padding: 0;
}

.introduction_list li {
  margin: 0 10px 20px 10px;
}

.lp_contents .cs_box {
  width: 1080px;
}

.point_list_wrap {
  width: 900px;
  margin: 0 auto;
}

.point_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.point_list.m--col2>li {
  position: relative;
  width: calc(100% / 2 - 30px);
  margin: 0;
  border-bottom: solid 2px #00c853;
  transition: .3s;
}

.point_list>li a {
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 22px;
  line-height: 180%;
  padding: 30px 0;
  text-decoration: none;
  cursor: pointer;
}

.point_list>li a:hover {
  opacity: 0.7;
}

.point_item_no {
  color: #00c853;
  font-size: 24px;
  line-height: 140%;
  margin-right: 15px;
}

.point_item_title {
  color: #000;
  font-size: 22px;
  line-height: 140%;
}

.point_item_title i {
  position: absolute;
  right: 0;
  color: #00c853;
  line-height: 140%;
}


.point_dl_wrap {
  width: calc(900px - 140px);
  margin: 70px auto;
  background-color: #FFFFFF;
  padding: 40px 70px;
}

.point_dl {
  border-bottom: solid 2px #00c853;
}

.point_dl_wrap dl:last-of-type {
  border-bottom: none;
}

.point_dt {
  margin-bottom: 20px;
}

.point_dt_no img {
  width: 150px;
}

.point_dt h3 {
  margin: 40px 0;
}

.point_dt .point_dt_title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 10px;
}

.point_dd {
  margin: 0;
}

.point_col_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.point_col_list.m--col2>li {
  position: relative;
  width: calc(100% / 2 - 40px);
  margin-bottom: 40px;
}

.point_col_item .text {
  font-size: 18px;
}

.point_col_item .text h4 {
  color: #00c853;
  font-size: 18px;
  min-height: 3.0em;
  margin-bottom: 20px;
}

.point_col_item .text p {
  font-size: 16px;
  line-height: 180%;
}


/* ---------------------------------------- *
 *   list&detailページ
 * ---------------------------------------- */
/* listページ(download_list.html,seminar_list.html)*/
.article_wrap.m--seminar a:link,
.article_wrap.m--seminar a:hover,
.article_wrap.m--seminar a:visited,
.article_wrap.m--seminar a:active,
.article_wrap.m--download a:link,
.article_wrap.m--download a:hover,
.article_wrap.m--download a:visited,
.article_wrap.m--download a:active {
  color: inherit !important;
  text-decoration: none !important;
}

.article_wrap.m--seminar .ctabox_tel_wrap>a:link,
.article_wrap.m--seminar .ctabox_tel_wrap>a:visited,
.article_wrap.m--seminar .ctabox_tel_wrap>a:active,
.article_wrap.m--download .ctabox_tel_wrap>a:link,
.article_wrap.m--download .ctabox_tel_wrap>a:visited,
.article_wrap.m--download .ctabox_tel_wrap>a:active {
  color: #157efb !important;
  text-decoration: none !important;
}

.article_wrap.m--seminar .ctabox_tel_wrap>a:hover,
.article_wrap.m--download .ctabox_tel_wrap>a:hover {
  color: #00cd3f !important;
}

.article_wrap.m--seminar .ctabox_tel_note>a:link,
.article_wrap.m--seminar .ctabox_tel_note>a:visited,
.article_wrap.m--seminar .ctabox_tel_note>a:active,
.article_wrap.m--download .ctabox_tel_note>a:link,
.article_wrap.m--download .ctabox_tel_note>a:visited,
.article_wrap.m--download .ctabox_tel_note>a:active {
  color: #157efb !important;
  text-decoration: underline !important;
}

.article_wrap.m--seminar .ctabox_tel_note a:hover,
.article_wrap.m--download .ctabox_tel_note a:hover {
  color: #157efb !important;
  text-decoration: none !important;
}

/* listページ(download_list.html,seminar_list.html)*/
.article_wrap .page_title_wrap.m--bggrad {
  padding: 60px 0 40px 0;
  background: rgb(87, 177, 90);
  background: linear-gradient(130deg, #4bab64 0%, #018f81 50%, #007e8d 100%);
  background: -moz-linear-gradient(130deg, #4bab64 0%, #018f81 50%, #007e8d 100%);
  background: -webkit-linear-gradient(130deg, #4bab64 0%, #018f81 50%, #007e8d 100%);
  background: linear-gradient(130deg, #4bab64 0%, #018f81 50%, #007e8d 100%);
  margin: 0;
}

.article_wrap .page_title_wrap.m--bggrad>p.center {
  font-size: 24px;
  font-family: "Rounded Mplus 1c";
  font-weight: normal;
  margin-top: 40px;
}

.section_wrap {
  background-color: #FFFFFF;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section_wrap-seminar {
  background-color: #FFFFFF;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 60px;
}

.section_wrap.m--bg {
  width: 100%;
  background-color: #f3f3f3;
  margin: 0 auto;
  padding: 1px 0 20px 0;
}

.section_inner {
  position: relative;
  width: 900px;
  min-height: 150px;
  margin: 40px auto 60px auto;
  padding: 0;
}

.section_inner.m--w760 {
  width: 760px;
}

.section_inner.m--w900 {
  width: 900px;
}

.section_inner.m--w1080 {
  width: 1080px;
}


/* seminar_list,download_list.htmlのカラムCSS共通 */
.col_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.col_list.m--col1>li {
  position: relative;
  width: 100%;
  margin: 5px 15px 50px 15px;
  color: #000000;
}

.col_list.m--col2>li {
  position: relative;
  width: calc(100% / 2 - 200px);
  margin: 5px 15px 50px 15px;
  color: #000000;
}

.col_list.top--col2>li {
  position: relative;
  width: calc(100% / 2 - 120px);
  margin: 5px 10px 20px 10px;
  color: #000000;
}

.col_list.m--col3>li {
  position: relative;
  display: grid;
  width: calc(100% / 3 - 30px);
  margin: 5px 15px 50px 15px;
  color: #000000;
}

.col_list.m--col4>li {
  position: relative;
  display: grid;
  width: calc(100% / 4 - 10px);
  margin: 5px 5px 50px 5px;
  color: #000000;
}

.col_list>li a {
  text-decoration: none;
}

.col_list>li .col_item {
  display: block;
  background-color: #FFFFFF;
  border: solid 2px #BBBBBB;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
}

.col_list>li .col_item:visited * {
  color: #000000;
}

/* seminar_list.html */
/* 「開催予定のセミナー」のカラム2,3つ場合（上部画像、中部タイトル、テキスト、下部ボタン） */
.col_list.m--seminar01 .col_item_header {
  position: relative;
}

.col_list.m--seminar01 .col_item_header .image_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--seminar01 .col_item_header .image_wrap>img {
  width: 100%;
  height: auto;
  /* 比率を保ちながら幅を統一 */
  display: block;
  /* 不要なスペースを削除 */
  margin: 0 auto;
  /* 画像を中央揃え */
}

.col_list.col_list.m--seminar01 a:hover .image_wrap>img {
  transform: scale(1.05);
  transition-duration: 0.8s;
}

.col_list.m--seminar01 .col_item_header .title {
  font-size: 14px;
  margin: 10px;
  height: 100px;
}

.col_list.m--seminar01 .col_item_body {
  margin: 0 10px;
}

.col_item_body img {
  width: 100%;
  height: auto;
  display: block;
}

.col_list.m--seminar01 .col_item_body .date {
  margin-bottom: 20px;
}

.col_list.m--seminar01 .col_item_body .place {
  min-height: 10px;
}

.col_list.m--seminar01 .col_item_body .label {
  display: block;
  width: 4em;
  padding: 0px 2px;
  color: #00c853;
  text-align: center;
  border: solid 1px #00c853;
  margin-bottom: 6px;
}

.col_list.m--seminar01 .col_item_footer {
  padding: 0 10px;
}

.col_list.m--seminar01 .col_item_footer .btn_list {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 20px;
  text-align: center;
  list-style: none;
}

/* 「開催予定のセミナー」のカラム１の場合（左側に画像、右側にテキスト、ボタン）*/
.col_list.m--seminar01 .col_item.m--flex {
  display: flex;
}

.col_list.m--seminar01 .col_item_left {
  position: relative;
  width: 50%
}

.col_list.m--seminar01 .col_item_left .image_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--seminar01 .col_item_left .image_wrap>img {
  width: 100%;
}

.col_list.col_list.m--seminar01 a:hover .image_wrap>img {
  transform: scale(1.05);
  transition-duration: 0.8s;
}

.col_list.m--seminar01 .col_item_right {
  width: 48%;
  margin: 15px;
}

.col_list.m--seminar01 .col_item_right .title {
  font-size: 18px;
  margin: 0;
  padding-bottom: 15px;
}

.col_list.m--seminar01 .col_item_right .date {
  margin-bottom: 15px;
}

.col_list.m--seminar01 .col_item_right .place {
  min-height: 74px;
}

.col_list.m--seminar01 .col_item_right .label {
  display: block;
  width: 4em;
  padding: 0px 2px;
  color: #00c853;
  text-align: center;
  border: solid 1px #00c853;
  margin-bottom: 6px;
}

.col_list.m--seminar01 .col_item_right .btn_list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  list-style: none;
}

.col_list.m--seminar01 .btn_list>li .detail_btn {
  display: block;
  width: 80%;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-size: 20px;
  font-weight: 600;
  background-color: #f39025;
  border: 2px solid #f39025;
  border-radius: 60px;
  box-shadow: 1px 3px #d5d4d4;
  padding: 8px;
}

.col_list.m--seminar01 .col_item>a:hover .btn_list>li .detail_btn {
  background-color: #ffa500;
  border: 2px solid #ffa500;
  box-shadow: 0 5px 8px 2px rgba(0, 0, 0, .14);
  transform: translateY(-1px);
}

/* セミナー日程調整中のデザイン対応（リンク全体オフ） */
.col_list.m--seminar01 a.a-off,
.col_list.m--seminar01 a.a-off:visited,
.col_list.m--seminar01 a.a-off:active,
.col_list.m--seminar01 a.a-off:hover {
  pointer-events: none !important;
  cursor: not-allowed !important;
  text-decoration: none !important;
}

.col_list.m--seminar01 a.a-off .col_item {
  background: #f5f5f5 !important;
  border: 2px solid #ccc !important;
  box-shadow: none !important;
}

/* オフ状態のボタンスタイル */
.col_list.m--seminar01 a.a-off .btn_list>li .detail_btn,
.col_list.m--seminar01 a.a-off .btn_list>li .detail_btn.off {
  pointer-events: none !important;
  cursor: not-allowed !important;
  background: #ccc !important;
  color: #888 !important;
  border: 2px solid #ccc !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transform: none !important;
}

/* ホバー効果の無効化 */
.col_list.m--seminar01 a.a-off:hover .image_wrap>img {
  transform: none !important;
  transition: none !important;
}

.col_list.m--seminar01 a.a-off:hover .btn_list>li .detail_btn {
  background: #ccc !important;
  border: 2px solid #ccc !important;
  box-shadow: none !important;
  transform: none !important;
}

/*SHISHI導入後の方限定定期開催セミナー*/
.col_list.m--seminar02>li .col_item {
  display: flex;
}

.col_list.m--seminar02 .col_item_left {
  width: 50%;
}

/* カラム内img*/
.col_list.m--seminar02 .col_item_left .image_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--seminar02 .col_item_left .image_wrap>img {
  width: 100%;
  height: auto;
  /* 比率を保ちながら幅を統一 */
  display: block;
  /* 不要なスペースを削除 */
  margin: 0 auto;
  /* 画像を中央揃え */
}

.col_list.m--seminar02 .col_item_right {
  width: calc(100% - 50% - 20px);
  margin: 20px;
}

.col_list.m--seminar02 .col_item_right .title {
  min-height: 50px;
  margin: 0 0 10px 0;
}

.col_list.m--seminar02 .col_item_right .date {
  min-height: 74px;
  margin-bottom: 10px;
}

.col_list.m--seminar02 .col_item_right .label {
  display: block;
  width: 4em;
  padding: 0px 2px;
  color: #00c853;
  text-align: center;
  border: solid 1px #00c853;
  margin-bottom: 6px;
}

/* 過去のセミナー */
.col_list.m--seminar03 .col_item {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
}

.col_list.m--seminar03 .col_item_header {
  position: relative;
}

/* カラム内img*/
.col_list.m--seminar03 .col_item_header .image_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--seminar03 .col_item_header .image_wrap>img {
  width: 100%;
  height: auto;
  /* 比率を保ちながら幅を統一 */
  display: block;
  /* 不要なスペースを削除 */
  margin: 0 auto;
  /* 画像を中央揃え */
}

.col_list.m--seminar03 .col_item_header .title {
  min-height: 75px;
  margin: 10px 10px 20px;
}

.col_list.m--seminar03 .col_item_body {
  padding: 0 10px 20px 10px;
}

/* download_list.html */
/* SHISHIサービス概要説明資料 */
.article_wrap.m--download .section_inner.m--w760 {
  margin: 0 auto;
}

.col_list.m--download01.m--col1>li {
  margin: 0 auto;
}

.col_list.m--download01.m--col1>li .col_item {
  display: block;
  background-color: #FFFFFF;
  border: none;
  box-shadow: none
}

/* カラム内img*/
.col_list.m--download01 .col_item_body .image_wrap>figcaption {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--download01 .col_item_body .image_wrap>figcaption>h2 {
  margin: 0 0 40px 0;
  padding: 0;
  font-size: 32px;
  line-height: 150%;
  text-align: center;
}

.col_list.m--download01 .col_item_body .image_wrap>figcaption>p {
  margin: 0 0 20px 0;
  padding: 0 10px 0;
  font-size: 16px;
  line-height: 180%;
  text-align: left;
  font-size: 14px;
}

.col_list.m--download01 .col_item_body .image_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--download01 .col_item_body .image_wrap>img {
  width: 100%;
  height: auto;
  /* 比率を保ちながら幅を統一 */
  display: block;
  /* 不要なスペースを削除 */
  margin: 0 auto;
  /* 画像を中央揃え */
  margin-top: 10px;
}

.col_list.col_list.m--download01 a:hover>.image_wrap>img {
  transform: scale(1.05);
  transition-duration: 0.8s;
}

.col_list.m--download01 .col_item_footer {
  padding: 40px 0 0 0;
}

.col_list.m--download01 .col_item_footer .btn_list {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.col_list.m--download01 .btn_list {
  color: #f96c17;
}

.col_list.m--download01 .btn_list>li .btn {
  display: inline-block;
  color: #f96c17;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-size: 24px;
  font-weight: 600;
  background-color: #FFFFFF;
  border: 2px solid #f39025;
  border-radius: 60px;
  padding: 10px 40px;
}

.col_list.m--download01 .btn_list>li .btn:hover {
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
  opacity: 1;
}

/* 資料紹介 */
/* タブ切り替え */
.article_wrap.m--download .tabs_wrap {
  margin: 60px auto 0 auto;
  overflow-x: auto;
  text-align: center;
}

.tab_item {
  position: relative;
  width: 150px;
  display: inline-block;
  color: #999;
  padding: 10px 14px;
  text-decoration: none;
  background-color: #FFF;
  border: 1px solid #ccc;
  border-bottom: 1px solid #FFF;
  border-radius: 8px 8px 0 0;
  font-size: 14px;
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  background-color: #FFF;
  padding: 0 50px 50px 50px;
  border-top: 2px solid #20af5a;
}

#all:checked~#all_content,
#tab1:checked~#tab1_content,
#tab2:checked~#tab2_content,
#tab3:checked~#tab3_content {
  display: block;

}

.tabs_wrap input:checked+.tab_item {
  border-radius: 6px 6px 0 0;
  font-weight: bold;
  color: #20af5a;
  background-color: #FFF;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #FFF;
}

/* カラム内img*/
.col_list.m--download02 .col_item_header .image_wrap {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--download02 .col_item_header .image_wrap>img {
  width: 100%;
  height: auto;
  /* 比率を保ちながら幅を統一 */
  display: block;
  /* 不要なスペースを削除 */
  margin: 0 auto;
  /* 画像を中央揃え */
}

.col_list.col_list.m--download02 a:hover .image_wrap>img {
  transform: scale(1.05);
  transition-duration: 0.8s;
}

.col_list.m--download02 .col_item_body {
  margin: 0 10px 0px 10px;
}

.col_list.m--download02 .col_item_body>.title {
  font-size: 1.15em;
  min-height: 50px;
  margin: 10px 10px 0 10px;
}

.col_list.m--download02 .col_item_body>p {
  font-size: 13px;
  line-height: 180%;
  margin: 0 10px 0 15px;
  min-height: 50px;
}

.col_list.m--download02 .col_item_footer {
  padding: 0 10px 20px 10px;
}

.col_list.m--download02 .col_item_footer .btn_list {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.col_list.m--download02 .btn_list>li .btn {
  display: block;
  width: 90%;
  color: #f96c17;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-size: 18px;
  font-weight: 600;
  background-color: #FFFFFF;
  border: 2px solid #f39025;
  border-radius: 60px;
  padding: 8px;
}

.col_list.m--download02 .btn_list>li .btn:hover {
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
  opacity: 1;
}


/* detailページ */
.section_inner.m--flex {
  display: flex;
  justify-content: center;
  width: 1080px;
  margin: 0 auto;
}

.section_contents_wrap {
  width: calc(100% / 2);
}

.section_contents_wrap.m--60 {
  width: 60%;
}

.section_contents_wrap.m--40 {
  width: 40%;
}

.section_contents_wrap.m--right {
  background-color: #FFFFFF;
  border: 1px solid #e6e6e6;
  padding: 10px 20px;
}

.section_contents_wrap.m--left {
  margin-right: 20px;
}

.section_contents_header figure {
  padding-bottom: 30px;
}

.section_contents_header .col_item_category {
  font-size: 14px;
}

.section_contents_header h1 {
  color: #00c853;
  font-size: 34px;
  font-weight: 900;
  text-align: left;
  line-height: 140%;
  font-family: "Rounded Mplus 1c";
  margin: 10px 0 20px 0;
  padding: 0;
}

.section_contents_header h1>small {
  color: #00c853;
  font-size: 18px;
  font-weight: normal;
}

.section_contents_header .date_list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.section_contents_header .date_list>li {
  margin-right: 15px;
}

.section_contents_header.m--lineheight140 p {
  line-height: 140%;
}

.section_contents_header_list {
  font-size: 16px;
  box-sizing: border-box;
  text-align: left;
  font-weight: 900;
  background: rgb(237, 248, 247);
  list-style: none;
  padding: 15px 20px;
  border-radius: 10px;
}

.section_contents_header_list>li {
  display: flex;
  margin-bottom: 16px;
  line-height: 1.4;
}

.section_contents_header_list>li:last-child {
  margin-bottom: 0;
}

.section_contents_header_list>li::before {
  content: "・";
  font-weight: 900;
  margin-right: 10px;
}

.contact_borderbox {
  margin: 0px 0px 23px 0px;

}

.contact_border {
  border: solid rgba(0, 0, 0, .1);
  border-width: 1px 0 0;
  margin: 0;
}

.contact_list {
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  letter-spacing: 1px;
}

.cta_item_consultation {
  align-items: center;
  height: 100%;
  background-color: #FFF;
}

.consultation_wrap a,
.consultation_wrap a:link,
.consultation_wrap a:active,
.consultation_wrap a:visited {
  color: #157efb;
  font-size: 18px;
  text-decoration: none;
  margin-top: 5px;

}

.consultation_wrap a:hover {
  color: #00cd3f;
}

.consultation_wrap a i {
  margin-right: 5px;
}


.figure_wrap img {
  max-width: 400px;
  /* お好みのサイズに */
  width: 100%;
  height: auto;
}

.date_list .tag {
  line-height: 1.75;
  font-size: 12px;
  padding: 2px 8px 3px 8px;
}

.date_list .tag.m--active {
  color: #FFFFFF;
  background-color: #157efb;
  border: solid 1px #157efb;
}

.section_contents_body {
  margin-top: 60px;
}

.content_header {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75;
  padding-left: 10px;
  padding-bottom: 10px;
  margin-bottom: 15px;
  margin-top: 60px;
  border-bottom: solid 1px #e6e6e6;
}

.content_header.m--case,
.content_header.m--service {
  margin-bottom: 15px;
  margin-top: 30px;
}

.content_body {
  padding: 10px;
}

.content_body figure {
  margin: 20px 0 0 0;
}

.content_body img {
  width: 100%;
}

/* ポップアップ*/
#popup {
  display: none;
}

.popup_open {
  position: relative;
  cursor: zoom-in;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.popup_open:hover {
  opacity: 0.7;
}

.popup_open figure {
  margin: 20px 0 0 0;
}

.popup_open img {
  width: 100%;
}

.popup_open_icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  padding: 10px;
  color: #FFFFFF;
  background-color: #00c853;
  border-radius: 50%;
}

.popup_open_icon i {
  font-size: 28px;
}

.popup_overlay {
  display: none;
  /* input にチェックが入るまでは非表示に */
}

#popup:checked~.popup_overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.popup_window {
  width: 65%;
  height: auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.popup_img {
  margin: 0;
}

.popup_img img {
  width: 100%;
}

.popup_img:not(:last-of-type) {
  margin-bottom: 1em;
}

.popup_icon_close {
  cursor: pointer;
  position: absolute;
  top: 32px;
  right: 32px;
  color: #000000;
}

.popup_icon_close i {
  font-size: 24px;
}

/* リスト */
.content_body .figure_list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.content_body .figure_list>li {
  width: 100%;
  margin: 0 auto;
  padding-left: 0;
}

.content_body .figure_list.m--col2>li {
  width: calc(100% / 2 - 30px);
  margin: 0 15px 0 15px;
  padding: 0;
}

.content_body .figure_list.m--col6>li {
  width: calc(100% / 6 - 8px);
  margin: 4px;
  padding: 0;
}

.content_body .figure_list figure {
  margin: 0;
  padding: 0;
  text-align: center;
}

.content_body .figure_list figure>img {
  width: 100%;
}


/* フォームエリア */
.form_wrap {
  background: #FFFFFF;
}

.form_sp_wrap {
  display: none;
}

.form_pc_wrap input[type=checkbox] {
  width: 28px;
  height: 28px;
  vertical-align: middle;
  margin: 0px 5px 10px 0;
}


.form_pc_wrap input[type="text"],
.form_pc_wrap textarea,
.form_pc_wrap select {
  border: 0;
  width: 100%;
  padding: 5px 10px;
  font-size: 18px;
  letter-spacing: 1px;
  border: solid 1px #ccc;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


.form_pc_wrap input[type="submit"],
.form_pc_wrap input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  padding: 8px 15px;
}



/* セキュリティへの取り組みページ */
.systematic_list {
  list-style: none;
  margin: 40px 0 0 0;
  padding: 0;
}

.systematic_list li {
  background: #fff;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.systematic_list li h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  color: #20af5a;
  font-family: "Rounded Mplus 1c";
  padding: 0;
  margin: 0;
}

.systematic_list li h3 i {
  margin-right: 5px;
}

.systematic_text.m--flex {
  display: flex;
  align-items: center;
}

.systematic_text.m--flex img {
  margin-left: 40px;
}

.download_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  padding: 40px;
  box-sizing: border-box;
}

.download_dl_wrap {
  width: 100%;
}

.download_dl dt {
  width: 100%;
  margin-bottom: 30px;
}

.download_dl dt h3 {
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  color: #20af5a;
  font-family: "Rounded Mplus 1c";
  padding: 0;
  margin: 0;
}

.download_dl dd {
  position: relative;
  width: 100%;
  height: 100px;
  margin: 0;
}

.download_wrap small {
  display: block;
  text-align: right;
}

/* ページャースタイル */
.tab_content .col_list_wrap {
  display: none;
  /* すべてのページを初期状態では非表示 */
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination a {
  margin: 0 5px;
  padding: 5px 10px;
  background-color: #FFF;
  text-decoration: none;
  color: #000;
  border-radius: 3px;
  border: solid 1px #c3c3c3;
}

.pagination a.active,
.pagination a.active:link,
.pagination a.active:hover,
.pagination a.active:visited,
.pagination a.active:active {
  background-color: #00cd3f;
  border: solid 1px #00cd3f;
  color: #FFF !important;
}

.pagination a.disabled {
  display: none;
  /* 非表示にするスタイル */
}

.pagination a.prev.none,
.pagination a.next.none {
  border: solid 1px #FFF;
  color: #FFF !important;
}

/*----------------
 * 機能TOPページ *
----------------*/
#features1 a:link,
#features1 a:visited,
#features2 a:link,
#features2 a:visited,
#features3 a:link,
#features3 a:visited,
#features4 a:link,
#features4 a:visited,
#features5 a:link,
#features5 a:visited {
  text-decoration: none;
}

.features_menu_list_wrap {
  padding: 16px 0;
}

.features_menu_list {
  width: 1080px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.features_menu_list>li {
  width: calc(100% / 4);
  margin-right: 16px;
}

.features_menu_list>li:last-of-type {
  margin-right: 0;
}

.features_menu_item,
.features_menu_item:link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
  background-color: #FFF;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-out;
}

.features_menu_item:hover {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}

.features_menu_item>.img_wrap {
  text-align: center;
  margin-bottom: 5px;
}

.features_menu_item>.img_wrap>img {
  height: 50px;
}

.features_menu_item:hover>.img_wrap>img {
  opacity: 1;
}

.features_menu_item>.title {
  font-size: 23px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 130%;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-left: 10px;
}

.features_menu_item>.title>small {
  font-size: 18px;
}

.features_mv_wrap {
  position: relative;
  background-color: #FFF;
  margin-bottom: 60px;
}

.features_mv_inner {
  width: 1080px;
  margin: 0 auto;
}

.features_mv_title {
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 8px;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features_mv_title>span {
  font-size: 32px;
  letter-spacing: 0;
}

.features_mv_img {
  position: relative;
  z-index: 8888;
  width: 100%;
  height: 450px;
  background-image: url("/img/business/founder-ryota-ichioka.webp");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* メインのCTAコンテナ */
.features_mv_cta {
  text-align: center;
  margin: 40px auto;
  max-width: 400px;
}

/* CTAボタン */
.features_mv_cta_button,
.features_mv_cta_button:link,
.features_mv_cta_button:visited {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: white;
  border: 2px solid #00c853;
  color: #57b15a;
  text-decoration: none;
  padding: 20px 80px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-out;
}

/* ボタンのホバー効果 */
.features_mv_cta_button:hover {
  background-color: #00c853;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.features_mv_cta_button:hover .subtitle {
  color: #FFF;
}

.features_mv_cta_button:hover .title {
  color: #FFF;
}

/* アクティブ時の効果 */
.features_mv_cta_button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 200, 83, 0.2);
}

.features_mv_cta_button .subtitle {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #57b15a;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.features_mv_cta_button .title {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #00c853;
  transition: color 0.3s ease;
}

/* マイクロコピー */
.features_mv_cta_microcopy {
  margin-top: 18px;
  font-size: 16px;
  color: #000;
}

/* マイクロコピー内のリンク */
.features_mv_cta_microcopy>a,
.features_mv_cta_microcopy>a:link,
.features_mv_cta_microcopy>a:visited {
  color: #00c853;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 900;
}

.features_mv_cta_microcopy a:hover {
  color: #00a844;
  text-decoration: underline;
}

/* プラン別で絞り込んで機能を探す */
#features1 {
  position: relative;
  background: #f4f4f4;
  padding-bottom: 64px;
}

#features1 .features_section_inner {
  width: 1200px;
  margin: 0 auto;
}

#features1 .features_section_title {
  margin: 0 auto;
  padding: 64px 0 24px 0;
  color: #000;
  font-size: 32px;
  font-family: "Rounded Mplus 1c";
  font-weight: 900;
  line-height: 140%;
  text-align: left;
}

#features1 .features_section_title>.em {
  font-size: 64px;
}

/*「プラン別で絞り込んで機能を探す」のボタン */
.plan_tabs_wrap {
  width: 1200px;
  margin: 0 auto;
}

.plan_btn_wrap {
  display: flex;
  margin-bottom: 8px;
}

.plan_btn {
  background-color: #939393;
  border: solid 1px #939393;
  opacity: 0.6;
  border-radius: 4px;
  margin-right: 4px;
}

.plan_btn.m--active {
  background-color: #00c853;
  border: solid 1px #00c853;
  opacity: 1;
  border-radius: 4px;
  margin-right: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.plan_btn>button {
  font-family: "Rounded Mplus 1c";
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  background-color: #939393;
  border: solid 1px #939393;
  transition: all 0.3s ease;
}

.plan_btn.m--active>button {
  font-family: "Rounded Mplus 1c";
  font-size: 16px;
  font-weight: 600;
  color: #FFF;
  background-color: #00c853;
  border: solid 1px #00c853;
  transition: all 0.3s ease;
}

.plan_detail_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
}

.plan_detail_link>a {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  text-decoration: none;
}

.plan_detail_link>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5px;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  transition: width 0.3s ease;
}

.plan_detail_link>a:hover::after {
  width: 100%;
}

.plan_detail_link .icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 4px;
}

.plan_detail_link .icon_wrap>i {
  font-size: 14px;
  font-weight: 700;
}

.plan_contents_wrap {
  width: 100%;
  overflow: hidden;
}

.plan_contents_item_wrapper {
  position: relative;
  width: 1080px;
  margin: 0 auto;
  padding: 0 60px;
  /* 矢印のスペースを確保 */
  box-sizing: content-box;
  /* paddingを幅に含めない */
}

.plan_contents_item_wrap {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin: 0;
  padding: 0;
  width: 100%;
}

.plan_contents_item_wrap.m--active {
  display: block;
  opacity: 1;
}

.plan_panel_link_wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

/* Slickスライダーの調整 */
.plan_contents_item_wrap .slick-slide {
  padding: 0 8px;
  box-sizing: border-box;
}

.plan_contents_item_wrap .slick-list {
  margin: 0 -8px;
  padding: 0;
  overflow: hidden;
}

.plan_contents_item_wrap .slick-track {
  display: flex;
  align-items: stretch;
}


/* メインの左右矢印 */
.plan_contents_item_wrap .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;
  opacity: 1;
}

.plan_contents_item_wrap .slick-arrow:hover {
  opacity: 0.6;
}

.plan_contents_item_wrap .slick-arrow:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  border-style: solid;
  border-width: 0 4px 4px 0;
  border-color: #00c853;
}

.plan_contents_item_wrap .slick-prev {
  left: -55px;
  /* カードの外側に配置、左側が切れないよう調整 */
}

.plan_contents_item_wrap .slick-prev:before {
  transform: rotate(135deg);
  margin-left: 3px;
}

.plan_contents_item_wrap .slick-next {
  right: -55px;
  /* カードの外側に配置 */
}

.plan_contents_item_wrap .slick-next:before {
  transform: rotate(-45deg);
  margin-right: 3px;
}

.plan_contents_item_wrap .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  margin: 16px auto 0 auto !important;
  width: fit-content;
}

.plan_panel_link_wrapper.m--new::before {
  content: "NEW";
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0, -8px);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  background-color: #fbf000;
  color: #000;
  border-radius: 50%;
  z-index: 999;
}

.plan_contents_item_wrap li:last-of-type {
  margin-right: 0;
}

.plan_panel_link_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.plan_panel_link_wrap small {
  color: #000;
}

.plan_panel_link_wrap:hover {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.plan_panel_link_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.plan_panel_header {
  text-align: center;
  padding: 16px;
  background-color: #00c853;
}

.plan_panel_new>span {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.plan_panel_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.plan_panel_img img {
  width: 70px;
  height: auto;
  display: block;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(303deg) brightness(105%) contrast(105%);
}

.plan_panel_body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  position: relative;
  padding: 8px;
  background-color: #fff;
}

.plan_panel_title {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px;
}

.plan_panel_text {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}

.plan_panel_label_list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: auto;
}

.plan_panel_label {
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  background: rgb(87, 177, 90);
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  padding: 4px 8px;
  border-radius: 8px;
}

.plan_panel_label.m--00 {
  background: #93dd1b;
}

.plan_panel_label.m--01 {
  background: #0bc1d1;
}

.plan_panel_label.m--02 {
  background: #00c853;
}

.plan_panel_label.m--03 {
  background: #0064eb;
}

.plan_panel_label.m--04 {
  background: #00c853;
}

.plan_panel_footer {
  margin-top: auto;
  padding: 12px;
  text-align: center;
  background-color: #f39025;
}

.plan_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
}

.plan_panel_detail_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 1px #FFF;
  border-radius: 50%;
  margin-left: 8px;
}

.plan_panel_detail_icon>i {
  font-size: 16px;
}

/* slick css */
.slick-dots {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px;
  bottom: 0 !important;
  margin: 16px 0 0 0 !important;
  padding: 0;
  list-style: none;
}

.slick-dotted.slick-slider {
  margin: 0 !important;
}

.slick-dots li {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
}

.slick-dots li button {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  background: #FFF !important;
  width: 30px !important;
  height: 30px !important;
  border: 2px solid transparent !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
  cursor: pointer;
  position: relative;
  /* 数字表示のためのスタイル */
  font-size: 14px !important;
  font-weight: bold !important;
  color: #00798f !important;
  text-indent: 0 !important;
  line-height: 1 !important;
  overflow: visible !important;
}

.slick-dots li button:before {
  content: '';
  display: none;
}

.slick-dots li.slick-active button {
  background: linear-gradient(90deg,
      rgba(87, 177, 90, 1) 0%,
      rgba(0, 144, 128, 1) 50%,
      rgba(0, 121, 143, 1) 100%) !important;
  border: solid 2px #FFF !important;
  width: 36px !important;
  height: 36px !important;
  transition: all 0.3s ease;
  color: #FFF !important;
  font-size: 16px !important;
}

/* ホバー時のスタイル */
.slick-dots li button:hover {
  background: linear-gradient(90deg,
      rgba(87, 177, 90, 1) 0%,
      rgba(0, 144, 128, 1) 50%,
      rgba(0, 121, 143, 1) 100%) !important;
  color: #FFF !important;
  border: solid 3px transparent;
}

/* SHISHIでできることとは？ SHISHI10大機能 */
#features2 {
  position: relative;
  background: #f4f4f4;
  padding-bottom: 64px;
}

#features2 .features_section_inner {
  width: calc(1080px - 80px);
  margin: 0 auto;
  background: #FFF;
  padding: 40px;
}

#features2 .features_section_title {
  margin: 0 auto;
  padding: 0;
  line-height: 100%;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features2 .features_section_title>.sub {
  display: block;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 8px;
}

#features2 .features_section_title>.main {
  display: block;
  font-size: 64px;
  letter-spacing: 8px;
  line-height: 100%;
}

#features2 .features_section_description {
  font-size: 18px;
  font-weight: 600;
  padding: 0 64px;
  text-align: center;
}

.features_blocks_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 24px;
  list-style: none;
}

.features_blocks_list>li {
  width: calc(100% / 5 - 16px);
  margin: 0 4px 16px 8px;
}

.features_blocks_link_wrap,
.features_blocks_link_wrap:link,
.features_blocks_link_wrap:visited {
  display: block;
  background: linear-gradient(130deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.features_blocks_link_wrap.m--active,
.features_blocks_link_wrap.m--active:link,
.features_blocks_link_wrap.m--active:visited {
  background: #ccc;
}

.features_blocks_link_wrap:hover {
  opacity: 0.8;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.features_blocks_link_inner {
  padding: 16px 16px;
}

.features_blocks_link_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 50%;
}

.features_blocks_link_img>img {
  max-height: 65px;
  filter: invert(70%) sepia(85%) saturate(3734%) hue-rotate(102deg) brightness(94%) contrast(101%);
}

.features_blocks_link_title_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.features_blocks_link_title {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  height: 3.6em;
}

.features_blocks_link_icon {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border: solid 2px #FFF;
  border-radius: 50%;
  margin: 0 auto;
}

.features_blocks_link_icon>i {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
}

/* 動画ラッパー */
.features_blocks_video_wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

/* グラデーションキャプション */
.features_blocks_video_wrap>figcaption {
  margin: 0 auto 16px auto;
  padding: 0;
  font-family: "Rounded Mplus 1c";
  font-size: 32px;
  font-weight: 900;
  line-height: 100%;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* 動画コンテナ（アスペクト比維持用） */
.features_blocks_video_wrap .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 49.21875%;
  /* 315/640 = 0.4921875 */
  height: 0;
  overflow: hidden;
}

/* iframe */
.features_blocks_video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

/* 業種別の人気機能ランキング */
#features3 .features_section_inner {
  width: 1180px;
  margin: 64px auto 0 auto;
}

#features3 .features_section_title {
  margin: 0 auto;
  padding: 0;
  line-height: 100%;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#features3 .features_section_title>.main {
  display: block;
  font-size: 64px;
  letter-spacing: 8px;
  line-height: 100%;
}

#features3 .features_section_description {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0 64px;
}

.all_features_inner {
  width: 100%;
  margin: 32px auto 0 auto;
}

.all_features_top,
.all_features_bottom {
  display: flex;
  justify-content: space-between;
}

.all_features_top {
  margin-bottom: 48px;
}

.all_features_left {
  position: relative;
  width: calc(100% / 3);
  margin: 0 32px 0 0;
}

.all_features_center {
  position: relative;
  width: calc(100% / 3);
  margin: 0 32px 0 0;
}

.all_features_right {
  position: relative;
  width: calc(100% / 3);
  margin: 0;
}

.all_features_item_01,
.all_features_item_02,
.all_features_item_03,
.all_features_item_04,
.all_features_item_05,
.all_features_item_06,
.all_features_item_07,
.all_features_item_08 {
  width: 100%;
}

.all_features_item_03 {
  position: absolute;
  top: 48%;
}

.all_features_item_05 {
  position: absolute;
  top: 48%;
}

.all_features_item_header {
  position: relative;
  height: 3.5rem;
  margin-bottom: 16px;
}

.all_features_item_07 .all_features_item_title,
.all_features_item_08 .all_features_item_title {
  position: absolute;
  bottom: 0;
}

.all_features_item_header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(to bottom, #45a46a, #389479, #389479);
}

.all_features_item_title {
  margin: 0 auto 8px auto;
  padding: 0;
  font-size: 22px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 100%;
  background: linear-gradient(180deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.all_features_item_allview {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 8px;
}

.all_features_item_06 .all_features_item_allview>a {
  position: absolute;
  bottom: 0.5rem;
}

.all_features_item_allview>a {
  width: 8em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 100%;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: width 0.3s ease;
  border: solid 1px transparent;
}

.all_features_item_allview>a:hover {
  border-bottom: solid 1px rgba(0, 121, 143, 1);
}

.all_features_item_allview_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 2px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 4px;
}

.all_features_item_allview_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 14px;
  font-weight: 700;
}

.all_features_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.all_features_list>li {
  width: calc(100% / 2 - 8px);
  margin: 0 0 24px 0;
  list-style: none;
}

.all_features_link_wrap,
.all_features_link_wrap:link,
.all_features_link_wrap:visited {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efffed;
  min-height: 80px;
  color: #000 !important;
  border: solid 8px #FFF;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(115, 115, 120, 0.16);
  transition: all 0.3s ease;
}

.all_features_link_wrap:hover {
  background: #00c853;
  box-shadow: 0px 1px 1px rgba(115, 115, 120, 0.16);
}

.all_features_link_wrap::after {
  background: linear-gradient(45deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f35d";
  position: absolute;
  bottom: -8px;
  right: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  color: #fff;
  border-top-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.all_features_link_wrap.m--popular {
  position: relative;
}

.all_features_link_wrap.m--popular::before {
  content: "人気";
  position: absolute;
  top: 0;
  right: -20px;
  transform: translate(0, -8px);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  background-color: #fbf000;
  color: #000;
  border-radius: 50%;
  z-index: 999;
}

.all_features_link_wrap.m--new {
  position: relative;
}

.all_features_link_wrap.m--new::before {
  content: "NEW";
  position: absolute;
  top: 0;
  right: -20px;
  transform: translate(0, -8px);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 900;
  background-color: #fbf000;
  color: #000;
  border-radius: 50%;
  z-index: 999;
}

.all_features_link_title {
  color: #000;
}

.all_features_link_wrap:hover .all_features_link_title {
  color: #FFF;
}

/* ポップアップ */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup_content {
  background: #FFF;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 950px;
  max-width: 90%;
  max-height: 75%;
  overflow: auto;
  margin-top: 70px;
  padding: 24px;
  border: solid 2px rgba(115, 115, 120, 0.16);
  box-shadow: 0px 4px 12px rgba(115, 115, 120, 0.16);
}

.popup_inner {
  display: flex;
  gap: 16px;
}

.popup_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup_category {
  font-size: 20px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 100%;
  background: linear-gradient(180deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px 0;
}

.popup_title {
  font-size: 24px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  margin: 0 0 8px 0;
}

.popup_description {
  font-size: 18px;
  font-weight: 900;
}

.popup_plan {
  background: #f4f4f4;
  padding: 16px;
  margin-top: 8px;
  border-radius: 5px;
}

.popup_plan_label {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px 0;
}

.popup_plan_list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.popup_plan_list li {
  margin: 0 8px 8px 0;
}

.popup_plan_list li {
  color: #000;
}

a.popup_plan_link,
a.popup_plan_link:link,
a.popup_plan_link:visited {
  display: block;
  color: #000;
  text-decoration: none;

}

a.popup_plan_link:hover {
  text-decoration: underline;
}

a.popup_plan_link.m--00,
a.popup_plan_link.m--00:link,
a.popup_plan_link.m--00:visited {
  color: #FFF;
  padding: 4px 12px;
  border-radius: 18px;
  background-color: #93dd1b;
}

a.popup_plan_link.m--01,
a.popup_plan_link.m--01:link,
a.popup_plan_link.m--01:visited {
  color: #FFF;
  padding: 4px 12px;
  border-radius: 18px;
  background-color: #0bc1d1;
}

a.popup_plan_link.m--02,
a.popup_plan_link.m--02:link,
a.popup_plan_link.m--02:visited {
  color: #FFF;
  padding: 4px 12px;
  border-radius: 18px;
  background-color: #00c853;
}

a.popup_plan_link.m--03,
a.popup_plan_link.m--03:link,
a.popup_plan_link.m--03:visited {
  color: #FFF;
  padding: 4px 12px;
  border-radius: 18px;
  background-color: #0064eb;
}

.popup_button_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup_button,
.popup_button:link,
.popup_button:visited {
  display: block;
  width: 60%;
  margin-top: 16px;
  padding: 8px 0;
  background: linear-gradient(45deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  color: #FFF !important;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  border-radius: 32px;
  text-decoration: none;
}

.popup_image_wrap {
  width: 50%;
  height: auto;
  /* 高さを親要素に合わせる */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* はみ出し防止 */
  border-left: 2px solid #f4f4f4;
  margin: 0;
  padding: 0 0 0 18px;
}

.popup_image_wrap>img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  /* 高さの上限を設定 */
  object-fit: contain;
  /* 画像を縮小しつつ、縦横比を維持 */
  display: block;
}

.popup_image_wrap.m--col2>img {
  width: 45%;
  height: 100%;
  max-height: 400px;
  /* 高さの上限を設定 */
  object-fit: contain;
  /* 画像を縮小しつつ、縦横比を維持 */
  display: block;
  margin: 0 1%;
}

.popup_scece {
  width: 100%;
}

.popup_scece * {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.popup_scece p {
  margin-top: 10px;
}

.popup_scece_dl>dt {
  font-size: 18px;
  font-weight: 900;
  margin: 10px 0 0 0;
}

.popup_scece_dl>dd {
  font-size: 16px;
  margin: 0;
}

.popup_scece_dl>dd {
  padding: 0;
  margin: 5px 0 0 0;
}

.popup_scece_list {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 1.5em;
  font-size: 16px;
  line-height: 180%;
}

.popup_scece_list>li::marker {
  font-weight: 900;
}

.popup_scece_list.m--disc {
  list-style-type: disc;
}

.popup_scece_list.m--number {
  list-style-type: decimal;
}

.popup_scece_list.m--alpha {
  list-style-type: lower-alpha;
}

.popup_close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

/* SHISHIPlus+一覧 */
#features5 {
  background-color: #FFF;
  padding: 64px 0;
  position: relative;
}

#features5 .features_section_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: bold;
  color: #000;
}

#features5 .features_section_title>img {
  width: 400px;
}

#features5 .features_section_title>span {
  color: #1e6e38;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: 8px;
}

#features5 .features_section_description {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0 64px;
}

.plusplus_features_list {
  list-style: none;
  padding: 0;
  width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.plusplus_features_list li {
  position: relative;
  padding: 20px 20px 75px 20px;
  color: #000000;
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15)
}

.feature_title {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature_title .subtitle {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-weight: 900;
  line-height: 130%;
  min-height: 2.6em;
  margin: 0 0 20px 0;
}

.feature_title .logo {
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* 説明文 */
.feature_description>p {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

#features5 .feature_detail_commingsoon,
#features5 .feature_detail_link,
#features5 .feature_detail_link:link,
#features5 .feature_detail_link:visited {
  position: absolute;
  bottom: 20px;
  display: block;
  width: 80%;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  background-color: #f39025;
  border: 2px solid #f39025;
  border-radius: 60px;
  padding: 10px;
}

#features5 .feature_detail_commingsoon {
  background-color: #acacac;
  border: 2px solid #acacac;
}

#features5 .feature_detail_link:hover {
  background-color: #ffa500;
  border: 2px solid #ffa500;
}

/* 業種別の人気機能ランキング */
#features4 {
  position: relative;
  background: #FFF;
  padding-bottom: 64px;
}

#features4 .features_section_inner {
  width: 1080px;
  margin: 0 auto;
}

#features4 .features_section_title {
  margin: 0 auto;
  padding: 64px 0 24px 0;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  font-family: "Rounded Mplus 1c";
  font-weight: 900;
  line-height: 140%;
  text-align: center;
}

#features4 .features_section_title>.em {
  font-size: 48px;
}

#features4 .features_section_description {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 0 64px;
}

.ranking_btn_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.ranking_btn_list>li {
  margin: 0 8px 8px 0;
}

.ranking_btn {
  background-color: #939393;
  border: solid 1px #939393;
  opacity: 0.6;
  border-radius: 4px;
  margin-right: 4px;
}

.ranking_btn.m--active {
  background-color: #00c853;
  border: solid 1px #00c853;
  opacity: 1;
  border-radius: 4px;
  margin-right: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.ranking_btn>button {
  font-family: "Rounded Mplus 1c";
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  background-color: #939393;
  border: solid 1px #939393;
  transition: all 0.3s ease;
}

.ranking_btn.m--active>button {
  font-family: "Rounded Mplus 1c";
  font-size: 16px;
  font-weight: 600;
  background-color: #00c853;
  border: solid 1px #00c853;
  transition: all 0.3s ease;
}

.ranking_case_link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 16px;
}

.ranking_case_link>a {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  text-decoration: none;
}

.ranking_case_link>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  transition: width 0.3s ease;
}

.ranking_case_link>a:hover::after {
  width: 100%;
}

.ranking_case_link .icon_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 4px;
}

.ranking_case_link .icon_wrap>i {
  font-size: 14px;
  font-weight: 700;
}

.ranking_contents_item_wrapper {
  position: relative;
}

.ranking_contents_item_wrap {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ranking_contents_item_wrap.m--active {
  display: flex;
  opacity: 1;
}

.ranking_panel_link_wrapper {
  position: relative;
  width: calc(100% / 4 - 16px);
  margin: 16px 16px 0 0;
}

/* 各ランキングに対応する画像を `before` で表示 */
.ranking_panel_link_wrapper.m--ranking1::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/business/fukushi.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
}

.ranking_panel_link_wrapper.m--ranking2::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/business/houkan.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
}

.ranking_panel_link_wrapper.m--ranking3::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/business/kaigo.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
}

.ranking_panel_link_wrapper.m--ranking4::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/business/loop.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 99;
}

.ranking_contents_item_wrap li:last-of-type {
  margin-right: 0;
}

.ranking_panel_link_wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  min-height: 500px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
}

.ranking_panel_link_wrap:hover {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.ranking_panel_link_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ranking_panel_header {
  text-align: center;
  padding: 16px;
  background-color: #00c853;
}

.ranking_panel_new>span {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}

.ranking_panel_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.ranking_panel_img img {
  width: 70px;
  height: auto;
  display: block;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(303deg) brightness(105%) contrast(105%);
}

.ranking_panel_body {
  position: relative;
  padding: 8px;
  color: #000;
  background-color: #ffffff;
  flex-grow: 1;
}

.ranking_panel_title {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px;
}

.ranking_panel_text {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
}

.ranking_panel_label_list {
  position: absolute;
  bottom: 8px;
  min-height: 2em;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.ranking_panel_label {
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  background: rgb(87, 177, 90);
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: -moz-linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  padding: 4px 8px;
  border-radius: 8px;
}

.ranking_panel_label.m--00 {
  background: #93dd1b;
}

.ranking_panel_label.m--01 {
  background: #0bc1d1;
}

.ranking_panel_label.m--02 {
  background: #00c853;
}

.ranking_panel_label.m--03 {
  background: #0064eb;
}

.ranking_panel_footer {
  padding: 12px;
  text-align: center;
  background-color: #f39025;
}

.ranking_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
}

.ranking_panel_detail_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 1px #FFF;
  border-radius: 50%;
  margin-left: 8px;
}

.ranking_panel_detail_icon>i {
  font-size: 16px;
}

/*-------------------
 * 機能TOPページ_end *
--------------------*/

/*----------------
 * 機能詳細ページ *
----------------*/
.feature_detail_wrap {
  position: relative;
  width: 100%;
}

/* header */
.feature_detail_header {
  width: 100%;
  padding: 120px 0 120px 0;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  color: #fff;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  box-sizing: border-box;
}

.feature_detail_header_inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature_detail_catchphrase {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.18em;
  margin-bottom: 15px;
  line-height: 1;
}

.feature_detail_title {
  font-weight: 900;
  font-size: 64px;
  margin: 0;
  line-height: 1.1;
}

.feature_detail_title>small {
  font-size: 48px;
}

/* plan */
.feature_plan_wrap {
  width: 100%;
  background: #f4f4f4;
  padding: 15px 0;
  box-sizing: border-box;
  border-bottom: solid 1px #000;
}

.feature_plan_inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  box-sizing: border-box;
}

.feature_plan {
  display: flex;
  align-items: center;
}

.feature_plan.m--summary {
  display: flex;
}

.feature_plan_title {
  white-space: nowrap;
  color: #000;
  font-size: 18px;
  line-height: 200%;
  margin-right: 8px;
}

.feature_plan_list_wrap {
  margin-left: 15px;
}

.feature_plan_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature_plan_item {
  background: #FFF;
  color: #000;
  border-radius: 50px;
  padding: 5px 15px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  display: inline-block;
}

.feature_plan_item a,
.feature_plan_item a:link,
.feature_plan_item a:visited {
  color: #FFF;
  text-decoration: none;
}

.feature_plan_item.m--00 {
  color: #FFF;
  background: #93dd1b;
}

.feature_plan_item.m--01 {
  color: #FFF;
  background: #0bc1d1;
}

.feature_plan_item.m--02 {
  color: #FFF;
  background: #00c853;
}

.feature_plan_item.m--03 {
  color: #FFF;
  background: #0064eb;
}

.feature_plan_item.m--04 {
  color: #FFF;
  background: #00c853;
}

.feature_plan_item a:hover {
  opacity: 0.7;
}

.feature_plan_list.m--summary .feature_plan_item {
  background: #f4f4f4;
}

.feature_plan_note {
  margin-top: 5px;
}

.feature_plan_link {
  width: 22%;
}

.feature_plan_link a,
.feature_plan_link a:link,
.feature_plan_link a:visited {
  color: transparent;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: solid 1px transparent;
}

.feature_plan_link a:hover {
  border-bottom: solid 1px rgba(0, 121, 143, 1);
}

.feature_plan_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 8px;
}

.feature_plan_link_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 14px;
}

/* body */
.feature_detail_body {
  width: 100%;
  background: #f4f4f4;
  padding: 60px 0 0 0;
}

.feature_link a {
  color: transparent;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: solid 1px transparent;
}

.feature_link a:hover {
  border-bottom: solid 1px rgba(0, 121, 143, 1);
}

.feature_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 8px;
}

.feature_link_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 14px;
}

/* body内 section */
.feature_section_wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 30px 60px;
  box-sizing: border-box;
}

.feature_section_wrapper.m--w100 {
  max-width: 100%;
}

.feature_section_wrapper.m--bg--gray {
  background: #f4f4f4;
  margin: 0px auto;
}

.feature_section_wrapper.m--bg--white {
  background: #FFF;
  container-type: inline-size;
}

/* section_wrap(m--merit) */
.feature_section_wrap.m--merit {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 30px 45px 30px;
  box-sizing: border-box;
  background: #fff;
}

/* section_wrap(m--eight) */
.feature_section_wrap.m--eight {
  max-width: 1080px;
  margin: 0 auto;
  padding: 45px 30px;
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(87, 177, 90, 0.7);
  background: #f4f4f4;
  border-radius: 30px;
}

/* section_wrap(m--other) */
.feature_section_wrap.m--other {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.feature_other_menu_list_wrap {
  padding: 16px 0;
}

.feature_other_menu_list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.feature_other_menu_list>li {
  width: calc(100% / 4);
  margin-right: 16px;
}

.feature_other_menu_list>li:last-of-type {
  margin-right: 0;
}

.feature_other_menu_item,
.feature_other_menu_item:link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
  background-color: #FFF;
  border-radius: 8px;
  text-decoration: none;
  border: solid 2px transparent;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-out;
}

.feature_other_menu_item:hover {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}

.feature_other_menu_item>.img_wrap {
  text-align: center;
  margin-bottom: 5px;
}

.feature_other_menu_item>.img_wrap>img {
  height: 50px;
}

.feature_other_menu_item:hover>.img_wrap>img {
  opacity: 1;
}

.feature_other_menu_item>.title {
  font-size: 23px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 130%;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-left: 10px;
}

.feature_other_menu_item>.title>small {
  font-size: 18px;
}

.feature_other_cta {
  text-align: center;
  margin: 40px auto;
  max-width: 400px;
}

/* CTAボタン */
.feature_other_cta_button,
.feature_other_cta_button:link,
.feature_other_cta_button:visited {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background-color: white;
  border: 2px solid #00c853;
  color: #57b15a;
  text-decoration: none;
  padding: 20px 80px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease-out;
}

/* ボタンのホバー効果 */
.feature_other_cta_button:hover {
  background-color: #00c853;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.feature_other_cta_button:hover .subtitle {
  color: #FFF;
}

.feature_other_cta_button:hover .title {
  color: #FFF;
}

/* アクティブ時の効果 */
.feature_other_cta_button:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 200, 83, 0.2);
}

.feature_other_cta_button .subtitle {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #57b15a;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.feature_other_cta_button .title {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #00c853;
  transition: color 0.3s ease;
}

/* マイクロコピー */
.feature_other_cta_microcopy {
  margin-top: 18px;
  font-size: 16px;
  color: #000;
}

/* マイクロコピー内のリンク */
.feature_other_cta_microcopy>a,
.feature_other_cta_microcopy>a:link,
.feature_other_cta_microcopy>a:visited {
  color: #00c853;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 900;
}

.feature_other_cta_microcopy a:hover {
  color: #00a844;
  text-decoration: underline;
}

/* section_wrap(m--qa) */
.feature_section_wrap.m--qa .feature_section_inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 45px 30px 0 30px;
  box-sizing: border-box;
}

/* sectionのtitle */
.feature_section_title {
  color: #000;
  font-size: clamp(35px, 4cqw, 45px);
  font-weight: 900;
  text-align: center;
  line-height: 140%;
  font-family: "Rounded Mplus 1c";
  margin: 0 auto;
  padding: 40px 0 40px 0;
}

.feature_section_subtitle {
  margin: 0;
  padding: 10px 0 20px 0;
  font-size: clamp(18px, 3.4cqw, 24px);
  font-weight: 900;
  line-height: 150%;
  text-align: center;
  font-family: "Rounded Mplus 1c";
}

.feature_section_wrap.m--other .feature_section_title {
  padding: 0 0 10px 0;
}

.feature_section_title>small {
  color: #000;
  font-size: 28px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
}

.feature_section_title.m--grad {
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* sectionのcontents */
.feature_section_contents {
  width: 800px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  font-size: 18px;
}

.feature_section_contents.m--width100 {
  width: 100%;
}

.feature_section_contents_title {
  color: #00c853;
  font-size: 24px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 140%;
  margin: 20px 0 0 0;
  padding: 0;
}

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

.feature_section_contents .m--margin20 {
  margin: 20px 0 0 0;
}

.feature_section_contents .m--margin40 {
  margin: 40px 0 0 0;
}

.feature_section_contents .m--margin60 {
  margin: 60px 0 0 0;
}

/* sectionのimg */
.feature_section_img {
  margin: 20px 0;
  padding: 0;
}

.feature_section_img.m--margin20 {
  margin: 20px 0 20px 0;
}

.feature_section_img.m--margin40 {
  margin: 40px 0 20px 0;
}

.feature_section_img.m--margin60 {
  margin: 60px 0 20px 0;
}

.feature_section_img.m--nomargin {
  margin: 0;
}

.feature_section_img img {
  width: 100%;
}

.feature_section_img.m--left {
  text-align: left;
}

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

.feature_section_img.m--right {
  text-align: right;
}

.feature_section_img .img-w100 {
  width: 100%;
}

.feature_section_img .img-w90 {
  width: 90%;
}

.feature_section_img .img-w80 {
  width: 80%;
}

.feature_section_img .img-w70 {
  width: 70%;
}

.feature_section_img .img-w60 {
  width: 60%;
}

.feature_section_img .img-w50 {
  width: 50%;
}

.feature_section_img .img-w40 {
  width: 40%;
}

.feature_section_img .img-w30 {
  width: 30%;
}

.feature_section_img .img-w20 {
  width: 20%;
}

.feature_section_img .img-w10 {
  width: 10%;
}

.feature_section_img.m--col2,
.feature_section_img.m--col3,
.feature_section_img.m--col4,
.feature_section_img.m--flex {
  display: flex;
}

.feature_section_img.m--col2>a {
  width: calc(100% / 2 - 2%);
  padding: 0 1%;
}

.feature_section_img.m--col3>a {
  width: calc(100% / 3 - 2%);
  padding: 0 1%;
}

.feature_section_img.m--col4>a {
  width: calc(100% / 4 - 2%);
  padding: 0 1%;
}

.feature_section_img_list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 16px 0 16px 0;
  padding: 0;
}

.feature_section_img_list>li {
  list-style: none;

}

.feature_section_img_list.m--col2>li {
  width: 48%;
}

.feature_section_img_list.m--col2 h3 {
  font-size: 16px;
  color: #00c853;
  margin: 0 0 8px 0;
  text-align: center;
}

.feature_section_img_list.m--col2 figure {
  width: 100%;
  margin: 0;
}

.feature_section_img_list.m--col2 a {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  text-align: center;
}

.feature_section_img_list.m--col2 a>i {
  vertical-align: baseline;
  padding: 0 .2em;
  line-height: 1;
  display: inline-block;
}

.feature_section_img_list.m--col2 img {
  width: 60%;
  margin: 0 0 16px 0;
}

.feature_section_img_list.m--col2>li a,
.feature_section_img_list.m--col2>li a:link,
.feature_section_img_list.m--col2>li a:visited {
  color: #000;
  text-decoration: underline;
}

.feature_section_img_list.m--col2>li a:hover {
  color: #000;
  text-decoration: none;
}

.feature_list_wrap {
  margin-top: 20px;
}

.feature_list {
  list-style-type: none;
  padding-inline-start: 0;
  margin: 0;
  font-size: 18px;
  line-height: 180%;
}

.feature_list.m--font16 {
  font-size: 16px;
}

.feature_list {
  margin: 0;
  padding: 0;
}

.feature_list.m--disc {
  list-style-type: disc;
  padding-inline-start: 1.5em;
}

.feature_list.m--number {
  list-style-type: decimal;
  padding-inline-start: 1.5em;
}

.feature_list.m--alpha {
  list-style-type: lower-alpha;
  padding-inline-start: 1.5em;
}

.feature_list>li::marker {
  font-size: 18px;
  font-weight: 900;
}

.feature_list>li {
  margin: 0 0 5px 0;
}

.feature_list.m--nopadding>li {
  margin: 0;
}

.feature_list>li>i {
  color: #ff3d29;
  margin-right: 5px;
}

.feature_list>li h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}

.webhook_event_list {
  list-style: none;
  padding: 0 0 0 3vw;
  margin: 0;
}

.webhook_event_list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  margin-bottom: 12px;
  align-items: start;
}

.webhook_event_list .label {
  font-weight: bold;
  white-space: nowrap;
}

.webhook_event_list .label::after {
  content: "：";
}

.webhook_event_list .text {
  line-height: 1.6;
}

.seminar-box {
  position: relative;
  background: #fff;
  border: 2px solid #20af5a;
  padding: 30px;
  margin: 48px 0;
  overflow: visible;
}

.seminar-box:hover {
  border-color: #32b768;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: .3s;
}



.feature_section_wrap {
  margin-bottom: 60px;
}

.feature_section_wrap:only-of-type {
  margin-bottom: 0;
}

.feature_dl_wrap {
  margin-top: 20px;

}

.feature_dl {
  margin: 0;
  padding-left: 10vw;
}

.feature_dl.m--disc>dt {
  list-style-type: disc;
  padding-inline-start: 1.5em;
}

.feature_dl.m--number>dt {
  list-style-type: decimal;
  padding-inline-start: 1.5em;
}

.feature_dl.m--alpha>dt {
  list-style-type: lower-alpha;
  padding-inline-start: 1.5em;
}

.feature_dl>dt {
  color: #00c853;
  font-size: 18px;
  font-weight: 900;
}

.feature_dl>dd {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.feature_section_contents>p:first-of-type {
  margin-top: 0;
}


.feature_section_table.m--common,
.feature_section_table.m--comparison {
  width: 100%;
  font-size: 16px;
  line-height: 120%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
  background: #FFF;
  margin-bottom: 8px;
}

.feature_section_table.m--features38 {
  width: 100%;
  font-size: 16px;
  line-height: 120%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
  background: #FFF;
  margin-bottom: 8px;
}


.feature_section_table.m--common th,
.feature_section_table.m--common td,
.feature_section_table.m--comparison th,
.feature_section_table.m--comparison td,
.feature_section_table.m--features38 th,
.feature_section_table.m--features38 td {
  padding: 10px 16px;
  vertical-align: top;
}

.feature_section_table.m--features38 td {
  width: 50%;
}

.feature_section_table.m--features38 td>p {
  font-size: 16px;
}

.feature_section_table.m--common th:nth-of-type(2),
.feature_section_table.m--comparison th:nth-of-type(2) {
  color: #FFF;
  background-color: #787878;
}

.feature_section_table.m--common th:nth-of-type(3),
.feature_section_table.m--comparison th:nth-of-type(3) {
  color: #FFF;
  background-color: #00c853;
}

/* ========================================
   Webhookイベントテーブル PC
======================================== */
.feature_section_table.m--webhook {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 32px 0 16px;
}

.feature_section_table.m--webhook th,
.feature_section_table.m--webhook td {
  padding: 12px 60px 24px 160px;
}

.feature_section_table.m--webhook thead th {
  color: #00c853 !important;
  background: #fff !important;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  padding: 16px 0;
}

.feature_section_table.m--webhook .webhook_event_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature_section_table.m--webhook .webhook_event_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  line-height: 1.4;
}

.feature_section_table.m--webhook .label {
  width: 150px;
  flex-shrink: 0;
  font-weight: bold;
}

.feature_section_table.m--webhook .label::after {
  content: "：";
}

.feature_section_table.m--webhook .text {
  flex: 1;
}

.feature_section_table.m--webhook .webhook_note {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.feature_section_table.m--webhook .webhook_note a {
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* リボン */
.seminar-ribbon {
  position: absolute;
  top: -6px;
  left: -6px;
  padding: 10px 40px 10px 10px;
  background: linear-gradient(-45deg, transparent, transparent 25%, #20af5a 0%, #20af5a);
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
  z-index: 2;
}



/* 左下の小さい折り返し */
.seminar-ribbon::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  border-top: 6px solid #157a3d;
  border-left: 6px solid transparent;
}


.feature_section_annotation_box {
  position: relative;
  background-color: #e8f5e9;
  border-radius: 8px;
  padding: 20px 20px 20px 65px;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.8;
}

.feature_section_annotation_box::before {
  content: "!";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.feature_section_annotation_box p {
  margin: 0;
  color: #333;
}

.feature_section_annotation_box a {
  color: #2e7d32;
  text-decoration: underline;
  font-weight: 500;
}

.feature_section_annotation_box a:hover {
  color: #1b5e20;
  text-decoration: none;
}



/* m--merit */
.feature_merit_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.feature_merit_item {
  position: relative;
  width: 48%;
  border-radius: 8px;
  padding: 20px 20px;
  box-sizing: border-box;
  position: relative;
}

.feature_merit_item.m--before {
  background-color: #d9d9d9;
}

.feature_merit_item.m--arrow {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4%;
  padding: 0;
  font-size: 48px;
  font-weight: 900;
  color: #999;
}

.feature_merit_item.m--after {
  background-color: #c8f7c5;
}

.feature_merit_item .feature_merit_item_inner>h3 {
  font-size: 28px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}

.feature_merit_item.m--before .feature_merit_item_inner>h3 {
  color: #333;
}

.feature_merit_item.m--after .feature_merit_item_inner>h3 {
  color: #00c853;
}

/* sectionのリスト */
.feature_section_list {
  list-style-type: none;
  padding-inline-start: 0;
}

.feature_section_list.m--number {
  list-style-type: decimal;
  padding-inline-start: 2.5em;
}

.feature_section_list.m--disc {
  list-style-type: disc;
  padding-inline-start: 2.5em;
}

.feature_section_list.m--check>li {
  position: relative;
  padding-left: 1.5em;
}

.feature_section_list>li {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 1px;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
}

.feature_section_list>li:last-of-type {
  margin-bottom: 0px;
}

.feature_section_list>li>i {
  margin-right: 0.5em;
}

.feature_section_list>li::marker {
  font-size: 22px;
  font-weight: 900;
  line-height: 150%;
  font-family: "Rounded Mplus 1c";
}

.feature_section_list.m--check>li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #ff3d29;
}

.feature_section_list>li h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  font-family: "Rounded Mplus 1c";
}

.feature_section_list>li p {
  margin: 0;
  padding: 0;
}

/* m--merit table */
.feature_section_table.m--merit {
  width: 100%;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 1px;
  border-collapse: separate;
  border-spacing: 0 10px
}

.feature_section_table.m--merit tr>th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 5px 0 0;
  padding: 0;
  background-color: #FFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
}

.feature_merit_item.m--before .feature_section_table.m--merit tr>th {
  color: #333;
}

.feature_merit_item.m--after .feature_section_table.m--merit tr>th {
  color: #00c853;
}



/* m--features */
.feature_3features_list_wrap {
  margin: 0 auto 40px auto;
  max-width: 100%;
}

.feature_3features_list {
  counter-reset: feature-number;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature_3features_list>li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 2.5em;
}

.feature_3features_list>li::before {
  counter-increment: feature-number;
  content: counter(feature-number) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #00c853;
  font-size: 28px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  line-height: 1.3;
}

.feature_3features_list>li h3 {
  color: #00c853;
  font-size: 24px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  margin: 0 0 5px 0;
}

.feature_3features_list>li p {
  margin: 10px 0 0 0;
  font-size: 18px;
  color: #000;
}

.feature_3features_list>li img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  text-align: center;
}

/* 活用シーン */
.feature_scene_list_wrap {
  position: relative;
  width: 800px;
  margin: 0 auto;
}

.feature_scene_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.feature_scene_list>li {
  width: 48%;
  margin: 1% 0;
}

.feature_scene_link,
.feature_scene_link:link,
.feature_scene_link:visited {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  background-color: #FFF;
  border-radius: 30px;
  color: #000;
  text-decoration: none;
  padding: 25px 10px;
  transition: all 0.3s ease;
}

.feature_scene_link:hover {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.feature_scene_link:hover h3,
.feature_scene_link:hover .link_icon {
  color: #00c853;
}

.feature_scene_link.m--nolink:hover {
  box-shadow: none;
}

.feature_scene_link.m--nolink:hover h3 {
  color: #000;
}

.feature_scene_link_inner>h3 {
  font-size: 26px;
  font-weight: 900;
  color: #000;
  font-family: "Rounded Mplus 1c";
  text-align: center;
  margin: 0;
}

.feature_scene_link_inner>p {
  font-size: 16px;
  word-break: break-all;
  margin: 10px 0 0 0;
}

.feature_scene_link_inner>.link_icon {
  position: absolute;
  bottom: 10px;
  right: 20px;
  color: #333;
  font-size: 28px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
}

/* ーーーーーーーーーーーーー featuresページのグレーアウト表示 ーーーーーーーーーーーーー */
/* ラッパー：オーバーレイの基準点 */
.deprecated-section-wrapper {
  position: relative;
}

/* 半透明グレーのカバー */
.deprecated-overlay {
  position: absolute;
  inset: 0;
  /* top/right/bottom/left: 0 の一括指定 */
  background-color: rgba(99, 99, 99, 0.6);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
}

/* 告知ボックス */
.deprecated-notice {
  background-color: #fff;
  border-left: 4px solid #e74c3c;
  border-radius: 4px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  max-width: 480px;
  width: 90%;
}

.deprecated-notice-red {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  color: #e74c3c;
}

.deprecated-notice__icon {
  display: block;
  font-size: 20px;
  margin-bottom: 6px;
}

.deprecated-notice__link {
  color: #27ae60;
  font-weight: bold;
  text-decoration: underline;
}

.deprecated-notice__link:hover {
  color: #1e8449;
}

/* ーーーーーーーーーーーーー featuresページのグレーアウト表示 ここまでーーーーーーーーーーーーー */

/* 活用事例 */
.case_slider_wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.case_panel_list_wrap .slick-track {
  margin: 0 !important;
}

.case_panel_list {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}

.case_panel_list>li {
  width: calc(100% / 4 - 16px);
}

.case_panel_link_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto;
  box-sizing: border-box;
}

.case_panel_link_wrap,
.case_panel_link_wrap:link,
.case_panel_link_wrap:visited {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.15)
}

a.case_panel_link_wrap:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15)
}

.case_panel_link_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case_panel_list.m--features38 .case_panel_link_inner {
  position: relative;
}

.case_panel_header {
  box-sizing: border-box;
}

.case_panel_img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case_panel_list.m--features38 .case_panel_img {
  width: 100%;
  height: auto !important;
  min-height: 220px;
  margin: 0;
  padding: 0 0 11rem 0;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case_panel_img>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition-duration: 0.8s;
}

.case_panel_list.m--features38 .case_panel_img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  display: block;
  transition-duration: 0.8s;
}

/* =========================================================
   回答フォーム 活用事例
   PC：4列×2段／画像左・文章右
========================================================= */
.answer_case_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer_case_item {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.answer_case_card {
  display: grid;
  grid-template-columns: 38% minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  height: 100%;
  min-height: 220px;
  padding: 8px;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.answer_case_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 194px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.answer_case_img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.answer_case_body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 4px 0;
}

.answer_case_title {
  display: flex;
  align-items: flex-start;
  min-height: 52px;
  margin: 0 0 12px;
  padding: 0;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.answer_case_text {
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 1100px) and (min-width: 641px) {
  .answer_case_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .answer_case_card {
    grid-template-columns: 32% minmax(0, 1fr);
  }
}

.case_panel_body {
  padding: 8px;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.case_panel_list.m--features38 .case_panel_body {
  position: absolute;
  bottom: 0;
}

.case_panel_title {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0;
}

.case_panel_text {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
  flex-grow: 1;
}

.case_panel_list.m--features38 .case_panel_text {
  height: 6rem;
}

.case_panel_text * {
  font-size: 12px;
}

.case_panel_label_list {
  margin-top: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.case_panel_label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  padding: 4px 8px;
  border-radius: 8px;
}

.case_panel_footer {
  padding: 12px;
  text-align: center;
  background-color: #f39025;
  box-sizing: border-box;
}

.case_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.case_panel_detail_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 8px;
}

.case_panel_detail_icon>i {
  font-size: 16px;
}

.feature_settings_list_wrap {
  margin-top: 20px;
}

.feature_settings_list {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 1.5em;
  font-size: 18px;
  line-height: 180%;
}

.feature_settings_list.m--disc {
  list-style-type: disc;
}

.feature_settings_list.m--number {
  list-style-type: decimal
}

.feature_settings_list.m--alpha {
  list-style-type: lower-alpha;
}

.feature_settings_list>li {
  margin-bottom: 10px;
}

.feature_settings_list>li::marker {
  font-weight: 900;
}

.feature_settings_list>li h3 {
  font-size: 18px;
}

.feature_settings_list>li * {
  margin: 0;
  padding: 0;
}

.feature_settings_dl_wrap {
  margin-top: 20px;
}

.feature_settings_dl {
  margin: 0;
  padding: 0;
}

.feature_settings_dl>dt,
.feature_settings_dl>dd {
  margin-bottom: 5px;
}

.feature_settings_dl>dt {
  font-size: 22px;
  font-weight: 900;
}

.feature_settings_dl>dd {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

/* その他の機能 */
.other_slider_wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.other_panel_list_wrap .slick-track {
  margin: 0 !important;
}

.other_panel_list {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}

.other_panel_link_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% / 4);
  min-height: 400px !important;
  margin: 0 5px;
  box-sizing: border-box;
}

.other_panel_link_wrap,
.other_panel_link_wrap:link,
.other_panel_link_wrap:visited {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  background-color: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.08);
}

.other_panel_link_wrap:hover {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.other_panel_link_inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.other_panel_header {
  box-sizing: border-box;
}

.other_panel_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.other_panel_link_wrap:hover .other_panel_img {
  color: #000;
  background-color: #FFF;
}

.other_panel_img>img {
  width: 100%;
  height: 80%;
  object-fit: contain;
  display: block;
  transition-duration: 0.8s;
}

.other_panel_body {
  padding: 8px;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.other_panel_title {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0;
}

.other_panel_text {
  font-size: 12px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 16px;
  flex-grow: 1;
}

.other_panel_text * {
  font-size: 12px;
}

.other_panel_label_list {
  margin-top: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.other_panel_label {
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  padding: 4px 8px;
  border-radius: 8px;
}

.other_panel_footer {
  padding: 12px;
  text-align: center;
  background-color: #f39025;
  box-sizing: border-box;
}

.other_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.other_panel_detail_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  border: solid 1px #fff;
  border-radius: 50%;
  margin-left: 8px;
}

.other_panel_detail_icon>i {
  font-size: 16px;
}


/*-------------------
 * 機能詳細ページ_end *
---------------------*/

/*------------------
 * 機能まとめページ *
-------------------*/
.feature_summary_wrap {
  position: relative;
  width: 100%;
  background: #f4f4f4;
}

.feature_summary_header {
  width: 100%;
  padding: 80px 0 20px 0;
}

.feature_summary_header_inner {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.feature_summary_catchphrase {
  font-size: 24px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  letter-spacing: 0.18em;
  margin-bottom: 15px;
  line-height: 1;
}

.feature_summary_title {
  font-size: 56px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  line-height: 1.1;
}

.feature_summary_about_wrapper {
  position: relative;
}

.feature_summary_about_wrap {
  width: 100%;
  background-color: #f4f4f4;
}

.feature_summary_about_inner {
  max-width: calc(1080px - 60px);
  margin: 0 auto;
  padding: 0 30px;
}

.feature_summary_about_contents h2 {
  color: #00c853;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  margin: 10px 0 5px 0;
  padding: 0;
}

.feature_summary_list_wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 45px 0;
}

.feature_summary_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.feature_summary_list li {
  width: 20%;
  box-sizing: border-box;
  background-color: #fff;
  border: 2px solid;
  border-image: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  border-image-slice: 1;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.feature_summary_list li:nth-child(5n+1),
.feature_summary_list li:nth-child(5n+2),
.feature_summary_list li:nth-child(5n+3),
.feature_summary_list li:nth-child(5n+4),
.feature_summary_list li:nth-child(5n+5) {
  margin-left: -1px;
}

.feature_summary_list li:nth-child(n+6) {
  margin-top: -1px;
}

.feature_summary_list li:hover {
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
}

.feature_summary_list li:hover span,
.feature_summary_list li:hover::after {
  color: #fff;
}

.feature_summary_list li a,
.feature_summary_list li a:link,
.feature_summary_list li a:active,
.feature_summary_list li a:visited {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 130px;
  color: #000;
  font-weight: 900;
  font-size: 16px;
}

.feature_summary_list li a,
.feature_summary_list li a .text,
.feature_summary_list li a::after {
  transition: color 0.3s ease;
}

.feature_summary_list li a>div {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  text-align: center;
  line-height: 1.4;
}

.feature_summary_list li a:hover>div {
  color: #fff;
}

.feature_summary_list li a>img {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  text-align: center;
  filter: invert(70%) sepia(85%) saturate(3734%) hue-rotate(102deg) brightness(94%) contrast(101%);
  width: 40px;
}

.feature_summary_list li a:hover>img {
  filter: invert(1) grayscale(1) brightness(2);
}

.feature_summary_list li a::after {
  content: "▼";
  font-size: 16px;
  color: #00c853;
}

.feature_summary_list li:hover a::after {
  content: "▼";
  font-size: 16px;
  margin-top: 4px;
  color: #FFF;
}

.feature_summary_section_wrapper {
  max-width: 1080px;
  margin: 0px auto 60px auto;
  padding: 45px 30px;
  box-sizing: border-box;
}

.feature_summary_section_wrapper.m--w100 {
  max-width: 100%;
}

.feature_summary_section_wrapper.m--bg--gray {
  background: #f4f4f4;
  margin: 0px auto;
}

.feature_summary_section_wrapper.m--bg--white {
  background: #FFF;
}

.feature_summary_section_wrap {
  margin-bottom: 45px;
}

.feature_summary_section_wrap:only-of-type {
  margin-bottom: 0;
}

.feature_summary_section_catchphrase {
  font-size: 20px;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  text-align: center;
}

.feature_summary_section_title {
  font-size: 40px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  text-align: center;
  margin: 0 0 32px 0;
  padding: 0;
}

.feature_summary_flex.m--row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.feature_summary_flex.m--row .feature_summary_img {
  width: 100%;
  background: #fff;
  margin: 0 0 16px;
  padding: 0;
  text-align: center;
}

.feature_summary_flex.m--col2 {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.feature_summary_flex.m--col2 .feature_summary_img {
  width: 48%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-self: unset;
  margin: 0;
  padding: 0;
  text-align: center;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

.feature_summary_img>a {
  display: inline;
}

.feature_summary_img .img-w100 {
  width: 100%;
}

.feature_summary_img .img-w90 {
  width: 90%;
}

.feature_summary_img .img-w80 {
  width: 80%;
}

.feature_summary_img .img-w70 {
  width: 70%;
}

.feature_summary_img .img-w60 {
  width: 60%;
}

.feature_summary_img .img-w50 {
  width: 50%;
}

.feature_summary_img .img-w40 {
  width: 40%;
}

.feature_summary_img .img-w30 {
  width: 30%;
}

.feature_summary_img .img-w20 {
  width: 20%;
}

.feature_summary_img .img-w10 {
  width: 10%;
}

.feature_summary_flex.m--row .feature_summary_text {
  width: 800px;
  margin: 0 auto;
}

.feature_summary_flex.m--col2 .feature_summary_text {
  width: 50%;
}

.feature_detail_link_wrap {
  text-align: right;
  margin-top: 20px;
}

.feature_detail_link_wrap a,
.feature_detail_link_wrap a:link,
.feature_detail_link_wrap a:active,
.feature_detail_link_wrap a:visited {
  position: relative;
  color: transparent;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: solid 1px transparent;
}

.feature_detail_link_wrap a:hover {
  border-bottom: solid 1px rgba(0, 121, 143, 1);
}

.feature_detail_link_wrap>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5px;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  transition: width 0.3s ease;
}

.feature_detail_link_wrap>a:hover::after {
  width: 100%;
}

.feature_detail_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 8px;
}

.feature_detail_link_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 14px;
}

.feature_solution_dl_wrap {
  margin-top: 20px;
}

.feature_solution_dl {
  margin: 0;
  padding: 0;
}

.feature_solution_dl.m--disc>dt {
  list-style-type: disc;
  padding-inline-start: 1.5em;
}

.feature_solution_dl.m--number>dt {
  list-style-type: decimal;
  padding-inline-start: 1.5em;
}

.feature_solution_dl.m--alpha>dt {
  list-style-type: lower-alpha;
  padding-inline-start: 1.5em;
}

.feature_solution_dl>dt {
  font-size: 18px;
  font-weight: 900;
}

.feature_solution_dl>dd {
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.feature_solution_list_wrap {
  margin-top: 20px;
}

.feature_solution_list {
  list-style-type: none;
  padding-inline-start: 0;
  margin: 0;
  font-size: 18px;
  line-height: 180%;
}

.feature_solution_list.m--font16 {
  font-size: 16px;
}

.feature_solution_list * {
  margin: 0;
  padding: 0;
}

.feature_solution_list.m--disc {
  list-style-type: disc;
  padding-inline-start: 1.5em;
}

.feature_solution_list.m--number {
  list-style-type: decimal;
  padding-inline-start: 1.5em;
}

.feature_solution_list.m--alpha {
  list-style-type: lower-alpha;
  padding-inline-start: 1.5em;
}

.feature_solution_list>li::marker {
  font-size: 18px;
  font-weight: 900;
}

.feature_solution_list>li h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}

.feature_back_link_wrap {
  text-align: center;
  margin: 45px auto 45px auto;
}

.feature_back_link_wrap a,
.feature_back_link_wrap a:link,
.feature_back_link_wrap a:active,
.feature_back_link_wrap a:visited {
  position: relative;
  color: transparent;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.feature_back_link_wrap>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5px;
  background: linear-gradient(90deg, rgba(87, 177, 90, 1) 0%, rgba(0, 144, 128, 1) 50%, rgba(0, 121, 143, 1) 100%);
  transition: width 0.3s ease;
}

.feature_back_link_wrap>a:hover::after {
  width: 100%;
}

.feature_back_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 8px;
}

.feature_back_link_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 18px;
}


/*---------------------
 * 機能まとめページ_end *
-----------------------*/

/* features内ステップdl */
.step_dl_title {
  margin: 0 auto;
  padding: 10px 5px 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 150%;
  text-align: left;
}

.step_dl_wrap {
  display: flex;
  flex-direction: column;
  gap: 3em;
  position: relative;
}

.step_dl {
  position: relative;
  margin: 0 auto;
  padding: 1.4em;
  background: #fff;
  border: #00c853 1px solid;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.step_dl dd {
  margin: 0;
  padding: 0 0 0 10px;

}

/* 1カラム版のスタイル */
.step_dl_content_single {
  display: block;
}

.step_dl_left_single {
  width: 100%;
  font-size: 16px;
  line-height: 150%;
}


.step_dl_left_single img {
  width: 100%;
  margin: 0 auto;
}

/* dlの中身をフレックスレイアウトで左右分割 */
.step_dl_content {
  display: flex;
  gap: 1.5em;
  align-items: flex-start;
}

.step_dl_left {
  flex: 2;
  min-width: 0;
}

.step_dl_right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}

.step_dl_right img {
  max-width: 70%;
  height: auto;
}

.illustration_placeholder {
  width: 100%;
  height: 80px;
  background: linear-gradient(45deg, #00c853, #037a6a);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.step_dl:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #00c853, #037a6a);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.step_dl p a {
  font-weight: bold;
  color: #157efb;
  text-decoration: underline;
  display: inline-block;
}

.step_dl dt h3 {
  font-size: 130%;
  margin-bottom: 1em;
  border-left: 4px solid #00c853;
  padding-left: 0.8em;
  line-height: 1.5;
  color: #00132f;
  font-weight: bold;
  text-align: left;
}

.step_dl h3 span {
  display: block;
  font-size: 1rem;
  color: #00c853;
  font-weight: bold;
  margin-bottom: 0.3em;
  text-align: left;
}

/* 料金プランのプラン下ボタン */
table.price th>h3 {
  height: 1.8em;
}

table.price th.standerd>.no1 {
  display: block;
  margin-top: -70px;
}

table.price th.standerd>.no1>img {
  width: 100px;
}

.micro-btn,
.micro-btn:link,
.micro-btn:visited {
  background: #ffcb00;
  color: #333 !important;
  padding: 12px 12px;
  border-radius: 30px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.micro-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.micro-btn .button_icon {
  display: inline-block;
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.micro-btn .button_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.micro-btn .button_icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-top: 3px solid #ffcb00;
  border-right: 3px solid #ffcb00;
  transform: translate(-50%, -50%) rotate(45deg);
}

/*plan リニューアル 202603 */
/* =============================================
   料金ページ 202603add
   ============================================= */

/* ページナビ */
.navigationType01 {
  padding-bottom: 8px;
  position: relative;
  z-index: 10;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: -2em;
}

.navigationType01_wrapper {
  display: flex;
  justify-content: center;
  padding: 0 96px;
  transform: translateY(-32px);
}

.navigationType01_inner {
  background-color: #fff;
  border: #21af5a solid 2px;
  border-radius: 9999px;
  padding: 16px 48px;
}

.navigationType01List {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  min-height: 28px;
  margin: 0;
}

.navigationType01Link {
  color: #3898e0;
  display: block;
  font-weight: 600;
  padding-left: 1.75em;
  position: relative;
  font-size: 16px;
}

.navigationType01Link::before {
  aspect-ratio: 1 / 1;
  background-color: #21af5a;
  border-radius: 50%;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  top: 0.05lh;
  width: 1.5em;
}

.navigationType01Link::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0.55em;
  top: 57%;
  transform: translateY(-50%);
  font-size: 0.75em;
  color: #fff;
}

.navigationType01 li::marker {
  content: '';
}

.navigationType01_inner a:link {
  color: #21af5a;
  text-decoration: underline;
}

.navigationType01_inner a:visited,
a:active {
  color: inherit;
  text-decoration: none;
  color: #21af5a;
}

.pricing_comparison {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 30px auto 0 auto;
}

.pricing_box {
  padding: 40px 30px;
  border-radius: 5px;
  flex: 1;
  text-align: center;
}

.pricing_box.m--lstep {
  background-color: #d4f4dd;
}

.pricing_box.m--line {
  background-color: #e8e8e8;
}

.pricing_box_title {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.pricing_box_text {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  line-height: 1.6;
}

.pricing_plus {
  font-size: 56px;
  color: #000;
  display: flex;
  align-items: center;
}

/* 必要な費用ブロック */
.pricing_comparison {
  display: flex;
  align-items: stretch;
  gap: 25px;
  margin: 30px auto 0 auto;
  width: 70%;
}

.pricing_box {
  padding: 40px 30px;
  border-radius: 5px;
  flex: 1;
  text-align: center;
}

.pricing_box.m--lstep {
  background-color: #d4f4dd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing_box.m--line {
  background-color: #e8e8e8;
}

.pricing_box_title {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.pricing_box_text {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  line-height: 1.6;
}

.pricing_plus {
  font-size: 56px;
  color: #000;
  display: flex;
  align-items: center;
}

#plan_tabs .pricing_comparison {
  display: flex;
  align-items: center;
  gap: 25px;
  margin: 30px auto 0 auto;
}

#plan_tabs .pricing_box {
  padding: 40px 30px;
  border-radius: 5px;
  flex: 1;
  text-align: center;
}

#plan_tabs .pricing_box.m--lstep {
  background-color: #d4f4dd;
}

#plan_tabs .pricing_box.m--line {
  background-color: #e8e8e8;
}

#plan_tabs .pricing_box_title {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

#plan_tabs .pricing_box_text {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  line-height: 1.6;
}

#plan_tabs .pricing_plus {
  font-size: 56px;
  color: #000;
}

/* タブ切り替え */
#plan_tabs.pricing_tabs_wrap {
  margin: 40px auto 0 auto;
  text-align: center;
}

#plan_tabs .pricing_tab_item {
  position: relative;
  width: 350px;
  display: inline-block;
  color: #999;
  padding: 10px 10px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: 1px solid #fff;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: bottom;
}

#plan_tabs .pricing_tab_item:hover {
  color: #20af5a;
}

#plan_tabs .plan_tab__label {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  padding: 5px;
  position: relative;
  z-index: 1;
}

#plan_tabs .plan_tab__name {
  display: block;
  font-size: 24px;
  font-weight: bold;
}

#plan_tabs input[name='plan_tab_item'] {
  display: none;
}

#plan_tabs .pricing_tab_content {
  margin: 0 auto;
  display: none;
  padding: 20px 15px;
  text-align: left;
  position: relative;
  background: transparent;
  /* 背景は消す */
  z-index: 1;
}

#plan_tabs .pricing_tab_content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  /* フルwidth */
  height: 100%;
  /* 高さも要素いっぱい */
  background-color: #fff;
  /* 背景 */
  border-top: 3px solid #00a844;
  z-index: -1;
  /* 背面へ */
}

#plan_tabs #normal:checked~#normal_content,
#plan_tabs #large:checked~#large_content {
  display: block;
}

#plan_tabs input:checked+.pricing_tab_item {
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  color: #20af5a;
  background-color: #fff;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
}

#plan_tabs input:checked+.pricing_tab_item .plan_tab__name {
  color: #1a1a1a;
}

#plan_tabs input:checked+.pricing_tab_item {
  overflow: visible;
  /* ▼が切れるのを防ぐ */
}

#plan_tabs input:checked+.pricing_tab_item .plan_tab__label::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid #20af5a;
}

#plan_tabs input:checked+.pricing_tab_item .plan_tab__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #20af5a;
}

/* =============================================
   テーブルラッパー・スクロール設定
   ============================================= */
#plan_tabs .price_table_wrap {
  position: relative;
  padding-top: 80px;
  margin-top: -80px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}

#plan_tabs .price_table_scroll {

  -webkit-overflow-scrolling: touch;
  position: relative;
  max-height: max-content;
}

/* =============================================
   テーブル本体（共通）
   ============================================= */
#plan_tabs #normal-plan-price,
#plan_tabs #large-plan-price {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  table-layout: fixed;
}

/* =============================================
   プラン名行（tr_plan）スティッキーヘッダー
   ============================================= */
#plan_tabs #normal-plan-price .tr_plan th,
#plan_tabs #large-plan-price .tr_plan th {
  background-clip: padding-box;
  border-bottom: 2px solid #ddd;
  text-align: center;
  overflow: visible !important;
}

/* 大容量プラン - 最初の2列（空白・プラン名）の背景色 */
#plan_tabs #large-plan-price .tr_plan th:nth-child(2) {
  background-color: #be0200 !important;
}

/* =============================================
   通常プラン用スタイル
   ============================================= */
#plan_tabs #normal-plan-price th {
  padding: 15px 5px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}

#plan_tabs #normal-plan-price td {
  position: relative;
  padding: 4px 15px;
  /* border: 1px solid #ddd; */
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
}

#plan_tabs #normal-plan-price td.top_none {
  border-top: none;
}

#plan_tabs #normal-plan-price td.td_feature {
  color: #333;
  background-color: #575564;
}

#plan_tabs #normal-plan-price td.top_bring {
  border-top: 1px solid #ddd;
}

/* L〇〇のところだけ上部ドット線にしたい */
#plan_tabs #normal-plan-price td.top_bring2 {
  position: relative;
}

#plan_tabs #normal-plan-price td.top_bring2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  border-top: 2px dotted #575564;
  z-index: 2;
  pointer-events: none;
}

#plan_tabs #normal-plan-price td.top_bring2>span {
  display: block;
  padding: 2px 0 2px 2.5em;
  text-indent: -1em;
  text-align: left;
  white-space: normal;
  color: #fff;
}

/*
#plan_tabs #normal-plan-price th.free {
  position: relative;
  background-color: #2a7f74 !important;
}

#plan_tabs #normal-plan-price th.start {
  position: relative;
  background-color: #be0200 !important;
}

#plan_tabs #normal-plan-price th.standard {
  position: relative;
  background-color: #be0200 !important;
}

#plan_tabs #normal-plan-price th.pro {
  position: relative;
  background-color: #be0200 !important;
  overflow: visible;
}
*/
/* No.1バッジ */
#plan_tabs .no1-badge.m--pc {
  position: absolute;
  top: 30px;
  right: 65px;
  z-index: 200;
  pointer-events: none;
}

#plan_tabs .no1-badge.m--pc img {
  display: block;
  width: 100px;
}

#plan_tabs .no1-badge.m--sp {
  display: none;
}

/* マイクロコピー */
#plan_tabs #normal-plan-price .micro-c {
  font-size: 0.5em;
  line-height: 1.2;
  padding-top: 0;
  min-height: 1.8em;
  color: #fff !important;
  text-align: center;
}

/* マイクロボタン */

#plan_tabs #normal-plan-price .micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 22px;
  color: #333 !important;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

#plan_tabs #normal-plan-price .micro-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/*　プラン名 */
#plan_tabs #normal-plan-price th.free>h3,
#plan_tabs #normal-plan-price th.start>h3,
#plan_tabs #normal-plan-price th.standard>h3,
#plan_tabs #normal-plan-price th.pro>h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  min-height: 1.8em;
  color: #fff !important;
  font-size: 24px;
  text-align: center;
}

#plan_tabs #normal-plan-price .tr_feature {
  border-top: 5px solid #fff;
}

#plan_tabs #normal-plan-price .td_feature {
  line-height: 1.2;
  margin-bottom: 10px;
}

#plan_tabs #normal-plan-price .td_feature>small {
  font-size: 14px;
  line-height: 1;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link,
#plan_tabs #normal-plan-price .td_feature .td_feature_link:link,
#plan_tabs #normal-plan-price .td_feature .td_feature_link:visited {
  display: block;
  color: #fff;
  font-size: 16px;
  text-align: left;
  line-height: 1;
  text-decoration: none !important;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link>span {
  border-bottom: none;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #fff;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link:hover {
  color: #fff;
  border-bottom: none;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link:hover>span {
  border-bottom: none;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link_icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
}

#plan_tabs #normal-plan-price .td_fearure_check .check_icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

#plan_tabs #normal-plan-price .td_feature_link_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#plan_tabs #normal-plan-price .td_feature_link_list>li {
  width: calc(100% / 5 - 10px);
  margin: 8px 10px 8px 0 !important;
  text-align: left;
}

#plan_tabs #normal-plan-price .td_feature_link_list>li>a {
  font-size: 12px !important;
}

#plan_tabs #normal-plan-price .tr_feature_add {
  color: #fff;
  background-color: blue;
  border-top: solid 2px #fff;
}

#plan_tabs #normal-plan-price .td_feature_add {
  color: #fff;
  background-color: #575564;
  border-right: none !important;
  padding: 5px;
}

#plan_tabs #normal-plan-price .td_option .td_option_link,
#plan_tabs #normal-plan-price .td_option .td_option_link:link,
#plan_tabs #normal-plan-price .td_option .td_option_link:visited {
  color: blue;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: dotted 1px blue;
}

#plan_tabs #normal-plan-price .td_option .td_option_link:hover {
  border-bottom: none;
}

#plan_tabs #normal-plan-price .td_option .td_option_link>b,
#plan_tabs #normal-plan-price .td_option .td_option_link:link>b,
#plan_tabs #normal-plan-price .td_option .td_option_link:visited>b {
  color: blue !important;
}

#plan_tabs #normal-plan-price .tr_support_top {
  color: #fff;
  background-color: #be0200;
  border-top: solid 2px #fff !important;
}

#plan_tabs #normal-plan-price .tr_support_bottom {
  color: #fff;
  background-color: #be0200;
}

#plan_tabs #normal-plan-price .td_support_price {
  padding: 0 !important;
  border: none !important;
}

#plan_tabs #normal-plan-price .td_support_header {
  position: relative;
  font-size: 15px;
  text-align: left;
  border-bottom: solid 2px #be0200;
  padding: 5px 10px !important;
}

#plan_tabs #normal-plan-price .td_support_header .td_feature_link_icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
}

#plan_tabs #normal-plan-price .td_support_text {
  position: relative;
  font-size: 15px;
  border-left: solid 2px #be0200;
  border-right: solid 2px #be0200;
  border-bottom: solid 2px #be0200;
  text-align: left;
  padding: 10px 15px !important;
}

#plan_tabs #normal-plan-price .td_support_header .td_support_link,
#plan_tabs #normal-plan-price .td_support_header .td_support_link:link,
#plan_tabs #normal-plan-price .td_support_header .td_support_link:visited {
  display: block;
  text-decoration: none;
}

#plan_tabs #normal-plan-price .td_support_header .td_support_link>span {
  color: #fff;
  border-bottom: dotted 1px #fff;
}

#plan_tabs #normal-plan-price .td_support_header .td_support_link:hover>span {
  border-bottom: none;
}

#plan_tabs #normal-plan-price .td_support_link .td_support_link_icon {
  position: absolute;
  top: 42%;
  right: 15px;
  width: 25px;
}

#plan_tabs #normal-plan-price .td_support_price {
  width: 100%;
  border: solid 2px #be0200 !important;
}

#plan_tabs #normal-plan-price .td_support_price_text_wrap {
  position: relative;
  width: calc(100% - 4px);
  display: flex;
  align-items: stretch;
  font-size: 15px;
  text-align: left;
  padding: 0 !important;
  border: solid 2px #be0200;
}

#plan_tabs #normal-plan-price .td_support_price_text {
  color: #000;
  padding: 10px;
  background-color: #fff;
  text-align: center;
}

#plan_tabs #normal-plan-price .td_support_price_text.m--left {
  width: 30%;
  border-right: solid 2px #be0200;
}

#plan_tabs #normal-plan-price .td_support_price_text.m--right {
  width: 70%;
}

#plan_tabs #normal-plan-price .td_support_price_text>b {
  color: red;
  font-size: 120%;
  font-weight: bold;
  margin-top: 4px;
}

/* =============================================
   大容量プラン用スタイル
   ============================================= */
#plan_tabs #large-plan-price th {
  padding: 15px 5px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}

#plan_tabs #large-plan-price td {
  position: relative;
  padding: 15px 15px;
  border: 1px solid #ddd;
  font-size: 18px;
  text-align: center;
  vertical-align: middle;
}

#plan_tabs #large-plan-price td.top_none {
  border-top: none;
}

#plan_tabs #large-plan-price td.td_feature {
  color: #fff;
  background-color: #575564;
}

#plan_tabs #large-plan-price td.top_bring {
  border-top: 1px solid #ddd;
}

/* L〇〇のところだけ上部ドット線にしたい */
#plan_tabs #large-plan-price td.top_bring2 {
  position: relative;
}

#plan_tabs #large-plan-price td.top_bring2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  border-top: 2px dotted #575564;
  z-index: 2;
  pointer-events: none;
}

#plan_tabs #large-plan-price td.top_bring2>span {
  display: block;
  padding-left: 1.5em;
  text-indent: -1em;
  text-align: left;
  white-space: normal;
  color: #fff;
  font-size: 16px;
}

#plan_tabs #large-plan-price th.extra {
  position: relative;
  background-color: #be0200 !important;
}

/* マイクロボタン */
#plan_tabs #large-plan-price .micro-btn-wrap {
  margin-top: 10px;
}

#plan_tabs #large-plan-price .micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 22px;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

#plan_tabs #large-plan-price .micro-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* プラン名 */
#plan_tabs #large-plan-price th.extra>h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.5em !important;
  margin-bottom: 0.5em !important;
  min-height: 1.8em;
  color: #fff;
  font-size: 24px;
  text-align: center;
}

#plan_tabs #large-plan-price .tr_feature {
  border-top: 5px solid #fff;
}

#plan_tabs #large-plan-price .td_feature {
  line-height: 1.2;
  margin-bottom: 10px;
}

#plan_tabs #large-plan-price .td_feature>small {
  font-size: 14px;
  line-height: 1;
}

#plan_tabs #large-plan-price .td_feature .td_feature_link,
#plan_tabs #large-plan-price .td_feature .td_feature_link:link,
#plan_tabs #large-plan-price .td_feature .td_feature_link:visited {
  display: block;
  color: #fff;
  font-size: 16px;
  text-align: left;
  line-height: 1;
  text-decoration: none !important;
}

#plan_tabs #large-plan-price .td_feature .td_feature_link>span {
  border-bottom: none;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #fff;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

#plan_tabs #large-plan-price .td_feature .td_feature_link:hover {
  color: #fff;
  border-bottom: none;
}

#plan_tabs #large-plan-price .td_feature .td_feature_link:hover>span {
  border-bottom: none;
}

#plan_tabs #large-plan-price .td_feature .td_feature_link_icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
}

#plan_tabs #large-plan-price .td_fearure_check .check_icon {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

#plan_tabs #large-plan-price .td_feature_link_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

#plan_tabs #large-plan-price .td_feature_link_list>li {
  width: calc(100% / 7 - 10px);
  margin: 8px 10px 8px 0 !important;
  text-align: left;
}

#plan_tabs #large-plan-price .td_feature_link_list>li>a {
  font-size: 12px !important;
}

#plan_tabs #large-plan-price .tr_feature_add {
  color: #fff;
  background-color: blue;
  border-top: solid 2px #fff;
}

#plan_tabs #large-plan-price .td_feature_add {
  color: #fff;
  background-color: #575564;
  border-right: none !important;
  padding: 5px;
}

#plan_tabs #large-plan-price .td_option {
  color: #fff;
  background-color: blue;
  padding: 5px;
  border-left: none !important;
  border-right: 1px solid blue !important;
}

#plan_tabs #large-plan-price .td_option_text {
  color: blue;
  font-size: 15px;
  background-color: #fff;
  padding: 10px;
  text-align: left;
}

#plan_tabs #large-plan-price .td_option .td_option_link,
#plan_tabs #large-plan-price .td_option .td_option_link:link,
#plan_tabs #large-plan-price .td_option .td_option_link:visited {
  color: #575564;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: dotted 1px #575564;
}

#plan_tabs #large-plan-price .td_option .td_option_link:hover {
  border-bottom: none;
}

#plan_tabs #large-plan-price .td_option .td_option_link>b,
#plan_tabs #large-plan-price .td_option .td_option_link:link>b,
#plan_tabs #large-plan-price .td_option .td_option_link:visited>b {
  color: blue !important;
}

#plan_tabs #large-plan-price .tr_support_top {
  color: #fff;
  background-color: #be0200;
  border-top: solid 2px #fff !important;
}

#plan_tabs #large-plan-price .tr_support_bottom {
  color: #fff;
  background-color: #be0200;
}

#plan_tabs #large-plan-price .td_support_price {
  padding: 0 !important;
  border: none !important;
}

#plan_tabs #large-plan-price .td_support_header {
  position: relative;
  font-size: 15px;
  text-align: left;
  border-bottom: solid 2px #be0200;
  padding: 5px 10px !important;
}

#plan_tabs #large-plan-price .td_support_header .td_feature_link_icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
}

#plan_tabs #large-plan-price .td_support_text {
  position: relative;
  font-size: 15px;
  border-left: solid 2px #be0200;
  border-right: solid 2px #be0200;
  border-bottom: solid 2px #be0200;
  text-align: left;
  padding: 10px 15px !important;
}

#plan_tabs #large-plan-price .td_support_header .td_support_link,
#plan_tabs #large-plan-price .td_support_header .td_support_link:link,
#plan_tabs #large-plan-price .td_support_header .td_support_link:visited {
  display: block;
  text-decoration: none;
}

#plan_tabs #large-plan-price .td_support_header .td_support_link>span {
  color: #fff;
  border-bottom: dotted 1px #fff;
}

#plan_tabs #large-plan-price .td_support_header .td_support_link:hover>span {
  border-bottom: none;
}

#plan_tabs #large-plan-price .td_support_link .td_support_link_icon {
  position: absolute;
  top: 42%;
  right: 15px;
  width: 25px;
}

#plan_tabs #large-plan-price .td_support_price {
  width: 100%;
  border: solid 2px #be0200 !important;
}

#plan_tabs #large-plan-price .td_support_price_text_wrap {
  position: relative;
  width: calc(100% - 4px);
  display: flex;
  align-items: stretch;
  font-size: 15px;
  text-align: left;
  padding: 0 !important;
  border: solid 2px #be0200;
}

#plan_tabs #large-plan-price .td_support_price_text {
  color: #000;
  padding: 10px;
  background-color: #fff;
  text-align: center;
}

#plan_tabs #large-plan-price .td_support_price_text.m--left {
  width: 30%;
  border-right: solid 2px #be0200;
}

#plan_tabs #large-plan-price .td_support_price_text.m--right {
  width: 70%;
}

#plan_tabs #large-plan-price .td_support_price_text>b {
  color: red;
  font-size: 150%;
  font-weight: bold;
  margin-top: 4px;
}

/* =============================================
   料金表内 ポップアップ
   ============================================= */
#plan_tabs .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#plan_tabs .popup_content {
  position: absolute;
  top: 70px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 950px;
  max-width: 90%;
  max-height: 75%;
  overflow: auto;
  padding: 24px;
  border: solid 2px rgba(115, 115, 120, 0.16);
  box-shadow: 0px 4px 12px rgba(115, 115, 120, 0.16);
  margin: 70px auto 70px auto;
}

#plan_tabs .popup_inner {
  display: flex;
  gap: 16px;
}

#plan_tabs .popup_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#plan_tabs .popup_category {
  font-size: 20px !important;
  font-weight: 900 !important;
  font-family: 'Rounded Mplus 1c';
  line-height: 100%;
  background: linear-gradient(180deg,
      rgba(87, 177, 90, 1) 0%,
      rgba(0, 144, 128, 1) 50%,
      rgba(0, 121, 143, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 8px 0;
  text-align: left !important;
}

#plan_tabs .popup_title {
  color: #000;
  font-size: 24px;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c';
  margin: 0 0 8px 0;
  text-align: left;
}

#plan_tabs .popup_description {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

#plan_tabs .popup_plan {
  background: #f4f4f4;
  padding: 16px;
  margin-top: 8px;
  border-radius: 5px;
}

#plan_tabs .popup_plan_label {
  color: #000;
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 8px 0;
  text-align: left;
}

#plan_tabs .popup_plan_list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

#plan_tabs .popup_plan_list>li {
  color: #000;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin: 0 6px 8px 0;
}

#plan_tabs .popup_plan_list span {
  color: #000;
}

#plan_tabs a.popup_plan_link,
#plan_tabs a.popup_plan_link:link,
#plan_tabs a.popup_plan_link:visited {
  display: block;
  color: #000;
  font-size: 14px !important;
  line-height: 1.6 !important;
  border-radius: 18px;
  text-decoration: none;
  padding: 4px 12px;
}

#plan_tabs a.popup_plan_link:hover {
  text-decoration: none !important;
}

#plan_tabs a.popup_plan_link.m--00,
#plan_tabs a.popup_plan_link.m--00:link,
#plan_tabs a.popup_plan_link.m--00:visited {
  color: #fff;
  background-color: #93dd1b;
}

#plan_tabs a.popup_plan_link.m--01,
#plan_tabs a.popup_plan_link.m--01:link,
#plan_tabs a.popup_plan_link.m--01:visited {
  color: #fff;
  background-color: #01abd5;
}

#plan_tabs a.popup_plan_link.m--02,
#plan_tabs a.popup_plan_link.m--02:link,
#plan_tabs a.popup_plan_link.m--02:visited {
  color: #fff;
  background-color: #2a7f74;
}

#plan_tabs a.popup_plan_link.m--03,
#plan_tabs a.popup_plan_link.m--03:link,
#plan_tabs a.popup_plan_link.m--03:visited {
  color: #fff;
  background-color: #0064eb;
}

#plan_tabs .popup_button_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

#plan_tabs .popup_button,
#plan_tabs .popup_button:link,
#plan_tabs .popup_button:visited {
  display: block;
  width: 60%;
  margin-top: 16px;
  padding: 8px 0;
  background: linear-gradient(45deg,
      rgba(87, 177, 90, 1) 0%,
      rgba(0, 144, 128, 1) 50%,
      rgba(0, 121, 143, 1) 100%);
  color: #fff !important;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  border-radius: 32px;
  text-decoration: none;
}

#plan_tabs .popup_image_wrap {
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-left: 2px solid #f4f4f4;
  margin: 0;
  padding: 0 0 0 18px;
}

#plan_tabs .popup_image_wrap>img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

#plan_tabs .popup_image_wrap.m--col2>img {
  width: 45%;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0 1%;
}

#plan_tabs .popup_scece {
  width: 100%;
}

#plan_tabs .popup_scece * {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

#plan_tabs .popup_scece p {
  margin-top: 10px;
}

#plan_tabs .popup_scece_dl>dt {
  font-size: 18px;
  font-weight: 900;
  margin: 10px 0 0 0;
}

#plan_tabs .popup_scece_dl>dd {
  font-size: 16px;
  margin: 0;
}

#plan_tabs .popup_scece_dl>dd {
  padding: 0;
  margin: 5px 0 0 0;
}

#plan_tabs .popup_scece_list {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 1.5em;
  font-size: 16px;
  line-height: 180%;
}

#plan_tabs .popup_scece_list>li::marker {
  font-weight: 900;
}

#plan_tabs .popup_scece_list.m--disc {
  list-style-type: disc;
}

#plan_tabs .popup_scece_list.m--number {
  list-style-type: decimal;
}

#plan_tabs .popup_scece_list.m--alpha {
  list-style-type: lower-alpha;
}

#plan_tabs .popup_close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}


.pricing_comparison {
  align-items: stretch;
  width: 70%;
}

.pricing_box.m--lstep {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#plan_tabs .price_table_scroll {
  max-height: max-content;
}

#plan_tabs .pricing_tab_item {
  width: 36%;
}

#plan_tabs .pricing_tab_item.normal-tab-width {
  width: 56%;
}

#plan_tabs .pricing_tab_item.extra-tab-width {
  width: 56%;
}

#plan_tabs input:checked+.pricing_tab_item {
  background-color: #d4f4dd;
}

#plan_tabs .pricing_tab_item {
  color: #1a1a1a;
}

#plan_tabs #premium:checked~#premium_content {
  display: block;
}

/* 初期状態 */
.toggle_contents .left_content,
.toggle_contents .right_content {
  display: none;
}

/* 左右トグル（通常動作） */
.toggle input[type='radio']:first-of-type:checked~.toggle_contents .left_content {
  display: block;
}

.toggle input[type='radio']:last-of-type:checked~.toggle_contents .right_content {
  display: block;
}

/* タブがONのとき、left側の中身を表示 */
#plan_tabs #normal:checked~.toggle .left_content #normal_content {
  display: block;
}

#plan_tabs #large:checked~.toggle .left_content #large_content {
  display: block;
}

/* =========================
   トグル共通設定
   ========================= */

/* radioは非表示 */
.toggle input[type='radio'] {
  display: none;
}

/* トグル全体 */
.toggle {
  margin-bottom: 24px;
  padding-top: 10px;
}

/* =========================
   ラベル（OFF状態）
   ========================= */

.toggle>label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 120px;
  height: 44px;

  cursor: pointer;
  font-size: 14px;
  font-weight: 600;

  /* OFFは控えめ */
  color: #6fbf98;
  background: #f8fdfb;
  border: 1px solid #d6efe2;

  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
}

/* 左右をくっつける */
.toggle>label:first-of-type {
  border-radius: 999px 0 0 999px;
  border-right: none;
}

.toggle>label:last-of-type {
  border-radius: 0 999px 999px 0;
}

/* hover（軽く反応） */
.toggle>label:hover {
  background: #eef9f3;
}

/* =========================
   ON状態（主役）
   ========================= */

.toggle input[type='radio']:checked+label {
  background: #20af5a;
  color: #fff;
  border-color: #20af5a;
}

/* =========================
   トグル中身の表示制御
   ========================= */

/* 初期：非表示 */
.toggle_contents .left_content,
.toggle_contents .right_content {
  display: none;
}

/* 左ON → 左表示 */
.toggle input[type='radio']:first-of-type:checked~.toggle_contents .left_content {
  display: block;
}

/* 右ON → 右表示 */
.toggle input[type='radio']:last-of-type:checked~.toggle_contents .right_content {
  display: block;
}

.toggle>label:first-of-type {
  border-radius: 999px 0 0 999px;
  border-right: none;
  background: #20af5a;
  color: #fff;
}

/* 固定ヘッダー（JSで生成される） */
.price-clone {
  position: fixed;
  top: 0;
  /* グローバルヘッダーがあれば高さ分ずらす */
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  display: none;
  overflow: hidden;
}

.price-clone table {
  border-collapse: collapse;
  width: 100%;
}

.price-clone th {
  background: #fff;
}

#price-page-fixed table,
#price-page-fixed-large table,
#price-page-fixed-liny table,
#price-page-fixed-extra table,
#price-page-fixed-second-normal table,
#price-page-fixed-second-extra table {
  width: 100%;
  border-collapse: collapse;
}

table.price {
  left: auto !important;
  right: auto !important;
}

#price-page-fixed,
#price-page-fixed-large,
#price-page-fixed-liny,
#price-page-fixed-extra,
#price-page-fixed-second-normal,
#price-page-fixed-second-extra {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#price-page-fixed table {
  width: 100%;
  table-layout: fixed;
}

.micro-c {
  font-size: 0.5em;
  line-height: 1.2;
  padding-top: 0;
  min-height: 1.8em;
  color: #fff;
  text-align: center;
}

.micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 22px;
  color: #333 !important;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

th.standard,
th.start,
th.pro,
th.extra {
  position: relative;
  background-color: #be0200 !important;
}

.sticky-row h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  min-height: 1.8em;
  color: #fff;
  font-size: 24px;
  text-align: center;
}

th {
  padding: 15px 5px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}

/*           ページナビ              */
.price-header-bg {
  color: #FFF;
  background-color: #20af5a;
}

.price-header-bg-inner {
  width: 1080px;
  margin: 0 auto;
}

.price_header-bg-inner h1 {
  color: #FFF;
  background-color: #20af5a;
  padding: 60px 0;
}

.navigationType01 {
  padding-bottom: 8px;
  position: relative;
  z-index: 10;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: -2em;
}

.navigationType01_wrapper {
  display: flex;
  justify-content: center;
  padding: 0 96px;
  transform: translateY(-32px);
}

.navigationType01_inner {
  background-color: #fff;
  border: #21af5a solid 2px;
  border-radius: 9999px;
  padding: 16px 48px;
}

.navigationType01List {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  min-height: 28px;
  margin: 0;
}

.navigationType01Link {
  color: #3898e0;
  display: block;
  font-weight: 600;
  padding-left: 1.75em;
  position: relative;
  font-size: 16px;
}

.navigationType01Listbefore {
  aspect-ratio: 1 / 1;
  background-color: #21af5a;
  border-radius: 50%;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  top: 0.05lh;
  width: 1.5em;
}

.navigationType01Link::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0.55em;
  top: 57%;
  transform: translateY(-50%);
  font-size: 0.75em;
  color: #fff;
}

.navigationType01_inner a:link {
  color: #21af5a;
  text-decoration: underline;
}

.navigationType01_inner a:visited,
a:active {
  color: inherit;
  text-decoration: none;
  color: #21af5a;
}

.pricing-tabs__tab--active {
  background: #e8f9ef;
  border-color: #2dbb67;
  color: #2dbb67;
}

.pricing-tabs__tab--recommend .pricing-tabs__title {
  position: relative;
}

.pricing-tabs__content {
  display: none;
}

.pricing-tabs__content--active {
  display: block;
}

.pricing-tabs__content {
  display: none;
}

.pricing-tabs__content--active {
  display: block;
}

.billing-timing-tabs__content.billing-timing-tabs__content--active {
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 1px;
}

.billing-timing-tabs__content.billing-timing-tabs__content--active p {
  margin: 0 auto;
  width: 840px;
  text-align: left;
  padding: 0 20px 0 60px;
}

.billing-timing-tabs__content img {
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: block;
  padding-bottom: 20px;
}

.billing-timing-tabs__content.billing-timing-tabs__content--active a:link,
.billing-timing-tabs__content.billing-timing-tabs__content--active a:visited,
.billing-timing-tabs__content.billing-timing-tabs__content--active a:active {
  color: #157efb;
  text-decoration: underline;
}

/* =========================
   タブ（非アクティブ）
========================= */
.pricing-tabs__tab {
  color: #1a1a1a;
}

/* =========================
   タブ（アクティブ）
   #plan_tabs input:checked + .pricing_tab_item
========================= */
.pricing-tabs__tab--active {
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  color: #20af5a;
  background-color: #d4f4dd;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
}

/* プラン名だけ色変更
   .pricing_tab_item .plan_tab__name
*/
.pricing-tabs__tab--active .pricing-tabs__title {
  color: #20af5a;
}

/* =========================
   コンテンツ（料金例）
========================= */
.pricing-tabs__content {
  margin: 0 auto;
  display: none;
  padding: 40px 15px;
  text-align: left;
  position: relative;
  background: transparent;
  z-index: 1;
}

/* 表示中コンテンツ */
.pricing-tabs__content--active {
  display: block;
}

/* 背景 & 上ライン
   .pricing_tab_content::before
*/
.pricing-tabs__content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: #fff;
  border-top: 3px solid #00a844;
  z-index: -1;
}

button.pricing-tabs__tab.pricing-tabs__tab--active {
  position: relative;
  width: 350px;
  display: inline-block;
  color: #999;
  padding: 16px 20px;
  text-decoration: none;
  background-color: #d4f4dd;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: bottom;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  color: #20af5a;
  background-color: #fff;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
  background-color: #d4f4dd;
}

button.pricing-tabs__tab {
  position: relative;
  width: 350px;
  display: inline-block;
  color: #999;
  padding: 16px 20px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: 1px solid #fff;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: bottom;
}

small.pricing-tabs__catch {
  padding: 4px 20px;
  background-color: #00cd3f;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  border-radius: 22px;
  display: table;
  margin: auto;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

span.pricing-tabs__title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  padding-top: 10px;
}

/* =========================
   課金タイミング：タブ
========================= */
.billing-timing-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.billing-timing-tabs__tab {
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-weight: bold;
}

.billing-timing-tabs__tab--active {
  background: #d4f4dd;
  border-color: #20af5a;
  color: #20af5a;
}

/* =========================
   コンテンツ
========================= */
.billing-timing-tabs__content {
  display: none;
  padding: 24px;
  border-top: 3px solid #20af5a;
  background: #fff;
}

.billing-timing-tabs__content--active {
  display: block;
}

button.billing-timing-tabs__tab.billing-timing-tabs__tab--active {
  position: relative;
  width: 350px;
  display: inline-block;
  color: #999;
  padding: 16px 20px;
  text-decoration: none;
  background-color: #d4f4dd;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: bottom;
  background-color: #fff;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
  background-color: #d4f4dd;
  font-size: 20px;
  font-weight: bold;
}

button.billing-timing-tabs__tab {
  position: relative;
  width: 350px;
  display: inline-block;
  color: #333;
  padding: 16px 20px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: 1px solid #fff;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  transition: all 0.3s ease;
  vertical-align: bottom;
  font-size: 20px;
  font-weight: bold;
}

.support-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.support-item {
  flex: 1;
}

.support-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}

.support-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 24px;
}

.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-text {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.support-note {
  font-size: 13px;
  color: #666;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #1a4fd8;
  font-size: 16px;
  font-weight: 600;
}

.support-link-arrow {
  font-size: 20px;
  line-height: 1;
}

#wrapper {
  margin: 0;
  padding: 0;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link_icon {
  position: absolute;
  top: 6px;
  right: 7px;
  width: 18px;
  display: none;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link,
#plan_tabs #normal-plan-price .td_feature .td_feature_link:link,
#plan_tabs #normal-plan-price .td_feature .td_feature_link:visited {
  font-size: 14px;
}

/* toggle行 */
tr.toggle>td {
  cursor: pointer;
  position: relative;
  padding-right: 32px;
  letter-spacing: 4px;
}

#plan_tabs #normal-plan-price .td_support_header {
  text-align: center;
  padding: 4px 15px !important;
}

#plan_tabs #normal-plan-price .td_feature_add {
  padding: 0px 15px;
}

.fp-c {
  background: #93dd1b !important;
}

.fp-bg {
  background: #00c853 !important;
}


div#price-page-fixed th.free.fp-bg {
  padding: 0;
}

.group {
  max-width: 1080px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

#plan_tabs #normal-plan-price .micro-btn {
  color: #575564 !important;
}

.category {
  text-align: center;
  color: #fff;
  background-color: #575564;
}

#plan_tabs #normal-plan-price .tr_plan th:nth-child(1),
table.price th:nth-child(1) {
  background-color: #575564 !important;
}

/*大容量*/

#plan_tabs #large-plan-price .price th:nth-child(2) .micro-btn,
#plan_tabs #large-plan-price .price th:nth-child(3) .micro-btn {
  background: #cf2203 !important;
}

.tr_plan th.extra:nth-of-type(2)::before {
  background: #cf2203 !important;
}

#plan_tabs #large-plan-price .price th:nth-child(3) .micro-btn {
  background: #32cd32 !important;
}

.tr_plan th.extra:nth-of-type(3)::before {
  background: #32cd32 !important;
}

div#header-container-in {
  display: none;
}

i.fa-solid.fa-circle-check {
  color: #00cd3f;
}

tr.normal-plan-price:nth-child(odd) {
  background-color: #f5f5f5;
}

tr.normal-plan-price:nth-child(even) {
  background-color: #ffffff;
}

.even {
  background: #f8f8f8;
}

.cost {
  background-color: unset;
}

.plan-sub-tag {
  background: #ffff17;
  color: #333;
  border-radius: 3px;
  padding: 3px;
  margin-left: 5px;
  font-size: 0.6em;
  font-weight: bold;
}

#plan_tabs #large-plan-price td {
  padding: 4px 0 4px 8px;
}

img.td_feature_link_icon {
  display: none;
}

tr.toggle-pre td {
  position: relative;
  cursor: pointer;
}

tr.toggle-pre td::after {
  content: '＋';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

tr.toggle-pre.open td::after {
  content: '−';
}

.lstep-all {
  line-height: 4 !important;
  letter-spacing: 1px !important;
}

#plan_tabs #large-plan-price .td_support_header {
  text-align: center;
  font-size: 18px;
}

.plan-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.plan-popup--active {
  display: block;
}

.plan-popup__content {
  background: #fff;
  width: 600px;
  margin: 10vh auto;
  padding: 20px;
}

th.extra {
  padding: 20px !important;
}

td.td_feature.top_bring.sticky-col-1 .td_feature_link {
  display: block;
  padding: 14px 12px;
}

#plan_tabs #large-plan-price .td_feature .td_feature_link,
#plan_tabs #large-plan-price .td_feature .td_feature_link:link,
#plan_tabs #large-plan-price .td_feature .td_feature_link:visited {
  padding: 4px 0;
  font-size: 16px;
}

#plan_tabs #normal-plan-price td {
  padding: 0px 0px;
}

a.td_feature_link.popup-trigger {
  color: #fff;
  background-color: #575564;
}

td.td_feature.top_bring.sticky-col-1 .td_feature_link {
  display: block;
  padding: 4px 0 4px 8px;
  text-align: left;
}

table.price td {
  padding: 0px;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 1px;
  border: solid 1px #ccc;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link,
#plan_tabs #normal-plan-price .td_feature .td_feature_link:link,
#plan_tabs #normal-plan-price .td_feature .td_feature_link:visited {
  padding: 4px 0 4px 8px;
  font-size: 16px;
}

td.td_feature_add.sticky-col-1 {
  color: #fff;
  background-color: blue;
  border-right: none !important;
  padding: 5px;
}

tr.tr_support_top.toggle {
  color: #fff;
  background-color: #be0200;
  border-top: solid 2px #fff !important;
}

td.td_support_header.sticky-col-1 {
  text-align: center;
}

td.cost.top_none {
  padding: 4px 15px;
}

#plan_tabs #liny-plan-price td {
  position: relative;
  border: 1px solid #ddd;
  font-size: 16px;
  vertical-align: middle;
  text-align: center;
}

.lstep-line-top {
  border-top: 4px solid #20af5a !important;
}

.lstep-line-bottom {
  border-bottom: 4px solid #20af5a !important;
}

.lstep-line-left {
  border-left: 4px solid #20af5a !important;
}

.lstep-line-right {
  border-right: 4px solid #20af5a !important;
}

.lstep-line-dotbtm {
  border-bottom: 4px solid #20af5a !important;
}

/* 開いたときは dotbtm を無効化 */
tr.toggle.open.lstep-line-dotbtm {
  border-bottom: none !important;
}

td.category.sticky-col-1.lstep-all {
  color: #fff;
}

.liny-line-top {
  border-top: 4px solid #01a29b !important;
}

.liny-line-bottom {
  border-bottom: 4px solid #01a29b !important;
}

.liny-line-left {
  border-left: 4px solid #01a29b !important;
}

.liny-line-right {
  border-right: 4px solid #01a29b !important;
}

.liny-line-dotbtm {
  border-bottom: 4px solid #01a29b !important;
}

div#container {
  display: none;
}

.nomal-tab-width {
  width: 38% !important;
}

.plan-title-mini {
  font-size: 18px !important;
}

.plan-subtitle-mini {
  font-size: 14px !important;
}

span.plan_tab__label {
  background: #fff;
  border-radius: 19px;
}

.enterprise-tit {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
}

.enterprise-btn-wrap {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.enterprise-btn,
.enterprise-material-btn {
  --bg: linear-gradient(90deg, #1aedb1 0%, #00a29a 100%);
  --hover-color: #00a29a;
  --border-width: 2px;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  padding: 15px 10px;
  margin: 0;
  border: var(--border-width) solid #fff;
  border-radius: 90px;
  font-size: 22px;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgb(142 157 146 / 50%);
  background: var(--bg);
  transition: all 0.3s ease;
}

.enterprise-material-btn {
  --bg: linear-gradient(90deg, #edca1a 0%, #f39025 100%);
  --hover-color: #f39025;
}

.enterprise-btn:hover,
.enterprise-material-btn:hover {
  border: var(--border-width) solid transparent;
  color: var(--hover-color) !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--bg) border-box;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* 全体カード */
.partner-card {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding: 32px 40px;
  max-width: 960px;

  background: #ffffff;
  border: 1px solid #e6e8eb;
  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* ロゴ部分 */
.partner-card__logo {
  flex-shrink: 0;
  width: 140px;
}

.partner-card__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* テキスト部分 */
.partner-card__content {
  font-size: 16px;
  line-height: 1.8;
  color: #2c2f33;
}

/* 強調（グリーン） */
.highlight-green {
  color: #2db400;
  /* LINE系グリーン */
  font-weight: 600;
}

/* Premier強調（上品なゴールド） */
.highlight-gold {
  position: relative;
  font-weight: 700;
  color: #1f2328;
  padding: 0 4px;
}

.highlight-gold::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  width: 100%;
  height: 0.6em;
  background: linear-gradient(to right,
      rgba(255, 215, 0, 0.25),
      rgba(255, 215, 0, 0.15));
  z-index: -1;
  border-radius: 4px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .partner-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .partner-card__logo {
    width: 120px;
  }
}


/* 横長スタット */
.stat--wide {
  grid-column: 2 / 3;
  /* 中央を広く使う */
}

.stat-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.stat-split__item {
  text-align: center;
  min-width: 96px;
}

.stat-split__value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-split__label {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7280;
}

/* 区切り線（上品） */
.stat-split__divider {
  width: 1px;
  height: 48px;
  background: #e6e8eb;
}

/* SP対応 */
@media (max-width: 768px) {
  .stat--wide {
    grid-column: auto;
  }

  .stat-split {
    flex-direction: column;
    gap: 20px;
  }

  .stat-split__divider {
    width: 48px;
    height: 1px;
  }
}

/* =========================
  Base
========================= */
.liny-metrics {
  color: #1f2328;
}

.liny-metrics__container {
  max-width: 1120px;
  margin: 10px auto;
  background: #ffffff;
  padding: 40px 40px 0px;
  border-radius: 12px;
}

.liny-metrics__container img {
  width: 100%;
}

.liny-metrics__title {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  color: #009080;
  font-feature-settings: "palt";
}

.liny-metrics__subtitle {
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 25px;
  text-align: center;
  margin-top: 9px;
}

.liny_list {
  display: block;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  max-width: 840px;
  list-style: none;
}

.liny_list>li::marker {
  font-size: 18px;
  font-weight: 900;
}

.liny_list>li {
  margin: 0 0 8px 0;
  padding-left: 60px;
  font-size: 20px;
  line-height: 180%;
  letter-spacing: 1px;
}

.liny_list.m--nopadding>li {
  margin: 0;
}

.liny_list>li>i {
  color: #ff3d29;
  margin-right: 5px;
}

.liny_list>li h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}

/* =========================
  Top Stats
========================= */
.liny-metrics__stats {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  /* 真ん中を広く */
  gap: 32px;
  margin-bottom: 10px;
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "pnum";
  border-bottom: 1px solid #6e74834d;
}

.stat__value span {
  font-size: 16px;
  margin-left: 4px;
}

.stat__label {
  margin-top: 8px;
  font-size: 14px;
  color: #545e71;
}

/* --- wide stat (自治体) --- */
.stat--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.stat-split__item {
  text-align: center;
  min-width: 96px;
}

.stat-split__value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-split__label {
  margin-top: 4px;
  font-size: 14px;
  color: #6b7280;
}

.stat-split__divider {
  width: 1px;
  height: 48px;
  background: #e6e8eb;
}

/* =========================
  Middle Area
========================= */
.liny-metrics__middle {
  display: grid;
  grid-template-columns: 2.8fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 1em;
}

/* =========================
  Graph
========================= */
.liny-graph {
  position: relative;
  border-radius: 12px;
  padding: 32px 15px 0;
}

.graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 195px;
}

.graph-bars span {
  flex: 1;
  background: #dbeafe;
  border-radius: 3px 3px 0 0;
}

.graph-bars span:nth-child(1) {
  height: 28%;
}

.graph-bars span:nth-child(2) {
  height: 34%;
}

.graph-bars span:nth-child(3) {
  height: 42%;
}

.graph-bars span:nth-child(4) {
  height: 50%;
}

.graph-bars span:nth-child(5) {
  height: 58%;
}

.graph-bars span:nth-child(6) {
  height: 66%;
}

.graph-bars span:nth-child(7) {
  height: 76%;
}

.graph-bars span:nth-child(8) {
  height: 86%;
}

.graph-line {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 64px;

  /* ベース軸 */
  height: 2px;
  background: linear-gradient(to right,
      rgba(6, 199, 85, 0),
      rgba(6, 199, 85, 0.9));

  transform: rotate(-8deg);
  border-radius: 2px;
}

/* ===== 成長の帯（極太） ===== */
.graph-line::before {
  content: "";
  position: absolute;
  left: 22%;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);

  height: 240%;

  background: linear-gradient(to right,
      rgba(6, 199, 85, 0),
      rgba(6, 199, 85, 0.85),
      #86efac);

  clip-path: polygon(0 70%,
      55% 30%,
      85% 10%,
      100% 0,
      100% 100%);

  filter: drop-shadow(0 8px 16px rgba(6, 199, 85, 0.35));
}

/* ===== 矢印ヘッド ===== */
.graph-line::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);

  width: 26px;
  height: 26px;

  background: linear-gradient(135deg,
      #06c755,
      #86efac);

  clip-path: polygon(0 0,
      100% 50%,
      0 100%);

  filter: drop-shadow(0 6px 12px rgba(6, 199, 85, 0.45));
}


/* ===== バーの色だけ変更 ===== */
.graph-bars span {
  background: #5fd3c6;
}

/* ===== ラインの色だけ変更 ===== */
.graph-line {
  background: linear-gradient(to right,
      transparent,
      #5fd3c6);
}

/* ===== 太い帯の色だけ変更 ===== */
.graph-line::before {
  background: linear-gradient(to right,
      rgba(95, 211, 198, 0),
      rgba(95, 211, 198, 0.85),
      #baf1ea);
}

/* ===== 矢印の色だけ変更 ===== */
.graph-line::after {
  background: linear-gradient(135deg,
      #5fd3c6,
      #baf1ea);
}



.graph-note {
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
  margin: 0;
}

/* =========================
  Side Metrics
========================= */
.liny-metrics__side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  text-align: center;
}

.side-label {
  font-size: 14px;
  color: #6b7280;

}

.side-value {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 1px solid #6e74834d;
}

.side-value span {
  font-size: 16px;
  margin-left: 4px;
}

.side-value em {
  display: block;
  font-size: 16px;
  font-style: normal;
}

/* =========================
  Logos
========================= */
.liny-metrics__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 32px;
}

/* =========================
  Note
========================= */
.liny-metrics__note {
  text-align: right;
  font-size: 12px;
  color: #9ca3af;
}

.case-section {
  padding: 40px 0;
}


h2.case-title {
  text-align: center;
  margin-bottom: 1em;
  margin-top: 0;
  font-size: 2em;
  color: #009080;
}

.slide-content h3 {
  font-size: 1.4em;
  border-left: 4px solid #009080;
  padding-left: 9px;
}

.slide-content h3 span:first-child {
  color: #007e8d;
  font-size: 0.8em;
}

.imgcenter {
  margin: auto;
  text-align: center;
}

.imgcenter img {
  max-width: 800px;
}

td.category {
  pointer-events: none !important;
}

td.td_support_header {
  pointer-events: none;
}


.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-slider {
  display: flex;
  gap: 40px;
  /* ロゴ間隔 */
  width: max-content;
  animation: logo-scroll 40s linear infinite;
  will-change: transform;
}

.logo-slider li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.logo-slider img {
  height: 48px;
  /* ロゴ高さは調整可 */
  width: auto;
  object-fit: contain;
}

/* 無限横スクロール */
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.pricing_tab_item {
  cursor: pointer;
}

/* 初期状態 */
.plan_tab__label {
  display: inline-block;
  transition: transform 0.25s ease;
}

/* クリック後（checked時）に少し上へ */
input:checked+.pricing_tab_item .plan_tab__label {
  transform: translateY(-20px);
  border: 2px solid;
}



#plan_tabs .plan_tab__label {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  position: relative;
}

.plan_tab__label {
  position: relative;
}

.plan_tab__label::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid transparent;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pricing_tab_item.is-active .plan_tab__label::after {
  opacity: 1;
}

.pricing_tab_item.is-active .plan_tab__label::after {
  opacity: 1;
}

/* プラン名も少し上に上げる */
.plan_tab__name {
  display: block;
  transition: transform 0.25s ease;
}

.pricing_tab_item.is-active .plan_tab__name {
  transform: translateY(-6px);
}

.liny-award img {
  width: 200px;
  margin-top: -4em;
  mix-blend-mode: multiply;
}

.slider-track img {
  width: 100%;
}



.slider-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 40px;
}

.slider {
  padding: 40px 40px;
  box-shadow: 4px 4px 24px rgba(66, 116, 172, 0.1);
  margin-top: 3em;
  border-radius: 16px;
}

#seiki:checked~#seiki_content {
  display: block;
}

label.support_tab_item.support-tab-width {
  width: 25%;
  font-size: 1.4em;
}


/* 全体は縦並び */
.slider-track {
  display: flex;
  flex-direction: column;
  gap: 80px;
  /* 各スライドの間隔 */
}

/* 各スライドは横並び */
.slide {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 偶数番目だけ左右反転 */
.slide:nth-child(even) {
  flex-direction: row-reverse;
}

/* 画像・テキストの幅調整（お好みで） */
.slide-image,
.slide-content {
  width: 50%;
}

.slide-image img {
  width: 100%;
  height: auto;
  display: block;
}

/*---------- サポートページ　タブ切り替え用スタイル ----------*/
#supportbox {
  margin-top: 80px;
  padding-bottom: 120px;
  background-color: #e7fae3;
}

.support-sub-tag {
  background: #f8fd55;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 16px;
  padding: 3px 5px;
}

.support_tabs_wrap {
  margin: 40px auto 0 auto;
  text-align: center;
  max-width: 1080px;
}

.support_tab_item {
  position: relative;
  min-width: 200px;
  display: inline-block;
  color: #1a1a1a;
  padding: 18px 16px 10px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: 1px solid #fff;
  border-radius: 8px 8px 0 0;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.support_tab_item:hover {
  color: #20af5a;
}

input[name='support_tab_item'] {
  display: none;
}

.nomal-tab-width {
  width: 36%;
}

.nomal-tab-width .support-title {
  font-size: 1.25em;
}

/* 他2つのタブは少し狭く */
.sub-tab-width {
  width: 14%;
}

.support_tab_content {
  max-width: 1080px;
  margin: 0 auto;
  display: none;
  background-color: #fff;
  padding: 0 40px 40px;
  border-top: 2px solid #20af5a;
  text-align: left;
}

.support_sub_txt {
  max-width: 780px;
  margin: 0 auto;
  padding: 20px 0 0 0;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 1px;
  font-weight: normal;
}

#before:checked~#before_content,
#after:checked~#after_content {
  display: block;
}

#seiki:checked~#seiki_content {
  display: block;
}

label.support_tab_item.support-tab-width {
  width: 25%;
  font-size: 1.4em;
}

.support_tabs_wrap input:checked+.support_tab_item {
  border-radius: 5px 5px 0 0;
  font-weight: bold;
  color: #20af5a;
  background-color: #fff;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
  color: #1a1a1a;
}

/*   サポートのタブ部分のCSS開始     */


input[name='support_tab_item'] {
  display: none;
}

.support_tab_item {
  position: relative;
  text-align: center;
}

.support-subtub {
  font-weight: bold;
  color: #05a844;
  padding: 0 2px 0 2px;
  display: block;
}

/* ▼ */
input:checked+.support_tab_item::after {
  top: 17px;
}

input:checked+.support_tab_item .support-subtub {
  transform: translateY(-20px);
  border: #20af5a 2px solid;
  background: #20af5a;

  color: #fff;
  margin-top: -1em;
  border-radius: 19px;
}


.sub-tab-width {
  width: 20%;

}

.sub-tab-width .support-title {
  font-size: 1.1em;
}

.support-subtub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #05a844;
  opacity: 0;
  transition: opacity 0.2s ease;
}

input:checked+.support_tab_item .support-subtub::after {
  opacity: 1;
}

/* supportここまで */


/* ここから導入事例　*/

#case .cs_box {
  display: flex;
  justify-content: flex-start !important;
  align-items: flex-start !important;
}

.case-filter-wrapper {
  max-width: 1100px;
  margin: 0 auto 48px;
}

.case-filter-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5eef8;
  padding-bottom: 12px;
}

.case-filter-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.case-filter-label {
  width: 120px;
  font-weight: 600;
  color: #333;
  margin-top: 6px;
  flex-shrink: 0;
}

.case-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-filter-buttons button {
  background: #f7f7f7;
  color: #666666;
  border: none;
  border-radius: 999px;
  padding: 8px 10px 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.case-filter-buttons button:hover {
  background: #d9ffe8;
}

.case-filter-buttons button.active {
  background: #05cd3f;
  color: #fff;
}

.case-filter-buttons button {
  position: relative;
}

.btn-count {
  margin-left: 0px;
  font-size: 11px;
  color: #666;
  letter-spacing: -0.02em;
  margin-left: -1px;
}

.case-filter-buttons button.active {
  color: #fff;
}

.case-filter-buttons button.active .btn-count {
  color: #fff;
}

/* セクション全体 */
.lstep-section {
  margin-bottom: 24px;
}

/* タイトル */
.lstep-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #1e9b73;
}

/* リスト全体 */
.lstep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 各項目 */
.lstep-item {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 6px;
  padding-left: 2.2em;
  text-indent: -1.2em;

}

/* 最後の行だけ余白を消す */
.lstep-item:last-child {
  margin-bottom: 0;
}

.support-sub-tag {
  background: #f8fd55;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 16px;
  padding: 3px 5px;
}

/* フォーム無効状態 */
.form-locked {
  pointer-events: none;
  opacity: 0.5;
}

/* フォーム有効状態 */
.form-unlocked {
  pointer-events: auto;
  opacity: 1;
}

.payment-errors {
  color: red;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 10px
}

small.invalid-feedback {
  text-align: left
}

.alert ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0
}

.card.charge-card .card-body {
  border-top: 1px solid #ccc
}

.card.charge-card .card-header+.card-body {
  border-top: 0
}

.card.charge-card .charge-card-amount {
  font-size: 2rem
}

.card.charge-card .charge-card-date {
  font-size: 1.5rem
}

.btn.disabled,
.btn:disabled {
  cursor: not-allowed
}

.alert.alert-sm {
  padding: .375rem .75rem
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  color: #333
}

.account-card {
  border: none;
  text-align: justify
}

.account-card .account-card-body {
  border: 1px solid #e3e3e3;
  width: 100%;
  margin-top: 4px;
  display: flex
}

.account-card .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 16px
}

.account-card .profile-name {
  font-weight: 700
}

.account-card .profile-info {
  color: #757578
}

.need-support {
  margin: 0 auto;
  word-break: auto-phrase
}

.need-support .need-support-form {
  margin: 0 150px
}

.notice-message {
  margin: 20px auto;
  border: 1px solid grey;
  padding: 30px;
  word-break: auto-phrase
}

@media (min-width: 600px) {
  .notice-message {
    width: 468px
  }
}

@media (min-width: 768px) {
  .notice-message {
    width: 650px
  }
}

.notice-message p {
  margin-bottom: 0
}

.card_brand:before {
  content: "";
  display: inline-block;
  height: 3rem;
  width: 3rem;
  vertical-align: middle;
  margin-right: 1rem;
  background-repeat: no-repeat
}

.card_brand.visa:before {
  background-image: url("/img/business/overview-pc.png")
}

.card_brand.visa #card_brand_name:before {
  content: "Visa"
}

.card_brand.mastercard:before {
  background-image: url("/img/business/overview.png")
}

.card_brand.mastercard #card_brand_name:before {
  content: "MasterCard"
}

.card_brand.american_express:before {
  background-image: url("/img/business/plan-report-demo-poster.jpg")
}

.card_brand.american_express #card_brand_name:before {
  content: "American Express"
}

.card_brand.discover:before {
  width: 0;
  margin-right: 0
}

.card_brand.discover #card_brand_name:before {
  content: "Discover"
}

.card_brand.maestro:before {
  background-image: url("/img/business/position-paper-cover-en.png")
}

.card_brand.maestro #card_brand_name:before {
  content: "Marstro"
}

.card_brand.jcb:before {
  background-image: url("/img/business/position-paper-cover-zh-tw.png")
}

.card_brand.jcb #card_brand_name:before {
  content: "JCB"
}

.card_brand.diners_club:before {
  background-image: url("/img/business/position-paper-cover.png")
}

.card_brand.diners_club #card_brand_name:before {
  content: "Diners Club"
}

.card_brand.unionpay:before {
  width: 0;
  margin-right: 0
}

.card_brand.unionpay #card_brand_name:before {
  content: "\9280\806F(Union Pay)"
}

.modal {
  background-color: rgba(0, 0, 0, .5)
}

.modal .modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 700px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: 700
}

.modal .close:focus,
.modal .close:hover {
  color: #000;
  text-decoration: none;
  cursor: pointer
}

.btn-success {
  color: #fff;
  background-color: #38c172;
  border-color: #38c172;
}

.form-locked {
  pointer-events: none;
  opacity: 0.5;
  max-width: 776px;
  margin: auto;
  background-color: #fff;
  padding: 20px;
}

.form-unlocked {
  max-width: 776px;
  margin: auto;
  background-color: #fff;
  padding: 20px;
}

.popup-link {
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
}

.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.popup-content {
  background: #fff;
  max-width: 600px;
  max-height: 80vh;
  margin: 10vh auto;
  padding: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.popup-body {
  max-height: 50vh;
  overflow-y: auto;
  margin: 15px 0;
}

.popup-close {
  display: block;
  margin-left: auto;
  padding: 6px 16px;
}


/* フォーム全体を黒く覆う */
.form-lock-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  pointer-events: none;
  /* 操作は form-locked 側で止める */
}

/* 表示するメッセージ */
.form-lock-message {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: red;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 20px;
  text-align: center;
  white-space: nowrap;
}

/* formLock を基準にする */
#formLock {
  position: relative;
}

/* ロック中だけオーバーレイ表示 */
#formLock.form-locked .form-lock-overlay {
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.page_title_wrap.m--order .page_text {
  margin-top: 10px;
}

.page_title_wrap.m--order .page_text {
  border-radius: 2px;
}

.hosoku {
  font-size: 0.8em;
  font-weight: normal;
}

/* PC：テーブルスクロール領域 */
#plan_tabs .price_table_scroll {
  overflow-x: none;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  position: relative;
  max-height: none;
}

/* テーブル本体 */
#plan_tabs #normal-plan-price,
#plan_tabs #large-plan-price,
#plan_tabs #liny-plan-price {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
  table-layout: fixed;
}

/* 元テーブルのthead行は通常表示のまま */
#plan_tabs #normal-plan-price .tr_plan th,
#plan_tabs #large-plan-price .tr_plan th,
#plan_tabs #liny-plan-price .tr_plan th {
  background-clip: padding-box;
  border-bottom: 2px solid #ddd;
  text-align: center;
  overflow: visible !important;
}

/* CSS sticky は使わず、JS固定を優先 */
#plan_tabs #normal-plan-price .tr_plan.sticky-row th,
#plan_tabs #large-plan-price .tr_plan.sticky-row th,
#plan_tabs #liny-plan-price .tr_plan.sticky-row th {
  position: static !important;
  top: auto !important;
  z-index: auto !important;
}

/* JSで生成する固定ヘッダー */
#price-page-fixed,
#price-page-fixed-large,
#price-page-fixed-liny {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#price-page-fixed,
#price-page-fixed-large,
#price-page-fixed-liny,
#price-page-fixed-extra,
#price-page-fixed-second-normal,
#price-page-fixed-second-extra {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  z-index: 999;
  display: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}

#price-page-fixed table,
#price-page-fixed-large table,
#price-page-fixed-liny table {
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}


/* 旧クローン系は使わない */
.price-clone {
  display: none !important;
}

/* 固定ヘッダー内のth見た目を元テーブルに合わせる */
#price-page-fixed th,
#price-page-fixed-large th,
#price-page-fixed-liny th {
  position: relative;
  padding: 4px 15px;
  border: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-weight: bold;
  background-clip: padding-box;
  overflow: visible !important;
}

/* 通常プランの左端色 */
#price-page-fixed th:nth-child(1) {
  background-color: #575564 !important;
}

/* 必要な見出し色 */
#price-page-fixed th.standard,
#price-page-fixed th.start,
#price-page-fixed th.pro,
#price-page-fixed-large th.extra,
#price-page-fixed-liny th.extra {
  background-color: #be0200 !important;
}

/* h3の崩れ防止 */
#price-page-fixed h3,
#price-page-fixed-large h3,
#price-page-fixed-liny h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  min-height: 1.8em;
  color: #fff !important;
  font-size: 24px;
  text-align: center;
}

/* micro copy */
#price-page-fixed .micro-c,
#price-page-fixed-large .micro-c,
#price-page-fixed-liny .micro-c {
  font-size: 0.5em;
  line-height: 1.2;
  padding-top: 0;
  min-height: 1.8em;
  color: #fff !important;
  text-align: center;
}

/* micro button */
#price-page-fixed .micro-btn,
#price-page-fixed-large .micro-btn,
#price-page-fixed-liny .micro-btn,
#price-page-fixed-extra .micro-btn,
#price-page-fixed-second-normal .micro-btn,
#price-page-fixed-second-extra .micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 22px;
  color: #333 !important;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none !important;
}

/* 通常プランだけ文字色調整 */
#price-page-fixed .micro-btn {
  color: #575564 !important;
}

#price-page-fixed .no1-badge.m--sp {
  display: none !important;
}


/* ポップアップ表示中：スクロール禁止 */
body.is-popup-open {
  overflow: hidden !important;
}

/* body直下に移動したポップアップを中央配置 */
body>.popup {
  display: flex;
  justify-content: center;
  align-items: center;
}

body>.popup .popup_content {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin-top: 0 !important;
}

.contents_page_1080 {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}


.contents_page_1080 p {
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 1px;
}

.contents_page_1080.m--plan {
  width: 840px;
  margin: 0 auto;
  padding: 0;
}

.contents_page_1080.m--order {
  width: 840px;
  margin: 0 auto;
  padding: 0;
}

.contents_page .photo img {
  width: 50%;
}

/* ============================================
   plan_extra.html 専用スタイル
   .plan-extra-table でスコープを限定
   ============================================ */

/* --- テーブル全体 --- */
.plan-extra-table .price_table_wrap {
  position: relative;
  margin: 0 auto;
}

.plan-extra-table .price_table_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* .plan-extra-table .category {
  text-align: center;
  color: #fff;
  background-color: #575564;
} */
.plan-extra-table td.cost.top_none {
  padding: 10px 15px;
  font-size: 18px;
}

.plan-extra-table table.price {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: fixed;
}

.plan-extra-table table.price th {
  border: 1px solid #ddd;
  padding: 10px 8px;
  vertical-align: middle;
  line-height: 1.5;
  word-break: break-word;
}

.plan-extra-table .td_explanation {
  text-align: center;
  line-height: 100%;
  padding: 10px 8px;
  margin: 0;
}

/* --- ヘッダー行 --- */
.plan-extra-table .tr_plan th {
  background-color: #575564;
  color: #fff;
  font-weight: bold;
}

.plan-extra-table .tr_plan th.plan-name {
  text-align: center;
  background-color: #575564;
}

/* --- プラン名見出し（10万通〜） --- */
.plan-extra-table .tr_plan th.extra {
  background-color: #575564;
  color: #fff;
}

.plan-extra-table .tr_plan th.extra h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  min-height: 1.8em;
  font-weight: bold;
  margin: 0.5em auto;
  color: #fff;
  line-height: 1.2;
}

/* --- 申し込みボタン --- */
.plan-extra-table .micro-btn-wrap {
  margin-top: 6px;
}

.plan-extra-table .micro-btn {
  display: inline-block;
  background-color: #ffff17;
  color: #fff;
  align-items: center;
  width: 80%;
  font-size: 22px;
  margin: 0 auto;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.plan-extra-table .micro-btn:hover {
  .plan-extra-table .micro-btn {
    display: inline-block;
    background-color: #ffff17;
    color: #fff;
    align-items: center;
    width: 80%;
    font-size: 22px;
    margin: 0 auto;
    padding: 8px 10px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }

  .plan-extra-table .micro-btn:hover {
    background-color: #ffff17;
  }
}

/* --- 費用セクション --- */
.plan-extra-table .category {
  background-color: #575564;
  font-weight: bold;
  text-align: center;
}

.plan-extra-table .cost {
  text-align: center;
  background-color: #fff;
}

.plan-extra-table .top_none {
  border-top: none;
}

/* --- セクション区切り行（マーケティング〜／顧客管理〜 等） --- */
.plan-extra-table tr.toggle td.category {
  background-color: #575564;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 8px 0 8px 220px;
  letter-spacing: 4px;
}

/* --- 機能名セル --- */
.plan-extra-table .td_feature {
  text-align: left;
  padding: 6px 10px 6px 15px;
  background-color: #fff;
}

.plan-extra-table .td_feature a {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #fff;
  text-decoration-thickness: 0.06em;
  border-bottom: none;
}

.plan-extra-table .td_feature a:visited {
  color: #fff;
}

.plan-extra-table .td_feature.top_bring {
  border-top: 1px solid #ddd;
  background-color: #575564;
}

.plan-extra-table .td_feature.top_bring2 {
  border-top: none;
  position: relative;
  padding-left: 2.5rem;
  color: #fff;
  font-size: 14px;
  background-color: #575564;
  text-align: left;
  text-indent: -1.2em;
  line-height: 1.2;
}

/* top_bring2 の行区切りを ::before で点線表示 */
.plan-extra-table .td_feature.top_bring2::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  border-top: 1px dotted #000;
  pointer-events: none;
}

/* --- 機能名リンク --- */
.plan-extra-table .td_feature_link {
  text-decoration: none;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.plan-extra-table .td_feature_link:hover {
  text-decoration: underline;
  color: #1a73e8;
}

.plan-extra-table .td_feature_link_icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 2px;
}

/* --- 人気・NEWバッジ --- */
.plan-extra-table .plan-sub-tag {
  display: inline-block;
  background-color: #ffe600;
  color: #333;
  font-size: 10px;
  font-weight: bold;
  padding: 1px 5px;
  border-radius: 3px;
  margin-left: 4px;
  vertical-align: middle;
}

/* --- チェックマークセル --- */
.plan-extra-table .td_fearure_check {
  text-align: center;
  vertical-align: middle;
  color: #4caf50;
  font-size: 18px;
}

/* --- 偶数行の背景 --- */
.plan-extra-table tr.even td {
  background-color: #f9f9f9;
}

/* --- オプション機能ヘッダー行 --- */
.plan-extra-table .tr_feature_add .td_feature_add {
  background-color: #be0200;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 8px 0 8px 220px;
}

/* --- サポートヘッダー行 --- */
.plan-extra-table .tr_support_top .td_support_h {
  background-color: #575564;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 8px 0 8px 220px;
  letter-spacing: 4px;
}

/* --- 打ち消し線＋赤字 --- */
.plan-extra-table .bf_red {
  color: #e53935;
  font-weight: bold;
}

/* --- 注記テキスト --- */
.plan-extra-table .caption {
  font-size: 12px;
  color: #555;
  margin-top: 12px;
  line-height: 1.8;
}

.plan-extra-table .caption .red {
  color: #e53935;
}

/* ============================================
   ポップアップ
   ============================================ */
.plan-extra-table .popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow-y: auto;
}

.plan-extra-table .popup_content {
  position: relative;
  background: #fff;
  width: min(1180px, 92vw);
  margin: 70px auto;
  border-radius: 8px;
  padding: 24px 32px;
  box-sizing: border-box;
}

.plan-extra-table .popup_close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.plan-extra-table .popup_close:hover {
  color: #e53935;
}

.plan-extra-table .popup_inner {
  display: flex;
  gap: 24px;
  align-items: center;
}

.plan-extra-table .popup_text {
  flex: 0 0 52%;
}

.plan-extra-table .popup_image {
  flex: 0 0 48%;
}

.plan-extra-table .popup_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 200px;
}

.plan-extra-table .popup_category {
  font-family: "Rounded Mplus 1C";
  line-height: 100%;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 900;
  text-align: left;
  background: linear-gradient(rgb(87, 177, 90) 0%, rgb(0, 144, 128) 50%, rgb(0, 121, 143) 100%) text;
  margin: 0 0 8px;
}

.plan-extra-table .popup_title {
  color: rgb(0, 0, 0);
  font-size: 24px;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  text-align: left;
  margin: 0px 0px 8px;
}

.plan-extra-table .popup_description {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 900;
  text-align: left;
}

/* ボタンリンクは下線なし */
.plan-extra-table .popup_button,
.plan-extra-table .popup_button:link,
.plan-extra-table .popup_button:visited,
.plan-extra-table .popup_button:hover,
.plan-extra-table .popup_button:active {
  text-decoration: none;
}

.plan-extra-table .popup_button_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-extra-table .popup_button {
  display: block;
  width: 60%;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  color: rgb(255, 255, 255) !important;
  padding: 8px 0px;
  background: linear-gradient(45deg, rgb(87, 177, 90) 0%, rgb(0, 144, 128) 50%, rgb(0, 121, 143) 100%);
  border-radius: 32px;
  text-decoration: none;
}

.plan-extra-table .popup_button a:hover {
  background-color: #1a73e8;
  opacity: 0.6;
  filter: alpha(opacity=60);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.plan-extra-table .popup_image_wrap.m--col2 {
  width: 50%;
  height: auto;
  display: grid;
  grid-auto-flow: column;
  overflow: hidden;
  border-left: 2px solid rgb(244, 244, 244);
  margin: 0px;
  padding: 0px 0px 0px 18px;
}

.plan-extra-table .popup_image {
  width: 45%;
  height: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
  margin: 0px 1%
}

.plan-extra-table .popup_image_wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ーー　料金表ここまで　ーー */

#extra_enterprise {
  position: relative;
  background: #FFFEE8;
  background: linear-gradient(90deg, rgba(255, 254, 232, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 1) 80%, rgba(255, 254, 232, 1) 100%);
  padding-bottom: 64px;
  margin-top: 40px;
}

#extra_enterprise .enterprise_section_innner {
  margin: 0 auto;
  width: 1080px;
  padding: 1px 0 40px;
}

#extra_enterprise .enterprise_section_innner img {
  width: 100%;
  padding-bottom: 20px;
}

/* ============================================
   plan_secondaccount_nomal.html 専用スタイル（PC）
   .plan-normal-table でスコープを限定
   ============================================ */

/* テーブルラッパー */
.plan-normal-table .price_table_wrap {
  position: relative;
  padding-top: 80px;
  margin-top: -80px;
}

.plan-normal-table .price_table_scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

/* プラン名 h3 */
.plan-normal-table #normal-plan-price th.free>h3,
.plan-normal-table #normal-plan-price th.start>h3,
.plan-normal-table #normal-plan-price th.standard>h3,
.plan-normal-table #normal-plan-price th.pro>h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  min-height: 1.8em;
  color: #fff !important;
  font-size: 24px;
  text-align: center;
}

/* マイクロコピー */
.plan-normal-table #normal-plan-price .micro-c {
  font-size: 0.5em;
  line-height: 1.2;
  padding-top: 0;
  min-height: 1.8em;
  color: #fff !important;
  text-align: center;
}

/* マイクロボタン */
.plan-normal-table #normal-plan-price .micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 22px;
  color: #575564 !important;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.plan-normal-table #normal-plan-price .micro-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* 機能名リンク */
.plan-normal-table #normal-plan-price .td_feature .td_feature_link,
.plan-normal-table #normal-plan-price .td_feature .td_feature_link:link,
.plan-normal-table #normal-plan-price .td_feature .td_feature_link:visited {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 4px 0 4px 8px;
  text-align: left;
  line-height: 1;
  text-decoration: none !important;
}

.plan-normal-table #normal-plan-price .td_feature .td_feature_link>span {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #fff;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

/* ┗インデント行 */
.plan-normal-table #normal-plan-price td.top_bring2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  border-top: 2px dotted #575564;
  z-index: 2;
  pointer-events: none;
}

.plan-normal-table #normal-plan-price td.top_bring2>span {
  display: block;
  padding: 2px 0 2px 2.5em;
  text-indent: -1em;
  text-align: left;
  white-space: normal;
  color: #fff;
}

/* No.1バッジ */
.plan-normal-table .no1-badge.m--pc {
  position: absolute;
  top: 30px;
  right: 65px;
  z-index: 200;
  pointer-events: none;
}

.plan-normal-table .no1-badge.m--sp {
  display: none;
}

/* ポップアップ位置補正 */
.plan-normal-table .popup_content {
  position: relative;
  margin: 70px auto 70px auto;
}

/* ============================================
   plan_secondaccount_nomal.html 専用スタイル（PC）
   .plan-normal-table でスコープを限定
   ============================================ */

/* テーブルラッパー */
.plan-normal-table .price_table_wrap {
  position: relative;
  padding-top: 80px;
  margin-top: -80px;
}

.plan-normal-table .price_table_scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

/* プラン名 h3 */
.plan-normal-table #normal-plan-price th.free>h3,
.plan-normal-table #normal-plan-price th.start>h3,
.plan-normal-table #normal-plan-price th.standard>h3,
.plan-normal-table #normal-plan-price th.pro>h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0.5em !important;
  min-height: 1.8em;
  color: #fff !important;
  font-size: 24px;
  text-align: center;
}

/* マイクロコピー */
.plan-normal-table #normal-plan-price .micro-c {
  font-size: 0.5em;
  line-height: 1.2;
  padding-top: 0;
  min-height: 1.8em;
  color: #fff !important;
  text-align: center;
}

/* マイクロボタン */
.plan-normal-table #normal-plan-price .micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 22px;
  color: #575564 !important;
  padding: 8px 10px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.plan-normal-table #normal-plan-price .micro-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

/* 機能名リンク */
.plan-normal-table #normal-plan-price .td_feature .td_feature_link,
.plan-normal-table #normal-plan-price .td_feature .td_feature_link:link,
.plan-normal-table #normal-plan-price .td_feature .td_feature_link:visited {
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 4px 0 4px 8px;
  text-align: left;
  line-height: 1;
  text-decoration: none !important;
}

.plan-normal-table #normal-plan-price .td_feature .td_feature_link>span {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #fff;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

/* ┗インデント行 */
.plan-normal-table #normal-plan-price td.top_bring2::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  border-top: 2px dotted #575564;
  z-index: 2;
  pointer-events: none;
}

.plan-normal-table #normal-plan-price td.top_bring2>span {
  display: block;
  padding: 2px 0 2px 2.5em;
  text-indent: -1em;
  text-align: left;
  white-space: normal;
  color: #fff;
}

/* No.1バッジ */
.plan-normal-table .no1-badge.m--pc {
  position: absolute;
  top: 30px;
  right: 65px;
  z-index: 200;
  pointer-events: none;
}

.plan-normal-table .no1-badge.m--sp {
  display: none;
}

/* ポップアップ位置補正 */
.plan-normal-table .popup_content {
  position: relative;
  margin: 70px auto 70px auto;
}

.enterprise-scroll-box {
  border: #00a29a 1px solid;
  padding: 0 20px 0px;
  max-height: 900px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ===== case summary template 専用レイアウト設定 ===== */

/* 事例ページのみ900px幅に拡張するモディファイア */
.contents_page.m--900 {
  width: 100%;
  max-width: 940px;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.6;
}

/* ===== case summary template（事例ページ統一ひな型）===== */

/* ヒーロービジュアル：画像＋右側テキストの横並びラッパー */
.cs_hero_wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 40px auto;
}

/* 左側：画像 */
.cs_hero_img {
  flex: 1;
  line-height: 0;
}

.cs_hero_img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右側：テキスト */
.cs_hero_text {
  flex: 1;
}

.cs_hero_text p {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: bold;
  line-height: 1.6;
  color: #00cd3f;
  margin: 0;
}

/* 導入効果ボックス：グレー背景の左右2カラム */
.cs_effect_box {
  display: flex;
  align-items: stretch;
  margin: 20px 0 1em 0;
  background-color: #e7fae3;
  border-radius: 6px;
}

/* 左列：「SHISHI導入の成果」ラベル */
.cs_effect_label {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  font-size: clamp(16px, 1.1vw, 18px);
  font-weight: bold;
  color: #00cd3f;
  text-align: center;
  line-height: 1.5;
}

/* 右列：成果リスト */
.cs_effect_list {
  list-style: none;
  margin: 0;
  padding: 16px 20px;
  flex: 1;
}

.cs_effect_list li {
  font-size: clamp(18px, 1.2vw, 20px);
  color: #1a1a1a;
  line-height: 1.7;
  padding: 2px 0 2px 20px;
}

/* 各項目の先頭にダッシュ */
.cs_effect_list li::before {
  content: "ー";
  margin: 0 4px 0 0;
}

/* セクション（見出し＋本文＋画像の繰り返し単位） */
.cs_section {
  margin: 0 auto;
}

/* ボックスの直後のセクションにだけ区切り線を引く */
.cs_effect_box+.cs_section {
  margin: 40px 0 0 0;
  padding-top: 40px;
  border-top: solid 1px #00c853;
}


/* PC時：見出しの下で画像（左）とテキスト（右）を横並びにする */
.cs_section_inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* 左列：画像（幅固定） */
.cs_section_inner .cs_section_img {
  flex-shrink: 0;
  width: 340px;
  text-align: left;
  margin: 0;
}

/* 右列：本文テキスト */
.cs_section_body {
  flex: 1;
}


/* セクション見出し：共通ベーススタイル */
.cs_section_title {
  font-size: 24px;
  font-weight: 900;
  padding: 0 0 4px 0;
  margin: 70px 0 40px 0;
  line-height: 150%;
  text-align: center;
  font-family: "Rounded Mplus 1c", sans-serif;
}

/* パターンA：グリーン下線（#00cd3f） */
.cs_section_title.m--green {
  border-bottom: 3px solid #00cd3f;
}

/* パターンB：ティール下線（rgba(0, 121, 143, 1)） */
.cs_section_title.m--teal {
  border-bottom: 3px solid rgba(0, 121, 143, 1);
}

/* パターンC：グリーン下線・テキスト幅のみ（inline-block） */
.cs_section_title.m--green-inline {
  display: inline-block;
  border-bottom: 3px solid #00cd3f;
}

/* セクション本文 */
.cs_section_text {
  font-size: clamp(18px, 1.3vw, 20px);
  line-height: 1.9;
  margin: 0;
  color: #333;
}

/* セクション画像：スマホ画面サイズ相当で中央表示 */
.cs_section_img {
  text-align: center;
  margin: 0 0 24px 0;
}

.cs_section_img img {
  max-width: 340px;
  width: 100%;
  height: auto;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* 成果文：太字＋オレンジ強調 */
.cs_result_text {
  font-size: 16px;
  font-weight: bold;
  color: #00cd3f;
  margin: 40px 0 0 0;
  line-height: 1.8;
}

/* ブログ誘導エリア */
.cs_blog_area {
  margin: 30px 0 0 0;
}

.cs_blog_area p {
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

/* 動画・クレジットをまとめて上下ボーダーで区切るセクション */
.cs_media_section {
  margin: 0 auto;
  padding: 0 auto;
  /* border-top: 1px solid #00c853; */
}


/* ブログ誘導リンク：インラインリンク */
.cs_blog_link,
.cs_blog_link:link,
.cs_blog_link:visited {
  color: #f39025;
  text-decoration: underline;
  font-weight: bold;
}

/* 制作担当クレジット */
.cs_credit_box {
  margin: 10px 0 0 0;
  padding: 20px 24px;
  background-color: transparent;
  font-size: 14px;
  color: #555;
  line-height: 2;
  text-align: center;
}

.cs_credit_box a,
.cs_credit_box a:link,
.cs_credit_box a:visited {
  color: revert;
  text-decoration: underline;
}

/* PC時：見出しの下で画像（左）とテキスト（右）を「縦並び」にする */
.cs_section_inner_tate {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-direction: column-reverse;
}

/* 左列：画像（幅固定） */
.cs_section_inner_tate .cs_section_img {
  flex-shrink: 0;
  width: 340px;
  text-align: left;
  margin: 0;
}

/* セクション見出し：共通ベーススタイル */
.cs_section_title_left {
  font-size: clamp(24px, 1.78vw, 32px);
  font-weight: 900;
  padding: 0 0 4px 0;
  margin: 70px 0 40px 0;
  line-height: 150%;
  font-family: "Rounded Mplus 1c", sans-serif;
  border-bottom: 2px dotted #ccc;
}

/* 成果文：太字強調 */
.cs_result_text_center {
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: bold;
  color: #00cd3f;
  margin: 40px 0 0 0;
  line-height: 1.8;
  text-align: center;
}

/* PC時：見出しの下で画像（左）とテキスト（右）を「縦並び」にする */
.cs_section_inner_tate2 {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}

/* 左列：画像（幅固定） */
.cs_section_inner_tate .cs_section_img {
  flex-shrink: 0;
  width: 340px;
  text-align: left;
  margin: 0;
}

/* セクション見出し：共通ベーススタイル */
.cs_section_title_left {
  font-size: clamp(32px, 1.78vw, 34px);
  font-weight: 900;
  padding: 0 0 4px 0;
  margin: 70px 0 40px 0;
  line-height: 150%;
  font-family: "Rounded Mplus 1c", sans-serif;
  border-bottom: 2px dotted #ccc;
}

.cs_section_title_center {
  width: 80%;
  font-size: clamp(32px, 1.78vw, 34px);
  font-weight: 900;
  padding: 0 0 4px 0;
  margin: 50px auto 40px auto;
  line-height: 150%;
  text-align: center;
}


/* 成果文：太字強調 */
.cs_result_text_center {
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: bold;
  color: #00cd3f;
  margin: 40px 0 0 0;
  line-height: 1.8;
  text-align: center;
}

.cs_exlist_box {
  margin: 45px 0 25px 0;
  padding: 45px 0 0 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 30px;
  border-top: solid 1px #ccc;
}

.cs_exlist_box::after {
  content: "";
  display: block;
  width: 32%;
}

/* =========================================================
  SHISHI 機能紹介セクション 追加CSS
  PC: style02.css 末尾へ追加
  SP: smart02.css 末尾へ追加しても利用可能なレスポンシブ込み
========================================================= */
.features-renewal {
  background: #fff;
  width: 1200px;
  margin: 0 auto;
  padding: 70px 0 80px;
  color: #1a1a1a;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
  border-radius: 18px;
}

.features-renewal * {
  box-sizing: border-box;
}

.features-renewal__inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.features-renewal__title {
  margin: 0 0 10px;
  font-family: "Rounded Mplus 1c", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  letter-spacing: .04em;
}

.features-renewal__lead {
  margin: 0 0 42px;
  text-align: center;
  color: #666;
  font-size: 16px;
  font-weight: 700;
}

.features-tabs {
  display: flex;
  gap: 6px;
  margin: 0 0 30px;
  padding: 8px;
  background: #efede6;
  border-radius: 999px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.features-tabs__button {
  flex: 1 0 110px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6a6a66;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 16px 18px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.features-tabs__button.is-active {
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.features-panel {
  display: none;
}

.features-panel.is-active {
  display: block;
  animation: featuresFade .28s ease;
}

@keyframes featuresFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 170px;
  margin: 0 0 34px;
  padding: 32px;
  border-radius: 18px;
}

.features-hero--green {
  background: linear-gradient(135deg, #d8f5ec 0%, #bfe7d7 100%);
}

.features-hero--blue {
  background: linear-gradient(135deg, #e3f2ff 0%, #cfe5f4 100%);
}

.features-hero--yellow {
  background: linear-gradient(135deg, #fff3d8 0%, #f8dfaa 100%);
}

.features-hero--purple {
  background: linear-gradient(135deg, #efedff 0%, #dcd8ff 100%);
}

.features-hero__label {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .78);
  color: #04342c;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}

.features-hero__title {
  margin: 0 0 12px;
  color: #073e35;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
  font-weight: 900;
}

.features-hero__text {
  margin: 0;
  color: #08705f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.features-hero__icon {
  display: grid;
  place-items: center;
  width: 94px;
  height: 94px;
  border-radius: 16px;
  background: #fff;
  font-size: 34px;
  color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.features-section-label {
  margin: 0 0 16px;
  color: #555;
  font-size: 15px;
  font-weight: 900;
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 34px;
}

.features-card {
  display: block;
  padding: 18px;
  border: 1px solid #e5e0d7;
  border-radius: 14px;
  background: #fff;
  color: inherit;
  text-decoration: none !important;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.features-card:hover {
  transform: translateY(-4px);
  border-color: #21af5a;
  box-shadow: 0 10px 24px rgba(33, 175, 90, .12);
}

.features-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.45 / 1;
  margin: 0 0 18px;
  border-radius: 10px;
  overflow: hidden;
}

.features-card__visual--mint {
  background: #dff5ed;
}

.features-card__visual--blue {
  background: #e1f0fb;
}

.features-card__visual--yellow {
  background: #fff0cf;
}

.features-card__visual--purple {
  background: #eeeaff;
}

.features-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: #fff;
  border-radius: 5px;
  color: #073e35;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.features-ui-chat {
  width: 78%;
  padding: 18px;
  border-radius: 10px;
  background: #81aabd;
}

.features-ui-chat span {
  display: block;
  width: 78%;
  margin: 0 0 7px;
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
}

.features-ui-chat span:last-child {
  margin-bottom: 0;
}

.features-ui-flow,
.features-ui-reply,
.features-ui-calendar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #0967ad;
  font-weight: 900;
}

.features-ui-flow span,
.features-ui-reply span,
.features-ui-calendar span {
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
}

.features-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
}

.features-card__head h4 {
  margin: 0;
  color: #1a1a1a;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 900;
}

.features-card__head span {
  color: #555;
  font-size: 28px;
  line-height: 1;
  transition: color .2s ease;
}

.features-card:hover .features-card__head span {
  color: #21af5a;
}

.features-card p {
  margin: 0 0 12px;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .03em;
}

.features-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.features-card li {
  position: relative;
  margin: 0 0 6px;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
}

.features-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #00a86b;
  font-weight: 900;
}

.features-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.features-mini-grid--large {
  margin-top: 18px;
}

.features-mini-card {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 18px;
  border-radius: 12px;
  background: #f4f1e9;
  color: #1a1a1a !important;
  text-align: center;
  text-decoration: none !important;
  font-weight: 900;
  line-height: 1.5;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.features-mini-card:hover {
  transform: translateY(-3px);
  background: #e8f7ef;
  color: #16944d !important;
}

@media screen and (max-width: 640px) {
  .features-renewal {
    padding: 44px 0 56px;
  }

  .features-renewal__inner {
    width: calc(100% - 28px);
  }

  .features-renewal__title {
    font-size: 26px;
  }

  .features-renewal__lead {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .features-tabs {
    margin-bottom: 22px;
    padding: 5px;
    border-radius: 22px;
  }

  .features-tabs__button {
    flex-basis: 78px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .features-hero {
    grid-template-columns: 1fr auto;
    gap: 14px;
    min-height: 120px;
    margin-bottom: 24px;
    padding: 20px 16px;
    border-radius: 14px;
  }

  .features-hero__label {
    margin-bottom: 10px;
    padding: 4px 9px;
    font-size: 10px;
  }

  .features-hero__title {
    font-size: 20px;
  }

  .features-hero__text {
    font-size: 12px;
  }

  .features-hero__icon {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    font-size: 24px;
  }

  .features-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .features-card {
    padding: 14px;
  }

  .features-card__head h4 {
    font-size: 19px;
  }

  .features-card p,
  .features-card li {
    font-size: 13px;
  }

  .features-ui-chat span {
    font-size: 12px;
    padding: 8px 10px;
  }

  .features-card__badge {
    font-size: 11px;
    padding: 5px 9px;
  }

  .features-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .features-mini-card {
    min-height: 82px;
    padding: 12px;
    font-size: 13px;
  }
}