/*
greeting.htmlのコンテンツ設定用css
*/


/* ↓↓↓ コンテンツ設定CSS ↓↓↓ */
.greeting-box{
	width: 850px;
	margin: auto;
}

.greeting-box .headline {
	width: 815px;
	height: 75px;
	padding: 0 0 0 35px;
	color: #ffffff;
	font-size: 2em;
	letter-spacing: .1em;
	display: table-cell;
	vertical-align: middle;
	background-image: url(../images/ctn-header1-bg.png);
	background-repeat: no-repeat;
}

.greeting-box .text-box {
	width: 850px;
	margin: 25px 0 0 0;
	background-color: #ffffff;
}

.greeting-box .text-box h2 {
	width: 815px;
	height: 66px;
	padding: 0 0 0 35px;
	font-size: 1.5em;
	color: #004fb3;
	display: table-cell;
	vertical-align: middle;
	letter-spacing: .1em;
	background-image: url(../images/ctn-header2-bg.png);
	background-repeat: no-repeat;
}

.greeting-box .text-box h2 p {
	margin: 0 4% 0 0;
	font-size: .6em;
	float: right;
}

.greeting-box .text-box h2 p span {
	font-size: 1.4em;
}

.greeting-box .text-box .text {
	width: 70%;
	padding: 4%;
	line-height: 1.8em;
	letter-spacing: .2em;
	float: left;
}

.greeting-box .text-box .text2 {
	width: 92%;
	padding: 4%;
	line-height: 1.8em;
	letter-spacing: .2em;
	float: left;
}

.greeting-box .text-box figure {
	width: 150px;
	margin: 4% 4% 0 0;
	float: right;
}

/* ↑↑↑ コンテンツ設定CSS ↑↑↑ */

/* 英語ページ時の体裁の変更 */
.en .greeting-box .text-box h2 {
	letter-spacing: 0em;
}

.en .greeting-box .text-box h2 p {
	margin: 1% 4% 0 0;
}

.en .greeting-box .text-box .text{
	letter-spacing: 0em;
}

/* ↓↓↓ 角丸5px ↓↓↓ */
.greeting-box .headline,
.greeting-box .text-box {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
}

/* ↓↓↓ ドロップシャドウ ↓↓↓ */
.greeting-box .headline,
.greeting-box .text-box {
	-moz-box-shadow: 2px 2px 2px rgba(22,27,96,0.3);
	-webkit-box-shadow: 2px 2px 2px rgba(22,27,96,0.3);
	-o-box-shadow: 2px 2px 2px rgba(22,27,96,0.3);
	-ms-box-shadow: 2px 2px 2px rgba(22,27,96,0.3);
	box-shadow: 2px 2px 2px rgba(22,27,96,0.3);
	
	/* IE6-8	*/
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#ffededed, endcolorstr=#ffcccccc, gradienttype=0)) progid:DXImageTransform.Microsoft.Shadow(color=#161b60, direction=135, strength=2);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startcolorstr=#ffededed, endcolorstr=#ffcccccc, gradienttype=0)) progid:DXImageTransform.Microsoft.Shadow(color=#161b60, direction=135, strength=2)";
	zoom: 1;
}


/* ↓↓↓ clearfix ↓↓↓ */
.greeting-box .text-box:after
{
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}