/*Edition別ページ *****************/
/* 共通事項 *****************/

.container {
  width: 900px;
  margin: auto;
}

h1,
h2,
h3 {
  text-align: center;
  font-weight: bold;
}

h2.title {
  vertical-align: middle;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 0 5px 15px;
  border-bottom: 1px solid #23382A;
  text-align: left;
}

h3.title {
  padding: 5px 0 5px 15px;
  margin-bottom: 5px;
  border-left: 5px solid #3498db;
  text-align: left;
  font-size: 24px;
}

h3.index {
  padding: 5px 0 5px 15px;
  margin-bottom: 5px;
  border-left: 5px solid #3498db;
  text-align: left;
}

h3.heading-left-large {
  color: #23382A;
  text-align: left;
  font-weight: bold;
  font-size: 200%;
}

h4 {
  color: #23382A;
  text-align: center;
  font-weight: normal;
}

h4.heading-left-large {
  color: #23382A;
  text-align: left;
  font-weight: bold;
}

h4.line {
  color: #23382A;
  text-align: left;
  font-weight: bold;
  position: relative;
  border-bottom: 1px solid #ccc;
  margin-bottom: 5px;
}

hr.division {
  border: 0;
  height: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

hr.green {
  border: 0;
  height: 0;
  border-bottom: 3px solid #23382A;
  width: 40%;
  text-align: center;
  margin: auto;
}

hr.yellow {
  border: 0;
  height: 0;
  border-bottom: 6px solid #FEC94A;
  width: 30%;
  text-align: center;
  margin: 20px auto;
}

hr.yellow-left {
  border: 0;
  height: 0;
  border-bottom: 6px solid #FEC94A;
  text-align: left;
}

ul.triangle {
  list-style-type: none !important;
  margin: 5px;
  padding: 5px 0 5px 15px;
}

ul.triangle li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
  vertical-align: top;
}

ul.triangle li:before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 0px;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #3498db;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ul.triangle li:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 8px;
  height: 0;
  width: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #fff;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ul.mgnl-50 {
  margin: 0 20px 10px 50px;
}

ol.number {
  counter-reset: number;
  list-style-type: none !important;
  margin: 5px;
  padding: 5px 0 5px 20px;
}

ol.number li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol.number li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #3498db;
  color: white;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: normal;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}

span.clr_bg_lgray {
  background-color: #F0F0F0;
  color: #000;
  border: 1px solid #CCCCCC;
  border-radius: 5px;
  padding: 1px 8px;
  font-size: 14px;
  margin: 0 3px;
}

span.com {
  font-size: 12px;
  margin: 0;
  padding: 0;
}

/**tab設定ここから**/
.tab {
  overflow: hidden;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

ul.tab {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 10px 0;
  list-style: none;
  margin: 20px auto;
}

ul.tab li {
  list-style: none;
}

ul.tab li a {
  display: inline-block;
  font-size: 16px;
  padding: 10px 25px;
  border: 1px solid #ccc;
  border-radius: 100px;
  text-decoration: none;
  background: #fff;
  color: #000;
  transition: all 0.2s ease;
}

ul.tab li a:hover {
  background-color: #E8F0FE;
  border-color: #E8F0FE;
}

ul.tab li.select a::before {
  content: "✔ ";
  color: #3c4043;
  font-size: 1rem;
  margin-right: 4px;
} 

ul.tab li.select a.tab::before {
  content: "✔";
  margin-right: 8px;
  font-size: 1.0rem;
  color: #3c4043;
}

ul.tab li.select a.tab,
ul.tab li.select a:hover.tab {
  background: #E8F0FE;
  font-weight: 500;
  border: none;
}

ul.tab li a.tab {
  white-space: nowrap;
  /* 🔒 prevent wrapping */
  max-width: 100%;
  /* optional: avoids overflow on small screens */
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
}

ul.tab li a:hover.tab {
  background: #fefefe;
}

ul.content {
  margin-left: 0;
}

ul.content li {
  list-style: none;
  padding: 0;
}

ul.content li.hide {
  display: none;
}

/**tab設定ここまで**/

a.dl-button {
  color: #23382A;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  padding: 10px 30px;
  margin: auto 30px auto auto;
  background-color: #FEC94A;
  border: 2px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
}

/**プルダウン設定ここから**/

.dropdown {
  position: relative;
  display: block;
  margin-top: 0.5em;
  padding: 0;
  width: 60%;
}

.dropdown select {
  width: 100%;
  margin: 0;
  background: none;
  border: 1px solid transparent;
  outline: none;
  font-size: 1.15em;
  color: #444;
  padding: .6em 1.9em .5em .8em;
  line-height: 1.3;
}

.dropdown:hover {
  border: 1px solid #aaa;
}

/* Focus style */
select:focus {
  outline: none;
  box-shadow: 0 0 1px 1px #aaa;
  background-color: transparent;
  color: #222;
  border: 1px solid #aaa;
}

.drop-button {
  border: 1px solid #bbb;
  border-radius: .3em;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, .04);
  background: #f3f3f3;
}

.output {
  margin: 0 auto;
  padding: 1em;
}

.drop-types {
  padding: 1em;
  display: none;
}

/**ドロップダウン設定ここまで**/

div.boxed {
  margin: 30px auto;
  padding: 10px 10px 20px 25px;
  border-top: none;
  border-right: none;
  border-bottom: none;
  background-color: #F5F5F5;
  border-left: 6px solid #000000;
}

ul.box {
  margin-left: 0;
  padding-left: 0;
  /* list-style: none; ← 削除しない！ */
}

ul.box li {
  margin-left: 0;
  padding-left: 0;
  list-style-position: inside;
  text-indent: -0.3em;
}

ul.box ul {
  margin-left: 1em;
  padding-left: 0;
  list-style-position: inside;
}

