stub アモーティゼーション計算機 – Securities.io
Connect with us

アモーティゼーション計算機: ローン支払いを時間の経過とともに理解する

大規模な購入 — 住宅、自動車、または事業資産 — は通常、ローンの取得を意味します。この アモーティゼーション計算機 は、各支払いを元金と利息に分割して、月ごとにどこに金が行っているかを見せることができます。

1) 計算機の機能

このツールは、完全なアモーティゼーションスケジュールを作成します。支払いは通常各期間ごとに等しくなりますが、混合は時間の経過とともに変化します: 初期の支払いは利息が多く含まれています; 後者の支払いは元金をより多く減らします。ローンが完全なアモーティゼーション期間よりも短い支払い期間を含む場合、ツールはもちろん、最後に発生する バルーン支払い も表示します。

2) 入力

次の入力を入力または調整して、ローンをモデル化します。

入力 説明
モーゲージ/ローン金額 借り入れる予定の総元金。
頭金 ローンの残りを財務する前に支払われる初期金額または割合。
利率 (APR) 期間利息を計算するために使用される年間利率。
アモーティゼーション期間 ローンがアモーティゼーションされる総年数。
支払い期間 バルーン支払いが発生するまでの年数 (アモーティゼーション期間よりも短い場合)。
支払い頻度 支払いを行う頻度 (例: 月次、隔週) — ウィジェットによってサポートされるもの。
追加支払い (任意) 期間を短縮し、利息を削減するための追加の元金支払い。

3) しくみ (式/論理)

標準の固定支払い式は:

M = P * r * (1 + r)^n / ((1 + r)^n - 1)

  • P = 頭金後のローン元金
  • r = 期間利率 (例: 月次の場合、APR/12)
  • n = 総支払い回数
  • M = 期間支払い (元金 + 利息)

各期間: 利息 = 残高 * r, 元金 = M - 利息, 新しい残高 = 残高 - 元金。支払い期間がアモーティゼーション期間よりも前に終了する場合、残りの残高は バルーン支払い として表示されます。

4) 出力

詳細を入力すると、計算機は次の出力を表示します:

出力 意味
頭金 (金額) 初期に支払われる正確な金額。
月次支払い金額 各期間に支払われる通常の支払い (元金 + 利息)。
月次支払い総数 支払い期間中に行われる支払い回数。
年間支払い総額 年間支払われる金額 — 予算や税金のために役立ちます。
バルーン支払い 支払い期間の終了時に発生する一括支払い (アモーティゼーション期間が長い場合)。
期間終了時の総支払い金額 モデル化された期間中に支払われる総金額 (利息を含む)。
総利息支払い モデル化された期間中に支払われる総利息。

5) 実践的な使用例

  • モーゲージ計画: 目標の月次コストに到達するために、条件、金利、頭金を比較します。
  • リファイナンス分析: 折り返し時点と利息節約を確認します。
  • 追加支払い戦略: 一括支払いまたは定期的な追加元金をテストします。
  • バルーンリスクチェック: 支払い期間の終了時に必要な一括支払いを理解します。
  • 予算: 年間の支出とキャッシュフロー需要をマッピングします。

6) FAQ

この計算機はモーゲージと自動車ローンの両方に機能しますか?
はい — どの固定期間のアモーティゼーションローン (モーゲージ、自動車、個人) もサポートされます。
追加支払いを追加できますか?
はい。期間を短縮し、総利息を削減するために、一括または定期的な追加元金を追加します。
アモーティゼーションと利息のみの違いは何ですか?
アモーティゼーション支払いは各期間で元金を減らします。利息のみの支払いはまず利息をカバーし、後に元金が発生します。
どのくらいの頻度で再計算する必要がありますか?
条件が変更されるたびに — リファイナンス、金利の変更、または追加支払い。

計算機を試す

