@charset "UTF-8";
/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ 600px
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
/*====================================================================================
共通
====================================================================================*/
/*------------------------------------------
フォント
------------------------------------------*/
@media screen and (min-width: 600px) {
  h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, dt, dd, li, fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure {
    font-size: 16px;
  }
}

/*------------------------------------------
小さい文字
------------------------------------------*/
@media screen and (min-width: 600px) {
  .small {
    font-size: 14px;
  }
}

/*------------------------------------------
タイトル
------------------------------------------*/
@media screen and (min-width: 600px) {
  .title-block01 {
    font-size: 20px;
  }
}

/*====================================================================================
box-message
====================================================================================*/
.box-message {
  position: relative;
}

.box-message:after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(#CCC, #999);
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 1;
}

/*====================================================================================
コンテンツ
====================================================================================*/
.wrp {
  width: 100%;
  position: relative;
}

.box-weather-area, .box-information, .box-message > * {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/*====================================================================================
エリアタブ
====================================================================================*/
@media screen and (min-width: 600px) {
  .area-tab__item {
    width: 49.5%;
  }
  .area-tab__item:first-child {
    margin-right: .5%;
  }
  .area-tab__item:not(:first-child) {
    margin-left: .5%;
  }
  .btn-setting {
    z-index: 2;
  }
}

/*====================================================================================
今日/明日の天気
====================================================================================*/
@media screen and (min-width: 600px) {
  .weather-2day__title {
    font-size: 18px;
  }
  .weather-2day__title .small {
    font-size: 14px;
  }
  .weather-2day .info br {
    display: none;
  }
  .weather-2day .info *[class^="icon"] {
    padding-left: 22px;
  }
}

/*====================================================================================
1時間天気
====================================================================================*/
@media screen and (min-width: 600px) {
  .table-weather1hour .temp, .table-weather1hour .prec, .table-weather1hour .wind {
    height: 34px;
    box-sizing: border-box;
  }
  .table-weather1hour__title {
    width: 65px;
  }
  .table-weather1hour__title .day {
    height: 65px;
    line-height: 65px;
  }
  .table-weather1hour__title .weather {
    height: 32px;
    line-height: 32px;
  }
  .table-weather1hour__content {
    padding-left: 66px;
  }
  .table-weather1hour__content .table-weather1hour__item > * {
    font-size: 14px;
  }
  .table-weather1hour__content .day {
    height: 40px;
    padding: 5px 0;
  }
  .table-weather1hour__content .time {
    height: 25px;
    padding: 3px 0;
  }
}

/*====================================================================================
今の天気
====================================================================================*/
@media screen and (min-width: 600px) {
  .area-wNow {
    width: 100%;
    display: table;
    table-layout: fixed;
  }
  .area-wNow > * {
    display: table-cell;
    vertical-align: middle;
  }
  .area-wNow > *:not(:last-child) {
    margin-bottom: 0;
  }
  .area-wNow .btnArea__item {
    width: 100%;
    display: block;
  }
  .area-wNow .btnArea__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .box-now {
    width: 360px;
    padding: 0 10px;
  }
  .box-now .title {
    font-weight: 300;
    font-size: 16px;
  }
  .box-now .content {
    font-size: 22px;
  }
  .box-now .content .unit {
    font-size: 14px;
  }
  .box-now__item:not(:last-child) {
    margin-right: 20px;
  }
}

/*====================================================================================
雲の様子
====================================================================================*/
@media screen and (min-width: 600px) {
  .box-cloud {
    width: 100%;
    display: table;
    table-layout: fixed;
    margin: 0;
  }
  .box-cloud .box-vis {
    width: 50%;
    padding: 0 10px;
    display: table-cell;
    padding-top: 30px;
  }
  .box-cloud .box-vis:not(:last-child) {
    border-right: 1px solid #d3d3d3;
    margin-bottom: 0;
  }
  .box-cloud .box-cap p {
    line-height: 1.6em;
  }
  .box-cloud .box-cap b {
    font-size: 16px;
    line-height: 1em;
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
  }
  .box-cloud .box-cap .btn-dtl {
    margin-top: 15px;
  }
}

/*▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼
▼ 1050px
▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼△▼*/
@media screen and (min-width: 1050px) {
  .wrp {
    width: 100%;
    max-width: 1150px;
    display: table;
    table-layout: fixed;
    margin-left: auto;
    margin-right: auto;
  }
  .wrp > * {
    width: 100%;
    display: table-cell;
    vertical-align: top;
  }
  .wrp .box-information {
    width: 370px;
    background-color: #fff;
    padding-top: 25px;
  }
  .topPage .wrp .box-information {
    padding-top: 70px;
  }
}

@media screen and (min-width: 1050px) {
  .box-message {
    width: 100%;
  }
}

@media screen and (min-width: 1050px) {
  .box-weather-recommend .box-wrp #recommend_list .recommend_list_item {
    width: 100%;
    display: block;
  }
  .box-weather-recommend .box-wrp #recommend_list .recommend_list_item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #d3d3d3;
  }
}