p.note {
  text-align: right;
  font-size: 12px;
}

p.note-left {
  text-align: left;
  font-size: 12px;
}

div.right {
  text-align: right;
  float: none;
}

/* Header *****************/
div.header {
  width: 1000px;
  padding-top: 2%;
  margin: auto;
  text-align: center;
}

img.header-logo {
  width: auto;
  height: 120px;
}

img.logo-h60 {
  width: auto;
  height: 70px;
  padding: 0;
}

/* instruction *****************/
div.instruction {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  display: table;
  padding-top: 10px;
}

div.instruction .base-color {
  margin: auto;
  background-color: #E4F2FB;
}

div.instruction ul.plugin li {
  margin-bottom: 8px;
  line-height: 1.4;
}

div.instruction table.type2 {
  width: 95%;
  margin: 30px auto;
  border: none;
  border-collapse: collapse;
  table-layout: auto;
}

div.instruction table.type2 th {
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
  font-size: normal;
  font-weight: 100;
  color: #FEFEFE;
  background-color: #08415F;
}

div.instruction td.topic {
  border-bottom: 1px solid #767676;
  background-color: #EFF0EF;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  font-size: 14px;
  width: 30%;
  line-height: 150%;
}

div.instruction td.content {
  border-bottom: 1px solid #767676;
  text-align: left;
  padding: auto 10px auto 40px;
  vertical-align: middle;
  font-size: 14px;
  width: auto;
}

div.instruction-box {
  width: 50%;
  margin: 0 auto;
  display: table-cell;
  padding: 5px 20px;
  vertical-align: top;
}

td.menu {
  text-align: left;
  vertical-align: middle;
  padding: 10px 0 10px 25px;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
}

div.instruction-box-left {
  width: 50%;
  margin: 0 auto;
  display: table-cell;
  padding: 5px 10px;
  vertical-align: top;
  text-align: left;
}

div.form-box {
  width: 450px;
  margin: 0 0 0 30px;
  padding: 20px;
  vertical-align: top;
  border: 1px solid #ccc;
}

div.form-box div.sub-title img {
  width: 420px;
  height: auto;
  padding: 0;
}

div.sub-title img.product-logo {
  width: 200px;
  height: auto;
  padding: 0;
  margin: 0;
  vertical-align: baseline;
}

div.title {
  padding-left: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #23382A;
  margin: 6px 0;
}

div.sub-title {
  padding: 5px;
  font-size: 16px;
  margin: 10px 0;
}

div.s-16 {
  padding: 5px;
  font-size: 16px;
  font-weight: 100;
  margin: 0;
}

div.s-13 {
  font-size: 13px;
  margin: 0;
}

div.discription {
  padding: 5px;
  font-size: 16px;
  margin: 0;
}

a.button {
  margin: 10px;
  padding: 10px;
  background-color: #1A73E8;
  border: none;
  border-radius: 30px;
  color: #FEFEFE;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  width: auto;
  display: block;
  text-decoration: none;
  text-decoration-color: none;
  width: 300px;
}

a.button:hover {
  background-color: #0044BF;
}

div.sub-title img.w-700 {
  width: 700px;
  height: auto;
  margin: auto;
}

div.instruction-box img {
  border: none;
  width: 450px;
  height: auto;
  position: relative;
}

div.instruction-box img.icon-explain {
  border: none;
  width: 15px;
  height: auto;
  position: relative;
}

div.instruction-box img.icon-small {
  width: 25px;
  height: auto;
  left: 10px;
  top: 0px;
  right: 10px;
}

div.instruction-box img.w-250 {
  width: 250px;
  position: relative;
}

div.instruction-box img.w-350 {
  width: 350px;
  position: relative;
}

div.instruction-box img.w-550 {
  width: 550px;
  position: relative;
}

div.instruction-box img.w-600 {
  width: 600px;
  position: relative;
}

div.profile-left {
  width: 80px;
  margin: 0;
  padding: 0;
  display: table-cell;
  vertical-align: top;
}

div.profile-left img {
  width: 70px;
  height: auto;
}

div.profile-right {
  width: 380px;
  margin: 0;
  padding: 0;
  display: table-cell;
  font-size: 12px;
  vertical-align: top;
}

/*　リンク帯 *****************/

div.link-container {
  background-color: #E4F2FB;
  margin: auto;
}

