﻿@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

/* ---------------------------------------- *
*   header
* ---------------------------------------- */

.header_wrapper {
  height: auto;
}

.header_wrapper.m--bar_show {
  height: 100px;
}

.header_wrapper.m--bar_close {
  height: 60px;
}

.header_wrapper .logo h1 {
  padding: 10px;
}

.wrapper.m--bar_show {
  padding: 100px 0 0 0 !important;
}

.wrapper.m--bar_close {
  padding: 60px 0 0 0 !important;
}

/* headerの最上部のバナー */
.specialbar_wrapper {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #009080;
}

.specialbar_wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.specialbar_close {
  position: absolute;
  top: 0;
  left: 0;
  flex: 0 1 24px;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  margin: 8px;
}

.specialbar_close::before,
.specialbar_close::after {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #1a1a1a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.specialbar_close::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.specialbar_wrapper a {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 55px);
  height: 40px;
  padding: 0 5px 0 0;
  text-decoration: none;
  color: #FFFFFF;
  line-height: 1.8;
}

.specialbar_wrapper a:hover .title,
.specialbar_wrapper a:hover .more {
  text-decoration: underline;
}

.specialbar_wrapper .title_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 10px;
}

.specialbar_wrapper .title_wrap .title {
  font-size: 9px;
  color: #FFFFFF;
  margin: 0;
}

.specialbar_wrapper .more {
  display: flex;
  align-items: center;
  width: 7em;
  font-size: 9px;
  font-weight: bold;
  margin: 0;
}

.specialbar_wrapper .more::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  box-sizing: border-box;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.wrapper.m--bar_close,
.header_wrapper.m--bar_close.m--bar_close {
  margin-top: 0;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}


.wrapper.m--bar_close .header_wrap,
.header_wrapper.m--bar_close.m--bar_close .header_wrap {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 10px;
}

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

.header_wrap .logo_wrap h1 {
  width: 150px;
  height: 60px;
  padding: 0 20px;
  margin: 0;
}

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

#humburger {
  display: none;
}

.menu_button {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  z-index: 10;
}

.menu_button::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0c9";
  font-size: 28px;
  font-weight: 900;
  position: absolute;
  color: #3c3c3c;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#humburger:checked+.menu_button::before {
  color: #FFF;
  content: "\f00d";
}

.nav_wrapper {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  padding: 60px 20px;
  background-color: #323232;
  overflow-y: scroll;
  text-align: left;
}

#humburger:checked~.nav_wrapper {
  visibility: visible;
}

.nav_wrap {
  padding-bottom: 60px;
}

.global_menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global_menu>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.global_menu li {
  margin: 0;
  border-bottom: dotted 1px #ccc;
}

.global_menu a {
  display: block;
  color: #FFF;
  text-decoration: none;
}


.menu:not(:last-child) {
  margin-bottom: 20px;
}

.menu>a {
  color: #00c853;
  font-weight: bold;
  margin: 0;
  padding: 15px 0;
}

.menu>a .fas {
  margin-left: 5px;
}

.child_menu {
  list-style: none;
  margin: 0 0 0 1em;
  padding: 0;
}

.child_menu>li>a {
  font-size: 80%;
  margin: 0;
  padding: 10px 0;
}

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

/* CTA */
.cta_list {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 50px;
}

.cta_list li {
  margin-bottom: 10px;
}

.cta_item_tel {
  width: 100%;
  background-color: #FFF;
}

.tel_wrap {
  display: block;
  color: #000;
  text-align: center;
}

.tel_wrap a:link,
.tel_wrap a:visited {
  display: block;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 0;
}

.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 10px;
}

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

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

.contact_wrap .item_text {
  color: #f96c17;
  font-family: "Rounded Mplus 1c";
  font-size: 20px;
  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: 0px 10px 5px
}

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

.order_wrap .item_text {
  font-family: "Rounded Mplus 1c";
  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(-45deg);
}

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

.order_wrap .item_text>span {
  display: block;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

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

.wrapper.bar_show {
  padding-top: 70px;
}

.wrapper.m--bar_close {
  padding-top: 70px;
}

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

.lphead_sp_wrapper.m--index {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 750 / 1090;
}


.lphead_sp_wrapper.m--accompaniment {
  position: relative;
  z-index: 0;
  width: 100%;
}


.lphead_sp_wrapper.m--lstep {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
}


.lphead_sp_wrapper.m--index .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.lphead_sp_wrapper.m--index .lphead_title {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}

.lphead_sp_wrapper.m--index .img_title {
  width: 100%;
}

/* ---------------------------------------- *
 *   contents内ボタン
     TOPページ、その他ページ
 * ---------------------------------------- */
.lphead_pc_wrapper {
  display: none;
}

.lphead_sp_wrapper.m--contents {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1.6 / 1;
}

.lphead_sp_wrapper.m--index .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.lphead_sp_wrapper.m--other .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}


/* ---------------------------------------- *
 *   lphead
 *   伴走支援ページ[accompaniment_lp.html]
 * ---------------------------------------- */

.lphead_pc_wrapper.m--lp {
  display: none;
}

.lphead_sp_wrapper.m--accompaniment {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 750 / 1090;
}

.lphead_sp_wrapper.m--accompaniment .lphead_wrap {
  padding: 20px 10px 1px 10px;
}

.lphead_sp_wrapper.m--accompaniment .lphead_title img {
  width: 85%;
}

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

.lphead_sp_wrapper.m--accompaniment .lphead_choko {
  margin-top: 5px;
}

.lphead_sp_wrapper.m--accompaniment .lphead_choko img {
  width: 74%;
}

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


/* ---------------------------------------- *
 * lphead SHISHIとは？ページ スマホ
 * ---------------------------------------- */

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

.lphead_sp_wrapper.m--lstep {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 420px;
}

.lphead_sp_wrapper.m--lstep .lphead_wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 420px;
  margin: 0 auto;
}

.lphead_sp_wrapper.m--lstep h1 {
  width: 80%;
  color: #FFFFFF;
  font-size: 200%;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  padding: 30px;
  margin: 0;
}

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

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

