# 時刻形式

{% hint style="success" %}
すべての時間フォーマット（単位、時間間隔、ラップタイム、倍時間単位）は、互いに自由に変換できます。
{% endhint %}

### 一般的な時間単位

| 名前     | 記号     | 定義         |
| ------ | ------ | ---------- |
| Second | s, sec | 時間の基本単位    |
| Minute | min    | 60秒        |
| Hour   | h, hr  | 60分        |
| Day    | day    | 24時間       |
| Week   | wk     | 7日         |
| Month  | mo     | 30.436875日 |
| Year   | yr     | 365.2425日  |

### 時間間隔 (Timespans)

時間間隔とは、複数のコンポーネント（年から秒まで）を表示する時間量のことです。

```
5.5 minutes as timespan | 5 min 30 s
4.54 hours as timespan  | 4 hours 32 minutes 24 seconds
72 days as timespan     | 10 weeks 2 days
```

時間間隔は、様々な方法で表現およびフォーマットできます。

<pre><code>3 hours 5 minutes 10 seconds             | 3 hours 5 minutes 10 seconds
<strong>3h 5m 10s    | 3 hours 5 minutes 10 seconds
</strong>
3h 5m 10s in seconds | 11,110 s
</code></pre>

### ラップタイム (Laptimes)

ラップタイムとは、HH:MM:SS.MS（時:分:秒.ミリ秒）形式の時間量で、タイマーで一般的に使用されます。

```
5.5 minutes as laptime | 00:05:30
```

ラップタイムの間には算術演算ができます。

```
03:04:05 + 01:02:03 | 04:06:08
00:12:05 − 00:04:09 | 00:07:56
```

{% hint style="info" %}
ラップタイムには2つのコロンを含める必要があります。これにより、Soulverが時計の時間と区別できます。

例えば、1.5秒のラップタイムを指定するには、00:00:01.5を使用します。
{% endhint %}

ラップタイムと時間間隔の間で変換できます。

```
03:04:05 as timespan                   | 3 hours 4 minutes 5 seconds
3 hours 4 minutes 5 seconds as laptime | 03:04:05
```

### 倍時間単位 (Double Time Units)

```
12.5 minutes in minutes and seconds | 12 min 30 s
1.4 weeks in hours and minutes      | 235 hours 12 min
4.5 weeks in days and hours         | 31 days 12 hours
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://documentation.soulver.app/ja/rifarensu/time/timespans-and-laptimes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