div.link-container-com {
  background-image: url(../Images/products/community/thanks_bg.png), linear-gradient(120deg, #f6d365 0%, #fda085 100%);
  background-repeat: no-repeat;
  background-position: center;
  margin: auto;
}

div.link-container-pro {
  background-image: linear-gradient(120deg, #FDB9EC 0%, #FF666B 100%);
}

div.link-container-uml {
  background-image: linear-gradient(to right, #005bea 0%, #00c6fb 100%);
}

div.link-container-viewer {
  background-image: linear-gradient(to right, #FFD1E7 0%, #99DCFF 100%);
}

div.link-container-sysml {
  background-image: linear-gradient(to right, #C184E0 0%, #EAD6F4 100%);
}

div.link-container-think {
  background-image: linear-gradient(to right, #44aaf2 10%, #c4edfc 100%);
}

div.link-container-systemsafety {
  background-image: linear-gradient(to right, #25c96c 40%, #026d40 100%);
}

div.link-container-orange {
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}

div.text-box {
  width: 900px;
  margin: auto;
  padding: 30px;
  text-align: center;
  display: table;
  font-size: 28px;
  font-weight: bold;
}

div.text-box p {
  font-size: 16px;
  padding-bottom: 15px;
  font-weight: normal;
}

div.text-small-box {
  width: 450px;
  margin: 0;
  padding: 0;
  text-align: center;
  display: table-cell;
}

a.link {
  color: #23382A;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  padding: 13px 50px;
  border: 2px solid #23382A;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  /* 追加推奨 */
  transition: background-color 0.3s ease;
}

a.link:hover {
  background-color: #FEFEFE;
}

a.link-small {
  color: white;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  padding: 10px 15px;
  margin: auto 10px;
  background-color: #1A73E8;
  border: 2px solid transparent;
  border-radius: 20px;
  text-decoration: none;
}

a.link-small:hover {
  background-color: #0044BF;
  border-color: #0044BF;
}

a.link-w210 {
  color: white;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  margin: 10px auto;
  padding: 8px;
  background-color: #1A73E8;
  border: 2px solid transparent;
  border-radius: 30px;
  text-decoration: none;
  width: 210px;
  display: block;
}

a.link-w210:hover {
  background-color: #0044BF;
  border-color: #0044BF;
}

a.blk {
  color: #23382A;
  font-weight: normal;
  text-decoration: none;
}

a.blk:hover {
  font-weight: bold;
}

table {
  width: 95%;
  margin: 30px auto;
  border: none;
  border-collapse: collapse;
  table-layout: fixed;
}

table.type2 {
  width: 95%;
  margin: 30px auto;
  border: none;
  border-collapse: collapse;
  table-layout: auto;
}

table.type2 th {
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
  font-size: normal;
  font-weight: 100;
  color: #FEFEFE;
  background-color: #08415F;
}

#table.type2 td.item {
  width: 50px;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ccc;
  background: #08415F;
  font-size: 16px;
}

td.menu {
  text-align: left;
  vertical-align: middle;
  padding: 10px 0 10px 25px;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
}

td.cell-label {
  text-align: left;
  padding: 10px 0 10px 25px;
  vertical-align: middle;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

td.cell-center {
  text-align: center;
  padding: 10px 0;
  vertical-align: middle;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
}

.bg-white {
  background-color: #ffffff;
}

.bg-gray {
  background-color: #F2F3F4;
}

td.wh-gr-1 {
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
}

td.wh-gr-2 {
  text-align: center;
  vertical-align: middle;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 5px;
  background-color: #F2F3F4;
}

td.wh-gr-3 {
  text-align: center;
  vertical-align: middle;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: none;
  font-weight: bold;
  font-size: 20px;
  padding: 10px 5px;
}

td.wh-gr-4 {
  text-align: center;
  vertical-align: middle;
  padding: 10px 0;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background-color: #F2F3F4;
}

td.wh-gr-4-l {
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  padding: 10px;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  background-color: #F2F3F4;
}

td.wh-gr-5 {
  text-align: center;
  vertical-align: middle;
  padding: 10px 0;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

td.wh-gr-5-l {
  text-align: left;
  vertical-align: top;
  font-size: 12px;
  padding: 10px;
  border-top: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

td.wh-gr-pdbd0 {
  text-align: right;
  vertical-align: top;
  font-size: 12px;
  padding: 0;
  margin: 0;
  border: none;
}

span.wh-gr {
  font-size: 12px;
}

ul.feature-list li {
  list-style: circle;
  font-size: 12px;
  margin-left: 1px;
  padding: 1%;
  text-align: left;
}

div.text-box p.com {
  /*　Com商用利用表示用 *****************/
  font-size: 28px;
  font-weight: normal;
}

/*　ベースレイアウト *****************/
div.ctn-basic {
  margin: auto;
}

/*　列 *****************/
div.ctn-clm {
  width: 1000px;
  margin: 30px auto;
}

/*　diagram-image *****************/
div.diagram-image {
  text-align: center;
  margin: auto;
}

div.diagram-image img.w-950 {
  width: 950px;
  height: auto;
  margin: auto;
}

/*　主な機能 *****************/
div.feature6 {
  display: table;
  width: auto;
  margin: 50px auto auto auto;
}

div.f-table {
  display: table-cell;
  width: 330px;
  margin: auto;
}

div.f-image {
  text-align: center;
  width: 300px;
  margin: auto;
  padding: 0px 10px 10px 10px;
}

div.f-image img {
  width: 180px;
  height: auto;
}

div.f-title {
  text-align: center;
  color: #23382A;
  font-weight: bold;
  font-size: 20px;
  padding: auto;
  width: 300px;
  margin: auto;
}

div.f-subtitle {
  text-align: left;
  margin: 15px auto auto auto;
  color: #23382A;
  font-size: 16px;
  width: 300px;
}

/*　価格 *****************/
div.price {
  display: table;
  width: auto;
  margin: 50px auto auto auto;
}

div.p-table {
  display: table-cell;
  width: 310px;
  margin: 0 auto;
}

div.p-title {
  text-align: center;
  color: #23382A;
  font-weight: bold;
  font-size: 28px;
  padding: 20px 10px 10px 10px;
  width: 280px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-top: 1px solid #08415F;
  border-right: 1px solid #08415F;
  border-bottom: none;
  border-left: 1px solid #08415F;
}

div.p-title img {
  width: 80px;
  height: auto;
}

div.p-text {
  color: #23382A;
  font-size: 18px;
  padding: 20px 10px;
  width: 280px;
  border-top: none;
  border-right: 1px solid #08415F;
  border-bottom: none;
  border-left: 1px solid #08415F;
}

div.p-text p.price {
  text-align: center;
  font-size: 28px;
}

div.p-text p.right {
  text-align: right;
  padding-right: 50px;
  font-size: 16px;
}

div.p-evaluation {
  width: 280px;
  padding: 25px 10px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  text-align: center;
  vertical-align: middle;
  border-top: none;
  border-right: 1px solid #08415F;
  border-bottom: 1px solid #08415F;
  border-left: 1px solid #08415F;
}

p.note {
  text-align: right;
  font-size: 12px;
}

p.note-left {
  text-align: left;
  font-size: 12px;
}

p.qa-left-bld {
  text-align: left;
  font-size: 12px;
  font-weight: bold;
}

div.price span.price-note {
  font-size: 12px;
  font-weight: normal;
  padding-left: 10px;
}

/*　大切にしていること *****************/
div.special {
  display: table;
  width: auto;
  margin: 30px auto auto auto;
  border-collapse: separate;
  border-spacing: 10px 0;
}

div.s-table {
  display: table-cell;
  width: 310px;
  margin: auto;
  vertical-align: middle;
}

div.s-table-box-50 {
  display: table-cell;
  width: 50%;
  margin: auto;
  padding: 20px 10px;
  border: 1px solid #ccc;
  box-shadow: 0 0 3px #ccc;
}

div.customer-table {
  display: table-cell;
  text-align: center;
  width: 130px;
  margin: auto;
  vertical-align: middle;
}

div.s-table-box {
  display: table-cell;
  width: 300px;
  margin: auto;
  padding: 20px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 1px #ccc;
}

div.s-table-box-nob {
  display: table-cell;
  width: 300px;
  margin: auto;
  padding: 20px 10px;
  border: none;
  vertical-align: middle;
}

div.s-image {
  text-align: center;
  vertical-align: middle;
  width: 280px;
  margin: auto;
}

div.s-image img {
  width: 250px;
  height: auto;
  vertical-align: middle;
}

div.s-image img.h-140 {
  width: auto;
  height: 140px;
}

div.s-image img.h-50 {
  width: auto;
  height: 50px;
}

div.customer-table img.customer-logo {
  width: 100px;
  height: auto;
}

div.s-title {
  text-align: center;
  color: #23382A;
  font-weight: bold;
  font-size: 22px;
  padding: auto;
  width: 95%;
  margin: 10px auto auto auto;
}

div.s-subtitle {
  text-align: left;
  margin: 15px auto;
  color: #23382A;
  font-size: 16px;
  width: 93%;
}

div.s-subtitle-w250 {
  text-align: left;
  margin: 15px auto;
  padding: 0 30px;
  color: #23382A;
  font-size: 14px;
  width: 250px;
}

div.s-description {
  text-align: center;
  margin: 10px auto;
  color: #23382A;
  font-size: small;
  width: 280px;
}

div.s-title-f18 {
  text-align: center;
  color: #23382A;
  font-weight: bold;
  font-size: 18px;
  padding: auto;
  width: 280px;
  margin: 10px auto auto auto;
}

div.s-seminar-box {
  display: table-cell;
  width: 300px;
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

div.s-seminar-image {
  width: 300px;
  height: auto;
  margin: auto;
  padding: 0;
  margin: auto;
  text-align: center;
  vertical-align: middle;
}

div.s-seminar-image img {
  max-width: 300px;
  max-height: 180px;
  padding: 10px;
}

div.s-seminar-box-bg {
  width: 300px;
  margin: 0;
  padding: 5px 5px 5px 10px;
  border: 1px solid #001328;
  background-color: #001328;
  text-align: left;
  color: #fefefe;
  font-size: 16px;
  line-height: 18px;
  position: relative;
}

div.s-seminar-box-bg-bl {
  width: 300px;
  margin: 0;
  padding: 5px 5px 5px 10px;
  border: 1px solid #ccc;
  background-color: #F5F5F5;
  text-align: left;
  color: #000000;
  font-size: 16px;
  line-height: 18px;
  position: relative;
}

div.s-seminar-box-bg-gr {
  width: 30%;
  padding: 2%;
  background-color: #F5F5F5;
  text-align: left;
  color: #000000;
  font-size: normal;
  line-height: 150%;
  display: table-cell;
}

div.s-seminar-box-bg-or {
  width: 300px;
  margin: 0;
  padding: 5px 5px 5px 10px;
  border: 1px solid #FF7300;
  background-color: #FF7300;
  text-align: left;
  color: #fefefe;
  font-size: 16px;
  line-height: 18px;
  position: relative;
}

div.s-seminar-box-bg-centre {
  width: 300px;
  margin: 0;
  padding: 5px 5px 5px 10px;
  border: 1px solid #000000;
  background-color: #000000;
  text-align: center;
  color: #fefefe;
  font-size: 16px;
  line-height: 18px;
  position: relative;
}

div.s-seminar-box-bg img.profile,
div.s-seminar-box-bg-centre img.profile {
  position: absolute;
  width: 50px;
  height: auto;
  right: 20px;
  bottom: -10px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
}

div.s-seminar-title {
  width: 280px;
  padding: 5px 5px 15px 5px;
  margin: 10px auto auto auto;
  text-align: left;
  color: #23382A;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}

div.s-seminar-description {
  width: 280px;
  text-align: left;
  margin: 15px auto;
  color: #23382A;
  font-size: 14px;
  padding: 0 10px 10px 10px;
}

div.s-description-h20 {
  width: 90%;
  text-align: left;
  margin: 10px;
  color: #23382A;
  font-size: 14px;
  padding: 0 5px 10px 5px;
  line-height: 25px;
}

.s-description-h20 img.logo-img {
  vertical-align: middle;
  height: 20px;
  position: relative;
  top: 2px;
}

/*　カスタマイズ *****************/
div.customize {
  display: table;
  width: auto;
  margin: 50px auto auto auto;
}

div.c-table {
  display: table-cell;
  width: 310px;
  margin: 0 auto;
}

div.c-image {
  text-align: center;
  vertical-align: middle;
  width: 280px;
}

div.c-image img {
  width: 150px;
  height: auto;
}

div.c-title {
  text-align: center;
  color: #23382A;
  font-weight: normal;
  font-size: 20px;
  padding-top: 20px;
  width: 280px;
}

/*　Voice *****************/
div.voice {
  display: table;
  width: auto;
  margin: 50px auto auto auto;
}

div.v-table {
  display: table-cell;
  width: 310px;
  margin: 0 auto;
}

div.v-title {
  text-align: center;
  color: #0152CC;
  font-weight: bold;
  font-size: 22px;
  padding: auto;
  width: 280px;
}

div.v-subtitle {
  text-align: left;
  padding: 15px;
  color: #23382A;
  font-size: 14px;
  width: 280px;
}

div.v-image {
  text-align: right;
  vertical-align: middle;
  width: 280px;
}

div.v-image img {
  width: 70px;
  height: auto;
}

/*　Endorsement *****************/
div.endorsement {
  display: table;
  width: auto;
  margin: 50px auto auto auto;
}

div.endorsement-content {
  width: 1000px;
  border: 1px solid #ccc;
  background-color: #F7F9FC;
  border-radius: 5px;
  box-shadow: 0 0 3px #ccc;
  padding: 20px 10px;
  margin: 30px 0;
}

div.endorsement-image {
  width: 200px;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 20px 10px;
}

div.endorsement-image img {
  width: 180px;
  height: auto;
}

div.endorsement-text {
  width: 750px;
  display: table-cell;
  padding: 0 30px 0 10px;
}

/*　spec *****************/
div.spec {
  display: table;
  width: auto;
  margin: 20px auto 0 auto;
  border-collapse: separate;
  border-spacing: 10px 0;
}

div.spec-content {
  display: table-cell;
  text-align: center;
  font-size: 16px;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 180px;
  line-height: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 1px #ccc;
}

div.spec-content-gr {
  display: table-cell;
  text-align: left;
  background-color: #EFEFEF;
  font-size: 14px;
  padding: 20px;
  width: 180px;
  line-height: 20px;
  border: none;
  border-radius: 5px;
}

div.spec-content-blank {
  display: table-cell;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 180px;
  line-height: 20px;
  border: 1px solid transparent;
  box-shadow: 0 0 3px transparent;
}

div.spec-content p {
  font-size: 12px;
  font-weight: normal;
  padding: 10px 10px 0 10px;
  text-align: left;
}

div.spec-content img {
  width: 100px;
  height: auto;
}

div.base-color {
  margin: auto;
  background-color: #DEF1F4;
}

div.content-box {
  max-width: 1000px;
  margin: auto;
  display: table;
  padding: 0;
}

div.content-box-centre {
  max-width: 1000px;
  margin: auto;
  padding: auto;
  text-align: center;
  display: table;
}

div.column-box-img {
  width: 350px;
  margin: auto;
  display: table-cell;
  padding: 5px;
  vertical-align: middle;
  text-align: center;
}

div.column-box-30 {
  width: 30%;
  margin: auto;
  display: table-cell;
  padding: 5% 2%;
  vertical-align: top;
  text-align: left;
  line-height: 170%;
}

div.column-box-70 {
  width: 70%;
  margin: auto;
  display: table-cell;
  padding: 2%;
  vertical-align: top;
  text-align: left;
}

div.column-box-50 {
  width: 50%;
  margin: auto;
  display: table-cell;
  padding: 2%;
  vertical-align: top;
  text-align: left;
}

div.column-box {
  width: 650px;
  margin: auto;
  display: table-cell;
  padding: 5px;
  vertical-align: middle;
}

div.column-box p.prof {
  font-size: larger;
  font-weight: 300;
}

div.column-box-img img {
  border: none;
  width: 280px;
  height: auto;
  position: relative;
}

div.column-box-img-prof {
  width: 200px;
  margin: auto;
  display: table-cell;
  padding: 5px;
  vertical-align: top;
  text-align: center;
}

div.column-box-img-prof img {
  border: none;
  width: 150px;
  height: auto;
  position: relative;
}

div.column-box-half {
  width: 470px;
  margin: auto;
  display: table-cell;
  padding: 10px;
  vertical-align: middle;
}

div.column-box-half img {
  border: none;
  width: 460px;
  height: auto;
  position: relative;
}

div.column-box div.button {
  padding: 40px 0 20px 0;
}

div.column-box-half img.w-200 {
  border: none;
  width: 200px;
  height: auto;
  position: relative;
}

div.column-box h2,
div.column-box-half h2 {
  padding-left: 10px;
  font-size: 28px;
  color: #23382A;
  margin: 10px 0;
  text-align: left;
}

div.column-box-half-title {
  width: 470px;
  font-size: 24px;
  font-weight: bold;
  color: #23382A;
  margin: 10px auto;
  text-align: center;
  vertical-align: middle;
  padding: auto;
}

div.column-box p.text,
div.column-box-half p.text {
  padding: 10px;
  font-size: 16px;
  margin: 10px 0;
  line-height: 22px;
}

div.content-box a.button,
div.column-box-half a.button {
  margin: 10px 0;
  padding: 10px;
  background-color: #FEC94A;
  border: 2px solid transparent;
  border-radius: 30px;
  color: #23382A;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  width: 350px;
  display: block;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

div.content-box a.button:hover,
div.column-box-half a.button:hover {
  background-color: #FEFEFE;
  border-color: #FEC94A;
}

div.content-box a.dl-button {
  width: 250px;
  border-radius: 40px;
  background-color: #17499D;
  display: table-cell;
  font-size: 16px;
  text-align: center;
  vertical-align: middle;
  color: #FCFCFC;
  border: 2px solid transparent;
  text-decoration: none;
  padding: 10px 40px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

div.content-box a.dl-button:hover {
  background-color: #FCFCFC;
  color: #17499D;
  border-color: #17499D;
}

/*   TOP2024  */
div.full-cntr {
  width: 100%;
  text-align: center;
}

div.button-box {
  width: 80%;
  margin: auto;
  padding: 10px;
  text-align: center;
  display: table;
}

div.button-box-lnk {
  padding: 0 20px;
  text-align: center;
  display: table-cell;
}

a.sq-bl {
  color: #fefefe;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #1A73E8;
  display: inline-block;
}

a.sq-bl:hover {
  background-color: #0044BF;
}

a.sq-bl-lg {
  color: #fefefe;
  font-size: large;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #1A73E8;
  display: inline-block;
  width: 80%;
}

a.sq-bl-lg:hover {
  background-color: #0044BF;
}

a.sq-blbrd {
  color: #14486d;
  font-size: medium;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
  border: 2px solid #14486d;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s ease, font-size 0.3s ease;
  /* アニメーションも追加可 */
}

a.sq-blbrd:hover {
  background-color: #e7f7fc;
}

a.sq-whbl {
  color: #1A73E8;
  font-size: medium;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
}

a.sq-whbl:hover {
  color: #0044BF;
  background-color: #E4F2FB;
}

a.sq-whbl-lft {
  color: #1967D2;
  font-size: medium;
  font-weight: 300;
  text-decoration: none;
  text-align: left;
  vertical-align: middle;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  display: inline-block;
  width: 85%;
  margin: 2px;
}

a.sq-whbl-lft:hover {
  background-color: #E4F2FB;
}

img.w-100p {
  width: 100%;
  height: auto;
}

img.w-60p {
  width: 60%;
  height: auto;
}

#product div.base-c-gry {
  margin: auto;
  background-color: #F6F6F6;
}

#product div.basic {
  max-width: full;
  margin: auto;
  display: table;
  padding: 35px 0 15px 0;
}

/*  Table*****************/

#requirement-table {
  width: 900px;
  margin: auto;
}

#requirement-table th.header-item {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  background-color: #F5F5F5;
  /*#4EC29F;*/
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

#requirement-table td.category {
  width: 14%;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  background-color: #F5F5F5;
  /*#4EC29F;*/
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  vertical-align: middle;
}

#requirement-table td.value {
  width: auto;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  vertical-align: middle;
}

/*各プラグインページ　***************/
#title-container {
  margin: auto;
  background-color: #E8F0FE;
}

#title-container div.plugin-container,
#at-container div.plugin-container {
  display: table;
  padding-top: 20px;
  margin: 0 auto auto auto;
}

#title-container div.title-L,
#at-container div.title-L {
  width: 750px;
  text-align: left;
  display: table-cell;
}

#title-container div.title-L img {
  height: 25px;
  width: auto;
  position: relative;
}

#title-container div.title-R,
#at-container div.title-R {
  width: 200px;
  margin: auto;
  display: table-cell;
}

#title-container div.title-R p,
#at-container div.title-R p {
  width: 180px;
  height: 45px;
  border-radius: 50px;
  background-color: #1A73E8;
  display: table-cell;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  color: #FCFCFC;
}

#title-container div.title-R a:hover p,
#at-container div.title-R a:hover p {
  background-color: #0044BF;
  color: #ffffff;
  cursor: pointer;
}

#title-container div.title-R p.two {
  width: 180px;
  height: 60px;
  border-radius: 50px;
  background-color: #17499D;
  display: table-cell;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  color: #FCFCFC;
}

