@charset "utf-8";

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
  /* 基本 */
  --text-color: #1f1f1f;
  --bg-color: #ffffff;

  /* メインカラー周り（ここを変えれば全体のカラーを調整しやすい） */
  --primary-color: #296dff;        /* bg1 などの濃いグレー */
  --primary-inverse-color: #F0F8FF;/* その上の文字色 */

  --accent-color: #ff8400;         /* ボタン・ハンバーガー・CONTACTラベルの水色 */
  --accent-strong: #296dff;        /* 見出しの青系 */
  --accent-dark: #13223b;          /* グラフのバーなどの濃い紺 */
  --accent-muted: #296dff;         /* フロー図の水色ボックス */
  --accent-after-label: #00a0c8;   /* グラフ「導入後」ラベル色 */

  /* ▼ 追加：CONTACT左カラム＆ボタン用の青 */
  --contact-accent: #296dff;   /* ←青を変えたくなったらここだけ変更 */
  
  

  /* サブカラー */
  --border-color: #e0e0e0;
  --border-strong: #111111;
  --section-gray: #f5f5f5;
  --card-bg: #ffffff;
  --card-shadow-soft: 0 10px 25px rgba(0,0,0,0.04);
  --card-shadow-strong: 0 10px 30px rgba(0,0,0,0.08);

  /* ボタン */
  --button-bg: var(--accent-color);
  --button-text: #ffffff;

  /* グラフ用 */
  --chart-bar-before: var(--accent-dark);
  --chart-bar-after: var(--accent-dark);
  --chart-after-label: var(--accent-after-label);

  --global-space: 5vw;
}

/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}

/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*fadeInのキーフレーム設定（テキストのフェードインに使用）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.8);}
	100% {opacity: 1;transform: scale(1);}
}

/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}
html,body {
	height: 100%;
	font-size: 13px;
}

@media screen and (min-width:900px) {
	html, body {
		font-size: 16px;
	}
}

body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
	font-optical-sizing: auto;
	-webkit-text-size-adjust: none;
	background: var(--bg-color);
	color: var(--text-color);
	line-height: 2;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
section li {margin-left: 1rem;}
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
video {max-width: 100%;}
iframe {width: 100%;}
input {font-size: 1rem;}
section + section {margin-top: 3rem;}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
	color: var(--primary-color);
}

/*コンテナー
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: var(--global-space);
}
@media screen and (max-width:600px) {
	#contents {
		padding-top: 80px;
	}
}

/*header
---------------------------------------------------------------------------*/
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	padding: 1vw 3vw;
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
  position: absolute;
  z-index: 1;
  width: 100%;
}
@media screen and (min-width:900px) {
	header {
		position: fixed;
	}
}

/*ロゴ*/
#logo img {
	display: block;
	width: 160px;
}
#logo a {
	display: block;text-decoration: none;
	font-size: 1.2rem;
	font-weight: 800;
}

/*メニュー初期設定
---------------------------------------------------------------------------*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}
#menubar_hdr.display-none {display: none;}
.ddmenu_parent ul {display: none;}
a.ddmenu {cursor: default;}
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 0.5em;
}

/*大きな端末用メニュー
---------------------------------------------------------------------------*/
.large-screen #menubar > nav > ul {
	display: flex;
	font-size: 0.85rem;
	gap: 0.5rem;
}
.large-screen #menubar li a {
	border-radius: 100px;
	padding: 0.2rem 1rem;
}
.large-screen #menubar li a:hover {
	background: #fff;
}

/*ドロップダウン共通
---------------------------------------------------------------------------*/
.large-screen #menubar ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;
}

/*大きな端末用ドロップダウン*/
.large-screen #menubar ul ul {
	position: absolute;z-index: 100;
}
.large-screen #menubar ul ul a {
	margin-top: 0.4rem;
}