.plus_box h2 {
  font-size: 140%;
  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 {
  font-size: 16px;
}

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

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


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

/* lphead内buttonエリア(.button_list_wrap.m--index)*/
.button_list_wrap.m--index {
  position: absolute;
  bottom: 6px;
  width: 100%;
  z-index: 999;
}

.button_list_wrap.m--accompaniment {
  position: relative;
  bottom: 50px;
  width: 100%;
  height: 150px;
  z-index: 999;
}


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

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

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


.button_list_wrap.m--lp.m--contents {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.button_list_wrap.m--lp.m--partner {
  position: relative;
  margin: 0 auto;
}

.button_list_wrap.m--contents.m--accompaniment {
  position: relative;
  margin: 0 auto;
}

.button_list_wrap.m--accompaniment .button_list {
  width: 92%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.button_list_wrap.m--accompaniment .button_list li {
  padding: 0;
}

.button_list_wrap.m--accompaniment .button_list li:first-child {
  margin-bottom: 15px
}

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

.button_list_wrap.m--accompaniment .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_list_wrap.m--accompaniment .button_list li {
  padding: 0;
}

.button_list_wrap.m--accompaniment .button_list li:first-child {
  margin-bottom: 15px;
}

.button_list_wrap.m--accompaniment .button_list li:last-child {
  margin-bottom: 0;
}

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

.button_list_wrap.m--accompaniment .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_list_wrap.m--accompaniment .caption {
  font-size: 60%;
  text-align: center;
  color: #f4f4f4;
  line-height: 100%;
}

/* lphead内buttonエリア(.button_list_wrap.m--lp)*/
.button_list_wrap.m--lp {
  position: relative;
  margin: -30px 0 10px 0;
}

/* lphead内buttonエリア(.button_list_wrap.m--lp)*/
.button_list_wrap.m--lp.m--security {
  position: relative;
  margin: 30px 0 10px 0;
}

/* lphead内buttonエリア(.button_list_wrap.m--lsteo)*/
.button_list_wrap.m--lstep {
  position: absolute;
  bottom: -30px;
  right: 0;
  left: 0;
  z-index: 9999;
}


.button_list_wrap.m--lstep .button_text {
  color: #FFF;
  font-size: 100%;
  font-weight: 900;
  margin-bottom: 25px;
}

/* 「SHISHIとは？」スマホ用ボタン調整 */
.button_list_wrap.m--contents.m--lstep {
  position: relative;
  margin: 0 auto;
}

.button_list_wrap.m--lstep .button_list {
  width: 92%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.button_list_wrap.m--lstep .button_list li {
  padding: 0;
}

.button_list_wrap.m--lstep .button_list li:first-child {
  margin-bottom: 15px
}

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

.button_list_wrap.m--lstep .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_list_wrap.m--lstep .button_list li {
  padding: 0;
}

.button_list_wrap.m--lstep .button_list li:first-child {
  margin-bottom: 15px;
}

.button_list_wrap.m--lstep .button_list li:last-child {
  margin-bottom: 0;
}

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

.button_list_wrap.m--lstep .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* *********************** */
/*    orange＆blue button    */
/* *********************** */

.button_list_wrap .button_list {
  width: 85%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.button_list_wrap.m--lp.m--security .button_list {
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.button_list_wrap .button_list li {
  padding: 0;
}

.button_list_wrap .button_list li:first-child {
  margin-bottom: 25px
}

.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;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_list_wrap.m--lp .button_list li {
  padding: 0;
}

.button_list_wrap.m--lp .button_list li:first-child {
  margin-bottom: 30px;
}

.button_list_wrap.m--lp .button_list li:last-child {
  margin-bottom: 0;
}

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

.button_list_wrap.m--lp .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* orange */
.button_list_wrap .button_wrap.m--orange {
  position: relative;
  background-color: #FFFFFF;
  color: #f96c17;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 100%;
  font-weight: 700;
  text-align: center;
  padding: 16px 0 14px 0;
  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-color: #f96c17;
  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 {
  display: flex;
  align-items: center;
}

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

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

.button_list_wrap .button_wrap.m--orange .button_icon {
  position: absolute;
  left: 15px;
  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 2px #fff;
  border-right: solid 2px #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 2px #f96c17;
  border-right: solid 2px #f96c17;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

/* blue */
.button_list_wrap .button_wrap.m--blue {
  position: relative;
  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: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 18px 0 16px 0;
  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 {
  display: flex;
  align-items: center;
}

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

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

.button_list_wrap .button_wrap.m--blue .button_icon {
  position: absolute;
  left: 15px;
  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 2px #0064eb;
  border-right: solid 2px #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 2px #FFFFFF;
  border-right: solid 2px #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: -12px;
  width: 65%;
  display: inline-block;
  color: #FFFFFF;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 9px;
  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 #f96c17;
}

.button_list_wrap .button_wrap.m--orange .button_balloon::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 8px;
  height: 8px;
  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: 11px;
  height: 11px;
  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: -12px;
  width: 70%;
  display: inline-block;
  color: #0064eb;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 9px;
  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: -5px;
  left: 50%;
  width: 8px;
  height: 8px;
  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: 11px;
  height: 11px;
  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);
}

/* ************************* */
/*    orange＆blue button    */
/* ************************* */

.button_list_wrap.m--lp .button_list {
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.button_list_wrap.m--lp .button_list li {
  padding: 0;
}

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

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

/* orange */
.button_list_wrap.m--lp .button_list li .button_wrap.m--orange {
  color: #f28c29;
  font-size: 100%;
  font-weight: 900;
  text-align: center;
  background: #FFFFFF;
  border: solid 2px #f28c29;
  border-radius: 500px;
  box-sizing: border-box;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.button_list_wrap.m--lp .button_list li .button_wrap.m--orange:hover {
  background-color: #f28c29;
  background: -moz-linear-gradient(90deg, #f28c29 0%, #fd644f 100%);
  background: -webkit-linear-gradient(90deg, #f28c29 0%, #fd644f 100%);
  background: linear-gradient(90deg, #f28c29 0%, #fd644f 100%);
  border: 2px solid #FFFFFF;
  opacity: revert;
}

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

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

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

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

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

.button_list_wrap.m--lp .button_wrap.m--orange .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_list_wrap.m--lp .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.m--lp .button_wrap.m--orange:hover .button_icon::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 3px #f28c29;
  border-right: solid 3px #f28c29;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

/* blue */
.button_list_wrap.m--lp .button_list li .button_wrap.m--blue {
  background: -moz-linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  background: -webkit-linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  background: linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  color: #FFFFFF;
  border: solid 2px #FFFFFF;
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.button_list_wrap.m--lp .button_list li .button_wrap.m--blue:hover {
  opacity: revert;
  background: #FFFFFF;
  color: #005fe1;
  border: 2px solid #005fe1;
}

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

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

.button_list_wrap.m--lp .button_wrap.m--blue:hover .button_label {
  color: #005fe1;
}

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

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

.button_list_wrap.m--lp .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.m--lp .button_wrap.m--blue .button_icon::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 3px #005fe1;
  border-right: solid 3px #005fe1;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 4px;
  bottom: 0;
  margin: auto;
}

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

.button_list_wrap.m--lp .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_list_wrap.m--lp .button_wrap.m--blue .button_free {
  position: absolute;
  bottom: -10px;
  right: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  color: #087de9;
  font-size: 18px;
  background-color: #fff962;
  border-radius: 50%;
}

/* ボタンの吹き出し */
/*orange*/
.button_list_wrap.m--lp .button_wrap.m--orange .button_balloon {
  position: absolute;
  top: -20px;
  width: 65%;
  display: inline-block;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  background-color: #f28c29;
  background: -moz-linear-gradient(90deg, #f28c29 0%, #fd644f 100%);
  background: -webkit-linear-gradient(90deg, #f28c29 0%, #fd644f 100%);
  background: linear-gradient(90deg, #f28c29 0%, #fd644f 100%);
  padding: 4px 10px;
  border: solid 2px #FFFFFF;
  border-radius: 20px;
}

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

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

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

.button_list_wrap.m--lp .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: #f28c29 #f28c29 transparent transparent;
  background-color: #FFFFFF;
  rotate: 135deg;
  translate: -50%;
}

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

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

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

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

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

/* ボタンの吹き出し */
/*blue*/
.button_list_wrap.m--lp .button_wrap.m--blue .button_balloon {
  position: absolute;
  top: -20px;
  width: 65%;
  display: inline-block;
  color: #005fe1;
  font-size: 14px;
  font-weight: 500;
  background: #FFFFFF;
  padding: 4px 10px;
  border: solid 2px #005fe1;
  border-radius: 20px;
}

.button_list_wrap.m--lp .button_wrap.m--blue:hover .button_balloon {
  color: #FFFFFF;
  background-color: #005fe1;
  background: -moz-linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  background: -webkit-linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  background: linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  padding: 4px 10px;
  border: solid 2px #FFFFFF;
}

.button_list_wrap.m--lp .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 #005fe1;
  border-right: solid 2px #005fe1;
}

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

.button_list_wrap.m--lp .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: #005fe1;
  rotate: 135deg;
  translate: -50%;
}

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

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

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

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

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

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

/* ------------------------------------------------ *
 *   CTA(#ctabox)
 * ------------------------------------------------ */
#ctabox {
  padding: 10px;
  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: 20px 15px 10px 15px;
  color: #FFFFFF;
  font-size: 145%;
  font-weight: 900;
  text-align: center;
  line-height: 160%;
  font-family: "Rounded Mplus 1c";
}

.ctabox_list_wrap {
  margin: 0 auto;
  padding: 20px 10px 0 10px;
}

.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-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ctabox_list li {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 10px;
}

.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: 20px 10px;
}

.ctabox_list li a:hover .ctabox_item_wrap,
.ctabox_list li a:active .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 10px auto;
  border-radius: 50%;
  transition: color .3s ease, box-shadow .3s ease;
}

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

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

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

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

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

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

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

.ctabox_item_button {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

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

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

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

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

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

.button_list_wrap.m--contents.m--accompaniment-ctabox {
  position: relative;
  margin: 0 auto;
}

.button_list_wrap.m--accompaniment-ctabox .button_list {
  width: 92%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.button_list_wrap.m--accompaniment-ctabox .button_list li {
  padding: 0;
}

.button_list_wrap.m--accompaniment-ctabox .button_list li:first-child {
  margin-bottom: 15px
}

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

.button_list_wrap.m--accompaniment-ctabox .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button_list_wrap.m--accompaniment-ctabox .button_list li {
  padding: 0;
}

.button_list_wrap.m--accompaniment-ctabox .button_list li:first-child {
  margin-bottom: 15px;
}

.button_list_wrap.m--accompaniment-ctabox .button_list li:last-child {
  margin-bottom: 0;
}

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

.button_list_wrap.m--accompaniment-ctabox .button_list li .button_wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---------------------------------------- *
 * lstep_about.html 専用 CTAボタン調整
 * 他ページには影響させない
 * ---------------------------------------- */

.page_subtitlegrad.m--lstep-about-cta {
  padding: 55px 16px 40px;
}

.page_subtitlegrad.m--lstep-about-cta .button_list_wrap.m--lstep-about-cta {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.page_subtitlegrad.m--lstep-about-cta .button_list {
  width: 92%;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.page_subtitlegrad.m--lstep-about-cta .button_list li {
  width: 100%;
  margin: 0;
  padding: 0;
}

.page_subtitlegrad.m--lstep-about-cta .button_wrap {
  width: 100%;
  height: 58px;
  min-height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

/* オレンジボタンの吹き出し位置をこのページだけ固定 */
.page_subtitlegrad.m--lstep-about-cta .button_wrap.m--orange .button_balloon {
  position: absolute;
  top: -26px;
  width: 70%;
  display: inline-block;
  color: #FFFFFF;
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 9px;
  background-color: #f39025;
  padding: 0px 10px;
  border: solid 2px #FFFFFF;
  border-radius: 80px;
}

.page_subtitlegrad.m--lstep-about-cta .button_wrap.m--orange .button_balloon_label {
  position: relative;
  display: inline-block;
  font-size: 10px;
  white-space: nowrap;
  padding: 0 12px;
}

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

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

/* ラベル中央揃え */
.page_subtitlegrad.m--lstep-about-cta .button_label_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page_subtitlegrad.m--lstep-about-cta .button_label {
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}


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

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

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

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

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

#faq_ctabox .ctabox_tel_number i {
  transform: rotate(0deg);
}

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

.ctabox_tel_note {
  color: #000;
  font-size: 100%;
  line-height: 180%;
  margin: 0 0 10px 0;
}

.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: 100%;
  line-height: 180%;
  margin: 0 0 10px 0;
}

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

/* ------------------------------------------------ *
 *   伴走支援サービスページ(.lphead_pc_wrapper.m--lp)
 * ------------------------------------------------ */
.lp_page {
  position: relative;
  margin: 0 15px;
  padding: 0;
}


.lp_page.m--margin {
  position: relative;
  margin: 45px auto;
  padding: 0;
}

.lp_page.m--nomargin {
  margin: 0 auto;
}

.lp_page.m--bg {
  background-color: #fcf8ef;
  margin: 45px auto 0 auto;
  padding: 1px 0 15px 0;
}

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

.lp_page .page_subtitlebks {
  margin: 45px 10px 0 10px;
  padding: 15px 0 0 0;
  font-size: 150%;
  font-weight: 900;
  line-height: 140%;
  text-align: center;
  color: #000;
  font-family: "Rounded Mplus 1c";
}

.page_subtitlegrad {
  position: relative;
  color: #FFFFFF;
  font-size: 150%;
  font-weight: 900;
  line-height: 140%;
  text-align: center;
  font-family: "Rounded Mplus 1c";
  padding: 15px 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;
  margin: 20px 0 0 0;
}

.lp_contents {
  margin: 0 15px;
}

.check_wrap .photo {
  margin: 5px 0 25px 0;
  padding: 0;
  text-align: center;
}

.check_wrap .check {
  width: 100%;
}

.reason_title {
  margin: 30px 15px 0 15px;
  padding: 0;
  font-size: 115%;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  color: #000;
  font-family: "Rounded Mplus 1c";
}

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

.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 0;
  color: #000000;
  transition: .3s;
  padding: 15px 10px;
  border: solid 2px #20af5a;
  background-color: #FFFFFF;
}

.lp_list.m--col2>li {
  width: 100%;
}

.lp_list.m--col3>li {
  width: 100%;
}


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

.lp_item.m--flex .photo {
  width: 32%;
  margin-right: 2%;
}

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

.lp_item h4 {
  color: #20af5a;
  font-size: 110%;
  font-family: "Rounded Mplus 1c";
  line-height: 125%;
  text-align: center;
  padding: 0;
  margin: 0 0 10px 0;
}

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

.lp_item.m--flex p {
  font-size: 100%;
  line-height: 140%;
  margin: 0;
}

.lp_item .caption {
  margin: 15px 0;
  padding: 0;
  font-size: 80%;
  color: #666666;
  font-weight: normal;
  line-height: 150%;
}

.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: 30px;
}

.flow_list {
  list-style: none;
  margin: 0;
  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;
  background-color: #f3f3f3;
  padding: 15px 10px;
}

.flow_item .title {
  min-height: 1.4em;
  color: #20af5a;
  font-size: 17px;
  font-family: "Rounded Mplus 1c";
  margin: 20px 0;
}

.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 {
  padding: 0 2%;
}

.flow_item .text p {
  font-size: 100%;
  line-height: 140%;
  margin: 0;
}

/* ---------------------------------------- *
 * introduction スマホ調整
 * ---------------------------------------- */

.introduction_wrap {
  padding: 20px 0;
  background-size: cover;
  background-position: top center;
  background-image: url("/img/shishi/care-hero-two-person-v1.png");
}

.introduction_wrap_wh {
  padding: 20px 0;
}

.introduction_wrap_wh img {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0 auto;
}

.introduction_wrap_wh .caption {
  width: 92%;
  max-width: none;
  margin: 12px auto 0;
}

.introduction_wrap_wh .caption p {
  position: relative;
  padding-left: 2.6em;
  /* ←ここで本文スタート位置を統一 */
}

.introduction_wrap_wh .caption .note {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.6em;
}

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

/* フリープラン＋メダル 横並びエリア */
.introduction_box {
  width: 92%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 auto;
  padding: 0;
}

.introduction_left,
.introduction_right {
  width: 100%;
  text-align: center;
}

.introduction_box img {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0 auto;
}

.introduction_right .caption {
  width: 100%;
  margin: 12px auto 0;
}

.introduction_right .caption p {
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
  margin: 0 0 8px;
}

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

.introduction_right .caption .note_text {
  flex: 1;
  line-height: 1.45;
}

/* introduction_list スマホ */
.introduction_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.introduction_list li {
  margin: 0;
}

.point_list_wrap {
  margin: 0 auto;
}

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

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

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

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

.point_item_title {
  color: #000;
  font-size: 100%;
  line-height: 180%;
}

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

.point_dl_wrap {
  width: calc(100% - 40px);
  margin: 20px auto;
  background-color: #FFFFFF;
  padding: 20px 20px;
}

.point_dl {
  border-bottom: solid 2px #00c853;
  padding: 20px 0;
  margin: 0;
}

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

.point_dt_no img {
  width: 100px;
}

.point_dt h3 {
  margin: 0;
}

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

.point_dd {
  margin: 0;
}

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

.point_col_list.m--col2>li {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.point_col_item .text {
  font-size: 100%;
}

.point_col_item .text h4 {
  color: #00c853;
  font-size: 140%;
  margin: 0 0 20px 0;
  padding: 0;
}

.point_col_item .text p {
  font-size: 96%;
  line-height: 160%;
}


/* ---------------------------------------- *
 *   list&detailページ
 * ---------------------------------------- */

/* listページ(download_list.html,seminar_list.html)*/
.article_wrap.m--seminar a:link,
.article_wrap.m--seminar a:visited,
.article_wrap.m--seminar a:active,
.article_wrap.m--download a:link,
.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;
}

.article_wrap .page_title_wrap.m--bggrad {
  padding: 30px 10px 20px 10px;
  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-family: "Rounded Mplus 1c";
  font-weight: normal;
  margin-top: 1em;
}

.article_wrap .page_title_wrap.m--bggrad .page_title {
  padding: 0;
}

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

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

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

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

.article_wrap.m--seminar .section_inner,
.article_wrap.m--download .section_inner {
  margin: 0 auto;
}

/* カラムCSS */
.col_list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0 10px;
  text-align: left;
}

.col_list.m--col1>li,
.col_list.m--col2>li,
.col_list.m--col3>li,
.col_list.top--col2>li {
  position: relative;
  width: 100%;
  margin: 20px 0 0 0;
  color: #000000;
}

.col_list.m--col4>li {
  position: relative;
  width: 100%;
  margin: 20px 0 0 0;
  color: #000000;
}

.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 .col_item>a {
  display: block;
  text-decoration: none;
  background-color: #FFFFFF;
  border: solid 2px #BBBBBB;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .1);
}



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

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

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

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

.col_list.m--seminar01 .col_item_header .title {
  margin: 10px;
}

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

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

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

.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_item_body img {
  width: 100%;
  height: auto;
  display: block;
}

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

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

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

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

/* カラム内img*/
.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 .col_item>a:hover .image_wrap>img {
  transform: scale(1.05);
  transition-duration: 0.8s;
}

.col_list.m--seminar01 .col_item_right {
  width: 100%;
  margin: 10px;
}

.col_list.m--seminar01 .col_item_right .title {
  font-size: 100%;
  min-height: 50px;
  margin: 0 0 10px 0;
}

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

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

.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: 90%;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-size: 120%;
  font-weight: 600;
  background-color: #f39025;
  border: 2px solid #f39025;
  border-radius: 60px;
  box-shadow: 1px 3px #d5d4d4;
  padding: 10px;
}

.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);
  opacity: 1;
}

/* スマホ用：セミナー日程調整中のデザイン対応（リンク全体オフ） */
@media screen and (max-width: 768px) {

  .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 {
    opacity: 0.6 !important;
    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;
    opacity: 0.6 !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,
  .col_list.m--seminar01 a.a-off:active .image_wrap>img {
    transform: none !important;
    transition: none !important;
  }

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

  /* タッチデバイス用の追加対応 */
  .col_list.m--seminar01 a.a-off {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }
}

/* スマホ用：ダウンロードボタンのオフ状態 */
@media screen and (max-width: 768px) {

  .col_list.m--download01 .btn_list>li .btn.off,
  .col_list.m--download01 .btn_list>li .btn.off:visited,
  .col_list.m--download01 .btn_list>li .btn.off:active {
    pointer-events: none !important;
    cursor: not-allowed !important;
    background: #ffffff !important;
    color: #888 !important;
    border: 2px solid #ccc !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }

  .col_list.m--download01 a.a-off,
  .col_list.m--download01 a.a-off:visited,
  .col_list.m--download01 a.a-off:active {
    pointer-events: none !important;
    cursor: not-allowed !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
  }

  .col_list.m--download01 a.a-off .col_item {
    opacity: 0.6 !important;
  }

  .col_list.m--download01 a.a-off:hover .image_wrap>img,
  .col_list.m--download01 a.a-off:active .image_wrap>img {
    transform: none !important;
    transition: none !important;
  }
}

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

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

/* カラム内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%;
}

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

.col_list.m--seminar02 .col_item_right {
  margin: 10px;
}

.col_list.m--seminar02 .col_item_right .title {
  font-size: 100%;
  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 {
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.col_list.m--seminar03 .col_item_header .image_wrap>img {
  width: 100%;
}

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

.col_list.m--seminar03 .col_item_header .title {
  font-size: 100%;
  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>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: 45px 0 0 0;
  padding: 0;
  font-size: 150%;
  font-family: "Rounded Mplus 1c";
  font-weight: 900;
  line-height: 140%;
  text-align: center;
}

.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%;
  margin-top: 10px;
}

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

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

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

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

.col_list.m--download01 .btn_list>li .btn:hover,
.col_list.m--download01 .btn_list>li .btn:active {
  background-color: #FFFFFF;
  border: 2px solid #f39025;
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
  opacity: 1;
}

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

.tab_item {
  position: relative;
  width: calc(100% / 2 - 32px);
  display: inline-block;
  color: #999;
  padding: 10px 8px;
  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 0 40px 0;
  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-size: 14px;

  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%;
}

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

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

.col_list.m--download02 .col_item_body>.title {
  font-size: 100%;
}

.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: 80%;
  margin: 0 auto;
  color: #f96c17;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  font-size: 100%;
  font-weight: 600;
  background-color: #FFFFFF;
  border: 2px solid #f39025;
  border-radius: 60px;
  padding: 8px;
}

.col_list.m--download02 .btn_list>li .btn:hover,
.col_list.m--download02 .btn_list>li .btn:active {
  background-color: #FFFFFF;
  border: 2px solid #f39025;
  box-shadow: 0 5px 8px rgba(0, 0, 0, .14);
  opacity: 1;
}

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

.section_contents_wrap {
  width: 100%;
}

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


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

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

.section_contents_header h1 {
  color: #00c853;
  font-size: 175%;
  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: 60%;
  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;
}


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

}

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


.contact_borderbox {
  margin: 0px 0px 18px 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;
}

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

.consultation_wrap {

  font-size: 0.75em;
}

.consultation_wrap a:link {
  color: #000;
  font-size: 18px;
  text-decoration: none;
  margin-top: 5px;

}

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

.figure_wrap {
  text-align: center;
}

.figure_wrap img {
  max-width: 250px;
  /* お好みのサイズに */
  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: 30px;
  margin-bottom: 30px;
}

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

.content_header.m--case,
.content_header.m--service {
  margin-bottom: 0;
  margin-top: 0;
}

.content_body {
  padding: 10px;
}

.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 - 10px);
  margin: 5px;
  padding: 0;
}

.content_body .figure_list.m--col6>li {
  width: calc(100% / 3 - 10px);
  margin: 5px;
  padding: 0;
}

.content_body .figure_list figure {
  margin: 0;
  padding: 0;
}

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

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

.content_body img {
  width: 100%;
}

#popup {
  display: none;
}

.popup_open {
  position: relative;
  cursor: zoom-in;
}

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

.popup_open img {
  width: 100%;
}

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

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

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

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

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

.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: 20px;
  right: 20px;
  color: #000000;
}

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


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

.form_pc_wrap {
  display: none;
}

.form_sp_wrap .groupDiv {
  padding: 10px;
}

.form_sp_wrap input[type="submit"],
.form_sp_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;
  padding: 0;
}

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

.systematic_list li h3 {
  font-size: 125%;
  font-weight: 700;
  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: 10px;
}

.download_wrap {
  border-radius: 10px;
  background: #fff;
  padding: 20px 5px;
  box-sizing: border-box;
}

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

.download_dl dt {
  margin-bottom: 10px;
}

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

.download_dl dd {
  margin-left: 0;
}

.download_btn,
.download_btn:link {
  display: block;
  position: relative;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  color: #005fe1;
  text-align: left;
  border: 2px solid #005fe1;
  border-radius: 60px;
  box-sizing: border-box;
  -wewbkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  text-decoration: none;
}

.download_btn:hover {
  opacity: revert;
  background: #157efb;
  background: -moz-linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  background: -webkit-linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  background: linear-gradient(45deg, #02c0fc 0%, #005fe1 100%);
  color: #005fe1;
  border: solid 2px #005fe1;
  text-decoration: none;
}

.download_btn .button_label_wrap {
  display: flex;
  align-items: center;
}

.download_btn .button_label {
  color: #005fe1;
  font-size: 100%;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  letter-spacing: 2px;
}


.download_btn:hover .button_label {
  color: #FFFFFF;
}

.download_btn .button_icon {
  position: absolute;
  left: 15px;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.download_btn .button_icon::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: #005fe1;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.download_btn .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;
}

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

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

.download_dl dd small {
  display: block;
  margin: 10px 0 0 0;
  text-align: right;
}

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

.pagination {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  /* 要素間の間隔を統一 */
}

.pagination a {
  margin: 0;
  /* flexのgapを使用するためmarginを削除 */
  padding: 5px 10px;
  background-color: #FFF;
  text-decoration: none;
  color: #000;
  border-radius: 3px;
  border: solid 1px #c3c3c3;
  white-space: nowrap;
  /* テキストの改行を防ぐ */
  flex-shrink: 0;
  /* 要素の縮小を防ぐ */
}

.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;
}

/* スマホ対応の追加スタイル */
@media screen and (max-width: 640px) {
  .pagination {
    margin: 20px 5px;
    /* 左右の余白を削減 */
    gap: 2px;
    /* さらに間隔を狭く */
  }

  .pagination a {
    padding: 4px 6px;
    /* パディングを削減 */
    font-size: 13px;
    min-width: 28px;
    /* 幅をコンパクトに */
    text-align: center;
  }

  .pagination a.prev,
  .pagination a.next {
    padding: 4px 8px;
    /* 前後ボタンのパディングも調整 */
    min-width: 32px;
  }

  /* より小さな画面での最適化 */
  @media screen and (max-width: 480px) {
    .pagination {
      margin: 15px 2px;
      /* さらに余白を削減 */
      gap: 1px;
    }

    .pagination a {
      padding: 3px 5px;
      font-size: 12px;
      min-width: 24px;
    }

    .pagination a.prev,
    .pagination a.next {
      padding: 3px 6px;
      min-width: 28px;
    }
  }

  /* 非常に小さな画面（320px以下）での対応 */
  @media screen and (max-width: 320px) {
    .pagination {
      margin: 15px 1px;
      gap: 1px;
    }

    .pagination a {
      padding: 2px 4px;
      font-size: 11px;
      min-width: 22px;
    }

    .pagination a.prev,
    .pagination a.next {
      padding: 2px 5px;
      min-width: 26px;
    }
  }
}


/*-------------------
 * 機能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;
  color: #000;
}

.features_menu_list_wrap {
  background-color: #f4f4f4;
  padding: 8px 0;
}

.features_menu_list {
  width: 96%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

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


.features_menu_item,
.features_menu_item:link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border-radius: 8px;
  padding: 8px 0;
  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: 8px;
}

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

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

.features_menu_item>.title {
  font-size: 100%;
  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;
  text-align: center;
}

.features_menu_item>.title>small {
  font-size: 80%;
}

/* mv */
.features_mv_wrap {
  position: relative;
  background-color: #FFF;
}

.features_mv_inner {
  width: 96%;
  margin: 0 auto;
}

.features_mv_title {
  font-size: 125%;
  line-height: 140%;
  letter-spacing: 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;
}

.features_mv_title>span {
  font-size: 180%;
  letter-spacing: 0;
}

.features_mv_img {
  position: relative;
  z-index: 8888;
  width: 100%;
  height: 150px;
  margin-top: 16px;
  margin-bottom: 30px;
  background-image: url("/img/shishi/hero-care-staff.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* メインのCTAコンテナ */
.features_mv_cta {
  text-align: center;
  margin: 0;
  padding: 24px 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: 14px;
  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;
}

/* メインのCTAコンテナ */
.features_mv_cta {
  text-align: center;
  padding: 0 0 24px 0;
}

/* CTAボタン */
.features_mv_cta_button,
.features_mv_cta_button:link,
.features_mv_cta_button:visited {
  position: relative;
  overflow: hidden;
  display: block;
  width: 85%;
  margin: 0 auto;
  background-color: white;
  border: 2px solid #00c853;
  color: #57b15a;
  text-decoration: none;
  padding: 16px 8px;
  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: 85%;
  font-weight: 300;
  color: #57b15a;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

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

/* マイクロコピー */
.features_mv_cta_microcopy {
  margin-top: 8px;
  font-size: 90%;
  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(プラン別で絞り込んで機能を探す) */
#features1 {
  position: relative;
  background: #f4f4f4;
  padding-bottom: 30px;
}

#features1 .features_section_inner {
  width: 96%;
  margin: 0 auto;
}

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

#features1 .features_section_title>.em {
  display: block;
  font-size: 160%;
}

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

.plan_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0;
}

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

.plan_btn:last-of-type {
  margin: 0;
}

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

.plan_btn>button {
  font-family: "Rounded Mplus 1c";
  font-size: 85%;
  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: 100%;
  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: 8px;
}

.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: 100%;
  font-weight: 600;
  text-align: right;
  text-decoration: none;
}

.plan_detail_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;
}

