<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ツール アーカイブ | RE.REILLE</title>
	<atom:link href="https://rereille.com/tag/%E3%83%84%E3%83%BC%E3%83%AB/feed/" rel="self" type="application/rss+xml" />
	<link>https://rereille.com/tag/ツール/</link>
	<description>Real Estate Investment Learning Lab for Experts</description>
	<lastBuildDate>Mon, 09 Feb 2026 03:59:12 +0000</lastBuildDate>
	<language>ja</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://rereille.com/wp-content/uploads/2025/10/cropped-Ball-1-32x32.png</url>
	<title>ツール アーカイブ | RE.REILLE</title>
	<link>https://rereille.com/tag/ツール/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>専有面積の計算ツール｜㎡→坪・専有単価を一瞬で算出</title>
		<link>https://rereille.com/senyu-calculator/</link>
					<comments>https://rereille.com/senyu-calculator/#respond</comments>
		
		<dc:creator><![CDATA[bataille]]></dc:creator>
		<pubDate>Thu, 22 Jan 2026 11:52:14 +0000</pubDate>
				<category><![CDATA[不動産査定]]></category>
		<category><![CDATA[ツール]]></category>
		<category><![CDATA[専有単価]]></category>
		<category><![CDATA[専有面積]]></category>
		<category><![CDATA[計算]]></category>
		<guid isPermaLink="false">https://rereille.com/?p=502</guid>

					<description><![CDATA[<p>専有面積の計算ツール 専有面積 計算ツール 専有面積 計算ツール 専有面積（㎡） 坪：- 価格（円） 専有単価：- ㎡単価：- ※ 1㎡ = 0.3025坪で計算 「専有単価とは何か」について詳しく知りたい方は下記ページ [&#8230;]</p>
<p>投稿 <a href="https://rereille.com/senyu-calculator/">専有面積の計算ツール｜㎡→坪・専有単価を一瞬で算出</a> は <a href="https://rereille.com">RE.REILLE</a> に最初に表示されました。</p>
]]></description>
										<content:encoded><![CDATA[
<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">専有面積の計算ツール</h2>



<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>専有面積 計算ツール</title>
  <style>
    .area-tool {
      font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    }
    .area-tool .box {
      max-width: 420px;
      margin: 0 auto;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    h1 {
      font-size: 18px;
      margin-bottom: 16px;
    }
    label {
      display: block;
      font-size: 14px;
      margin-top: 12px;
    }
    input {
      width: 100%;
      padding: 10px;
      font-size: 16px;
      margin-top: 6px;
      border-radius: 8px;
      border: 1px solid #ccc;
    }
    .result {
      margin-top: 16px;
      font-size: 16px;
      font-weight: bold;
    }
    .note {
      margin-top: 12px;
      font-size: 12px;
      color: #666;
    }
  </style>
</head>
<body>
  <div class="area-tool">
    <div class="box">
      <h1>専有面積 計算ツール</h1>

      <label>専有面積（㎡）</label>
      <input type="number" id="sqm" placeholder="例：55.32" step="0.01" />

      <div class="result" id="tsuboResult">坪：-</div>

      <label>価格（円）</label>
      <input type="text" id="price" placeholder="例：45000000" />

      <div class="result" id="unitResult">専有単価：-</div>
      <div class="result" id="sqmUnitResult" style="font-size:12px;color:#888;">㎡単価：-</div>

      <div class="note">※ 1㎡ = 0.3025坪で計算</div>
    </div>
  </div>

  <script>
    const sqmInput = document.getElementById('sqm');
    const priceInput = document.getElementById('price');
    const tsuboResult = document.getElementById('tsuboResult');
    const unitResult = document.getElementById('unitResult');
    const sqmUnitResult = document.getElementById('sqmUnitResult');

    function calculate() {
      const sqm = parseFloat(sqmInput.value);

      const normalizedPrice = priceInput.value
        .replace(/[０-９]/g, s => String.fromCharCode(s.charCodeAt(0) - 0xFEE0))
        .replace(/,/g, '');

      const price = parseFloat(normalizedPrice);

      if (!isNaN(sqm) && sqm > 0) {
        const tsubo = sqm * 0.3025;
        tsuboResult.textContent = `＝${tsubo.toFixed(2)}坪`;

        if (!isNaN(price) && price > 0) {
          unitResult.textContent =
            `専有単価：${Math.round(price / tsubo).toLocaleString()} 円`;
          sqmUnitResult.textContent =
            `㎡単価：${Math.round(price / sqm).toLocaleString()} 円`;
        } else {
          unitResult.textContent = '専有単価：-';
          sqmUnitResult.textContent = '㎡単価：-';
        }
      } else {
        tsuboResult.textContent = '坪：-';
        unitResult.textContent = '専有単価：-';
        sqmUnitResult.textContent = '㎡単価：-';
      }
    }

    sqmInput.addEventListener('input', calculate);

    // ★ 自動カンマなし（入力はそのまま）
    priceInput.addEventListener('input', () => {
      priceInput.value = priceInput.value
        .replace(/[０-９]/g, s => String.fromCharCode(s.charCodeAt(0) - 0xFEE0))
        .replace(/[^0-9,]/g, '');

      calculate();
    });
  </script>
</body>
</html>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<p>「専有単価とは何か」について詳しく知りたい方は下記ページをご参照ください。</p>



<figure class="wp-block-embed is-type-wp-embed is-provider-re-reille wp-block-embed-re-reille"><div class="wp-block-embed__wrapper">
			<div class="blog-card">
				<div class="blog-card-body-outer">
					<div class="blog-card-body">
													<h5 class="blog-card-title">
								<a href="https://rereille.com/senyutanka/">不動産の専有単価とは？計算からプロだけの「読み方」まで解説</a>
							</h5>
																			<p class="blog-card-text">
								不動産価値の算定においては、様々な指標を用いて価格を決定します。 中でも不動産業者が売買において一番に注目するのは、&quot;利回りと専有単価&quot;と言っても過言ではありませ…							</p>
												<div class="blog-card-site-title">
							<a href="https://rereille.com">
																	<img decoding="async" loading="lazy" src="https://rereille.com/wp-content/uploads/2025/10/cropped-Ball-1-32x32.png" width="16" height="16" alt="" >
																RE.REILLE							</a>
						</div>
					</div>
				</div>
									<div class="blog-card-image-outer">
						<a href="https://rereille.com/senyutanka/" class="blog-card-image-frame">
							<img decoding="async" class="blog-card-image-src" src="https://rereille.com/wp-content/uploads/2025/11/andrew-neel-cckf4TsHAuw-unsplash-1024x683.jpg" alt="">
						</a>
					</div>
							</div>

			
</div></figure>
<p>投稿 <a href="https://rereille.com/senyu-calculator/">専有面積の計算ツール｜㎡→坪・専有単価を一瞬で算出</a> は <a href="https://rereille.com">RE.REILLE</a> に最初に表示されました。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://rereille.com/senyu-calculator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