#title-container div.title-R img,
#at-container div.title-R img {
  position: relative;
  top: 5px;
  left: 100px;
  padding: 5px;
}

#title-container div.title-R img.bitbucket {
  position: relative;
  width: 150px;
  height: auto;
  top: 5px;
  left: 10px;
  padding: 15px 5px 5px 5px;
}

#title-container div.title-R a,
#at-container div.title-R a {
  text-decoration: none;
}

#title-container div.title-T,
#at-container div.title-T {
  width: 950px;
  margin: 0 30px 20px 30px;
  padding-bottom: 30px;
  padding-left: 10px;
  display: table-cell;
}

#plugins-info table {
  border-top: 1px solid #767676;
  border-collapse: collapse;
  width: 800px;
  margin-top: 20px auto 20px auto;
}

#plugins-info th {
  border-bottom: 1px solid #767676;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 13px;
  background-color: #DCDCDC;
  text-align: left;
}

#plugins-info td {
  border-bottom: 1px solid #767676;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 13px;
  text-align: left;
}

/* ダウンロードボタンスタイル */
a.download-group {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 12px 24px;
  margin: 10px auto;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 80%;
}

a.download-group:hover {
  background-color: #0056b3;
  transform: scale(1.02);
}

a.download-group img {
  width: 32px;
  height: 32px;
  vertical-align: middle;
  margin-left: 10px;
}

