@charset "utf-8";
/* layout.css */

/* ------------------------------------
 * 1. 一般TOPなどのレイアウト構造 non-member
 * body要素やwrapper要素を使って、ヘッダー、メイン、フッターの配置を定義
 * ------------------------------------ */
/*  html, body {
	font-family: 'Noto Sans JP', sans-serif, Arial, sans-serif; サイト全体のフォント 
}*/

/* ページ全体のラッパー（ヘッダー、メイン、フッターを含む） */
.site-wrapper {
	display: flex;
	flex-direction: column; /* 要素を縦に並べる */
	min-height: 100vh; /* 最小高さをビューポートの高さに設定 */
}

/* メインコンテンツ領域が残りのスペースを占めるように */
.main-content {
	flex: 1; /* 残りのスペースを全て占める */
	/* background-color: #ffffff;  メインコンテンツ領域の背景色（必要であれば） */
	/* padding: 40px 0; /* メインコンテンツ領域の上下パディング（必要であれば） */
}

/* ------------------------------------
 * 2. コンテンツの幅と中央寄せ
 * サイト内のコンテンツブロックの最大幅を定義し、中央に配置
 * ------------------------------------ */

#non-member .container {
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px; /* 左右のパディング（レスポンシブ対応） */
}

#non-member .midscale-container{
	max-width: 900px; /* 最大幅を設定 */
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0 10px; /* 左右のパディング（レスポンシブ対応） */
}

/* ------------------------------------
 * 3. セクションの基本スタイル
 * 各セクションに共通して適用されるスタイル
 * ------------------------------------ */
#non-member .first-section {
	padding: 0 0 60px;
}

#non-member .section {
	padding: 60px 0; /* セクションの上下パディング */
}

/* セクションタイトル */
#non-member .section-title {/*h2を想定*/
	font-size: 2em; /* 既存の110%より大きな値を指定 */
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 10px;
	color: #2c3e50;
	/* 既存のborderなども上書きする場合はここで改めて指定 */
	border-bottom: none; /* 既存のborderを上書き消去 */
	border-left: none; /* 既存のborderを上書き消去 */
	padding: 0; /* 既存のpaddingを上書き消去 */
	margin: 20px 0 20px 0; /* 既存のmarginを上書き消去 */
}

#non-member .section h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 3px;
	background-color: #3498db;
	margin: 10px auto 0;
}

#non-member .section-subtitle-card {/*h3を想定*/
	font-size: 1.4em;
	color: #34495e;
	padding-bottom: 10px;
	border-bottom: 2px solid #ddd; /* 強調のための下線 */
	text-align: left; /* 見出しは中央寄せ */
	border-bottom: none; /* 既存のborderを上書き消去 */
	border-left: none; /* 既存のborderを上書き消去 */
	padding: 0; /* 既存のpaddingを上書き消去 */
	margin: 20px 0 20px 0; /* 既存のmarginを上書き消去 */
}

#non-member .section-underline-subtitle{/*h3を想定*/
	font-size: 1.3em;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e0e0e0;
}

/* セクション導入テキスト */
#non-member .section-intro-text {
	font-size: 1.1em;
	color: #555;
	line-height: 1.7;
	margin-bottom: 50px;
	max-width: 800px; /* 読みやすいテキスト幅 */
}

/* 中央寄せにする場合 */
#non-member .align-center {
	text-align: center; /* テキスト自体を中央寄せ */
	margin-left: auto;	 /* ブロック要素を中央寄せ */
	margin-right: auto;	 /* ブロック要素を中央寄せ */
	padding: 0;
}

/* 左寄せにする場合 */
#non-member .align-left {
	text-align: left;	 /* テキスト自体を左寄せ */
	margin-left: 0;		 /* ブロック要素を左寄せ */
	margin-right: auto;	 /* ブロック要素を左寄せ */
	padding: 0;
}