.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_item_wrapper {
  position: relative;
  margin-top: 16px;
  padding: 0 35px;
  /* 矢印のスペースを確保 */
}

.plan_contents_wrap {
  width: 100%;
  margin: 0 auto;
}

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

.plan_contents_item_wrap.m--active {
  display: block;
  /* flexからblockに変更（Slick用） */
  opacity: 1;
}

/* 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_panel_link_wrapper {
  position: relative;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.plan_panel_link_wrapper.m--new::before {
  content: "NEW";
  position: absolute;
  top: 0;
  right: 8px;
  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;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.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;
  height: 80px;
  margin: 0 auto;
}

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

.plan_panel_body {
  position: relative;
  padding: 8px;
  background-color: #ffffff;
  height: inherit;
  min-height: 350px;
}

.plan_panel_title {
  font-size: 125%;
  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;
}

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

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

.plan_panel_label {
  font-size: 75%;
  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 {
  padding: 8px;
  text-align: center;
  background-color: #f39025;
}

.plan_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 125%;
  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: 100%;
}

/* メインの左右矢印 */
.plan_contents_item_wrap .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  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:active {
  opacity: 0.6;
}

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

.plan_contents_item_wrap .slick-prev {
  left: -30px;
  /* カードの外側に配置 */
}

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

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

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

/* slick dots css */
.slick-dots {
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px;
  bottom: 0 !important;
  margin: 15px auto 0 auto !important;
  padding: 0 !important;
  list-style: none;
  width: fit-content !important;
}

.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: 26px !important;
  height: 26px !important;
  border: 2px solid transparent !important;
  border-radius: 50%;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
  cursor: pointer;
  position: relative;
  /* 数字表示のためのスタイル */
  font-size: 12px !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: 32px !important;
  height: 32px !important;
  transition: all 0.3s ease;
  color: #FFF !important;
  font-size: 14px !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;
}

.slick-dots li.slick-active button:hover {
  opacity: 0.9;
}

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

#features2 .features_section_inner {
  width: 96%;
  margin: 0 auto;
  background: #FFF;
  padding: 16px 0;
}

#features2 .features_section_title {
  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: 85%;
  line-height: 100%;
  margin-bottom: 8px;
}

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

#features2 .features_section_description {
  width: 90%;
  margin: 0 auto;
  font-size: 100%;
  font-weight: 600;
  padding: 0;
}

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

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

.features_blocks_link_wrap {
  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;
}

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

.features_blocks_link_inner {
  padding: 8px;
}

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

.features_blocks_link_img>img {
  height: 35px;
  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: 14px;
  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: 12px;
  font-weight: 700;
}

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

/* グラデーションキャプション */
.features_blocks_video_wrap>figcaption {
  margin: 0 auto 16px auto;
  padding: 0;
  font-family: "Rounded Mplus 1c";
  font-size: 20px;
  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;
}


/* SHISHIPlus+一覧 - レスポンシブ版 */
#features5 {
  background-color: #FFF;
  padding: 24px 0;
  position: relative;
}

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

#features5 .features_section_title>img {
  width: 70%;
}

#features5 .features_section_title>span {
  color: #1e6e38;
  font-size: 165%;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 4px;
}

#features5 .features_section_description {
  font-size: 100%;
  font-weight: 600;
  text-align: left;
  padding: 0 10px;
}

.plusplus_features_list {
  list-style: none;
  padding: 0;
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 0 2.5%;
}

.plusplus_features_list li {
  position: relative;
  padding: 16px 8px;
  color: #000000;
  margin-bottom: 1em;
  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;
  margin: 0;
  padding: 0;
}

.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: 125%;
  font-weight: bold;
  line-height: 130%;
  min-height: 2.6em;
  margin: 0 0 8px 0;
}

.feature_title .logo {
  width: 80%;
  object-fit: contain;
  margin-bottom: 8px;
}

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

#features5 .feature_detail_commingsoon,
#features5 .feature_detail_link,
#features5 .feature_detail_link:link,
#features5 .feature_detail_link:visited {
  display: block;
  width: 80%;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  font-size: 100%;
  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;
}

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

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

#features3 .features_section_title {
  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: 125%;
  line-height: 100%;
}

#features3 .features_section_description {
  font-size: 100%;
  font-weight: 600;
  padding: 0 16px;
}

.all_features_wrap {
  width: 98%;
  margin: 0 auto;
}

.all_features_top,
.all_features_bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.all_features_left {
  position: relative;
  width: calc(100% / 1);
}

.all_features_center {
  position: relative;
  width: calc(100% / 1);
}

.all_features_right {
  position: relative;
  width: calc(100% / 1);
}

.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_list {
  list-style: none;
  padding-inline-start: 0;
}

.all_features_list>li {
  width: 80%;
  margin: 0 auto 10px auto;
}

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

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

.all_features_item_title {
  margin: 16px 0 8px 0;
  padding: 0;
  font-size: 150%;
  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 {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-bottom: 8px;
}

.all_features_item_allview>a {
  width: 8em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 100%;
  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-bottom: 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: 60%;
  font-weight: 700;
}

.all_feature_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.all_feature_list>li {
  width: calc(100% / 2 - 8px);
  margin: 0 0 8px 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;
  padding: 0 8px;
  color: #000 !important;
  border: solid 8px #FFF;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(115, 115, 120, 0.16);
}

.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--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;
  font-size: 95%;
  font-weight: 600;
}

.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: 80%;
  max-height: 70%;
  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;
  flex-wrap: wrap;
  gap: 16px;
}

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

.popup_category {
  font-size: 125%;
  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: 150%;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
  margin: 0;
}

.popup_description {
  font-size: 100%;
  font-weight: 900;
}

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

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

.popup_plan_list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 85%;
  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 !important;
  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 !important;
  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 !important;
  padding: 4px 11px;
  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 !important;
  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: 80%;
  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: 100%;
  font-weight: 900;
  line-height: 1.6;
  text-align: center;
  border-radius: 32px;
  text-decoration: none;
}

.popup_image_wrap {
  order: 1;
  width: 100%;
  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;
}

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

#features4 .features_section_inner {
  width: 96%;
  margin: 0 auto;
}

#features4 .features_section_title {
  font-size: 150%;
  font-weight: 900;
  line-height: 125%;
  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;
}

#features4 .features_section_title>.em {
  font-size: 165%;
}

#features4 .features_section_description {
  font-size: 100%;
  font-weight: 600;
  padding: 0 16px;
}

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

.ranking_btn_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

.ranking_btn>button {
  font-family: "Rounded Mplus 1c";
  color: #FFF;
  font-size: 85%;
  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: 85%;
  font-weight: 900;
  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: 100%;
  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;
  flex-wrap: wrap;
  opacity: 1;
}

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

/* 各ランキングに対応する画像を `before` で表示 */
.ranking_panel_link_wrapper.m--ranking1::before {
  content: "";
  position: absolute;
  top: 0px;
  /* 左上に配置 */
  left: 0px;
  width: 64px;
  /* 画像サイズ */
  height: 64px;
  background-image: url("/img/shishi/logo.png");
  /* 1位のバッジ画像 */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}

.ranking_panel_link_wrapper.m--ranking2::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/common/favicon.png");
  /* 2位のバッジ画像 */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}

.ranking_panel_link_wrapper.m--ranking3::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/common/logo.png");
  /* 3位のバッジ画像 */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}

.ranking_panel_link_wrapper.m--ranking4::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 64px;
  height: 64px;
  background-image: url("/img/joinus/main.png");
  /* 4位のバッジ画像 */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 9999;
}

.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%;
  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;
  height: 100px;
  margin: 0 auto;
}

.ranking_panel_img img {
  width: 75px;
  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;
  background-color: #ffffff;
}

.ranking_panel_title {
  font-size: 100%;
  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: 0;
}

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

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

.ranking_panel_label {
  font-size: 50%;
  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: 8px;
  text-align: center;
  background-color: #f39025;
}

.ranking_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100%;
  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: 85%;
}

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

/*----------------
 * 機能詳細ページ *
----------------*/
.feature_detail_wrap {
  width: 100vw;
  overflow-x: hidden;
}

.feature_detail_header {
  width: 100%;
  padding: 40px 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-size: 90%;
  box-sizing: border-box;
}

.feature_detail_header_inner {
  max-width: 100%;
  margin: 0;
  text-align: left;
  padding: 0 16px;
}

.feature_detail_catchphrase {
  font-size: 110%;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

.feature_detail_title {
  font-size: 220%;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  margin: 0;
  line-height: 1.1;
  text-align: center;
}

.feature_detail_title {
  font-size: 160%;
}

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

.feature_plan_inner {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 700;
  box-sizing: border-box;
  padding: 0 16px;
}

.feature_plan {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature_plan_title {
  white-space: normal;
  font-size: 85%;
  line-height: 1.5;
  margin-bottom: 8px;
}

.feature_plan_title .caption {
  display: block;
  margin-top: 4px;
  font-size: 70%;
  font-weight: normal;
  line-height: 1.6;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.feature_plan_list_wrap {
  margin-left: 0;
  margin-bottom: 8px;
}

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

.feature_plan_item {
  background: #FFF;
  color: #000;
  border-radius: 50px;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 75%;
  white-space: nowrap;
  text-align: center;
}

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

.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_note {
  margin-top: 4px;
  font-size: 95%;
}

.feature_plan_link {
  width: 100%;
  margin-top: 10px;
  text-align: right;
}

.feature_plan_link a,
.feature_plan_link a:link,
.feature_plan_link a:visited {
  color: transparent;
  font-weight: 700;
  font-size: 100%;
  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;
  padding: 2px 0;
}

.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: 16px;
  height: 16px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 6px;
}

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

.feature_detail_body {
  width: 100%;
}

.feature_link a {
  font-size: 100%;
}

.feature_link_icon {
  width: 16px;
  height: 16px;
  margin-left: 6px;
}

.feature_section_wrapper {
  max-width: 100vw;
  margin: 0 0 18px 0;
  padding: 20px 10px;
}

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

.feature_section_wrapper.m--bg--white {
  background: #FFF;
}

.feature_section_wrapper:first-of-type {
  top: 12px;
}

.feature_section_wrap {
  margin-bottom: 25px;
}

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

.feature_section_wrap.m--eight {
  max-width: 100%;
  margin: 0 0 12px 0;
  padding: 10px;
  border-radius: 12px;
}

.feature_section_wrap.m--other {
  max-width: 100%;
  margin: 0;
}

.feature_other_menu_list_wrap {
  margin-bottom: 12px;
}

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

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

.feature_other_menu_item,
.feature_other_menu_item:link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #FFF;
  border-radius: 8px;
  padding: 8px 0;
  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: 8px;
}

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

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

.feature_other_menu_item>.title {
  font-size: 100%;
  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;
  text-align: center;
}

.feature_other_menu_item>.title>small {
  font-size: 70%;
}

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

/* ボタンのホバー効果 */
.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: 14px;
  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;
}

.feature_other_cta {
  text-align: center;
}

/* CTAボタン */
.feature_other_cta_button,
.feature_other_cta_button:link,
.feature_other_cta_button:visited {
  position: relative;
  overflow: hidden;
  display: block;
  width: 85%;
  margin: 0 auto;
  background-color: white;
  border: 2px solid #00c853;
  color: #57b15a;
  text-decoration: none;
  padding: 16px 8px;
  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: 85%;
  font-weight: 300;
  color: #57b15a;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

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

/* マイクロコピー */
.feature_other_cta_microcopy {
  margin-top: 8px;
  font-size: 90%;
  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;
}

.feature_section_wrap.m--qa .feature_section_inner {
  max-width: 100%;
}

.feature_section_title {
  font-size: 160%;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  padding: 0 0 15px 0;
  text-align: center;
  margin: 0;
}

.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;
  background-clip: text;
  color: transparent;
}

.feature_section_contents {
  width: 100%;
  font-size: 100%;
  padding: 0;
}

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

.feature_section_contents>h3 {
  font-size: 105%;
}

.feature_section_contents table {
  font-size: 90%;
  display: block;
  width: 100%;
  overflow-x: auto;
}

.feature_section_table.m--features38 {
  font-size: 90%;
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #ccc;
  background: #FFF;
  margin-bottom: 8px;
}

.feature_section_table.m--features38 th,
.feature_section_table.m--features38 td {
  border: 1px solid #ccc;
  padding: 8px 8px;
  vertical-align: top;
}

.feature_section_table.m--features38 td {
  width: 50%;
}

/* ========================================
   Webhookイベントテーブル SP
======================================== */

.feature_section_table.m--webhook {
  width: 100%;
  max-width: 100%;
  table-layout: fixed;
  box-sizing: border-box;
  margin: 20px 0 12px;
  border: 1px solid #ccc;
}

.feature_section_table.m--webhook th,
.feature_section_table.m--webhook td {
  padding: 12px 14px !important;
  box-sizing: border-box;
}

.feature_section_table.m--webhook thead,
.feature_section_table.m--webhook tbody,
.feature_section_table.m--webhook tr,
.feature_section_table.m--webhook th,
.feature_section_table.m--webhook td {
  display: block;
}

.feature_section_table.m--webhook thead th {
  color: #00c853 !important;
  background: #fff !important;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
}

