:root {
  --color-link-default: #1176d4;
  --color-link-hover: #1b7097;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.7;
}
body {
  background-color: #e6d8c5;
  /* height: 100vh; */
  font-family: "Roboto", "Zen Kaku Gothic Antique", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  /* font-weight: 700; */
}
a:not([class]) {
  color: var(--color-link-default);
  text-decoration: underline;
  transition: 0.4s;
  &:hover {
    color: var(--color-link-hover);
    text-decoration-thickness: 2px;
  }
}

/*  */
.weather_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  width: 100%;
  margin-inline: auto;
  padding: 0px 8px;
  max-width: 600px;
  margin: 0px auto;
}
.weather_block_inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.weather_block_today {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 8px;
  background-color: #e6e3d9;
  border-radius: 16px;
  width: 100%;
}
.weather_block_todayTitle {
}
.weather_block_todayDescription {
  font-size: 16px;
}
.weather_block_todayContent {
  display: flex;
  align-items: center;
  gap: 16px;
}
.weather_block_todayIcon {
  font-size: 120px;
  line-height: 1;
}
.weather_block_todayTemperature {
  font-weight: bold;
  line-height: 1;
}
.weather_block_todayTemperatureNumber {
  font-size: 56px;
  letter-spacing: -1px;
}
.weather_block_todayTemperaturePer {
  font-size: 32px;
}

/*  */
.weather_block_days {
  display: flex;
  padding: 0px 0px;
  gap: 12px;
  width: 100%;
}
.weather_block_daysBlock {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.weather_block_daysTitle {
  color: #555555;
  font-size: 14px;
  font-weight: bold;
}
.weather_block_daysContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 8px;
  background-color: #e6e3d9;
  border-radius: 16px;
}
.weather_block_daysWeather {
  display: flex;
  align-items: center;
  gap: 4px;
}
.weather_block_daysWeatherIcon {
  font-size: 72px;
  line-height: 1;
}
.weather_block_daysWeatherDesc {
  font-size: 0px;
}
.weather_block_daysSub {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1;
}
.weather_block_daysMax {
  color: #b44e4b;
  font-weight: bold;
}
.weather_block_daysMin {
  color: #4376d4;
  font-weight: bold;
}
.weather_block_daysNumber {
  font-size: 18px;
  font-weight: bold;
}

/*  */
.weather_block_source {
  font-size: 14px;
  color: #555555;
  padding: 0px 8px;
  text-align: center;
}

/*  */
.weather_block_recommend {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 16px 20px;
  background: #e6e3d9;
  border-left: 4px solid #95515e;
}
.weather_block_recommendTitle {
  margin: 0px;
  color: #555555;
  font-size: 14px;
}
.weather_block_recommendLinkContainer {
  list-style-type: disc;
  padding-left: 24px;
}
.weather_block_recommendLink {
  font-size: 16px;
}
