# タイムゾーン変換

都市名（人口の多い都市）または標準のタイムゾーン略語（GMTオフセットもサポート）を使用して、タイムゾーン間で変換できます。

```
6pm Sydney in Chicago | 1:00 am
2am PST to GMT        | 10:00 am
3pm GMT+8 to Paris    | 8:00 am
```

都市名ではなく、空港コードを使用することもできます。

```
7:30am LAX to Japan | 11:30 pm
```

{% hint style="info" %}
国名を使用してタイムゾーン変換を行うこともできます。複数のタイムゾーンにまたがる国の場合、その国の首都のタイムゾーンが使用されます。
{% endhint %}

### 都市の現在時刻

`time in timezone` または `timezone time` を使用して、特定の場所の現在時刻を取得します。

```
time in Paris    | 6:30 pm
Tokyo time       | 2:30 am
time in Thailand | Tomorrow at 12:30 am
```

特定のタイムゾーンの日付のみに興味がある場合は、それもリクエストできます。

```
date in Vancouver | 15 February
```

### 都市間の時差

場所やタイムゾーン間の時差を調べるには、以下のようにします。

```
time difference between Seattle and Moscow | 10 hours
difference between PDT & AEST              | 17 hours
```

### 米国の短いタイムゾーン略語

Soulver は、米国について以下の短いタイムゾーン略語をサポートしています。

| 略語   | タイムゾーン                 |
| ---- | ---------------------- |
| EST  | Eastern Standard Time  |
| EDT  | Eastern Daylight Time  |
| CST  | Central Standard Time  |
| CDT  | Central Daylight Time  |
| MST  | Mountain Standard Time |
| MDT  | Mountain Daylight Time |
| PST  | Pacific Standard Time  |
| PDT  | Pacific Daylight Time  |
| AKST | Alaska Standard Time   |
| AKDT | Alaska Daylight Time   |
| HST  | Hawaii Standard Time   |

また、「eastern time」、「pacific time」、「mountain time」、「central time」のような名前付きの米国タイムゾーンを使用することもできます。

{% hint style="info" %}
タイムゾーン略語は大文字・小文字を区別しないため、「PST」と「pst」は同じように機能します。
{% endhint %}


---

# 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/time-zones-and-cities.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.