.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: grid;
  grid-template-columns: 86px 1fr;
  column-gap: 15px;
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 1.7;
}

.feature_section_table.m--webhook .label {
  display: block;
  font-weight: bold;
  white-space: nowrap;
  font-size: 12px;
}

.feature_section_table.m--webhook .label::after {
  content: "：";
}

.feature_section_table.m--webhook .text {
  display: block;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.feature_section_table.m--webhook .webhook_note {
  margin-top: 18px;
  font-size: 10px;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.feature_section_table.m--webhook .webhook_note a {
  word-break: break-all;
  overflow-wrap: anywhere;
}

/* ========================================
   セミナーボックス SP
======================================== */

.seminar-box {
  position: relative;
  background: #fff;
  border: 2px solid #20af5a;
  padding: 40px 18px 24px;
  margin: 36px 0;
  box-sizing: border-box;
  overflow: visible;
}

.seminar-box:hover {
  box-shadow: none;
}

/* リボン */
.seminar-ribbon {
  position: absolute;
  top: -6px;
  left: -6px;
  padding: 8px 28px 8px 10px;
  background: linear-gradient(-45deg,
      transparent,
      transparent 22%,
      #20af5a 0%,
      #20af5a);
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .05em;
  z-index: 2;
}

.seminar-ribbon::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  border-top: 6px solid #157a3d;
  border-left: 6px solid transparent;
}

.seminar-box .feature_section_subtitle {
  margin: 0 0 20px;
  font-size: 18px;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.seminar-box p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.8;
}

.seminar-box img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.feature_section_annotation_box {
  position: relative;
  background-color: #e8f5e9;
  border-radius: 8px;
  padding: 20px 20px 20px 45px;
  margin-top: 40px;
  font-size: 14px;
  line-height: 1.8;
}

.feature_section_annotation_box::before {
  content: "!";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #4caf50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100%;
  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;
}


.feature_3features_list_wrap {
  margin: 20px 0 15px 0;
  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: 8px;
  padding-left: 1.4em;
}

.feature_3features_list>li::before {
  counter-increment: feature-number;
  content: counter(feature-number) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #00c853;
  font-size: 120%;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  line-height: 1.3;
}

.feature_3features_list>li h3 {
  color: #00c853;
  font-size: 120%;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  margin: 0 0 3px 0;
}

.feature_3features_list>li p {
  margin: 4px 0 0 0;
  font-size: 95%;
  color: #000;
}

.feature_3features_list>li img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 8px;
}

.feature_merit_list {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.feature_merit_item {
  position: relative;
  width: 98%;
  margin: 0 auto;
  border-radius: 8px;
  padding: 15px 10px;
  box-sizing: border-box;
}

.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;
  transform: rotate(90deg);
}

.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;
}

.feature_section_table.m--merit {
  width: 100%;
  font-size: 100%;
  line-height: 150%;
  letter-spacing: 1px;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.feature_section_table.m--merit tr>th {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin: 0 4px 0 0;
  padding: 0;
  background-color: #FFF;
  border-radius: 50%;
  font-size: 100%;
  font-weight: 900;
}

.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;
}



.feature_scene_list_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.feature_scene_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90vw;
  margin: 0 auto;
  padding: 0;
  list-style-type: none;
}

.feature_scene_list>li {
  width: 100%;
  margin: 0 0 15px 0;
}

.feature_scene_link,
.feature_scene_link:link,
.feature_scene_link:visited {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  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";
}

/* 活用事例 */
.case_slider_wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

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

.case_panel_link_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 98%;
  margin: 0 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_header {
  box-sizing: border-box;
}

.case_panel_img {
  width: 100%;
  height: 175px;
  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: 260px;
  overflow: auto;
  margin: 0;
  padding: 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;
  display: block;
  transition-duration: 0.8s;
}

.case_panel_body {
  padding: 8px;
  background-color: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.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_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: 10px;
  text-align: center;
  background-color: #f39025;
  box-sizing: border-box;
}

.case_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100%;
  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: 90%;
}

/* =========================================================
   回答フォーム 活用事例
   SP：1列／画像左・文章右
========================================================= */

.answer_case_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.answer_case_item {
  width: 100%;
  margin: 0;
  padding: 0;
}

.answer_case_card {
  display: grid;
  grid-template-columns: 34% minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-height: 180px;
  padding: 10px;
  background-color: #fff;
  border: 2px solid #dedede;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.answer_case_img {
  width: 100%;
  height: 100%;
  min-height: 158px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #f7f7f7;
  border: 1px solid #d8d8d8;
  border-radius: 7px;
  box-sizing: border-box;
}

.answer_case_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.answer_case_body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 3px 0;
}

.answer_case_title {
  margin: 0 0 10px;
  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.4;
  letter-spacing: 0.01em;
  min-height: auto;
}

.answer_case_text {
  margin: 0;
  padding: 0;
  color: #222;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}


.feature_settings_list_wrap {
  margin-top: 20px;
}

.feature_settings_list {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 1.5em;
  font-size: 100%;
  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: 100%;
}

.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: 110%;
  font-weight: 900;
}

.feature_settings_dl>dd {
  font-size: 100%;
  margin: 0;
  padding: 0;
}

.feature_section_list {
  padding-inline-start: 0;
}

.feature_section_list.m--number,
.feature_section_list.m--disc {
  padding-inline-start: 1em;
}

.feature_section_list.m--check>li {
  padding-left: 1em;
}

.feature_section_list>li {
  font-size: 100%;
  margin-bottom: 5px;
}

.feature_section_list>li h3 {
  font-size: 104%;
}

.feature_section_list>li p {
  font-size: 100%;
}

.feature_section_table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  font-size: 90%;
}

.feature_section_table.m--merit {
  width: 100%;
  font-size: 95%;
}

.feature_section_img {
  margin: 10px 0;
}

.feature_section_img.m--spscroll {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  display: block;
}

.feature_section_img.m--spscroll a {
  display: inline-block;
}

.feature_section_img {
  text-align: center;
}

.feature_section_img>img,
.feature_section_img .img-w100,
.feature_section_img .img-w90,
.feature_section_img .img-w80,
.feature_section_img .img-w70,
.feature_section_img .img-w60,
.feature_section_img .img-w50,
.feature_section_img .img-w40,
.feature_section_img .img-w30,
.feature_section_img .img-w20,
.feature_section_img .img-w10 {
  width: 90% !important;
  margin: 0 0 8px 0;
}

.feature_section_img.m--spscroll img {
  width: auto !important;
  height: 250px !important;
}

.feature_section_img.m--col2,
.feature_section_img.m--col3,
.feature_section_img.m--col4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature_section_img.m--col2>img,
.feature_section_img.m--col3>img,
.feature_section_img.m--col4>img {
  width: 96vw !important;
  max-width: 96vw !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 auto;
  display: block;
}

.feature_section_img_list {
  display: flex;
  flex-wrap: wrap;
  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: 100%;
}

.feature_section_img_list.m--col2 h3 {
  font-size: 100%;
  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: 100%;
  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% !important;
  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: 100%;
  line-height: 180%;
}

.feature_list.m--font16 {
  font-size: 95%;
}

.feature_list * {
  font-size: 95%;
  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: 100%;
  font-weight: 900;
}

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

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

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


.webhook_event_list li {
  grid-template-columns: 1fr;
  gap: 4px;
}

.webhook_event_list .label {
  display: block;
  margin-bottom: 2px;
}

.feature_dl_wrap {
  margin-top: 20px;
}

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

.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: 100%;
  font-weight: 900;
}

.feature_dl>dd {
  font-size: 100%;
  margin: 0;
  padding: 0;
}


.feature_settings_list_wrap {
  margin-top: 7px;
}

.feature_settings_list {
  font-size: 100%;
  padding-inline-start: 0.8em;
}

.feature_settings_list>li {
  margin-bottom: 5px;
}

.feature_settings_list>li h3 {
  font-size: 100%;
}

.feature_settings_list>li * {
  margin: 0;
  padding: 0;
}

.feature_settings_dl_wrap {
  margin-top: 7px;
}

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

.feature_settings_dl>dt,
.feature_settings_dl>dd {
  margin-bottom: 3px;
}

.feature_settings_dl>dt {
  font-size: 100%;
}

.feature_settings_dl>dd {
  font-size: 98%;
}

/* その他の機能 */
.other_slider_wrapper {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.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: auto;
  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 {
  width: 100%;
  height: 150px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.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: 10px;
  text-align: center;
  background-color: #f39025;
  box-sizing: border-box;
}

.other_panel_detail_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100%;
  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: 90%;
}

/*---------------------
 * 機能詳細ページ_end *
-----------------------*/
.feature_summary_wrap {
  width: 100vw;
  background: #f4f4f4;
  overflow-x: hidden;
}

.feature_summary_header {
  width: 100%;
  padding: 30px 0 15px 0;
}

.feature_summary_header_inner {
  max-width: 100vw;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  padding: 0 10px;
}

.feature_summary_catchphrase {
  font-size: 110%;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  line-height: 1;
  text-align: left;
}

.feature_summary_title {
  font-size: 180%;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  margin: 0;
  line-height: 1.1;
  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_summary_about_inner {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 10px;
}

.feature_summary_about_contents h2 {
  color: #00c853;
  font-size: 110%;
  font-weight: 900;
  font-family: 'Rounded Mplus 1c', 'sans-serif';
  margin: 8px 0 3px 0;
  padding: 0;
}

.feature_summary_list_wrap {
  display: flex;
  justify-content: center;
  margin: 20px 0 25px 0;
  padding: 0 5px;
}

.feature_summary_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature_summary_list li {
  width: calc(100% / 2);
  min-height: 60px;
  height: auto;
  box-sizing: border-box;
  background-color: #fff;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-right: 1px 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: center;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  transition: 0.3s ease;
  margin: 0;
}

.feature_summary_list li:nth-of-type(1),
.feature_summary_list li:nth-of-type(2) {
  border-top: 1px solid;
}

.feature_summary_list li:nth-child(2n) {
  border-left: 0 solid;
}

.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 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: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: auto;
  min-height: 50px;
  color: #000;
  font-weight: 900;
  font-size: 90%;
  transition: color 0.4s 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;
  font-size: 90%;
}

.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: 30px;
}

.feature_summary_list li a:hover>img {
  filter: invert(1) grayscale(1) brightness(2);
}

.feature_summary_list li a::after {
  content: "▼";
  font-size: 90%;
  margin-top: 2px;
  color: #00c853;
  transition: color 0.4s ease;
}

.feature_summary_list li:hover a::after {
  color: #FFF;
}

.feature_summary_section_wrapper {
  max-width: 100vw;
  margin: 0 0 28px 0;
  padding: 18px 8px;
  box-sizing: border-box;
}

.feature_summary_section_wrapper.m--w100 {
  max-width: 100vw;
}

.feature_summary_section_wrapper.m--bg--gray {
  background: #f4f4f4;
  margin: 0;
}

.feature_summary_section_wrapper.m--bg--white {
  background: #FFF;
}

.feature_summary_section_wrap {
  margin-bottom: 18px;
  scroll-margin-top: 60px;
}

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

.feature_summary_section_catchphrase {
  font-size: 95%;
  text-align: center;
  margin: 0 0 6px 0;
}

.feature_summary_section_title {
  font-size: 135%;
  font-weight: 900;
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
}

.feature_summary_flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-start;
  align-items: stretch;
}

.feature_summary_img {
  width: 100%;
  background: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}

.feature_summary_img img,
.feature_summary_img .img-w100,
.feature_summary_img .img-w90,
.feature_summary_img .img-w80,
.feature_summary_img .img-w70,
.feature_summary_img .img-w60,
.feature_summary_img .img-w50,
.feature_summary_img .img-w40,
.feature_summary_img .img-w30,
.feature_summary_img .img-w20,
.feature_summary_img .img-w10 {
  width: 90vw !important;
  max-width: 90vw !important;
  height: auto !important;
  display: block;
  margin: 0 auto;
}

.feature_summary_text {
  width: 100%;
  margin: 0;
  padding: 0 2px;
}

.feature_detail_link_wrap {
  text-align: right;
  margin-top: 15px;
  margin-bottom: 10px;
  padding-right: 2px;
}

.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: 100%;
  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;
}

.feature_detail_link_wrap>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: 0.3s ease;
}

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

.feature_detail_link_icon {
  width: 16px;
  height: 16px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 6px;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature_detail_link_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 90%;
}

.feature_solution_dl_wrap {
  margin-top: 12px;
}

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

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

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

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

.feature_solution_dl>dt {
  font-size: 105%;
  font-weight: 900;
}

.feature_solution_dl>dd {
  font-size: 98%;
  margin: 0;
  padding: 0;
}

.feature_solution_list_wrap {
  margin-top: 10px;
}

.feature_solution_list {
  list-style-type: none;
  padding-inline-start: 0;
  margin: 0;
  font-size: 100%;
  line-height: 170%;
}

.feature_solution_list.m--font16 {
  font-size: 95%;
}

.feature_solution_list * {
  margin: 0;
  padding: 0;
}

.feature_solution_list.m--disc {
  list-style-type: disc;
  padding-inline-start: 1.2em;
}

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

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

.feature_solution_list>li::marker {
  font-size: 105%;
  font-weight: 900;
}

.feature_solution_list>li h3 {
  margin: 0;
  padding: 0;
  font-size: 105%;
  font-weight: 900;
  margin-top: 6px;
}

.feature_back_link_wrap {
  text-align: center;
  margin: 30px auto 25px 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: 130%;
  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: 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;
}

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

.feature_back_link_icon {
  width: 20px;
  height: 20px;
  color: rgba(0, 121, 143, 1);
  border: solid 1px rgba(0, 121, 143, 1);
  border-radius: 50%;
  margin-left: 6px;
  font-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature_back_link_icon>i {
  color: rgba(0, 121, 143, 1);
  font-size: 90%;
}



/* features内ステップdl */
.step_dl_wrap {
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  position: relative;
}

.step_dl {
  position: relative;
  padding: 1.0em;
  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:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #00c853, #037a6a);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

/* dlの中身をスマホでは縦積み */

.step_dl_content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: flex-start;
}

/* 1カラム版のスタイル */
.step_dl_content_single {
  display: block;
}

.step_dl_left_single {
  width: 100%;
}

.step_dl_left_single img {
  width: 100%;
  margin: 0 auto;
}

.step_dl_left {
  flex: none;
  order: 1;
  width: 100%;
}

.step_dl dd {
  margin: 0;
  padding: 0 0 0 10px;
  font-size: 90%;
  line-height: 1.5;
  color: #333;
}

.step_dl_right {
  flex: none;
  order: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
}

.step_dl_right img {
  max-width: 60%;
  height: auto;
}

/* ーーーーーーーーーーーーー featuresページのグレーアウト表示 ーーーーーーーーーーーーー */
/* ラッパー：オーバーレイの基準点 */
.deprecated-section-wrapper {
  position: relative;
}

/* 半透明グレーのカバー */
.deprecated-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(99, 99, 99, 0.6);
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 24px;
}

/* 告知ボックス */
.deprecated-notice {
  background-color: #fff;
  border-left: 4px solid #e74c3c;
  border-radius: 4px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  width: 88%;
}

.deprecated-notice-red {
  font-size: 120%;
  font-weight: 900;
  line-height: 1.8;
  text-align: center;
  color: #e74c3c;
}

.deprecated-notice__icon {
  display: block;
  font-size: 18px;
  margin-bottom: 4px;
}

.deprecated-notice__link {
  color: #27ae60;
  font-weight: bold;
  text-decoration: underline;
}

.deprecated-notice__link:hover {
  color: #1e8449;
}

/* ーーーーーーーーーーーーー featuresページのグレーアウト表示 ここまでーーーーーーーーーーーーー */