/*小さな端末用メニュー開閉ブロック
---------------------------------------------------------------------------*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	left: 0;top: 0;
	width: 100%;
	height: 100%;
	padding-top: 90px;
	background: rgba(0,0,0,0.9);
	animation: animation1 0.2s both;
}
.small-screen #menubar nav ul li {
	border: 1px solid #ccc;
	margin: 1rem;
	border-radius: 5px;
	padding: 0 2rem;
}
.small-screen #menubar a {
	padding: 1rem;
}
.small-screen #menubar, .small-screen #menubar a {
	color: #fff;
}
#menubar .sh {
	font-weight: normal;
	padding: 1rem 2rem 2rem;
}

/*３本バー
---------------------------------------------------------------------------*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 3vw;
	top: 1vw;
	padding: 16px 14px;
	width: 46px;
	height: 46px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1.5px solid #333;
}
#menubar_hdr.ham {
	background: var(--accent-color);
}
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;
	border-color: #fff;
}
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);
}
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);
}
#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}

/*main
---------------------------------------------------------------------------*/
main h2 {
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-size: 3rem;
	letter-spacing: 0.1em;
	color: var(--accent-strong);
}
.bg1 h2 {
	color: var(--primary-inverse-color);
}
main h2 .hosoku {
	display: block;font-weight: normal;
	font-size: 0.3em;
	padding-left: 10px;
}
main h3 {
	display: inline-block;
	border-bottom: 3px solid var(--text-color);
}

/*2カラム
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 5rem;
}
@media screen and (min-width:900px) {
	main.column {
		display: flex;
		justify-content: space-between;
		gap: 2rem;
	}
	.main-contents {
		margin-bottom: 0;
		order: 2;
		flex: 1;
	}
	.sub-contents {
		width: 230px;
	}
	.sub-contents:nth-child(2) {order: 1;}
	.sub-contents:nth-child(3) {order: 3;}
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
.sub-contents h3 {
	display: block;
	margin: 0;
	text-align: center;
	border-radius: 5px 5px 0 0;
	border: 1px solid #ccc;
	background: linear-gradient(transparent, rgba(0,0,0,0.03));
	padding: 0.5rem 0;
}

/*サブメニュー
---------------------------------------------------------------------------*/
.submenu {
	padding: 0;
	margin: 0 0 1rem;
}
.submenu a {
	display: block;text-decoration: none;
	padding: 0.2rem 1rem;
}
.submenu > li {
	border: 1px solid #ccc;
	border-top: none;
}
.submenu li li a {
	padding-left: 2rem;
}
.sub-contents h3 + nav .submenu {
	border-top: none;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	margin: 0 !important;
	padding: 20px;
	text-align: center;
	font-size: 0.8rem;
}
#footermenu li {
	display: inline-block;
	padding: 0 10px;
}

/*フッター
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.7rem;
	text-align: center;
	padding: 20px;
}
footer a {color: inherit;text-decoration: none;}
footer .pr {display: block;}

/*テキストのフェードイン
---------------------------------------------------------------------------*/
.fade-in-text {
    visibility: hidden;
	padding-left: 10px;
}
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.05s linear both;
}

/*お知らせブロック
---------------------------------------------------------------------------*/
.new dd {padding-bottom: 1rem;}
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;
	border-radius: 3px;
	width: 8rem;
	transform: scale(0.8);
	background: #fff;
	color:#777;
	border: 1px solid #333;
}
.new .icon-bg1 {
	background: #333;
	color: #fff;
}
.new .icon-bg2 {
	background: var(--accent-color);
	color: #fff;
}
@media screen and (min-width:700px) {
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
	}
}

/*list-grid1
---------------------------------------------------------------------------*/
.list-grid1 {
	display: grid;
	color: var(--text-color);
}
.list-grid1 .list {
    display: grid;
}
.list-grid1 .list * {
	margin: 0;padding: 0;
}
.list-grid1 .list p {
	font-size: 0.85rem;
}
@media screen and (min-width:500px) {
	.list-grid1 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}
