/* ==========================================================================
   1. 基本設定・リセット（スマホ・PC共通）
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
li {
	list-style:none
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    background-color: #F2F2F2;
	background-image:url(../img/header_bg.jpg);
	background-size:100% auto;	
	background-repeat:no-repeat
}
@media (min-width: 1100px) {
body {
	background-size:1100px auto;
	background-color:#F2F2F2
}
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color:#000000;
    text-decoration: none;
}
/* ==========================================================================
   2. レイアウト共通パーツ
   ========================================================================== */
article, main {
	padding:1%;
    }
main {
	padding:1%;
	background-color:#FFFFFF
    }
/* ==========================================================================
   3. ヘッダーのデザイン
   ========================================================================== */
header h1 {
	font-size:70px;
	line-height:1;	
}
header h1 span {
	font-size:15px;
	line-height:1.2;
	display:block;
	font-weight:normal	
}
header #l-header {
	display: flex;
	justify-content: space-between;
	padding:20px 30px 0 30px;
	margin:auto;
	max-width:1300px;
}
.but_q {
	display:block;
	padding:17px 30px;
	background-color:#466ABD;
	color:#FFFFFF;
	font-weight:bold;
	border-radius: 10px;	
}
.but_q:hover {
	background-color:#6180C7;	
}

/*   ヘッダーのボタン */
.header-cta-group {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
}
.header-cta-group a {
    display: flex;
    flex-direction: column; /* 文字を縦並び（上下）に配置できるようにする */
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease; /* マウスを乗せた時のアニメーション */
    box-sizing: border-box;
}
.btn_download {
    background-color: #ffffff;
    color: #4169e1;
    border: 2px solid #4169e1;
    padding: 10px 20px;
    font-size: 15px;
}
.btn_download span {
    background-color: #4169e1;
    color: #ffffff;
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 3px;
    margin-bottom: 3px;
    font-weight: 900;
}
.btn_contact {
    background-color: #d35400;
    color: #ffffff;
    padding: 10px 24px;
    font-size: 16px;
    border: 2px solid #d35400;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn_contact small {
    display: block;
    font-size: 12px;
    font-weight: normal;
    margin-top: 2px;
    opacity: 0.9;
}
.header-cta-group a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
/* ==========================================================================
   4. main_visual
   ========================================================================== */