.illustration_placeholder {
  width: 100%;
  height: 60px;
  background: linear-gradient(45deg, #00c853, #037a6a);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}

.step_dl p a {
  font-weight: bold;
  color: #157efb;
  text-decoration: underline;
  display: inline-block;
}

.step_dl dt h3 {
  font-size: 120%;
  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;
}

.button_container {
  text-align: center;
  flex-direction: column;
  display: flex;
  flex-wrap: wrap;
}

.button_container a:link {
  color: #fff;
  text-decoration: none;
}

.button_container a:visited {
  color: #fff;
  text-decoration: none;
}

.button_container a:hover {
  color: #fff;
  text-decoration: none;
}

.pointbox {
  margin: 0 auto;
  padding: 0 0 40px 0;
  text-align: left;
}

.pointcel {
  margin: 0 15px;
  padding: 0;
}

.pointitle {
  margin: 0;
  padding: 15px 0 5px 0;
  font-size: 120%;
  font-weight: 900;
  line-height: 150%;
  font-family: "Rounded Mplus 1c";
  text-align: center;
}

.point {
  margin: 0;
  padding: 10px 0 15px 15px;
  border: 2px solid #ddd;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.point table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.point table th {
  width: 25px;
  font-size: 100%;
  line-height: 100%;
  padding: 10px 0 0 0;
  color: #ff3d29;
  vertical-align: top;
  text-align: left;
}

.point table td {
  font-size: 100%;
  line-height: 150%;
  padding: 4px 0 0 0;
  vertical-align: top;
}


/* 料金プランのプラン下ボタン */
table.price th>h3 {
  height: 1.8em;
}

table.price {
  margin-top: 4em !important;
}

table.price th.standerd>.no1 {
  display: block;
  margin-top: -60px;
}

table.price th.standerd>.no1>img {
  width: 80px;
}

.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);
}

/*---------- サポートページ　タブ切り替え用スタイル ----------*/
#supportbox {
  margin: 0 auto;
  padding: 0 15px 40px;
  background-color: #e7fae3;
}

.support-sub-tag {
  background: #f8fd55;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 14px;
  padding: 3px 5px;
}

/* ===== タブ全体ラッパー ===== */
.support_tabs_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

/* ===== タブ共通 ===== */
.support_tab_item {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 4px 8px;
  font-size: 11px;
  min-height: 46px;
  line-height: 1.3;
  text-align: center;
  overflow: visible;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
}

/* ===== 幅指定 ===== */
.support_tab_item.nomal-tab-width {
  width: calc(80% - 4px);
}

.support_tab_item.sub-tab-width {
  width: calc(45% - 4px);
}

.support_tab_item:hover {
  color: #20af5a;
}

input[name='support_tab_item'] {
  display: none;
}


/* ===== 選択中タブ ===== */
.support_tabs_wrap input:checked+.support_tab_item {
  font-weight: bold;
  background-color: #fff;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
  border-radius: 5px 5px 0 0;
  color: #1a1a1a;
  z-index: 2;
  min-height: 56px;
}

/* ===== サブテキスト（バッジ）・通常時 ===== */
.support-subtub {
  font-weight: bold;
  color: #05a844;
  display: block;
  font-size: 9px;
  line-height: 1.3;
  padding: 0 6px;
  margin-bottom: 4px;
  white-space: normal;
  word-break: keep-all;
  border-radius: 10px;
}

/* 三角矢印（初期は非表示） */
.support-subtub::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #05a844;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* ===== 選択中バッジ：タブ下端に半分乗せる ===== */
input:checked+.support_tab_item .support-subtub {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  white-space: nowrap;
  background: #20af5a;
  color: #fff;
  border: 2px solid #20af5a;
  border-radius: 12px;
  font-size: 9px;
  padding: 2px 8px;
  z-index: 3;
}

input:checked+.support_tab_item .support-subtub::after {
  opacity: 1;
}

/* ===== タブタイトル ===== */
.support-title {
  font-size: 11.5px;
  display: block;
  line-height: 1.3;
  white-space: normal;
  word-break: keep-all;
}

/* ===== タブコンテンツ ===== */
.support_tab_content {
  display: none;
  width: 100%;
  box-sizing: border-box;
  order: 1;
  background-color: #fff;
  padding: 0px 20px 20px;
  /* 上部はバッジ分の余白 */
  border-top: 2px solid #20af5a;
  border-radius: 0 0 10px 10px;
  text-align: left;
  position: relative;
  z-index: 1;
}

#before:checked~#before_content,
#after:checked~#after_content,
#seiki:checked~#seiki_content {
  display: block;
}

/* ===== その他 ===== */
.bf_support {
  margin: 0;
  padding: 0;
  font-size: 80%;
  font-weight: normal;
  text-align: center;
  line-height: 150%;
  white-space: normal;
}

.bf_support .bf_plus {
  font-weight: bold;
}

/*plan リニューアル 202603 */
/* =============================================
   ページナビ
   ============================================= */
.price-header-bg {
  color: #FFF;
  background-color: #20af5a;
}

.price-header-bg-inner {
  width: 98%;
  margin: 0 auto;
}

.price_header-bg-inner>h1 {
  color: #FFF;
  padding: 30px 15px 30px 15px;
}

.navigationType01 {
  padding-bottom: 8px;
  position: relative;
  z-index: 10;
  font-size: 14px;
  margin-bottom: -1.2em;
}

.navigationType01_wrapper {
  display: block;
  padding: 0 10%;
  transform: translateY(-18px);
}

.navigationType01_inner {
  background-color: #fff;
  border: #21af5a solid 2px;
  border-radius: 14px;
  padding: 10px 14px;
}

.navigationType01List {
  list-style: none;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-start;
  min-height: 28px;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px;
  padding-left: 0;
}

.navigationType01List>li {
  width: 100%;
}

.navigationType01List::-webkit-scrollbar {
  height: 4px;
}

.navigationType01Link {
  color: #21af5a;
  display: block;
  font-weight: 600;
  padding-left: 1.6em;
  position: relative;
  font-size: 0.85em;
  white-space: nowrap;
}

.navigationType01Link::before {
  aspect-ratio: 1 / 1;
  background-color: #21af5a;
  border-radius: 50%;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  top: 0.2em;
  width: 1.35em;
}

.navigationType01Link::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0.48em;
  top: 55%;
  transform: translateY(-50%);
  font-size: 0.68em;
  color: #fff;
}

.navigationType01_inner a:link,
.navigationType01_inner a:visited,
.navigationType01_inner a:active {
  color: #21af5a;
  text-decoration: underline;
}

/* =============================================
   共通ボックス
   ============================================= */
.pricing_comparison,
#plan_tabs .pricing_comparison {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  margin: 24px auto 0;
  width: 100%;
}

.pricing_box,
#plan_tabs .pricing_box {
  padding: 24px 18px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}

.pricing_box.m--lstep,
#plan_tabs .pricing_box.m--lstep {
  width: calc(100% - 36px);
  background-color: #d4f4dd;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing_box.m--line,
#plan_tabs .pricing_box.m--line {
  width: calc(100% - 36px);
  background-color: #e8e8e8;
}

.pricing_box_title,
#plan_tabs .pricing_box_title {
  font-size: 22px;
  font-weight: 900;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.pricing_box_text,
#plan_tabs .pricing_box_text {
  font-size: 15px;
  font-weight: 900;
  margin: 0;
  line-height: 1.7;
}

.pricing_plus,
#plan_tabs .pricing_plus {
  font-size: 34px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* =============================================
   料金ページ タブ
   ============================================= */
#plan_tabs.pricing_tabs_wrap {
  margin: 24px auto 0;
  text-align: center;
  width: 100%;
}

#plan_tabs input[name='plan_tab_item'] {
  display: none;
}

#plan_tabs .pricing_tab_item {
  position: relative;
  max-width: 100% !important;
  display: block;
  color: #1a1a1a;
  padding: 5px 5px 5px;
  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;
  margin-bottom: 3px;
}

#plan_tabs .pricing_tab_item.normal-tab-width {
  position: relative;
  max-width: 100% !important;
  display: block;
}

#plan_tabs .pricing_tab_item.extra-tab-width {
  position: relative;
  max-width: 100% !important;
  display: block;
}

#plan_tabs .pricing_tab_item:hover {
  color: #20af5a;
}

#plan_tabs .plan_tab__label {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 6px;
  padding: 4px 12px;
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 999px;
  transition: transform 0.25s ease;
}

#plan_tabs .plan_tab__name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  transition: transform 0.25s ease;
}

#plan_tabs .plan_tab__label::before,
#plan_tabs .plan_tab__label::after {
  content: none;
}

#plan_tabs #normal:checked~#normal_content,
#plan_tabs #large:checked~#large_content,
#plan_tabs #premium:checked~#premium_content {
  display: block;
}

#plan_tabs input:checked+.pricing_tab_item {
  border-radius: 8px 8px 0 0;
  font-weight: bold;
  color: #20af5a;
  background-color: #d4f4dd;
  border: 2px solid #20af5a;
  border-bottom: 2px solid #fff;
  overflow: visible;
}

#plan_tabs input:checked+.pricing_tab_item .plan_tab__label {
  transform: translateY(-14px);
  border: 2px solid #20af5a;
  background: #fff;
}

#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: -7px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #fff;
}

#plan_tabs input:checked+.pricing_tab_item .plan_tab__name {
  color: #1a1a1a;
}

#plan_tabs .pricing_tab_content {
  margin: 0 auto;
  display: none;
  padding: 5px;
  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;
  height: 100%;
  background-color: #fff;
  border-top: 3px solid #00a844;
  z-index: -1;
}

#plan_tabs .nomal-tab-width {
  width: 100% !important;
}

.plan-title-mini {
  font-size: 16px !important;
}

.plan-subtitle-mini {
  font-size: 12px !important;
}

span.plan_tab__label {
  background: transparent;
  border-radius: 19px;
}

/* =============================================
   料金表 テーブルラッパー
   ============================================= */
#plan_tabs .price_table_wrap {
  position: relative;
  padding-top: 5px;
  margin-top: 0;
}

/* =============================================
   テーブル共通
   ============================================= */
#plan_tabs #normal-plan-price,
#plan_tabs #large-plan-price,
#plan_tabs #liny-plan-price,
table.price {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  position: relative;
}

#plan_tabs #normal-plan-price .tr_plan th,
#plan_tabs #large-plan-price .tr_plan th,
#plan_tabs #liny-plan-price .tr_plan th,
table.price .tr_plan th {
  background-clip: padding-box;
  border-bottom: 2px solid #ddd;
  text-align: center;
  overflow: visible !important;
}

/* =============================================
   テーブル本体
   ============================================= */
#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;
}

#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;
}

/* SP: thead プラン名行を縦スクロール時に固定 */
#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: sticky !important;
  position: -webkit-sticky !important;
  top: 0 !important;
  z-index: 100 !important;
}

/* 左端thは横固定も兼ねる */
#plan_tabs #normal-plan-price .tr_plan.sticky-row th:first-child,
#plan_tabs #large-plan-price .tr_plan.sticky-row th:first-child,
#plan_tabs #liny-plan-price .tr_plan.sticky-row th:first-child {
  left: 0 !important;
  z-index: 120 !important;
  background-color: #575564 !important;
}

#plan_tabs #normal-plan-price th,
#plan_tabs #large-plan-price th,
#plan_tabs #liny-plan-price th,
table.price th {
  position: relative;
  padding: 10px 6px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  border: 1px solid #ddd;
  font-size: 13px;
  line-height: 1.4;
}

#plan_tabs #normal-plan-price td,
#plan_tabs #large-plan-price td,
#plan_tabs #liny-plan-price td,
table.price td {
  position: relative;
  padding: 6px 8px;
  border: 1px solid #999;
  font-size: 12px;
  line-height: 1.6;
  vertical-align: middle;
  text-align: center;
}

#plan_tabs #normal-plan-price td.td_feature,
#plan_tabs #normal-plan-price td.category,
#plan_tabs #normal-plan-price td.td_explanation,
#plan_tabs #large-plan-price td.td_feature,
#plan_tabs #large-plan-price td.category,
#plan_tabs #large-plan-price td.td_explanation,
#plan_tabs #large-plan-price td.td_feature_add,
#plan_tabs #large-plan-price td.td_support_h {
  text-align: left;
}

#plan_tabs #large-plan-price td.top_bring2::before {
  top: -1px;
  border-top: 1px dotted #575564;
}

#plan_tabs #large-plan-price td.top_bring2>span {
  padding-left: 1.2em;
  text-indent: -0.8em;
  font-size: 14px;
  line-height: 1.6;
}

#plan_tabs #normal-plan-price td.top_none,
#plan_tabs #large-plan-price td.top_none {
  border-top: none;
}

#plan_tabs #normal-plan-price td.top_bring,
#plan_tabs #large-plan-price td.top_bring {
  border-top: 1px solid #ddd;
}

#plan_tabs #normal-plan-price td.td_feature,
#plan_tabs #large-plan-price td.td_feature {
  color: #fff;
  background-color: #575564;
}

#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,
#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: 1em;
  text-align: left;
  line-height: 1.5;
  text-decoration: none !important;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link_icon,
#plan_tabs #large-plan-price .td_feature .td_feature_link_icon,
img.td_feature_link_icon {
  display: none;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link>span,
#plan_tabs #large-plan-price .td_feature .td_feature_link>span {
  border-bottom: dotted 1px #fff;
}

#plan_tabs #normal-plan-price .td_feature .td_feature_link:hover>span,
#plan_tabs #large-plan-price .td_feature .td_feature_link:hover>span {
  border-bottom: none;
}

#plan_tabs #normal-plan-price .td_feature>small,
#plan_tabs #large-plan-price .td_feature>small {
  font-size: 11px;
  line-height: 1.4;
}

#plan_tabs #normal-plan-price .td_feature_link_list,
#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 #normal-plan-price .td_feature_link_list>li,
#plan_tabs #large-plan-price .td_feature_link_list>li {
  width: calc(50% - 6px);
  margin: 6px 6px 0 0 !important;
  text-align: left;
}

#plan_tabs #normal-plan-price .td_feature_link_list>li>a,
#plan_tabs #large-plan-price .td_feature_link_list>li>a {
  font-size: 11px !important;
}

#plan_tabs #normal-plan-price .td_fearure_check .check_icon,
#plan_tabs #large-plan-price .td_fearure_check .check_icon,
i.fas.fa-check-circle {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  color: #00cd3f;
}

/* プラン背景 */
#plan_tabs #normal-plan-price .tr_plan th:nth-child(1),
table.price th:nth-child(1),
.category {
  background-color: #575564 !important;
  color: #fff;
  text-align: center;
  /* PC幅・DevTools PC幅でも中央寄せを維持する */
}

th.standard,
th.start,
th.pro,
th.extra,
#plan_tabs #large-plan-price th.extra {
  position: relative;
  background-color: #be0200 !important;
}

/* プラン名 */
#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,
#plan_tabs #large-plan-price th.extra>h3,
.sticky-row h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0 !important;
  margin-bottom: 0.35em !important;
  min-height: 1.5em;
  color: #fff !important;
  font-size: 1.5em;
  text-align: center;
  line-height: 1.3;
}

#normal-plan-price th,
table.price th {
  padding: 4px 8px;
}

div#price-page-fixed th.free.fp-bg {
  padding: 0;
}

.fp-c {
  background: #93dd1b !important;
}

.fp-bg {
  background: #00c853 !important;
}

#plan_tabs #normal-plan-price .micro-c,
.micro-c {
  font-size: 0.85em;
  line-height: 1.4;
  padding-top: 0;
  min-height: 1.2em;
  color: #fff !important;
  text-align: center;
}

#plan_tabs #normal-plan-price .micro-btn,
#plan_tabs #large-plan-price .micro-btn,
.micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 1em;
  color: #333 !important;
  padding: 6px 8px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  line-height: 1.4;
}

#plan_tabs #normal-plan-price .micro-btn {
  color: #575564 !important;
}

#plan_tabs #normal-plan-price .micro-btn:hover,
#plan_tabs #large-plan-price .micro-btn:hover,
.micro-btn:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.plan-sub-tag {
  background: #ffff17;
  color: #333;
  border-radius: 3px;
  padding: 2px 4px;
  margin-left: 4px;
  font-size: 10px;
  font-weight: bold;
}

#plan_tabs #normal-plan-price th.pro {
  position: relative;
  overflow: visible;
}

#plan_tabs #normal-plan-price th.pro .no1-badge.m--sp {
  position: absolute;
  top: -50px;
  right: 10px;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}

#plan_tabs #normal-plan-price th.pro .no1-badge.m--sp img {
  display: block;
  width: 80px;
}

#plan_tabs .no1-badge.m--pc {
  display: none;
}

/* 追加機能 */
#plan_tabs #normal-plan-price .tr_feature_add,
#plan_tabs #large-plan-price .tr_feature_add {
  color: #fff;
  background-color: blue;
  border-top: solid 2px #fff;
}

#plan_tabs #normal-plan-price .td_feature_add,
#plan_tabs #large-plan-price .td_feature_add,
td.td_feature_add.sticky-col-1 {
  color: #fff;
  background-color: #575564;
  border-right: none !important;
  padding: 4px 8px;
}

#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 #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,
#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: blue;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: dotted 1px blue;
  font-size: 12px;
}