@media screen and (min-width:800px) {
	.list-grid1 {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}
.list-grid1 .list {
	padding: 1rem;
	background: #fff;
  grid-template-rows: auto 1fr;
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
.list-grid1 .list figure img {
	margin-bottom: 0.5rem;
}

/*ボタン
---------------------------------------------------------------------------*/
.btn a,
.btn-border-radius a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;
	background: var(--button-bg) !important;
	color: var(--button-text) !important;
	padding: 0.5rem !important;
	margin-top: 1rem !important;
}
.btn a:hover,
.btn-border-radius a:hover {
	filter: brightness(1.2);
}
.btn-border-radius a {
	display: inline-block;
	padding: 0.5rem 2rem !important;
	border-radius: 100px;
}

/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding-top: 5vw;
	padding-bottom: 5vw;
	margin-top: 10vw;
	margin-bottom: 10vw;
	margin-left: calc(-1 * var(--global-space));
	margin-right: calc(-1 * var(--global-space));
	padding-left: var(--global-space);
	padding-right: var(--global-space);
}
.bg1 a {color: inherit;}
.bg1::before, .bg1::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: calc(5vw + 1px);
	background: var(--primary-color);
}
.bg1::before {
	top: -5vw;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.bg1::after {
	bottom: -5vw;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

/*詳細ページサムネイル
---------------------------------------------------------------------------*/
.thumbnail-view-parts {
	max-width: 1000px;
	margin: 0 auto 1rem;
	text-align: center;
}
.thumbnail-parts {
	display: flex;
	justify-content: center;
	margin-bottom: 2rem;
}
.thumbnail-parts img {
	width: 100px;
	margin: 2px;
	cursor: pointer;
	transition: 0.3s;
}
.thumbnail-parts img:hover {opacity: 0.8;}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
.ta1 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: #333;
	color: #fff;
	margin-bottom: 1rem;
	border-radius: 5px;
}
.ta1 {
	table-layout: fixed;
	border-top: 1px solid #333;
	width: 100%;
	margin-bottom: 5rem;
}
.ta1 tr {
	border-bottom: 1px solid #333;
}
.ta1 th, .ta1 td {
	padding: 1rem;
	word-break: break-all;
}
.ta1 th {
	width: 30%;
	text-align: left;
	background: #eee;
}
@media screen and (min-width:900px) {
	.ta1 th {width: 20%;}
}

/*PAGE TOP
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: var(--accent-color) !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #eee;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
@media screen and (min-width:900px) {
	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
}

/* SYSTEMページ メイン画像を横幅いっぱいにする */
.system-hero {
  margin-top: 3rem;
  margin-left: calc(-1 * var(--global-space));
  margin-right: calc(-1 * var(--global-space));
}
.system-hero img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   TOPスライドの文字サイズ調整
   ========================= */
#mainimg .slide h1 {
  font-size: 3rem;
  line-height: 1.4;
  font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  color: var(--text-color);
  text-shadow:
        1px 1px 2px rgb(255, 255, 255),
        -1px -1px 2px rgb(255, 255, 255),
        1px -1px 2px rgb(255, 255, 255),
        -1px 1px 2px rgb(255, 255, 255);
}
#mainimg .slide p {
  font-size: 1.1rem;
    text-shadow:
        1px 1px 2px rgb(255, 255, 255),
        -1px -1px 2px rgb(255, 255, 255),
        1px -1px 2px rgb(255, 255, 255),
        -1px 1px 2px rgb(255, 255, 255);
}
#mainimg .slide .btn-border-radius a {
  font-size: 1rem;
}

/* スマホ用：TOPスライド調整 */
@media screen and (max-width: 600px) {
  #mainimg {
    padding-top: 110%;
  }
  #mainimg .slide > div {
    width: 85vw;
    margin-top: 8vh;
  }
  #mainimg h1 {
    font-size: 1.7rem;
    line-height: 1.5;
    margin: 0;
  }
  #mainimg p {
    font-size: 0.95rem;
    padding-left: 0;
    margin: 0.4rem 0;
  }
  #mainimg .btn-border-radius a {
    font-size: 0.95rem;
    padding: 0.6rem 2.4rem;
  }
}

/* =========================
   CONTACTフォーム
   ========================= */
#contact {
  max-width: 900px;
  margin: 0 auto 5rem;
}
#contact .ta1 {
  width: 100%;
  border-collapse: collapse;
  border: none;
  margin-bottom: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow-strong);
}
#contact .ta1 tr {
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
#contact .ta1 th {
  width: 30%;
  background: var(--contact-accent); 
  color: #ffffff;
  text-align: left;
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.3);
  font-size: 0.95rem;
}
#contact .ta1 td {
  padding: 1.2rem 1.5rem;
  background: #ffffff;
}
#contact input[type="text"],
#contact textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid #dddddd;
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-sizing: border-box;
}
#contact textarea {
  border-radius: 12px;
  min-height: 160px;
  resize: vertical;
}
#contact input[type="text"]:focus,
#contact textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(173,216,230,0.35);
}
#contact input[type="submit"] {
  border: none;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 1rem;
  padding: 0.8rem 3rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, filter 0.15s;
}
#contact input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  filter: brightness(1.05);
}
#contact p.c {
  margin-top: 2rem;
}
@media screen and (max-width: 600px) {
  #contact {padding: 0 4vw;}
  #contact .ta1 {border-radius: 12px;}
  #contact .ta1 th,
  #contact .ta1 td {
    display: block;
    width: 100%;
    border-right: none;
  }
  #contact .ta1 th {
    border-bottom: none;
    border-right: none;
  }
  #contact .ta1 td {
    padding-top: 0.5rem;
  }
}