/* リンクボタン（リリースノート・システム要件など） */
a.new-link-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #FEC94A;
  color: #000000;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.2s;
  min-width: 150px;
  box-sizing: border-box;
}

a.new-link-small:hover {
  background-color: #daad44;
  transform: scale(1.05);
}

/* 旧バージョンテーブル内のダウンロードアイコンボタン */
a.download-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 36px;
  padding: 4px 8px;
  background-color: #007bff;
  color: #000000;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s;
  box-sizing: border-box;
}

a.download-icon-button:hover {
  background-color: #0056b3;
  transform: scale(1.02);
}

a.download-icon-button img {
  width: 24px;
  height: 24px;
  margin-top: -2px;
}

/* 機能比較や利用可否表のアイコン表記 */
.icon-yes,
.icon-no,
.icon-partial,
.icon-alt {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.icon-yes::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
}

.icon-no::before {
  content: "×";
  color: #dc3545;
  font-weight: bold;
  font-size: 1.3em;
  line-height: 1;
}

.icon-partial::before {
  content: "▲";
  color: #ffc107;
  font-weight: bold;
}

.icon-alt::before {
  content: "↪";
  color: #007bff;
  font-weight: bold;
}

.other-edition-link {
  font-size: 14px;
  display: inline-block;
  color: #0070c9;
  text-decoration: none;
}