/* 右寄せにする場合 (必要であれば) */
#non-member .align-right {
	text-align: right;	 /* テキスト自体を右寄せ */
	margin-left: auto;	 /* ブロック要素を右寄せ */
	margin-right: 0;	 /* ブロック要素を右寄せ */
	padding: 0;
}

#non-member p.normal-txt{
	margin: 0 1em 0 0;
    padding: 0 0 1em 0;
	color: #333;
}
/* セクション個別のpタグスタイル(改行スペースなし) */
#non-member p.noblankline-txt {
	font-size: 0.95em;
	color: #555;
	line-height:150%;
	margin: 0;
    padding: 0;
}

#non-member p.image-caption{
	font-size: 0.9em;
	color: #777;
	margin-top: 5px;
	text-align:center;
}

#non-member p.cta {
	font-size: 1em;
    margin-top: 50px;
	margin-bottom: 30px;
}

/* ------------------------------------
 * 4. レスポンシブ対応の基本ブレイクポイント
 * 小さい画面サイズでの調整
 * ------------------------------------ */

@media (max-width: 1200px) {
	#non-member .container,#non-member .midscale-container {
		max-width: 960px; /* 少し小さめのデスクトップ */
	}
}

@media (max-width: 992px) {
	#non-member .container,#non-member .midscale-container {
		max-width: 720px; /* タブレットサイズ */
		padding: 0 15px;
	}
	#non-member .section {
		padding: 60px 0; /* セクションのパディングを調整 */
	}
	#non-member .section-title {
		font-size: 2.2em;
		margin-bottom: 30px;
	}
	#non-member .section-intro-text {
		font-size: 1em;
		margin-bottom: 40px;
	}
}

@media (max-width: 768px) {
	#non-member .container,#non-member .midscale-container {
		max-width: 100%; /* スマホでは全幅に近く */
		padding: 0 15px;
	}
	#non-member .section {
		padding: 40px 0;
	}
	#non-member .section-title {
		font-size: 1.8em;
		margin-bottom: 25px;
	}
	#non-member .section-intro-text {
		font-size: 0.95em;
		margin-bottom: 30px;
	}
}

/* ------------------------------------
 * 5. コンポーネント
  * ------------------------------------ */
 
 /* グリッドレイアウト 
 * 複数のアイテムをグリッド状に配置するコンテナ
 * ------------------------------------ */
 #non-member .grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
	max-width: 860px;
}

/* レスポンシブ調整（2列が厳しくなる場合は1列にする） */
@media (max-width: 768px) {
    #non-member .grid-container,#non-member .grid-container-4by1line {
		grid-template-columns: 1fr; /* スマホでは1列表示 */
		gap: 20px; /* スマホでの余白調整 */
	}
}

#non-member .grid-container-4by1line {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

/* ------------------------------------
 * グリッドアイテム
 * グリッドコンテナ内の個々の要素（カード型が多い）
 * ------------------------------------ */
#non-member .grid-item-blue {
	background-color: #f0f8ff; /* アイテムの背景色 */
	padding: 20px; /* 内側の余白 */
	border-radius: 8px; /* 角の丸み */
	box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* 影 */
	transition: transform 0.3s ease; /* ホバー時のアニメーション */
	text-align: center; /* アイテム内のコンテンツ中央寄せ */
}

#non-member .grid-item-blue:hover {
	transform: translateY(-5px); /* 上に少し浮き上がるエフェクト */
}

#non-member .grid-item-mosgreen{
	background-color: #e6ffe6;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	transition: transform 0.3s ease; /* ホバー時のアニメーション */
	text-align: center;
}

#non-member .grid-item-green:hover {
	transform: translateY(-5px); /* 上に少し浮き上がるエフェクト */
}

/* ------------------------------------
 * グリッドアイテム内のテキスト要素（例: タイトル、説明文）
 * ------------------------------------ */
