@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 およびそれ以下. */
.slideBlock{
    background-image: linear-gradient(to right, #B8E0DF, rgba(255,255,255,0.2)), url("images/visiting01.png");
}
.content ul {
	list-style-type: none;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 160%;
	padding: 0 0 0 1.5em;
	text-indent: -1.5em;
}
.actionList{
    width: 100%;
    text-align: center;
}
.actionList .item{
    display: inline-block;
    width: calc(98% / 2);
    margin: 2% 0.5%;
    vertical-align: top;
    border: solid 1px #000;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
}
.actionList .item .imageBox img{
    width: 100%;
}
.actionList .item .textBox{
    background-color: #B8E0DF;
    padding: 5px 0 ;
}
.actionList .item p{
    text-align: center;
    font-size: 12px;
    margin: 0.4em 0;
    font-weight: bold;
}
h2 {
	color: #45bfb6;
	background: none;
	padding: 0.7em 0;
}
.goalBox > div{
    display: inline-block;
    box-sizing: border-box;
    vertical-align: middle;
}
.goalBox > div:nth-child(1){
    width: 44%;
    margin: 0 1% 0 0;
}
.goalBox > div:nth-child(2){
    width: 10%;
    margin: 0 1% 0 0;
}
.goalBox > div:nth-child(3){
    width: 44%;
}
.forSP{
    display: inline;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only screen and (min-width: 481px) {
.actionList .item{
    width: calc(96% / 4);
}
.forSP{
    display: none;
}
}

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

@media only screen and (min-width: 769px) {
}