/**
 * OpenWeatherMap Icon Font
 * 
 * このファイルは、OpenWeatherMapの天気アイコンフォントを使用するためのCSSです。
 * 実際のフォントファイルは、OpenWeatherMapの公式サイトからダウンロードして
 * 同じディレクトリに配置してください。
 * 
 * ダウンロード先: https://erikflowers.github.io/weather-icons/
 */

/* フォントファイルが存在しない場合は、CDNから読み込むか、テキスト表示にフォールバック */
/* 実際のフォントファイルを使用する場合は、以下のコメントを解除してください */
/*
@font-face {
  font-family: 'weathericons';
  src: url('../fonts/weathericons-regular-webfont.eot');
  src: url('../fonts/weathericons-regular-webfont.eot?#iefix') format('embedded-opentype'),
       url('../fonts/weathericons-regular-webfont.woff') format('woff'),
       url('../fonts/weathericons-regular-webfont.ttf') format('truetype'),
       url('../fonts/weathericons-regular-webfont.svg#weathericons-regular-webfont') format('svg');
  font-weight: normal;
  font-style: normal;
}
*/

/* CDNから読み込む場合（代替案） */
@import url('https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.12/css/weather-icons.min.css');

.owf {
  display: inline-block;
  font-family: 'weathericons';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* サイズクラス */
.owf-1x {
  font-size: 1em;
}

.owf-2x {
  font-size: 2em;
}

.owf-3x {
  font-size: 3em;
}

.owf-4x {
  font-size: 4em;
}

.owf-5x {
  font-size: 5em;
}

/* 天気アイコン（基本的なアイコンのみ定義） */
.owf-800:before { content: "\f00d"; } /* 晴れ */
.owf-801:before { content: "\f002"; } /* 晴れ時々曇り */
.owf-802:before { content: "\f013"; } /* 曇り */
.owf-803:before { content: "\f013"; } /* 曇り */
.owf-804:before { content: "\f013"; } /* 曇り */
.owf-500:before { content: "\f008"; } /* 雨 */
.owf-501:before { content: "\f008"; } /* 雨 */
.owf-502:before { content: "\f008"; } /* 強い雨 */
.owf-503:before { content: "\f008"; } /* 強い雨 */
.owf-504:before { content: "\f008"; } /* 強い雨 */
.owf-200:before { content: "\f01e"; } /* 雷雨 */
.owf-201:before { content: "\f01e"; } /* 雷雨 */
.owf-202:before { content: "\f01e"; } /* 強い雷雨 */
.owf-300:before { content: "\f009"; } /* 小雨 */
.owf-301:before { content: "\f009"; } /* 小雨 */
.owf-302:before { content: "\f009"; } /* 小雨 */
.owf-600:before { content: "\f00a"; } /* 雪 */
.owf-601:before { content: "\f00a"; } /* 雪 */
.owf-602:before { content: "\f00a"; } /* 強い雪 */
.owf-701:before { content: "\f014"; } /* 霧 */
.owf-711:before { content: "\f062"; } /* 煙 */
.owf-721:before { content: "\f014"; } /* もや */
.owf-731:before { content: "\f063"; } /* 砂塵 */
.owf-741:before { content: "\f014"; } /* 霧 */
.owf-751:before { content: "\f063"; } /* 砂 */
.owf-761:before { content: "\f063"; } /* ほこり */
.owf-762:before { content: "\f063"; } /* 火山灰 */
.owf-771:before { content: "\f050"; } /* スコール */
.owf-781:before { content: "\f056"; } /* 竜巻 */
.owf-900:before { content: "\f050"; } /* 不明 */

/* 注意: 上記のアイコンコードは基本的なものです。
   実際のフォントファイルを使用する場合は、公式のアイコンコードを参照してください。
   https://erikflowers.github.io/weather-icons/ */

