@charset "utf-8";
/* 標準可変メディア
   メモ : 可変メディアでは、HTML からメディアの高さおよび幅の属性を削除する必要がある
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 では最大幅がサポートされていないため、デフォルトで幅 100% に設定される */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver 可変グリッドプロパティ
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	以下からヒントを入手 : Ethan Marcotte 氏の「レスポンシブ Web デザイン」 
	http://www.alistapart.com/articles/responsive-web-design
	
	および Joni Korpi 氏の「Golden Grid System」
	http://goldengridsystem.com/ 
*/

/* モバイルレイアウト : 480 px およびそれ以下. */
.slideShow{
	width: 100%;
}
.bxslider img{
	max-width: 100%;
}
.introItem{
	clear:both;
	margin-bottom: 40px;
	overflow:hidden;
}
.introItem > img{
	float: none;
	margin-right: 20px;
	margin-bottom: 20px;
}
.whatsNewTable{
	width: 100%;
}
.whatsNewTable .item{
  width: 100% ;
  box-sizing: border-box;
  margin: 5px 0;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
.whatsNewTable .item a{
  position: absolute;
  top:0;
  left: 0;
  width: 100%;
  height: 100%;
}
.whatsNewTable .item a:hover{
  background: rgba(255,255,255,0.4) ;
}
.whatsNewTable .imageBox img{
  width: 100%!important;
  height: auto!important;
}
.whatsNewTable .dateCol{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	width: 16em;
	font-size: 15px;
}
.whatsNewTable .titleCol{
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 15px;
}

.content1 ul{
	font-size: 15px;
	line-height: 180%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding: 0 0 0 1em;
}
.content1 ul li{
    margin: 2em 0;
}
.greetingBlock {
	margin-bottom: 40px;
	overflow: hidden;
}
.greetingBlock div{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}
.greetingBlock img{
	float: none;
	margin-right: 0;
	margin-bottom: 20px;
    width: 60%;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.introItem > img{
	float: left;
}
.diaryItem {
    display: inline-block;
    width:22%;
    margin-left: 1%;
    margin-right: 1%;
}
.greetingBlock img{
    float: left;
    margin-right: 20px;
    max-width: 215px ;
    width: auto;
}
.whatsNewTable .item{
  width: calc(98% / 2) ;
  margin: 5px 0.5%;
}
}

/* デスクトップレイアウト : 769 px ～最大 1232 px。モバイルレイアウトとタブレットレイアウトからスタイルを継承。 */

@media only screen and (min-width: 769px) {
.greetingBlock div{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
}
.greetingBlock img{
    width: 100%;
}
.whatsNewTable .item{
  width: calc(96% / 4) ;
}
}