#non-member .grid-item-title { /* h3タグに付与することを想定 */
	font-size: 1.3em;
	margin-bottom: 15px;
	color: #34495e;
	border-bottom: none; /* 既存のborderを上書き消去 */
	border-left: none; /* 既存のborderを上書き消去 */
	padding: 0; /* 既存のpaddingを上書き消去 */
	margin: 20px 0 20px 0; /* 既存のmarginを上書き消去 */
}

#non-member .grid-item-text { /* pタグに付与することを想定 */
	font-size: 0.95em;
	color: #555;
	line-height: 1.6;
}

/* ------------------------------------
/* Flexboxレイアウト 
/* ------------------------------------*/
 /* 複数のボックスを配置するコンテナ */
#non-member .flexbox {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 20px;
}
/* ボックスのスタイル テキストのみ*/
#non-member .flexbox-item {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 25px 20px;
	flex: 0 1 450px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
/* ボックスのスタイル 画像のみ*/
#non-member .flexbox-notxtimage {
	flex: 1 1 400px; /* 最小幅400pxで、可能な限り伸びる */
    max-width: 400px; /* 最大幅を設定 */
    text-align: center; /* 画像とキャプションを中央寄せ */
    /* margin-bottom: 30px; 縦方向の余白 */
}

#non-member .flexbox-3col{
	display: flex;
    justify-content: center;
    gap: 30px; /* 前回の提案の gap に合わせる。元の20pxでもOK */
    flex-wrap: wrap;
    margin-top: 20px; /* 既存の値を維持 */
}
#non-member .flexbox-item-3col{
	border: 1px solid #e0e0e0;
	border-radius: 10px; /* 前回の提案に合わせる。元の8pxでもOK */
	padding: 30px; /* h3改行対策として20pxなどに調整可 */
	text-align: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 前回の提案に合わせる。元の0 2px 5pxでもOK */
	background-color: #ffffff; /* 背景色を追加 */
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* ホバーエフェクト */

	/* 3列表示のための幅設定 */
	flex: 1 1 calc(33.333% - 20px); /* gap が 30px の場合 */
	min-width: 280px; /* カードが小さくなりすぎないように */
	box-sizing: border-box; /* padding を幅に含める */
}
/* ------------------------------------
/* Flexboxアイテム内のテキスト要素 （例: タイトル、説明文）
/* ------------------------------------*/
#non-member .flexbox-item-title {/*h3タグに付与することを想定*/
	font-size: 1.3em;
	color: #34495e;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px dashed #ccc;
	display: inline-block;
}

#non-member .flexbox-item-title2{
	font-size: 1.5em; /* 既存の1.3emから調整。h3の改行が気になる場合、1.4emなどに調整 */
	color: #34495e; /* 前回の提案に合わせる */
	margin-bottom: 15px; /* 前回の提案に合わせる */
	padding-bottom: 8px; /* 既存の値を維持 */
	display: inline-block; /* 既存の値を維持 */
	line-height: 1.4; /* 行の高さを調整 */
}

#non-member .big-red-number {
	font-size: 3.2em;
	font-weight: bold;
	color: #e74c3c; /* アクセントカラー */
	margin-bottom: 15px;
	line-height: 1;
}

#non-member .flexbox-item-txt{
	font-size: 1em;
	line-height: 1.6;
	color: #666;
	padding: 0;
	margin: 0;
}
/* ------------------------------------
 * 汎用的なアイコン画像スタイル（例: カードやグリッドアイテム内で使用）
 * ------------------------------------ */
#non-member .icon-medium { /* 中サイズのアイコン全般 */
    width: 80px;
    height: 80px;
    margin: 0 auto 20px; /* デフォルトで中央寄せと下部余白 */
}

#non-member .icon-small { /* 小さなアイコン */
	width: 60px;
	height: 60px;
	margin: 0 auto 10px;
}

/* ------------------------------------
 * コンテンツ内の画像スタイル（幅が広めなど）
 * ------------------------------------ */