#plan_tabs #large-plan-price .td_option_text {
  color: blue;
  font-size: 12px;
  background-color: #fff;
  padding: 8px;
  text-align: left;
}

/* サポート行 */
#plan_tabs #normal-plan-price .tr_support_top,
#plan_tabs #normal-plan-price .tr_support_bottom,
#plan_tabs #large-plan-price .tr_support_top,
#plan_tabs #large-plan-price .tr_support_bottom,
tr.tr_support_top.toggle {
  color: #fff;
  background-color: #be0200;
}

#plan_tabs #normal-plan-price .td_support_price,
#plan_tabs #large-plan-price .td_support_price {
  width: 100%;
  border: solid 2px #be0200 !important;
  padding: 0 !important;
}

#plan_tabs #normal-plan-price .td_support_header,
#plan_tabs #large-plan-price .td_support_header,
td.td_support_header.sticky-col-1 {
  position: relative;
  font-size: 12px;
  text-align: center;
  border-bottom: solid 2px #be0200;
  padding: 6px 8px !important;
  pointer-events: none;
}

#plan_tabs #normal-plan-price .td_support_text,
#plan_tabs #large-plan-price .td_support_text {
  position: relative;
  font-size: 12px;
  border-left: solid 2px #be0200;
  border-right: solid 2px #be0200;
  border-bottom: solid 2px #be0200;
  text-align: left;
  padding: 8px !important;
}

#plan_tabs #normal-plan-price .td_support_price_text_wrap,
#plan_tabs #large-plan-price .td_support_price_text_wrap {
  position: relative;
  width: calc(100% - 4px);
  display: flex;
  align-items: stretch;
  font-size: 12px;
  text-align: left;
  padding: 0 !important;
  border: solid 2px #be0200;
}

#plan_tabs #normal-plan-price .td_support_price_text,
#plan_tabs #large-plan-price .td_support_price_text {
  color: #000;
  padding: 8px;
  background-color: #fff;
  text-align: center;
}

#plan_tabs #normal-plan-price .td_support_price_text.m--left,
#plan_tabs #large-plan-price .td_support_price_text.m--left {
  width: 34%;
  border-right: solid 2px #be0200;
}

#plan_tabs #normal-plan-price .td_support_price_text.m--right,
#plan_tabs #large-plan-price .td_support_price_text.m--right {
  width: 66%;
}

#plan_tabs #normal-plan-price .td_support_price_text>b,
#plan_tabs #large-plan-price .td_support_price_text>b {
  color: red;
  font-size: 120%;
  font-weight: bold;
  margin-top: 4px;
}

td.cost.top_none {
  padding: 6px 8px;
}

.cost {
  background-color: unset;
}

tr.normal-plan-price:nth-child(odd),
.even {
  background-color: #f8f8f8;
}

tr.normal-plan-price:nth-child(even) {
  background-color: #ffffff;
}

/* SPではJSクローンヘッダーは非表示 */
.price-clone,
#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,
div#price-page-fixed,
div#price-page-fixed-large,
div#price-page-fixed-liny,
div#price-page-fixed-extra,
div#price-page-fixed-second-normal,
div#price-page-fixed-second-extra {
  display: none !important;
}

#plan_tabs #large-plan-price td.top_bring2::before {
  top: -1px;
  border-top: 1px dotted #575564;
}

#plan_tabs #large-plan-price td.top_bring2>span {
  padding-left: 1.2em;
  text-indent: -0.8em;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* =============================================
   SP: category列 横スクロール時固定
   ============================================= */
#plan_tabs .price_table_scroll {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 640px) {

  /* 表上部の余白を縮める */
  #plan_tabs .pricing_tab_content>p {
    margin-bottom: 8px;
  }

  #plan_tabs .price_table_wrap {
    padding-top: 0;
    margin-top: 0;
  }

  /* 1列目 or 1+2列結合セル → left: 0 で固定 */
  #plan_tabs #normal-plan-price td.sticky-col-span-2,
  #plan_tabs #large-plan-price td.sticky-col-span-2,
  #plan_tabs #large-plan-price td.sticky-col-1 {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 6;
    background-color: #575564 !important;
  }

  /* 2列目セル（初期費用・月契約など）→ left はJSがセット */
  #plan_tabs #normal-plan-price td.sticky-col-2,
  #plan_tabs #large-plan-price td.sticky-col-2 {
    position: -webkit-sticky;
    position: sticky;
    z-index: 5;
    background-color: #575564 !important;
  }

  /* even行の2列目も背景色を合わせる */
  #plan_tabs #normal-plan-price tr.even td.sticky-col-2,
  #plan_tabs #large-plan-price tr.even td.sticky-col-2 {
    background-color: #575564 !important;
  }

  /* 大量送信プラン: sticky-col-2 の left をCSSで固定
     テーブル min-width:860px × col-1幅5% = 43px */
  #plan_tabs #large-plan-price td.sticky-col-2:not([colspan]) {
    left: 43px;
  }

  /* 月間配信数（colspan=2）は左端から固定 */
  #plan_tabs #large-plan-price td.sticky-col-2[colspan] {
    left: 0;
  }
}

/* =============================================
   トグル
   ============================================= */
.toggle {
  margin-bottom: 20px;
  padding-top: 10px;
}

.toggle input[type='radio'] {
  display: none;
}

.toggle>label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 2px);
  min-width: 0;
  height: 42px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  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;
}

.toggle>label:hover {
  background: #eef9f3;
}

.toggle input[type='radio']:checked+label,
.toggle>label:first-of-type {
  background: #20af5a;
  color: #fff;
  border-color: #20af5a;
}

.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;
}

tr.toggle>td {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  letter-spacing: 1px;
}

tr.toggle-pre td {
  position: relative;
  cursor: pointer;
}

tr.toggle-pre td::after {
  content: '＋';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}

tr.toggle-pre.open td::after {
  content: '−';
}

.lstep-all {
  line-height: 2.2 !important;
  letter-spacing: 1px !important;
}

.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;
}

tr.toggle.open.lstep-line-dotbtm {
  border-bottom: none !important;
}

.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;
}

/* =============================================
   ポップアップ
   ============================================= */
#plan_tabs .popup,
.plan-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
}

.plan-popup--active {
  display: block;
}

#plan_tabs .popup_content,
.plan-popup__content {
  background: #fff;
  width: calc(80% - 24px);
  max-width: none;
  max-height: 62vh !important;
  overflow: auto;
  margin: 12vh auto 0;
  padding: 18px 16px;
  border-radius: 12px;
  border: solid 2px rgba(115, 115, 120, 0.16);
  box-shadow: 0px 4px 12px rgba(115, 115, 120, 0.16);
}

#plan_tabs .popup_inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#plan_tabs .popup_text,
#plan_tabs .popup_image_wrap {
  width: 100%;
}

#plan_tabs .popup_image_wrap {
  height: auto;
  border-left: none;
  border-top: 2px solid #f4f4f4;
  padding: 16px 0 0;
  margin: 0;
}

#plan_tabs .popup_image_wrap>img,
#plan_tabs .popup_image_wrap.m--col2>img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

#plan_tabs .popup_image_wrap.m--col2>img {
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

#plan_tabs .popup_category {
  font-size: 16px !important;
  margin: 0 0 8px 0;
  text-align: left !important;
}

#plan_tabs .popup_title {
  color: #000;
  font-size: 20px;
  font-family: 'Rounded Mplus 1c';
  margin: 0 0 8px 0;
  text-align: left;
}

#plan_tabs .popup_description {
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

#plan_tabs .popup_plan {
  padding: 12px;
}

#plan_tabs .popup_plan_label {
  color: #000;
  font-size: 14px;
  text-align: left;
}

#plan_tabs .popup_plan_list>li {
  width: 48%;
  margin: 0 0 5px 5px;
}

#plan_tabs .popup_plan_list>li,
#plan_tabs a.popup_plan_link,
#plan_tabs a.popup_plan_link:link,
#plan_tabs a.popup_plan_link:visited {
  font-size: 12px !important;
}

#plan_tabs .popup_button,
#plan_tabs .popup_button:link,
#plan_tabs .popup_button:visited {
  display: inline;
  width: 100%;
  font-size: 15px;
  margin-top: 14px;
  padding: 10px 0;
}

#plan_tabs .popup_scece * {
  font-size: 13px;
}

#plan_tabs .popup_scece_dl>dt {
  font-size: 15px;
}

#plan_tabs .popup_scece_dl>dd,
#plan_tabs .popup_scece p,
#plan_tabs .popup_scece_list {
  font-size: 13px;
  line-height: 1.8;
}

#plan_tabs .popup_close {
  top: 6px;
  right: 6px;
  font-size: 22px;
}

/* =============================================
   pricing-tabs / billing-timing
   ============================================= */
.pricing-tabs__content,
.billing-timing-tabs__content {
  display: none;
  margin: 0 auto;
  padding: 20px 16px;
  text-align: left;
  position: relative;
  background: transparent;
  z-index: 1;
}

.pricing-tabs__content--active,
.billing-timing-tabs__content--active {
  display: block;
}

.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;
}

.billing-timing-tabs__content img {
  width: 100%;
  margin: auto;
  display: block;
  padding-bottom: 20px;
}

.pricing-tabs__tab,
button.pricing-tabs__tab,
button.pricing-tabs__tab.pricing-tabs__tab--active,
.billing-timing-tabs__tab,
button.billing-timing-tabs__tab,
button.billing-timing-tabs__tab.billing-timing-tabs__tab--active {
  width: 100%;
  display: block;
  font-size: 16px;
  padding: 14px 12px;
  margin-bottom: 8px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #ccc;
  background-color: #FFF;
}

.pricing-tabs__tab {
  color: #1a1a1a;
}

.pricing-tabs__tab--active,
button.pricing-tabs__tab.pricing-tabs__tab--active,
.billing-timing-tabs__tab--active,
button.billing-timing-tabs__tab.billing-timing-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-tabs__tab--active .pricing-tabs__title {
  color: #20af5a;
}

small.pricing-tabs__catch {
  padding: 4px 12px;
  border-radius: 22px;
  display: table;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
  background-color: #00cd3f;
}

span.pricing-tabs__title {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding-top: 8px;
}

.billing-timing-tabs__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  border-bottom: 3px solid #00a844;
}

.billing-timing-tabs__tab,
button.billing-timing-tabs__tab,
button.billing-timing-tabs__tab.billing-timing-tabs__tab--active {
  width: 100%;
  margin-bottom: 0;
  min-height: 72px;
  white-space: normal;
  line-height: 1.5;
}

.billing-timing-tabs__tab,
button.billing-timing-tabs__tab,
button.billing-timing-tabs__tab.billing-timing-tabs__tab--active {
  padding: 14px 10px;
  font-size: 0.85em;
}

.billing-timing-tabs p {
  font-size: 1em !important;
}

.contents_page_1080 {
  max-width: 100%;
  width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.contents_page_1080 img {
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
}

.contents_page_1080_wrap.m--order {
  max-width: 100%;
  background: #f4f4f4;
  padding-bottom: 1px;
}

.contents_page_1080_box {
  margin: 0 15px;
  padding: 10PX;
  border: #00c853 solid 2px;
  border-radius: 5px;
}

/* =============================================
   enterprise / partner
   ============================================= */
.enterprise-tit {
  font-size: 1.15em;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}

.enterprise-btn-wrap {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 40px;
  flex-direction: column;
}

.enterprise-btn,
.enterprise-material-btn {
  --bg: linear-gradient(90deg, #1aedb1 0%, #00a29a 100%);
  --hover-color: #00a29a;
  --border-width: 1.5px;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  padding: 12px 10px;
  border: var(--border-width) solid #fff;
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--bg);
  box-shadow: 0 4px 15px rgb(142 157 146 / 35%);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 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;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--bg) border-box;
  color: var(--hover-color) !important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 28px;
  padding: 5px;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.partner-card__logo {
  width: 40%;
  text-align: center;
  margin: 0 auto;
  padding-top: 10px;
}

.partner-card__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.partner-card__content {
  font-size: 14px;
  line-height: 1.9;
  color: #2c2f33;
  padding: 0 5px 0 10px;
}

.highlight-green {
  color: #2db400;
  font-weight: 600;
}

.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;
}

/* =============================================
   Liny metrics
   ============================================= */
.liny-metrics {
  color: #1f2328;
}

.liny-metrics__container {
  margin: 10px auto;
  background: #ffffff;
  padding: 24px 16px 0;
  border-radius: 12px;
}

.liny-metrics__container img {
  width: 100%;
}

.liny-metrics__title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  color: #009080;
  line-height: 1.5;
}

.liny-metrics__subtitle {
  font-size: 0.5em;
  font-weight: normal;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 8px;
  line-height: 1.7;
}

.liny-metrics__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 10px;
}

.liny_list {
  display: block;
  margin: 0 auto;
  padding-left: 1.5em;
  text-align: left;
  max-width: 100%;
  list-style: none;
}

.liny_list>li::marker {
  font-size: 15px;
  font-weight: 900;
}

.liny_list>li {
  margin: 0 0 8px 0;
  font-size: 15px;
  line-height: 180%;
  padding-left: 0;
  text-indent: -0.2em;
}

.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: 16px;
  font-weight: 900;
  margin-top: 10px;
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: 'pnum';
  border-bottom: 1px solid #6e74834d;
}

.stat__value span {
  font-size: 0.6em;
  margin-left: 4px;
}

.stat__label {
  margin-top: 8px;
  font-size: 0.6em;
  color: #545e71;
}