/* スクロール可能なテーブル */
.scroll-table { overflow-x:auto; -webkit-overflow-scrolling:touch; margin-bottom:1rem; }
.scroll-table table { width:100%; border-collapse:collapse; min-width:600px; }
.scroll-table th, .scroll-table td { padding:8px 6px; border-bottom:1px solid #eee; text-align:left; }

/* 統一されたアコーディオンスタイル — 左矢印、なし +/- */
.calc-wrap details {
margin:10px 0; padding:8px 10px; border:1px solid #eee;
border-radius:8px; background:#fafafa; overflow:hidden;
transition:background 0.25s ease, box-shadow 0.25s ease;
}
.calc-wrap details[open] {
background:#f6f6f6; box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
.calc-wrap summary {
cursor:pointer; position:relative; font-weight:600;
list-style:none; user-select:none; padding-left:18px; /* room for chevron */
}
.calc-wrap summary::-webkit-details-marker, .calc-wrap summary::marker { display:none; }
/* 左矢印はボーダーで構築 (WP-safe) */
.calc-wrap summary::before {
content:””; position:absolute; left:2px; top:0.6em; width:0; height:0;
border-left:6px solid #777; border-top:6px solid transparent; border-bottom:6px solid transparent;
transform:rotate(0deg); transition:transform 0.25s ease;
}
.calc-wrap details[open] > summary::before { transform:rotate(90deg); }
/* スムーズな開閉 */
.calc-wrap details > *:not(summary) {
opacity:0; max-height:0; overflow:hidden; transition:all 0.35s ease;
}
.calc-wrap details[open] > *:not(summary) { opacity:1; max-height:500px; margin-top:8px; }

@media (max-width:600px) {
.calc-cta { width:100%; text-align:center; }
}

{
“@context”: “https://schema.org”,
“@graph”: [
{
“@type”: “Article”,
“headline”: “アモーティゼーション計算機: ローン支払いを時間の経過とともに理解する”,
“description”: “アモーティゼーション計算機の使用方法に関するステップバイステップガイド: 入力、式、出力、使用例、FAQ。”,
“mainEntityOfPage”: { “@type”: “WebPage”, “@id”: “#amortization-calculator-guide” },
“about”: [
{ “@type”:”Thing”,”name”:”アモーティゼーション” },
{ “@type”:”Thing”,”name”:”モーゲージ計算機” },
{ “@type”:”Thing”,”name”:”ローン返済” },
{ “@type”:”Thing”,”name”:”利息計算” }
],
“articleSection”: [“計算機の機能”,”入力”,”しくみ”,”出力”,”使用例”,”FAQ”]
},
{
“@type”: “FAQPage”,
“mainEntity”: [
{
“@type”: “Question”,
“name”: “この計算機はモーゲージと自動車ローンの両方に機能しますか?”,
“acceptedAnswer”: { “@type”: “Answer”, “text”: “はい — どの固定期間のアモーティゼーションローン (モーゲージ、自動車、個人) もサポートされます。” }
},
{
“@type”: “Question”,
“name”: “追加支払いを追加できますか?”,
“acceptedAnswer”: { “@type”: “Answer”, “text”: “はい。期間を短縮し、総利息を削減するために、一括または定期的な追加元金を追加します。” }
},
{
“@type”: “Question”,
“name”: “アモーティゼーションと利息のみの違いは何ですか?”,
“acceptedAnswer”: { “@type”: “Answer”, “text”: “アモーティゼーション支払いは各期間で元金を減らします。利息のみの支払いはまず利息をカバーし、後に元金が発生します。” }
},
{
“@type”: “Question”,
“name”: “どのくらいの頻度で再計算する必要がありますか?”,
“acceptedAnswer”: { “@type”: “Answer”, “text”: “条件が変更されるたびに — リファイナンス、金利の変更、または追加支払い。” }
}
]
}
]
}

Advertiser Disclosure: Securities.io is committed to rigorous editorial standards to provide our readers with accurate reviews and ratings. We may receive compensation when you click on links to products we reviewed. ESMA: CFDs are complex instruments and come with a high risk of losing money rapidly due to leverage. Between 74-89% of retail investor accounts lose money when trading CFDs. You should consider whether you understand how CFDs work and whether you can afford to take the high risk of losing your money. Investment advice disclaimer: The information contained on this website is provided for educational purposes, and does not constitute investment advice. Trading Risk Disclaimer: There is a very high degree of risk involved in trading securities. Trading in any type of financial product including forex, CFDs, stocks, and cryptocurrencies. This risk is higher with Cryptocurrencies due to markets being decentralized and non-regulated. You should be aware that you may lose a significant portion of your portfolio. Securities.io is not a registered broker, analyst, or investment advisor.