#non-member .content-image {
	max-width: 100%; /* 親要素の幅に合わせて可変 */
	height: auto;
	margin: 30px auto; /* 上下左右マージン */
	display: block; /* 中央寄せのためにブロック化 */
}

/* ------------------------------------
 * コンポーネント内部の画像スタイル
 * （例: グリッドアイテム内のアイコンは .icon-medium を継承しつつ微調整）
 * ------------------------------------ */
#non-member .grid-item-icon { /* grid-itemコンポーネント内のアイコン */
    /* .icon-medium のスタイルを継承し、必要に応じて上書き */
	width: 80px; /* 明示的にサイズを指定 */
	height: 80px;
	margin: 0 auto 20px;
    /* transition: transform 0.3s ease; */ /* 必要であればアニメーション */
}
 
 /* ------------------------------------
 * コンポーネント内部のカード
  * ------------------------------------ */
  
/* 違いのポイントをまとめるブロック */
#non-member .cardwrap {
	padding: 20px 20px 30px 20px;
	border: 1px solid #eee;
	border-radius: 8px;
	margin: 0 10px 0 10px; /* 各ポイント間の余白 */
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

#non-member .description-subtitle {
	font-size: 1.3em;
	color: #34495e;
	text-align: left;
}

/* 薄い赤カード */
#non-member .internal-red {
	background-color: #fff0f0;
	border-color: #fdd;
}
#non-member .internal-redsubtitle {
	color: #c0392b;
	border-color: #fcc;
}

/* 薄い緑カード */
#non-member .internal-green {
	background-color: #f0fff0;
	border-color: #ddf;
}
#non-member .cardwrap.internal-greensubtitle {
	color: #28a745;
	border-color: #ccf;
}

#non-member .description {
	margin: 0 10px 0 10px;
}

 /* ------------------------------------
 * コンポーネント:コンテンツラッパー
  * ------------------------------------ */
#non-member .center-flame850 {
	max-width: 850px;
	margin: 20px auto 0;
}

#non-member .center-flame900 {
	max-width: 900px; /* 幅を少し広げて、定義ブロックを並べやすくする */
	margin: 20px auto 0;
}

#non-member .blueback-flame {
	background-color: #f8fcfd; /* 軽く背景色 */
	border: 1px solid #eef;
	border-radius: 8px;
	padding: 25px 30px;
	margin-bottom: 30px; /* 下部に余白 */
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
	text-align: left;
}

#non-member .redback-flame {
	background-color: #fdf5e6;
	border-left: 5px solid #ffa07a;
	padding: 25px 30px;
	border-radius: 8px;
	margin-top: 40px;
	text-align: left;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
 /* ------------------------------------
 * コンポーネント:ul,li
  * ------------------------------------ */
#non-member .center-flame850 ul {
    list-style: none; /* デフォルトのリストスタイルを無効化 */
    padding: 0;
    margin: 0;
}

#non-member .center-flame900 ul {
    list-style: none; /* デフォルトのリストスタイルを無効化 */
    padding: 0;
    margin: 0;
}

#non-member li.arrow {
	font-size: 1.1em;
	color: #444;
	line-height: 1.8;
	margin-bottom: 15px;
	position: relative;
	padding-left: 25px; /* アイコン分のスペース */
}

#non-member li.arrow::before {
	content: '▶'; /* 矢印アイコン */
	color: #28a745; /* 強調色 */
	font-size: 0.9em;
	margin:0;
	padding: 0;
	position: absolute;
	left: 0;
	top: 0.2em; /* テキストの高さに合わせて調整 */
}

#non-member .definition-list li {
	font-size: 1em;
	color: #555;
	line-height: 1.6;
	margin-bottom: 8px;
	position: relative;
	padding-left: 25px; /* アイコン用のスペース */
}