.center-tabs {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* 機能比較表 */

ul.tab.center-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 0;
  gap: 15px;
}

ul.tab.center-tabs li {
  float: none;
}

ul.tab.center-tabs li a {
  display: inline-block;
  min-width: 200px;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 100px;
}

#compare-type table {
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate;
  border-spacing: 15px;
  vertical-align: middle;
  text-align: center;
  line-height: auto;
}

#compare-type a {
  text-decoration: none;
  font-weight: bold;
  color: #0056A7;
}

#compare-type td.comparison-menu {
  border: 2px solid #ccc;
  box-shadow: 0 0 6px #ccc;
  border-radius: 5px;
  padding: 15px 10px;
  width: 240px;
  text-align: center;
  vertical-align: middle;
  margin: auto;
}

.button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem;
  justify-content: flex-start;
}

.btn {
  padding: 0.85rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  min-width: 180px;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transform: scale(1);
  user-select: none;
}

.btn:hover {
  background-color: #f1f5f9;
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

ul.centered-bullets {
  display: inline-block;
  text-align: left;
  list-style-position: inside;
  padding-left: 0;
  margin: auto;
}

ul.centered-bullets li {
  font-size: 12px !important;
}

/* ドロップダウンコンテナを中央揃え */
.dropdown {
  display: flex !important;
  justify-content: center !important;
  margin: 20px auto !important;
  width: 100% !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* セレクトボックス自体の見た目調整 */
#colorselector {
  background-color: #E8F0FE !important;
  border: 1px solid #f0f8ff !important;
  border-radius: 6px !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  color: #333 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  width: auto !important;
  min-width: 300px;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#standard img.standard-img {
  max-width: 550px;
  height: auto;
  text-align: left;
  padding-left: 100px;
}

#standard img.img600 {
  max-width: 750px;
  height: auto;
  text-align: left;
  padding-left: 20px;
}

