@charset "utf-8";
/* CSS Document */

/*/////////////////////////////////////////////////////////
file name: greeting.css
description: ごあいさつページ専用スタイルシート

1.レイアウト
2.スマホ
3.スマホ横

///////////////////////////////////////////////////////// */


/* ===========  1.レイアウト  =========== */
.boxLeft {
	width: 250px;
	float: left;
}

.boxRight {
	width: 670px;
	float: left;
}

.boxRight p {
	font-size: 114.3%;
	line-height: 1.9;
	padding-bottom: 15px;
}

.boxRight p.name {
	font-size: 157.1%;
	font-family: 'Hiragino Mincho ProN', serif;
	font-weight: bold;
	margin-top: 20px;
	text-align: right;
	line-height: 1.9;
}

/* ===========  2.599px以下スマホ縦横 =========== */
@media screen and (max-width: 599px) {

.boxLeft {
	width: 100%;
	float:  none;
	text-align: center;
}

.boxRight {
	width: 100%;
	float:  none;
	margin-top: 20px;
}

.boxRight p {
	font-size: 100%;
	line-height: 1.7;
}

.boxRight p.name {
	font-size: 142.9%;
	font-family: 'Hiragino Mincho ProN', serif;
	font-weight: bold;
	margin-top: 20px;
	text-align: right;
	line-height: 1.7;
}


}


/* ===========  3.スマホ横 =========== */
@media only screen and (max-device-width:480px) and (orientation:landscape) {




}