@charset "UTF-8";

/* --- mainImg ---*/

#topImage {
  display: flex;
  background: #fff3e7;
  margin: 0 0 1rem;
}
  #topImage .inner {
    width:1200px;
    margin: 0 auto;
    padding: 0 0 0.5rem;
  }
    #topImage a img {
      width:100%;
      height:auto;
    }

/* --------- welcome --------- */

#welcomeArea {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0 0 2rem;
}
  #welcomeArea img {
    width: 100%;
    margin-bottom: 1rem;
  } 



/* ------------ Whatsnew List ------------ */

.WhatsnewList {
	width: 100%;
	height: auto;
	margin: 0 auto 3rem;
	padding: 0 0;
/*  border: 1px solid red;*/
}
    .WhatsnewList h2 {
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1.2;
      padding: 0.8rem;
      margin: 0 auto 1.5rem;
      text-align: center;
      color: #fff;
      background: #ffcc99;
      border-radius: 3px;
    }
  .WhatsnewList ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 0 0 2rem;
  }
    .WhatsnewList ul li {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: 100%;
      padding: 1rem 0;
      list-style: none;
      position: relative;
    }
      .WhatsnewList .newsTitle a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #b6712d;
      } 
        .WhatsnewList .newest {
          position: absolute;
          left: -2.2rem;
          center: 0;
        }
          .WhatsnewList .newest span {
            display: block;
            font-size: 0.6rem;
            font-weight: 400;
            width: 1.8rem;
            height: 1.8rem;
            line-height: 1.8rem;
            background-color: #FF7664;
            border-radius: 50%;
            color: #fff;
            text-align: center;   
          }

        .WhatsnewList .newsDate {
          font-size: 0.8rem;
          margin-right: 1rem;
          color: #aaa;
        }