#standard img.standard-img-750 {
  max-width: 750px;
  height: auto;
  text-align: left;
  padding-left: 20px;
}

/* .standard クラスが指定されたtableに対するスタイル */
table.standard {
  width: 1000px;
  margin: auto;
  table-layout: auto;
  border-collapse: collapse;
  border-top: 0.5px solid #859697;
  border-bottom: 0.5px solid #859697;
}

table.standard th {
  font-weight: normal;
  border-bottom: 0.5px solid #859697;
  background-color: #eee;
  font-size: 14px;
  padding: 8px;
  vertical-align: middle;
}

table.standard th.type {
  margin: 20px;
  border-bottom: 0.5px solid #859697;
  background-color: #D1E5F4;
  vertical-align: middle;
  font-size: 14px;
}

table.standard td.standard-td {
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
  padding: 8px;
  border-top: 0.5px solid #859697;
  border-bottom: 0.5px solid #859697;
  font-size: 14px;
}

table.standard td[rowspan] {
  text-align: center;
  vertical-align: middle;
  word-wrap: break-word;
  padding: 8px;
  border-bottom: 0.5px solid #859697;
  border-right: 0.5px solid #859697;
  border-left: 0.5px solid #859697;
  font-size: 14px;
}

table.standard td.right {
  text-align: right;
  margin-right: 100px;
}

table.standard img.logo {
  width: auto;
  height: 30px;
}

.spacer {
  margin-top: 1.5em;
}


/* ===============================
   宇随追加分
   =============================== */

   .basic-button{
    display:inline-block;
    padding:12px 24px;
    border-radius:8px;
    background:#007bff;
    color:#fff;
    text-decoration:none;
    transition:background-color .3s, transform .2s;
  }              /* ←ここで行を終える */
  .basic-button:hover{
    background:#0056b3;
    transform:scale(1.05);
    box-shadow:0 4px 12px rgba(0,0,0,.1);
    color:#fff;
    text-decoration:none;
  }
  
   /* ===============================
   マウススクロールアニメーション
   =============================== */
.scroll-fade{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .6s ease-out,transform .6s ease-out;
  transition-delay:.4s;
}
.scroll-fade.show{opacity:1;transform:translateY(0);}
.no-anim{transition:none !important;}

@media (max-width:768px){
  .diagrams-swiper .swiper-slide img{max-width:320px;}
  .diagrams-swiper figure figcaption{margin-top:16px;font-size:.9rem;}
}

.feature{
  display:flex;
  align-items:center;
  gap:2rem;
  padding:4rem 1rem;
  max-width:1100px;
  margin:0 auto;
}

/* ─── メディア ─── */
.feature__media{
  flex:1 1 50%;
  text-align:center;
}
.feature__media img{
  max-width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
}

/* ─── 768px 以下で縦並び ─── */
@media (max-width:768px){
  .feature{flex-direction:column;}
  .feature__media{flex:none;width:100%;}
}

/* ===============================
   Card Component
   =============================== */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
  max-width:1200px;
  margin:48px auto;
  padding:0 40px;
}
@media (min-width:960px){
  .feature-grid{grid-template-columns:repeat(3,1fr);}
}

.card{
  background:#fcfcfc;
  border-radius:24px;
  height:460px;
  max-width:360px;
  width:100%;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #e1e5e9;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 32px rgba(0,0,0,.2);
}
.card-image img{width:100%;height:auto;display:block;}
.card-body{
  flex-grow:1;
  padding:24px;
  display:flex;
  flex-direction:column;
}
.card-body h3{
  font-size:18px;
  font-weight:700;
  margin:0 0 12px;
  line-height:1.4;
  color:#1d1d1f;
}
.card-body p{
  flex-grow:1;
  font-size:15px;
  margin:0 0 16px;
  color:#555;
}
.card-footer{margin-top:auto;text-align:center;}