.first_view .main_visual{
	display: flex;
	justify-content: space-between;
	padding:0 30px 0 30px;
	margin:auto;
	max-width:1300px;	
}
.first_view .main_visual #intro {
	padding-top:8%
}
.first_view .main_visual h2 {
	display:block;
	padding:0px 8px;
	background-image: linear-gradient(90deg, #5c6cc5, #63b5c3);
	color:#FFFFFF;
	font-size:29px;
	margin-bottom:5px;
	white-space: nowrap;
	border-radius: 2px;
}
.first_view .main_visual h3::before {
	content: "\2713"; /* チェックマーク */
	color: #466ABD;
	margin-right: 0.5em;
}
.first_view .main_visual h3 {
	font-size:30px;
	font-weight:normal
}
/* ==========================================================================*/
.box {
	text-align:left;
	margin:auto;
	width:100%;
	max-width:1100px;
	padding:1% 0
	}
.catch {
	width: fit-content;
	font-size:27px;
	padding:0;
	text-align:center;
	margin-top:3%	
	}
.catch strong{
	background-color:#D3E9F5;
	padding:0 4px;
	font-weight:normal
	}
.catch span {
	font-size:55px;
	font-weight:bold;
	color:#6C95EA;
	}
h2:not(.main_visual h2) {
	position: relative;
	color: #333;
	text-shadow: 0 0 2px white;
	margin:5% 0 1% 0;
	font-size:30px;
	z-index:1;
}
h2:not(.main_visual h2)::before {
	content: "";
	position: absolute;
	background: #D3E9F5;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
	left: -15px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index:-1;  
}
.card-container {
	display: flex;
	gap: 15px; /* カード間隔 */
	margin: 0;
	padding: 0;
}
.card-item {
	flex: 1; /* 各カードを均等の幅にする */
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width:33%;
	margin-bottom:2%
}
.card-item dt {
	background-color: #466ABD;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	padding: 10px;
	margin: 0;
}
.card-item dd {
	background-color:#F5FBFE;
	color: #000000;
	font-size: 19px;
	padding: 10px;
	margin: 0;
	flex-grow: 1;
}
.card-item dt .size_l {
	font-size:30px;
	margin-right:5px
}

/* 以下、ソリューションより */
.table-container {
  overflow-x: auto; /* 横スクロール*/
  -webkit-overflow-scrolling: touch; /* スマホで滑らかにスクロール */
  padding:1%;
}
.table-container table {
  width: 100%;
}
.comparison-table {
	width:98%;
  max-width:1100px;  
  min-width: 900px;
  border-collapse: collapse;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1e293b;
  background-color: #ffffff;
  border-top: 1px solid #cbd5e1;
  border-bottom: 1px solid #cbd5e1;
  box-sizing: border-box;
  table-layout: fixed;
  margin:auto
}
.comparison-table th:nth-child(1) { width: 130px; } /* 項目名列 */
.comparison-table th:nth-child(2) { width: 290px; } /* ★ 自社ツール（幅を最大に拡大） */
.comparison-table th:nth-child(3) { width: 160px; } /* A社（幅をスリムに） */
.comparison-table th:nth-child(4) { width: 160px; } /* B社（幅をスリムに） */
.comparison-table th:nth-child(5) { width: 160px; } /* C社（幅をスリムに） */
/* ヘッダー行スタイル */
.comparison-table th {
  background-color: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  padding: 18px 16px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

/* 一番左の項目列（縦見出し） */
.comparison-table td.row-title {
  background-color: #ffffff;
  font-weight: 700;
  color: #475569;
  text-align: center;
  width: 130px;
  border-right: 1px solid #e2e8f0;
}

/* 一般のデータセル（薄いグレーの横線のみ） */
.comparison-table td {
  padding: 9px 8px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: top;
}

/* テキストを左寄せにする汎用クラス */
.comparison-table td.text-left {
  text-align: left;
}

/* ★ 自社ツール（一番右の列）を3pxの黒線で囲む特別スタイル */
.comparison-table th.highlight-col {
  background-color: #466ABD;
  color: #ffffff;
  /* 上・左・右を3pxの黒線で囲む */
  border-top: 3px solid #5265AF;
  border-left: 3px solid #5265AF;
  border-right: 3px solid #5265AF;
  border-bottom: 3px solid #5265AF;
}

.comparison-table td.highlight-col {
  background-color: #f0f5ff; /* 淡いブルー */
  font-weight: 500;
  /* 左と右を3pxの黒線で囲む */
  border-left: 3px solid #5265AF;
  border-right: 3px solid #5265AF;
}

/* 一番下の行の自社セルだけ、下側も3pxの黒線にする */
.comparison-table tbody tr:last-child td.highlight-col {
  border-bottom: 3px solid #5265AF;
}

/* テキスト強調用パーツ */
.comparison-table .font-bold {
  font-weight: 700;
}
.comparison-table .price-text {
  font-size: 16px;
  color: #2563eb;
  font-weight: 700;
}
.comparison-table .text-accent {
  color: #e11d48;
  font-weight: 700;
}
.comparison-table .text-sm {
  font-size: 12px;
  font-weight: normal;
  color: #64748b;
}

/* マウスホバー時 */
.comparison-table tbody tr {
  transition: background-color 0.15s ease;
}
.comparison-table tbody tr:hover {
  background-color: #f1f5f9;
}
.comparison-table tbody tr:hover td.highlight-col {
  background-color: #e0eafe;
}
/* 以上、ソリューションより */


.video-container_wrap
{
	width: 100%;
	max-width: 1100px;
	margin:auto

}
.video-container {
	aspect-ratio: 16 / 9; /* 縦横比固定 */
	margin: auto;
	max-width:900px;
	padding:5px
}
.video-container iframe {
	width: 100%;
	height: 100%;
	border: none; /* 枠線を消す設定 */
}
.kinou_wrapper {
	position: relative;
	margin: 20px auto;
	padding-bottom: 70px; /* ボタンを置くための下部余白を確保 */
	box-sizing: border-box;
}

/* 機能一覧 */
.kinou_list table {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
}
.kinou_list table th {
	padding: 5px;
	background: #63B5C3;
	color: #FFFFFF;
	border: solid 1px #63B5C3;
}
.kinou_list table td {
	padding: 5px;
	border: solid 1px #63B5C3;
	text-align: left;
	font-size: 14px;
}
.kinou_list table tr td:nth-of-type(1),
.kinou_list table tr td:nth-of-type(2) {
	text-align: center;
	font-size: 25px;
}
.kinou_list {
	position: relative;
	height: 450px;
	padding: 20px 5px;
	overflow: hidden;
	transition: height 0.4s ease-in-out;
	box-sizing: border-box;
}
.kinou_list:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(0deg, rgba(255,255,255,1) 40%, rgba(255,255,255,0) 100%);
	transition: opacity 0.4s, visibility 0.4s;
	pointer-events: none;
	z-index: 1;
}
.kinou_list.active:before {
	opacity: 0;
	visibility: hidden;
}
.kinou_wrapper button {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	width: 200px;
	height: 40px;
	cursor: pointer;
	color: #000;
	background: #fff;
	border: 1px #4FB0A7 solid;
	z-index: 2;
}
/* ==========================================================================
   6. フッター
   ========================================================================== */
.footer {
	display: block;
	padding: 50px 0 20px;
	background-color:#FFFFFF
}
.footer_inner {
	width: 98%;
	max-width:1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.footer_link {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:30%;
	line-height: 2;
	margin-top: -3px;
}
.footer_link li {
	min-width: 84px;
	margin-bottom: 16px;
}
.footer_link a {
	transition: opacity 0.15s ease-out;
}
.footer_link a:hover {
	opacity: 0.6;
}
.footer_link a img {
	vertical-align: middle;
	margin-left: 8px;
}
.footer_pmark {
	width:60%;
	background-color:#F7FAFB ;
	border-radius: 16px;
	padding: 20px 40px 19px;
}
.footer_pmark_title {
	font-size: 1.1rem;
	font-weight: bold;
	color: #1951A5;
	margin-bottom: 10px;
}
.footer_pmark_title img {
	vertical-align: middle;
	margin-right: 9px;
	transform: translateY(-3px);
}
.footer_logo {
	margin-top: -3px;
}
.footer_logo a:hover {
	opacity: 1;
}
.footer_logo img {
	width: 260px;
}
.footer_copyright {
	color: #949494;
	margin-top: 39px;
}

@media (max-width: 1050px) {
.first_view .main_visual h2 {
	font-size:20px;
}
.first_view .main_visual h3 {
	font-size:20px;
	font-weight:normal
}
.catch span {
	font-size:45px;
	}
}
@media screen and (max-width: 900px) {
.first_view .main_visual #intro {
	padding-top:0%
}
header h1 {
	font-size:60px;
}
.header-cta-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	max-width: 200px;
}

.header-cta-group a {
	width: 100%;
	padding: 12px 10px;
	box-sizing: border-box;
}
}
@media (max-width: 700px) {

header h1 {
	font-size:50px;
	line-height:1
}
header #l-header {
	justify-content: space-between;
	padding:10px 15px 0 15px;
}
.header-cta-group a {
	padding: 8px;
	box-sizing: border-box;
}  
.first_view .main_visual{
    flex-direction: column-reverse;
}
.first_view .main_visual #intro {
	padding-top:0%
}
.first_view .main_visual h2, .first_view .main_visual h3 {
	font-size:20px;
	text-align:center
}
.catch {
	font-size:20px;
	padding-top:5%;
	}