/* CONTACT 見出しカラー */
#contact-section h2 .fade-in-text {
  color: var(--accent-strong) !important;
}
#contact-section h2 .hosoku {
  color: var(--accent-strong) !important;
}

/* =========================
   自動送信メールとは？ ページ用デザイン
   ========================= */
#contents main {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 20px;
  line-height: 1.8;
  font-size: 15px;
}
#contents h2 {
  font-size: 32px;
  text-align: left;
  margin: 40px 0 30px;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.service-intro h3,
.problem-section h3,
.tool-summary h3 {
  font-size: 22px;
  margin: 50px 0 15px;
  font-weight: 700;
  position: relative;
}
.service-intro h3::after,
.problem-section h3::after,
.tool-summary h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: #333;
  border-radius: 999px;
}
.service-intro > p,
.problem-section > p,
.tool-summary > p {
  margin-bottom: 20px;
  color: #444;
}

/* ーーー サービス紹介／課題ブロックのベース（後半の画像付きレイアウトで上書き） */
.feature-blocks {
  margin-top: 25px;
}
.problem-blocks {
  margin-top: 20px;
}

/* ーーー ツール概要部分 ーーー */
.tool-features {
  margin: 25px 0 10px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #f5f5f5;
}
.tool-features dt {
  font-weight: 700;
  margin-top: 12px;
  font-size: 15px;
}
.tool-features dd {
  margin: 4px 0 0 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  #contents h2 {font-size: 26px;}
}

/* ======================================
   料金ページ用ブロック
   ====================================== */
.price-section {
  max-width: 1080px;
  margin: 0 auto 80px;
  padding: 0 20px;
  line-height: 1.8;
  font-size: 15px;
}
.price-section h2 {
  font-size: 28px;
  text-align: center;
  margin: 40px 0 25px;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.price-lead {
  text-align: center;
  color: #444;
  margin-bottom: 35px;
  font-weight: 500;
}
.price-summary {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  font-weight: 800;
}
.price-summary-item {
  width: 260px;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow-soft);
  border: 1px solid #eee;
}
.price-summary-head {
  background: #ff8400;
  color: #fff;
  text-align: center;
  padding: 10px 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.price-summary-head--accent {
  background: #80a8ff;
}
.price-summary-body {
  padding: 20px 18px 18px;
  text-align: center;
}
.price-summary-main {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}
.price-summary-main span {font-size: 22px;}
.price-summary-main small {font-size: 12px;}
.price-summary-note {
  margin: 0;
  font-size: 13px;
  color: #555;
}
.price-summary-plus {
  align-self: center;
  font-size: 26px;
  font-weight: 1500;
  color: #666;
}
.price-plans {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 30px;
}
.price-plan {
  flex: 1 1 260px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--card-shadow-soft);
  border: 1px solid #e5e5e5;
}
.price-plan-name {
  font-size: 30px;
  letter-spacing: 0.18em;
  margin: 0 0 6px;
  font-weight: 700;
}

.price-plan-tagline {
  font-size: 13px;
  margin: 0 0 16px;
  color: #666;
  font-weight: 700;
}
.price-plan-price {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 800;
}
.price-plan-price span {font-size: 30px;}
.price-plan-price small {font-size: 15px;}
.price-plan-unit {
  margin: 0 0 16px;
  font-size: 13px;
  color: #555;
}
.price-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
}
.price-plan-list li::before {
  content: "・";
  margin-right: 2px;
}
.price-plan--recommended {
  transform: translateY(-6px);
  border-width: 2px;
}
.price-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  background: #333;
  color: #fff;
}
.price-notes {
  font-size: 12px;
  color: #666;
  text-align: right;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .price-summary {gap: 16px;}
  .price-summary-item {
    width: 100%;
    max-width: 320px;
  }
  .price-summary-plus {
    width: 100%;
    text-align: center;
  }
  .price-plan--recommended {transform: none;}
  .price-notes {text-align: left;}
}