.card-button{
  display:inline-block;
  padding:10px 20px;
  font-size:14px;
  color:#fff;
  background:#007bff;
  border-radius:8px;
  text-decoration:none;
  transition:background-color .3s, transform .2s;
}
.card-button:hover{
  background:#0056b3;
  color:#fff;
  transform:scale(1.05);
  box-shadow:0 4px 12px rgba(0,0,0,.1);
  text-decoration:none !important;
}

/* ===============================
   Diagrams Swiper
   =============================== */
.diagrams-swiper{
  width:100%;
  max-width:1000px;
  position:relative;
  padding-bottom:56px;
}
.diagrams-swiper img{
  width:100%;
  height:auto;
  border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.diagrams-swiper figure{
  display:flex;
  flex-direction:column;
  align-items:center;
  margin:0;
}
.diagrams-swiper figure figcaption{
  margin-top:24px;
  font-size:1rem;
  font-weight:600;
  color:#333;
}
.diagrams-swiper .swiper-pagination{
  position:static;
  margin-top:32px;
  text-align:center;
}

/* Price & CTA */
.price{font-size:2.6rem;margin:.15rem 0 0;}
.card-title{font-size:2.2rem;line-height:1.15;margin:0;}

/* ===============================
   ライセンスの簡単な表記
   =============================== */
  /* ---------- Environment Buttons ---------- */
  .env-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin: 2rem 0;
    flex-wrap: wrap;
  }
  .env-select {
    padding: 0.75rem 2rem;
    border: 0.5px solid #111827;
    border-radius: 9999px;
    font-size: 1rem;
    background: #fff;
    color: #111827;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .env-select:hover { background: #d1d5db; }
  .env-select.active {
    background: #e8f0fe;
    color: #111827;
    transform: translateY(-2px);
  }

  /* ---------- Card Grid ---------- */
  .cards-container {
    display: flex; 
    flex-wrap: wrap;        
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  /* =====================================
     カード直下の注記（h4.card-note）
     ===================================== */
  .cards-container > .card-note {  
    flex: 0 0 100%;   
    width: 100%;
    margin: 1rem 0 -1rem;
    font-size: 15px; 
    line-height: 1.6;
    color: #000;
  }
  #cards-team {
    flex-wrap: wrap;
  }


  /* ライセンスカード */
  .card-license {
    background: #fcfcfc;
    border: 1px solid #e1e5e9;              
    border-radius: 24px;
    box-shadow:0 1px 3px rgba(0,0,0,.04);
    padding: 28px 24px;
    width: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}
  .card-license:hover{
    transform:translateY(-8px);
    box-shadow:0 16px 32px rgba(0,0,0,.2);
  }

  /* ライセンスカード内 */
  .plan-title {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0.25rem 0 0.5rem;
    white-space: nowrap;
  }
  .price-license {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2fa36b;
    margin: 0.25rem 0 0.25rem;
  }
  .sub-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin: 0.25rem 0;
  }
  .duration {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
  }

  /* 薄い線 */
  .divider {
    width: 100%;
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 1.2rem 0;
  }

  /* チェックマークアイコン文字 */
  .features {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .features li {
    position: relative;
    padding-left: 1.4rem;
    font-size: 0.9rem;
    text-align: left;
    margin: 0.4rem 0;
  }
  .features li::before {
    content: "\2714"; /* checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: #2fa36b;
  }

  /* ---------- Responsive ---------- */
  @media (max-width: 640px) {
    .card-license { width: 100%; }
    #cards-team { flex-wrap: wrap; } /* allow wrap on small screens */
  }

  /* ユーザ-の声 */
  .voice-card{
    background:#fff;
    border-radius:20px;
    padding:32px;
    box-shadow:0 12px 24px rgba(0,0,0,.05);
    text-align:left;
    transition:transform .3s,box-shadow .3s
    }
    .voice-card:hover{
    transform:translateY(-6px);
    box-shadow:0 16px 32px rgba(0,0,0,.12)
    }

    
    .benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.benefit-grid-a {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
  padding: 8px 16px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
}

/* 下段は2列にする（レスポンシブにも対応） */
.benefit-grid > :nth-child(4),
.benefit-grid > :nth-child(5) {
  grid-column: span 2;
}

@media (min-width: 900px) {
  .benefit-grid > :nth-child(4),
  .benefit-grid > :nth-child(5) {
    grid-column: span 1;
  }
  .benefit-grid > :nth-child(4) {
    grid-column-start: 2;
  }
}

/* スマホ対応：1列 */
@media (max-width: 768px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}




.h3-1 {
  margin-top: 30px;
  padding: 8px 16px;
  background: #eef6ff;
  border-left: 6px solid #4a90e2;
  border-radius: 4px;
  text-align: left;
  font-weight: bold;
  font-size: 24px;
}

.h4-1 {
  margin-top: 24px;
  text-align: left;
  background: #f2f2f2;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 20px;
}

.instructions {
  line-height: 1.8; 
  text-align: left; 
  margin-left: 12px; 
  margin-top: 14px; 
  font-size: 0.95rem;
}

.instructions-a {
  margin-top: 6px; 
  margin-left: 20px; 
  font-size: 0.9rem; 
  line-height: 1.6;
}

.details {
  text-align: left; 
  font-size: 0.95rem;
  line-height: 1.6; 
  margin-top: 12px; 
  padding-left: 1.2em;
}


.trouble-shooting {
margin-top: 32px; 
display: flex; 
flex-direction: column; 
gap: 28px;

}

.trouble-title {
background: #eef6ff;
      padding: 10px 14px;
      border-radius: 6px;
      font-size: 1.05rem;
      margin-bottom: 12px;
      text-align: left;
}

.trouble-cause {
  background: #fff7e6;
      padding: 8px 12px;
      border-radius: 4px;
      font-size: 0.9rem;
      margin-bottom: 12px;
      text-align: left;
      line-height: 1.6;

}