.catch span {
	font-size:27px;
	}
.card-container {
	display:block;
}
.card-item {
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width:90%;
	margin:2% auto;
}
.card-item dt {
	font-weight: bold;
}

.card-item dd {
	font-size: 15px;
}
.card-item dt .size_l {
	font-size:20px;
	margin-right:5px
}

h2:not(.main_visual h2) {
	margin:8% 0 2% 0;
	font-size:20px;

}
h2:not(.main_visual h2)::before {
	width: 40px;
	height: 40px;  
}
.footer_inner {
	width: 98%;
	max-width:1200px;
	margin-left: auto;
	margin-right: auto;
	display:block;
	justify-content: space-between;
	align-items: flex-start;
}
.footer_link {
	width:100%;
	justify-content: start;
}
.footer_link li {
	margin-right: 32px;
}
.footer_pmark {
	width:100%;
	padding: 20px;
}
.footer_logo {
	margin-top: 10px;
	text-align:center
}
}
@media (max-width: 550px) {
header h1 {
	font-size:35px;
	line-height:1
}
.header-cta-group {
	max-width: 150px;
}
.header-cta-group a {
	padding: 5px;
}  
}
@media (max-width: 450px) {
header h1 {
	font-size:35px;
	line-height:1
}
.header-cta-group {
        max-width: 150px;
    }
.header-cta-group a {
        padding: 5px;
    }  
.first_view .main_visual{
	padding:0 10px;
	
}
.first_view .main_visual h2 {
	font-size:18px;
}
}