/* ===============================
   選ばれる理由セクション
   =============================== */
.reason-section {
  max-width: 1080px;
  margin: 0 auto 90px;
  padding: 0 20px;
  text-align: center;
}
.reason-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.reason-lead {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: left;
  font-weight: 800;
}
.reason-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

/* 選ばれる理由（画像＋テキスト横並び） */
.reason-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 820px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  border: 1px solid #e7e7e7;
  margin: 0 auto;
}
.reason-content {
  flex: 1;
}
.reason-image {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reason-title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #ff8400;
  padding-bottom: 6px;
  display: inline-block;
  color: #ff8400;
}
.reason-text {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  font-weight: 800;
}
@media (max-width: 768px) {
  .reason-cards {
    flex-direction: column;
    align-items: center;
  }
  .reason-card {
    flex-direction: column;
    text-align: left;
    padding: 24px 20px;
    max-width: 100%;
  }
  .reason-image {
    width: 120px;
    height: 120px;
    margin-top: 12px;
  }
  .reason-title {font-size: 18px;}
  .reason-text {font-size: 14px;}
}

/* ==============================
   導入までの流れ（ステップフロー）
   ============================== */
.flow-section {
  max-width: 1080px;
  margin: 0 auto 90px;
  padding: 0 20px;
}
.flow-section h2 {
  font-size: 26px;
  text-align: center;
  margin: 40px 0 15px;
  letter-spacing: 0.1em;
}
.flow-lead {
  text-align: center;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: left;
  font-weight: 800;
}
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow-step {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.flow-step-left {
  position: relative;
  width: 32%;
  min-width: 180px;
  background: var(--accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #296dff;
  box-sizing: border-box;
}
.flow-step-left::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  border-width: 18px 16px 0 16px;
  border-style: solid;
  border-color: var(--accent-muted) transparent transparent transparent;
}
.flow-step:last-child .flow-step-left::after {
  display: none;
}
.flow-step-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
.flow-step-right {
  flex: 1;
  background: #ffffff;
  border: 5px solid #296dff;
  border-left: none;
  padding: 16px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.flow-step-right p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #4d4d4d;
  font-weight: 700;
}
@media (max-width: 768px) {
  .flow-step {flex-direction: column;}
  .flow-step-left {
    width: 100%;
    border-bottom: none;
  }
  .flow-step-left::after {
    left: 20px;
    transform: translateX(0);
    bottom: -14px;
    border-width: 14px 12px 0 0;
    border-color: var(--accent-muted) transparent transparent transparent;
  }
  .flow-step-right {border-left: 5px solid #296dff;}
}

/* =============================
   事例紹介セクション
   ============================= */
.case-section {
  max-width: 1080px;
  margin: 0 auto 90px;
  padding: 0 20px;
}
.case-section h2 {
  font-size: 32px;
  text-align: center;
  margin: 40px 0 15px;
  letter-spacing: 0.15em;
}
.case-lead {
  text-align: left;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 800;
}
.case-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

/* 事例カード画像エリア（最終版デザイン） */
.case-card {
  flex: 1 1 260px;
  max-width: 320px;
  border: 10px solid var(--border-strong);
  border-radius: 20px;
  border-color: #296dff;
  background: #fff;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  text-align: center;
  font-size: 23px;
  /* color: #ff8400; */
}
.case-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-bottom: 1px solid #ddd;
}
.case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-role {
  font-weight: 700;
  margin-top: 18px;
}
.case-role span {
  font-size: 15px;
  font-weight: 700;
}
.case-voice {
  padding: 10px 18px 20px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

/* 売上アップの成果ブロック（統合版）
   ============================= */
.case-result {
  margin-top: 50px;
}
.case-result h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  border-bottom: 2px solid #111;
  display: inline-block;
}
.case-result-lead {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin: 12px 0 10px;
}
.result-caption {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}
.result-chart {margin-top: 10px;}

/* グラフ本体 */
.result-chart-inner {
  position: relative;
  max-width: 700px;
  margin: 20px auto 10px;
  padding: 30px 20px 50px;
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-image: linear-gradient(to top, #efefef 1px, transparent 1px);
  background-size: 100% 40px;
}

/* 棒を横並びに */
.result-bars-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 80px;
  margin-top: 20px;
}
.result-bar-wrap {
  text-align: center;
}

/* 棒本体 */
.result-bar {
  width: 140px;
  background: var(--chart-bar-before);
  border-radius: 6px 6px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.result-bar--before {height: 160px;}
.result-bar--after  {height: 260px;}

/* 棒の中の金額 */
.result-bar-amount {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

/* 棒のラベル */
.result-bar-label {
  margin-top: 8px;
  font-size: 13px;
  text-align: center;
}
.result-bar-label--after {
  color: var(--chart-after-label);
}

/* 売上2倍バッジ */
.result-badge {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--chart-after-label);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .case-card {
    max-width: 100%;
    height: auto;
    min-height: 260px;
  }
  .result-chart-inner {
    padding: 30px 15px 30px;
  }
  .result-bars-row {
    gap: 40px;
  }
  .result-bar {
    width: 90px;
  }
  .result-badge {
    right: 8px;
    top: 8px;
    width: 64px;
    height: 64px;
    font-size: 11px;
  }
}

/* FAQ セクション
----------------------------------- */
.faq-section {
  width: 90%;
  max-width: 900px;
  margin: 60px auto;
  font-family: "Noto Sans JP", sans-serif;
}
.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
}
.faq-item {
  display: flex;
  align-items: flex-start;
  background: #f5f5f5;
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.faq-q,
.faq-a {
  font-weight: 700;
  font-size: 18px;
  width: 40px;
}
.faq-text {
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer {
  background: #ffffff;
  border-left: 4px solid #2b6cb0;
}

/* ===========================
   SERVICEシステムページ：縦配列レイアウト
   =========================== */
.service-intro .feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-intro .feature-item {
  width: 100%;
}
.problem-section .problem-blocks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-section .problem-item {
  width: 100%;
}

/* =========================================
   画像エリアデザイン（MAILINKサービスページ）
   ========================================= */
.feature-item {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.feature-item h4,
.feature-item p {
    width: 60%;
}
.feature-img {
    width: 35%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 3px solid #e0e0e0;
}
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 課題（problem-item）の画像位置 */
.problem-item {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}
.problem-item h4,
.problem-item ul {
    width: 60%;
}
.problem-img {
    width: 35%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    border: 3px solid #e0e0e0;
}
.problem-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スマホ対応（サービス・課題画像ブロック） */
@media screen and (max-width: 768px) {
    .feature-item,
    .problem-item {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }
    .feature-item h4,
    .feature-item p,
    .problem-item h4,
    .problem-item ul {
        width: 100%;
    }
    .feature-img,
    .problem-img {
        width: 100%;
        max-width: none;
        aspect-ratio: 1 / 1;
    }
}


/* PREMIUM（おすすめ）だけ色を変える */
.price-plan--recommended {
  transform: translateY(-6px);
  border-width: 2px;
  border-color: var(--accent-color);
  background: #fff8ec;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* バッジ */
.price-plan--recommended .price-plan-badge {
  background: var(--accent-color);
  color: #ffffff;
}

/* PREMIUMの主要文字（小含む）すべて統一 */
.price-plan--recommended .price-plan-name,
.price-plan--recommended .price-plan-tagline,
.price-plan--recommended .price-plan-price span,
.price-plan--recommended .price-plan-price small,
.price-plan--recommended .price-plan-unit {
  color: var(--accent-color);
  font-weight: 700;
}

/* 見出しの下線をオレンジに */
.price-plan--recommended .price-plan-name {
  border-bottom: 3px solid var(--accent-color);
  padding-bottom: 2px;
}

/* リストの色と太さもオレンジに */
.price-plan--recommended .price-plan-list li {
  color: var(--accent-color);
  font-weight: 700;
}

/* PREMIUM 内のリストの頭揃え */
.price-plan--recommended .price-plan-list {
  padding-left: 1.2em; /* 全体を少し右へ寄せる */
}

.price-plan--recommended .price-plan-list li {
  position: relative;
  padding-left: 0.8em; /* テキストの左余白を調整 */
  list-style: none;    /* デフォルトの「・」を消す */
}

/* 独自の「・」を統一位置に配置 */
.price-plan--recommended .price-plan-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.15em;
  font-size: 1em;
  color: var(--accent-color);
  font-weight: 900; /* 鮮明にする */
}