/* 対象リストのアイコン */
#non-member .definition-list.positive li::before {
	content: '✅'; /* チェックマーク */
	position: absolute;
	left: 0;
	color: #28a745; /* 緑色 */
	font-size: 0.9em;
	top: 0.1em;
}

/* 対象外リストのアイコン */
#non-member .definition-list.negative li::before {
	content: '❌'; /* バツマーク */
	position: absolute;
	left: 0;
	color: #c0392b; /* 赤色 */
	font-size: 0.9em;
	top: 0.1em;
}

/* コンテンツ用フレーム枠 */
#non-member .center-frame{
	text-align: left;
	max-width: 860px; /* 読みやすい幅に制限 */
	margin: 0 auto 60px; /* 中央寄せと下部余白 */
}

 /* ------------------------------------
 * コンポーネント:img
  * ------------------------------------ */
#non-member .flexbox-notxtimage img {
	max-width: 100%; /* 親要素の幅に合わせて縮小 */
	height: auto; /* アスペクト比を維持 */
	border: 1px solid #eee; /* 薄いボーダー */
	border-radius: 5px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
} 

 /* ------------------------------------
 * ボタン
  * ------------------------------------ */
#non-member .btn-cta {
	display: block; /* ブロック要素にして中央寄せ */
	background-color: #28a745;
	color: white;
	max-width: 350px;
	width: 70%;
	margin: 20px auto 20px; /* 中央寄せと上部の余白 */
	padding: 12px 25px;
	border-radius: 5px;
	font-size: 1em;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

#non-member .btn-cta:hover {
	background-color: #218838;
}

/* ボタンのラッパー */
#non-member .bottom_btn_wrapper {
    text-align: center; /* ボタンを中央寄せにする */
    margin-top: 50px; /* 上部に適度な余白 */
    margin-bottom: 50px; /* 下部に適度な余白 */
}

/* ボタンのスタイル */
#non-member .back-to-top-btn {
    display: inline-block; /* インラインブロック要素として配置 */
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 120px; /* 固定幅 */
    margin: 0 auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #27acd9;
    background: #27acd9;
    color: #fff;
    transition: 0.5s;
    border-radius: 5px;
    box-sizing: content-box;
}

#non-member .back-to-top-btn:hover {
	color: #27acd9;
	background: #fff;
}

/* レスポンシブ対応の調整例 */
@media (max-width: 767px) {
	#non-member .back-to-top-btn {
	width: 80%; /* 小さい画面では幅を%にして柔軟に */
	max-width: 250px; /* 最大幅も設定 */
	padding: 1rem 2rem; /* パディングも調整 */
	box-sizing: border-box; /* borderとpaddingをwidthに含める */
	}
}

 /* ------------------------------------
 * コンポーネント: table
  * ------------------------------------ */
  /* 料金テーブル本体 */
#non-member .center-table-wrapper {
    max-width: 850px;
    margin: 0 auto 0;
    overflow: hidden;
}  

#non-member .center-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1em;
    color: #444;
}

#non-member .center-table th,
#non-member .center-table td {
    padding: 15px 20px;
    border: 1px solid #eee;
    text-align: center;
}

#non-member .center-table th {
    background-color: #f0f8ff;
    font-weight: bold;
    color: #333;
}

/* キャンペーン料金の強調スタイル */
#non-member .center-table .highlight-column {
	background-color: #ffe6b3; /* 黄色系の背景色 */
	font-weight: bold; /* 文字を太く */
	color: #e67e22; /* 強調用の文字色 */
}

#non-member .center-table tbody tr:nth-child(even) {
    background-color: #f9f9f9; /* 偶数行の背景色 */
}

#non-member .center-table tfoot td {
    background-color: #e6ffe6; /* フッター（初期費用）の背景色 */
    font-weight: bold;
    color: #28a745; /* 強調色 */
    border-top: 2px solid #28a745; /* 上部に強調ボーダー */
}