.stat--wide {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-split {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.stat-split__item {
  text-align: center;
  min-width: 96px;
}

.stat-split__value {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-split__label {
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}

.stat-split__divider {
  width: 48px;
  height: 1px;
  background: #e6e8eb;
}

.liny-metrics__middle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 1em;
}

/* グラフ */
.liny-graph {
  position: relative;
  border-radius: 12px;
  padding: 20px 8px 0;
}

.graph-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 150px;
}

.graph-bars span {
  flex: 1;
  background: #5fd3c6;
  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: 16px;
  right: 16px;
  top: 54px;
  height: 2px;
  background: linear-gradient(to right, transparent, #5fd3c6);
  transform: rotate(-8deg);
  border-radius: 2px;
}

.graph-line::before {
  content: '';
  position: absolute;
  left: 22%;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  height: 220%;
  background: linear-gradient(to right,
      rgba(95, 211, 198, 0),
      rgba(95, 211, 198, 0.85),
      #baf1ea);
  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: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #5fd3c6, #baf1ea);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  filter: drop-shadow(0 6px 12px rgba(6, 199, 85, 0.45));
}

.graph-note {
  font-size: 13px;
  line-height: 1.8;
  color: #374151;
  margin: 0;
}

.liny-metrics__side {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: stretch;
  text-align: center;
}

.liny-metrics__side>div {
  flex: 1;
}

.side-label {
  font-size: 12px;
  color: #6b7280;
}

.side-value {
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid #6e74834d;
}

.side-value span {
  font-size: 13px;
  margin-left: 4px;
}

.side-value em {
  display: block;
  font-size: 13px;
  font-style: normal;
}

.liny-metrics__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 20px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 24px;
}

.liny-metrics__note {
  text-align: right;
  font-size: 11px;
  color: #9ca3af;
}

/* =============================================
   case / slider
   ============================================= */
.case-section {
  padding: 28px 0;
}

h2.case-title {
  text-align: center;
  margin-bottom: 1em;
  margin-top: 0;
  font-size: 1.5em;
  color: #009080;
  line-height: 1.5;
}

.slide-content h3 {
  font-size: 1.15em;
  border-left: 4px solid #009080;
  padding-left: 9px;
  line-height: 1.6;
}

.slide-content h3 span:first-child {
  color: #007e8d;
  font-size: 0.8em;
}

.imgcenter {
  margin: auto;
  text-align: center;
}

.imgcenter img {
  max-width: 100%;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider {
  padding: 24px 16px;
  box-shadow: 4px 4px 24px rgba(66, 116, 172, 0.1);
  margin-top: 2em;
  border-radius: 16px;
}

.slider-track {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.slide {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
}

.slide:nth-child(even) {
  flex-direction: column;
}

.slide-image,
.slide-content {
  width: 100%;
}

.slide-image img,
.slider-track img {
  width: 100%;
  height: auto;
  display: block;
}

.liny-award img {
  width: 140px;
  margin-top: 0;
  mix-blend-mode: multiply;
}

/* ロゴスライダー */
.logo-slider {
  display: flex;
  gap: 20px;
  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: 34px;
  width: auto;
  object-fit: contain;
}

@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   case filter
   ============================================= */
.case-filter-wrapper {
  width: 92%;
  margin: 0 auto 32px;
}

.case-filter-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  border-bottom: 1px solid #e5eef8;
  padding-bottom: 12px;
}

.case-filter-group {
  display: block;
  margin-bottom: 16px;
}

.case-filter-label {
  width: 100%;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
  flex-shrink: 0;
  font-size: 85%;
}

.case-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-filter-buttons button {
  background: #f7f7f7;
  color: #666666;
  border: none;
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  font-size: 80%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.case-filter-buttons button:hover {
  background: #d9ffe8;
}

.case-filter-buttons button.active {
  background: #05cd3f;
  color: #fff;
}

.btn-count {
  font-size: 60%;
  color: #666;
  letter-spacing: -0.02em;
  margin-left: -1px;
}

.case-filter-buttons button.active .btn-count {
  color: #fff;
}

/* =============================================
   テキスト系
   ============================================= */
.lstep-section {
  margin-bottom: 20px;
}

.lstep-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  color: #1e9b73;
}

.lstep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lstep-item {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
  padding-left: 1.8em;
  text-indent: -1.1em;
}

.lstep-item:last-child {
  margin-bottom: 0;
}

.hosoku {
  font-size: 0.8em;
  font-weight: normal;
}

/* =============================================
   フォーム / popup
   ============================================= */
.need-support {
  margin: 0 auto;
  word-break: auto-phrase;
}

.need-support .need-support-form {
  margin: 0;
}

.notice-message {
  margin: 20px auto;
  border: 1px solid grey;
  padding: 18px;
  word-break: auto-phrase;
  width: calc(100% - 32px);
}

.notice-message p {
  margin-bottom: 0;
}

.form-locked {
  pointer-events: none;
  opacity: 0.5;
  max-width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 16px;
}

.form-unlocked {
  max-width: 100%;
  margin: auto;
  background-color: #fff;
  padding: 16px;
  pointer-events: auto;
  opacity: 1;
}

.payment-errors {
  color: red;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
}

small.invalid-feedback {
  text-align: left;
}

.alert ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.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;
  width: calc(100% - 24px);
  max-width: none;
  max-height: 80vh;
  margin: 8vh auto;
  padding: 16px;
  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;
}

/* フォームロック */
#formLock {
  position: relative;
}

.form-lock-overlay {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  pointer-events: none;
}

.form-lock-message {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  color: red;
  font-size: 13px;
  font-weight: bold;
  padding: 10px 14px;
  text-align: center;
  white-space: normal;
  width: calc(100% - 32px);
  line-height: 1.7;
}

#formLock.form-locked .form-lock-overlay {
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.page_title_wrap.m--order .page_text {
  margin-top: 10px;
  border-radius: 2px;
}

/* =============================================
   ★ 料金表 左列の横スクロール固定（sticky column）
   ============================================= */

/* --- 1列目 --- */
#plan_tabs #normal-plan-price td.sticky-col-1,
#plan_tabs #large-plan-price td.sticky-col-1,
#plan_tabs #liny-plan-price td.sticky-col-1,
#plan_tabs #normal-plan-price td.category.sticky-col-span-2[rowspan],
#plan_tabs #large-plan-price td.category.sticky-col-1[rowspan],
#plan_tabs #large-plan-price td.category[rowspan] {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  z-index: 10;
  background-color: #575564;
  color: #fff;
}

/* --- 2列目（left は JS で設定） --- */
#plan_tabs #normal-plan-price td.sticky-col-2,
#plan_tabs #large-plan-price td.sticky-col-2,
#plan_tabs #liny-plan-price td.sticky-col-2 {
  position: sticky;
  position: -webkit-sticky;
  z-index: 10;
  background-color: #575564;
  color: #fff;
}

/* --- colspan=2 の機能名セル --- */
#plan_tabs #normal-plan-price td.sticky-col-span-2,
#plan_tabs #large-plan-price td.sticky-col-span-2,
#plan_tabs #liny-plan-price td.sticky-col-span-2 {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  z-index: 10;
}


/* ┗インデント行 左寄せ */
@media only screen and (max-width: 640px) {

  #plan_tabs #normal-plan-price td.top_bring2,
  #plan_tabs #large-plan-price td.top_bring2 {
    text-align: left;
  }

  #plan_tabs #normal-plan-price td.top_bring2>span,
  #plan_tabs #large-plan-price td.top_bring2>span {
    display: inline-block;
    padding-left: 1.2em;
    text-indent: -1.2em;
  }
}

/* --- カテゴリ見出し行 (colspan=6 / colspan=5 対応) --- */
/* colspan="6": plan.html / plan_extra.html / plan_secondaccount_extra.html (フリープランあり・6列) */
/* colspan="5": plan_secondaccount_nomal.html (フリープランなし・5列) */
#plan_tabs #normal-plan-price td.category[colspan="6"],
#plan_tabs #normal-plan-price td.category[colspan="5"],
#plan_tabs #large-plan-price td.category[colspan="6"],
#plan_tabs #liny-plan-price td.category[colspan="6"] {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  z-index: 10;
  background-color: #575564;
  color: #fff;
}

/* --- カテゴリ・オプション・サポート見出し行: スマホ横スクロール時に文字を左端固定 ---
     spanに sticky left:0 をかけることで、横スクロール中もテキストが左端に留まる。
     PC（641px以上）は text-align: center のまま維持（style02.css が適用） */
@media screen and (max-width: 640px) {

  /* td を左寄せ：テキストをx=0から始めることで初期表示時に見えるようにする */
  /* plan.html / plan_secondaccount_nomal.html は td_support_header */
  /* plan_extra.html / plan_secondaccount_extra.html は td_support_h */
  /* colspan="5" は plan_secondaccount_nomal.html (フリープランなし・5列) */
  td.category[colspan="6"],
  td.category[colspan="5"],
  td.td_feature_add[colspan="6"],
  td.td_feature_add[colspan="5"],
  td.td_support_header[colspan="6"],
  td.td_support_header[colspan="5"],
  td.td_support_h[colspan="6"],
  td.td_support_h[colspan="5"] {
    text-align: left !important;
  }

  /* spanをstickyにして横スクロール中も左端に固定する */
  td.category[colspan="6"] .category-label,
  td.category[colspan="5"] .category-label,
  td.td_feature_add[colspan="6"] .category-label,
  td.td_feature_add[colspan="5"] .category-label,
  td.td_support_header[colspan="6"] .category-label,
  td.td_support_header[colspan="5"] .category-label,
  td.td_support_h[colspan="6"] .category-label,
  td.td_support_h[colspan="5"] .category-label {
    display: inline-block;
    position: sticky;
    left: 51px;
    white-space: nowrap;
  }
}

/* --- colspan="4" / "5" の値セルは固定しない --- */

/* --- 背景色透過防止 --- */
#plan_tabs tr.even td.sticky-col-1,
#plan_tabs tr.even td.sticky-col-2,
#plan_tabs tr.even td.sticky-col-span-2 {
  background-color: #575564;
}

#plan_tabs tr.tr_cost td.sticky-col-2,
#plan_tabs tr.tr_cost.even td.sticky-col-2 {
  background-color: #575564;
  color: #fff;
}

/* --- オプション・サポート見出し行 --- */
#plan_tabs td.td_feature_add,
#plan_tabs td.td_support_header {
  position: sticky;
  position: -webkit-sticky;
  left: 0;
  z-index: 10;
}

#plan_tabs .price_table_scroll {
  overflow-x: auto !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  max-height: 85vh !important;
  position: relative;
  /* 縦スクロール時に横方向のゴムバンド（rubber-band）オーバースクロールを無効化
     iOS で縦スクロール開始時にコンテンツが右にズレる現象の対策 */
  overscroll-behavior-x: none;
}


/* SP：ポップアップ表示中スクロール禁止 */
body.is-popup-open {
  overflow: hidden !important;
}

/* SP：body直下に移動したポップアップを中央配置 */
body>.popup {
  display: flex !important;
  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;
  max-height: 62vh !important;
  margin-top: 0 !important;
}

/* SP：ポップアップ表示中、stickyヘッダー・列を無効化 */
body.is-popup-open .tr_plan th,
body.is-popup-open .sticky-col-1,
body.is-popup-open .sticky-col-2,
body.is-popup-open .sticky-col-span-2,
body.is-popup-open .sticky-row th,
body.is-popup-open .category,
body.is-popup-open .price_table_scroll {
  position: static !important;
  z-index: auto !important;
}

body.is-popup-open .price_table_scroll {
  overflow: visible !important;
}

/* === SP: popup body直下移動後のレイアウト修正 === */
@media screen and (max-width: 640px) {
  body>.popup {
    align-items: flex-start !important;
    overflow-y: auto !important;
  }

  body>.popup .popup_content {
    position: relative !important;
    width: calc(80% - 24px);
    max-height: 62vh !important;
    margin: 14vh auto 0 !important;
    /* 上部に余白、下はauto */
    overflow-y: auto !important;
    flex-shrink: 0;
  }
}

/* ============================================
    plan_extra.html SP用
    .plan-extra-table でスコープを限定
   ============================================ */

:root {
  --pet-bg-dark: #575564;
  --pet-bg-white: #fff;
  --pet-border: #ddd;
  --pet-btn-yellow: #ffff17;
  --pet-feature-header: #be0200;
}

/* ============================================
   1. テーブル基本・横スクロール
   ============================================ */

.plan-extra-table .price_table_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* smart02.css の table.price を上書き */
.plan-extra-table table.price {
  width: 100%;
  min-width: 860px;
  table-layout: fixed;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  font-size: 12px;
}

/* 全セル共通 */
.plan-extra-table table.price th,
.plan-extra-table table.price td {
  padding: 6px 5px;
  word-break: break-word;
  border: 1px solid var(--pet-border);
  font-size: 12px;
}

/* 説明セルだけ別調整 */
.plan-extra-table table.price td.label-cell {
  padding: 0 !important;
  word-break: normal;
  white-space: nowrap;
  text-align: left;
}

/* 中の説明文 */
.plan-extra-table td.label-cell .td_explanation {
  text-align: left;
  line-height: 100%;
  margin: 0;
  padding-left: 64px !important;
  white-space: nowrap;
}

/* 中の赤文字 */
.plan-extra-table td.label-cell .bf_red {
  margin: 0;
  padding: 0;
  font-size: 80%;
  font-weight: bold;
  line-height: 160%;
  text-align: left;
  color: #be0200;
  white-space: nowrap;
}

/* --- セクション区切り行（マーケティング〜／顧客管理〜 等） --- */
.plan-extra-table tr.toggle td.category {
  position: sticky;
  left: 0;
  z-index: 3;
  background-color: #575564;
  color: #fff;
  text-align: left;
  padding-left: 50px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

/* --- オプション機能ヘッダー行 --- */
.plan-extra-table .tr_feature_add .td_feature_add {
  position: sticky;
  left: 0;
  z-index: 3;
  background-color: #be0200;
  color: #fff;
  text-align: left;
  padding-left: 50px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

/* --- サポートヘッダー行 --- */
.plan-extra-table .tr_support_top .td_support_h {
  position: sticky;
  left: 0;
  z-index: 3;
  background-color: #575564;
  color: #fff;
  text-align: left;
  padding-left: 50px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.plan-extra-table tr.toggle td.category,
.plan-extra-table .tr_feature_add .td_feature_add,
.plan-extra-table .tr_support_top .td_support_h {
  display: block;
  position: sticky;
  left: 0;
  z-index: 10;
  width: 240px;
  min-width: 240px;
  max-width: 240px;
  box-sizing: border-box;
  color: #fff;
  text-align: left;
  padding-left: 50px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
  overflow: visible;
}

/* === plan-extra-table: colspan="6" 行のスマホ横スクロール sticky 対応 === */
/* display:block / width:240px を解除し、正しく全幅にする */
.plan-extra-table tr.toggle td.category[colspan="6"],
.plan-extra-table .tr_feature_add td.td_feature_add[colspan="6"],
.plan-extra-table .tr_support_top td.td_support_h[colspan="6"] {
  display: table-cell;
  width: auto;
  min-width: auto;
  max-width: none;
}

/* span.category-label を左端に固定（#plan_tabs と同じ挙動） */
.plan-extra-table tr.toggle td.category[colspan="6"] .category-label,
.plan-extra-table .tr_feature_add td.td_feature_add[colspan="6"] .category-label,
.plan-extra-table .tr_support_top td.td_support_h[colspan="6"] .category-label {
  display: inline-block;
  position: sticky;
  left: 51px;
  white-space: nowrap;
}

/* ::after 疑似要素は1列td用の背景延長トリック。colspan="6" では不要なので無効化 */
.plan-extra-table tr.toggle td.category[colspan="6"]::after,
.plan-extra-table .tr_feature_add td.td_feature_add[colspan="6"]::after,
.plan-extra-table .tr_support_top td.td_support_h[colspan="6"]::after {
  content: none;
}

.plan-extra-table tr.toggle td.category::after,
.plan-extra-table .tr_feature_add .td_feature_add::after,
.plan-extra-table .tr_support_top .td_support_h::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.plan-extra-table tr.toggle td.category,
.plan-extra-table tr.toggle td.category::after,
.plan-extra-table .tr_support_top .td_support_h,
.plan-extra-table .tr_support_top .td_support_h::after {
  background-color: #575564;
}

.plan-extra-table .tr_feature_add .td_feature_add,
.plan-extra-table .tr_feature_add .td_feature_add::after {
  background-color: #be0200;
}

/* ============================================
   2. 費用セル・見出し・注記
   ============================================ */

.plan-extra-table table.price td.cost {
  background-color: var(--pet-bg-white) !important;
  text-align: center;
}

.plan-extra-table table.price td.cost.top_none {
  border-top: none !important;
  font-size: 13px;
  padding: 8px 5px;
}

.plan-extra-table .tr_plan th.extra h3 {
  font-size: 14px;
  min-height: auto;
  margin: 0.3em auto;
}

.plan-extra-table .td_feature {
  padding: 6px 4px 6px 8px;
  font-size: 12px;
}

.plan-extra-table .td_feature.top_bring2 {
  padding-left: 1.6rem;
  font-size: 11px;
  color: #fff;
  text-align: left;
}

.plan-extra-table .td_fearure_check {
  font-size: 13px;
}

.plan-extra-table .plan-sub-tag {
  font-size: 9px;
  padding: 1px 3px;
  white-space: nowrap;
}

.plan-extra-table .caption {
  font-size: 11px;
  margin-top: 8px;
}



.plan-extra-table .td_explanation {
  text-align: left;
  line-height: 100%;
  margin: 0;
  padding-left: 64px !important;
}

.plan-extra-table .bf_red {
  margin: 0;
  padding: 0;
  font-size: 80%;
  font-weight: bold;
  line-height: 160%;
  text-align: left;
  color: #be0200;
}

/* ============================================
   3. 表内リンク
   ============================================ */

.plan-extra-table .td_feature .td_feature_link,
.plan-extra-table .td_feature .td_feature_link:link,
.plan-extra-table .td_feature .td_feature_link:visited,
.plan-extra-table .td_feature .td_feature_link:hover,
.plan-extra-table .td_feature .td_feature_link:active,
.plan-extra-table td.td_feature.top_bring a,
.plan-extra-table td.td_feature.top_bring2 a {
  color: #fff !important;
}

.plan-extra-table .td_feature .td_feature_link:hover {
  text-decoration: underline;
}

.plan-extra-table .td_feature_link {
  white-space: nowrap;
}

.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: 12px;
  background-color: #575564;
  text-align: left;
  text-indent: -0.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 a {
  color: #fff;
  text-decoration: underline dotted;
  text-decoration-color: #fff;
  text-underline-offset: 0.14em;
  border-bottom: none;
}

.plan-extra-table .td_feature a:hover {
  text-decoration-style: solid;
}

/* ============================================
   4. スティッキー列
   ============================================ */

.plan-extra-table table.price td.sticky-col-1 {
  position: sticky;
  left: 0 !important;
  z-index: 3;
  background-color: var(--pet-bg-dark);
  color: #fff;
}

.plan-extra-table table.price td.sticky-col-2 {
  position: sticky;
  z-index: 2;
  background-color: var(--pet-bg-dark);
  color: #fff;
}

.plan-extra-table table.price th.sticky-col-span-2,
.plan-extra-table table.price td.sticky-col-span-2 {
  position: sticky;
  left: 0 !important;
  z-index: 2;
  background-color: var(--pet-bg-dark);
}

.plan-extra-table table.price th.plan-name {
  position: sticky;
  left: 0 !important;
  z-index: 4;
  background-color: var(--pet-bg-dark);
}

.plan-extra-table tr.even td.sticky-col-span-2 {
  background-color: #f9f9f9;
}

.plan-extra-table tr.toggle td.sticky-col-span-2,
.plan-extra-table tr.toggle td.category.sticky-col-span-2,
.plan-extra-table td.td_feature.top_bring.sticky-col-span-2,
.plan-extra-table td.td_feature.top_bring2.sticky-col-span-2,
.plan-extra-table .tr_support_top td.sticky-col-span-2 {
  background-color: var(--pet-bg-dark);
  text-align: left;
  padding-left: 1.6rem;
}

.plan-extra-table .tr_feature_add td.sticky-col-span-2 {
  background-color: var(--pet-feature-header);
}

/* ============================================
   5. 申し込みボタン
   ============================================ */

.plan-extra-table .micro-btn,
.plan-extra-table .micro-btn:link,
.plan-extra-table .micro-btn:visited {
  display: inline-block;
  width: 88%;
  margin: 0 auto;
  padding: 6px 4px;
  border-radius: 20px;
  background-color: var(--pet-btn-yellow) !important;
  background: var(--pet-btn-yellow) !important;
  color: #333 !important;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  transition: 0.3s;
  box-shadow: none;
  transform: none;
}

.plan-extra-table .micro-btn:hover {
  opacity: 0.8;
  box-shadow: none;
  transform: none;
}

/* ============================================
   6. ポップアップ
   ============================================ */

.plan-extra-table .popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  overflow-y: auto;
}

.plan-extra-table .popup_content {
  position: relative;
  width: calc(92vw - 32px);
  margin: 10vh auto 20px;
  padding: 16px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
}

.plan-extra-table .popup_inner {
  flex-direction: column;
  gap: 16px;
}

.plan-extra-table .popup_text,
.plan-extra-table .popup_image_wrap.m--col2 {
  width: 100%;
  flex: none;
}

.plan-extra-table .popup_image_wrap.m--col2 {
  border-left: none;
  border-top: 2px solid rgb(244, 244, 244);
  padding: 12px 0 0;
  grid-auto-flow: row;
}

.plan-extra-table .popup_image {
  width: 80%;
  max-height: 220px;
  margin: 0 auto;
}

.plan-extra-table .popup_category {
  font-size: 15px;
}

.plan-extra-table .popup_title {
  font-size: 17px;
}

.plan-extra-table .popup_description {
  font-size: 13px;
}

.plan-extra-table .popup_button {
  width: 80%;
  font-size: 14px;
  text-decoration: none !important;
}

/* ーー　料金表ここまで　ーー */

.contents_page.m--order.photo {
  margin: 0 0 35px 0;
  padding: 0;
  text-align: center;
}

.contents_page.m--order img {
  width: 100%;
}

#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;
  width: 100%;
}

#extra_enterprise .enterprise_section_innner {
  margin: 0 auto;
  width: 90%;
  padding: 1px 0 40px;
  text-align: center;
}

#extra_enterprise .enterprise_section_innner img {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
}

/* ============================================
   plan_secondaccount_nomal.html 専用スタイル（SP）
   .plan-normal-table でスコープを限定
   ============================================ */

/* テーブルスクロール */
.plan-normal-table .price_table_scroll {
  overflow-x: auto !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  max-height: 85vh !important;
}

/* テーブル横幅確保 */
.plan-normal-table #normal-plan-price {
  min-width: 860px;
}

/* sticky列（1列目・colspan=2セル） */
.plan-normal-table #normal-plan-price td.sticky-col-span-2,
.plan-normal-table #normal-plan-price td.category[rowspan] {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 6;
  background-color: #575564 !important;
}

/* sticky列（2列目） */
.plan-normal-table #normal-plan-price td.sticky-col-2 {
  position: -webkit-sticky;
  position: sticky;
  z-index: 5;
  background-color: #575564 !important;
}

.plan-normal-table tr.even td.sticky-col-2,
.plan-normal-table tr.even td.sticky-col-span-2 {
  background-color: #575564 !important;
}

/* カテゴリ見出し行 colspan=6 */
.plan-normal-table #normal-plan-price td.category[colspan="6"] {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 10;
  background-color: #575564;
}

/* サポート・オプション見出し行 */
.plan-normal-table #normal-plan-price .td_support_header,
.plan-normal-table #normal-plan-price .td_feature_add {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 10;
}

/* No.1バッジ SP */
.plan-normal-table .no1-badge.m--pc {
  display: none;
}

.plan-normal-table #normal-plan-price th.pro .no1-badge.m--sp {
  position: absolute;
  top: -50px;
  right: 10px;
  z-index: 20;
  pointer-events: none;
}

.plan-normal-table #normal-plan-price th.pro .no1-badge.m--sp img {
  display: block;
  width: 80px;
}

/* プラン名 h3 SP */
.plan-normal-table #normal-plan-price th h3 {
  font-size: 1.5em;
  min-height: auto;
  margin: 0.3em auto;
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* マイクロコピー SP */
.plan-normal-table #normal-plan-price .micro-c {
  font-size: 0.85em;
  line-height: 1.4;
  min-height: 1.2em;
  color: #fff !important;
  text-align: center;
}

/* マイクロボタン SP */
.plan-normal-table #normal-plan-price .micro-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92%;
  margin: 0 auto;
  background: #ffff17;
  font-size: 1em;
  color: #575564 !important;
  padding: 6px 8px;
  border-radius: 30px;
  text-decoration: none !important;
}

/* 機能名リンク SP */
.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: 1em;
  padding: 4px 0 4px 8px;
  text-align: left;
  line-height: 1.5;
  text-decoration: none !important;
}

/* ポップアップ SP */
.plan-normal-table .popup_content {
  width: calc(80% - 24px);
  max-height: 62vh !important;
  margin: 14vh auto 0 !important;
  overflow-y: auto !important;
}

/* ポップアップ表示中 sticky無効化 */
body.is-popup-open .plan-normal-table #normal-plan-price td.sticky-col-span-2,
body.is-popup-open .plan-normal-table #normal-plan-price td.sticky-col-2,
body.is-popup-open .plan-normal-table #normal-plan-price td.category {
  position: static !important;
  z-index: auto !important;
}

/* --- サポートセクション：全プラン共通値セル（無制限・無料等）をスマホ横スクロール時に固定 ---
     セクションヘッダー（.category-label）と同じ方式で span に sticky を当てる。
     td ではなく内部の span.support-value-label に position: sticky; left を指定することで、
     横スクロール中もテキストが左端に留まる。
     left の値は機能名セル（sticky-col-span-2）の右端より少し余裕を持たせた 8px。 */
@media screen and (max-width: 640px) {

  /* td は左揃えにする */
  /* plan.html / plan_secondaccount_nomal.html → #plan_tabs または単体の #normal-plan-price */
  /* plan_extra.html → .plan-extra-table #large-plan-price */
  /* plan_secondaccount_extra.html → 単体の #large-plan-price */
  #plan_tabs #normal-plan-price td.support-value,
  #normal-plan-price td.support-value,
  .plan-extra-table #large-plan-price td.support-value,
  #large-plan-price td.support-value {
    text-align: left;
  }

  /* span をスクロールに追従して固定 */
  #plan_tabs #normal-plan-price td.support-value .support-value-label,
  #normal-plan-price td.support-value .support-value-label,
  .plan-extra-table #large-plan-price td.support-value .support-value-label,
  #large-plan-price td.support-value .support-value-label {
    display: inline-block;
    position: sticky;
    left: calc(172px + 30px);
    /* 172px = スマホ時の機能名セル（sticky-col-span-2）の実測幅 / 30px = テキストのインデント余白 */
    white-space: nowrap;
  }

  /* ポップアップ表示中は sticky 無効化 */
  body.is-popup-open #plan_tabs #normal-plan-price td.support-value .support-value-label,
  body.is-popup-open #normal-plan-price td.support-value .support-value-label,
  body.is-popup-open .plan-extra-table #large-plan-price td.support-value .support-value-label,
  body.is-popup-open #large-plan-price td.support-value .support-value-label {
    position: static !important;
  }
}

/* contents_page_1080 内の .group.plan-normal-table のスマホ余白をリセット（二重余白防止） */
.contents_page_1080 .group.plan-normal-table {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* contents_page_1080 内の大量送信プランの .group のスマホ余白をリセット（二重余白防止） */
.contents_page_1080 #large_content>.group {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* ===== case summary template SP対応（事例ページ統一ひな型）===== */

/* ヒーロービジュアル */
.cs_hero_img {
  margin: 24px auto 24px auto;
}

.cs_hero_text p {
  font-size: 18px;
  color: #00cd3f;
  text-align: center;
  font-weight: bold;
}

/* 導入効果ボックス：SP */
.cs_effect_box {
  background-color: #e7fae3;
  border-radius: 6px;
  margin: 20px 0 70px 0;
}

.cs_effect_label {
  font-size: 16px;
  font-weight: bold;
  color: #00cd3f;
  padding: 12px 16px 0 16px;
  justify-content: flex-start;
}

.cs_effect_list {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
}

.cs_effect_list li {
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.7;
}

.cs_effect_list li::before {
  content: "ー";
  margin: 0 4px 0 0;
}

/* セクション */
.cs_section {
  margin: 48px 0 0 0;
}

/* ボックスの直後のセクションにだけ区切り線を引く */
.cs_effect_box+.cs_section {
  margin: 30px 0 0 0;
  padding-top: 30px;
  border-top: solid 1px #00c853;
}

/* SP時：セクション内は縦並び（PC時のflexをリセット） */
.cs_section_inner {
  display: block;
}

/* セクション見出し：共通ベーススタイル（SP） */
.cs_section_title {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0 0;
  margin: 0 0 24px 0;
  line-height: 1.5;
  font-family: "Rounded Mplus 1c", sans-serif;
}

/* パターンA：グリーン下線 */
.cs_section_title.m--green {
  border-bottom: 2px solid #00cd3f;
}

/* パターンB：ティール下線 */
.cs_section_title.m--teal {
  border-bottom: 2px solid rgba(0, 121, 143, 1);
}

/* パターンC：グリーン下線・テキスト幅のみ（inline-block） */
.cs_section_title.m--green-inline {
  display: inline-block;
  border-bottom: 2px solid #00cd3f;
}

.cs_section_text {
  font-size: 16px;
}

/* セクション画像：SP では幅いっぱいに */
.cs_section_img,
.cs_section_inner .cs_section_img {
  width: auto;
  margin: 0 15px 16px 15px;
}

.cs_section_img img {
  max-width: 100%;
  border-radius: 4px;
}

/* 成果文 */
.cs_result_text {
  font-size: 16px;
  font-weight: bold;
  color: #00cd3f;
  margin: 28px 0 0 0;
}

/* 動画・クレジットをまとめて上下ボーダーで区切るセクション */
.cs_media_section {
  margin: 30px 0 0 0;
  padding: 24px 0 0 0;
  /* border-top: 1px solid #00c853; */
}

/* ブログ誘導 */
.cs_blog_area {
  margin: 20px 0 0 0;
}

.cs_blog_area p {
  font-size: 16px;
  text-align: center;
}

/* 制作担当クレジット */
.cs_credit_box {
  margin: 30px 0 0 0;
  padding: 20px 24px;
  background-color: transparent;
  font-size: 14px;
  color: #555;
  line-height: 2;
  text-align: right;
}

.cs_credit_box a,
.cs_credit_box a:link,
.cs_credit_box a:visited {
  color: revert;
  text-decoration: underline;
}

/* ※検証用夏川追加※　PC時：見出しの下で画像（左）とテキスト（右）を「縦並び」にする */
.cs_section_title_left {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0 0;
  margin: 0 0 24px 0;
  line-height: 1.5;
  font-family: "Rounded Mplus 1c", sans-serif;
  border-bottom: 2px dotted #ccc;
}

.cs_section_title_center {
  font-size: 20px;
  font-weight: bold;
  padding: 0 0 0 0;
  margin: 0 0 24px 0;
  line-height: 1.5;
  font-family: "Rounded Mplus 1c", sans-serif;
  border-bottom: 2px dotted #ccc;
  text-align: center;
}

.cs_exlist_box {
  margin: 25px 0 0 0;
  padding: 35px 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: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: solid 1px #ccc;
}

.cs_exlist_box::after {
  content: "";
  display: block;
  width: 32%;
}

/* 追加 利用規約・個人情報ボックス調整（スマホ） */
.contents_page.m--order .infobox,
.contents_page_1080.m--order .infobox,
#apply.contents_page_1080.m--order .infobox {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  min-height: 220px !important;
  max-height: 60vh !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  resize: vertical !important;
  box-sizing: border-box !important;
  padding: 16px !important;
  border: 1px solid #ddd !important;
  background: #fff !important;
  color: #333 !important;
}

.contents_page.m--order .infobox p,
.contents_page.m--order .infobox li,
.contents_page_1080.m--order .infobox p,
.contents_page_1080.m--order .infobox li,
#apply.contents_page_1080.m--order .infobox p,
#apply.contents_page_1080.m--order .infobox li {
  font-size: 13px !important;
  line-height: 1.75 !important;
  letter-spacing: .02em !important;
  text-align: left !important;
}

.contents_page.m--order .infobox .pp,
.contents_page.m--order .infobox .pp2,
.contents_page_1080.m--order .infobox .pp,
.contents_page_1080.m--order .infobox .pp2,
#apply.contents_page_1080.m--order .infobox .pp,
#apply.contents_page_1080.m--order .infobox .pp2 {
  padding-left: 0 !important;
  text-indent: 0 !important;
}

.contents_page.m--order .infobox ol,
.contents_page.m--order .infobox ul,
.contents_page.m--order .infobox .pp-list,
.contents_page_1080.m--order .infobox ol,
.contents_page_1080.m--order .infobox ul,
.contents_page_1080.m--order .infobox .pp-list,
#apply.contents_page_1080.m--order .infobox ol,
#apply.contents_page_1080.m--order .infobox ul,
#apply.contents_page_1080.m--order .infobox .pp-list {
  margin: 0 0 14px 1.4em !important;
  padding-left: 1em !important;
  font-size: 13px !important;
  line-height: 1.75 !important;
}

.contents_page.m--order .infobox h2.subject,
.contents_page_1080.m--order .infobox h2.subject,
#apply.contents_page_1080.m--order .infobox h2.subject {
  margin: 24px 0 10px !important;
  padding: 7px 10px !important;
  border-left: 3px solid #333 !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
  text-align: left !important;
  background: transparent !important;
}

.contents_page.m--order .infobox .subject_line,
.contents_page_1080.m--order .infobox .subject_line,
#apply.contents_page_1080.m--order .infobox .subject_line {
  display: none !important;
}

.contents_page.m--order .check_title,
.contents_page_1080.m--order .check_title,
#apply.contents_page_1080.m--order .check_title {
  margin: 32px 0 0 0 !important;
  padding: 12px 0 !important;
  font-size: 17px !important;
  line-height: 150% !important;
  letter-spacing: 1px !important;
  text-align: center !important;
  color: #fff !important;
  background-color: #333 !important;
  border: none !important;
}

.contents_page.m--order .infobox .policy-signature,
.contents_page_1080.m--order .infobox .policy-signature,
#apply.contents_page_1080.m--order .infobox .policy-signature {
  display: block !important;
  margin: 24px 0 8px !important;
  padding: 16px 0 0 !important;
  border-top: 1px solid #e5e5e5 !important;
}

.contents_page.m--order .infobox .policy-signature__logos,
.contents_page_1080.m--order .infobox .policy-signature__logos,
#apply.contents_page_1080.m--order .infobox .policy-signature__logos {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin: 0 0 14px !important;
}

.contents_page.m--order .infobox .logo-pmark,
.contents_page_1080.m--order .infobox .logo-pmark,
#apply.contents_page_1080.m--order .infobox .logo-pmark {
  width: 64px !important;
  max-width: 64px !important;
  height: auto !important;
}

.contents_page.m--order .infobox .logo-isms,
.contents_page_1080.m--order .infobox .logo-isms,
#apply.contents_page_1080.m--order .infobox .logo-isms {
  width: 104px !important;
  max-width: 104px !important;
  height: auto !important;
}

.contents_page.m--order .infobox .policy-signature__info,
.contents_page_1080.m--order .infobox .policy-signature__info,
#apply.contents_page_1080.m--order .infobox .policy-signature__info {
  text-align: left !important;
}