/* CSS Document */



/* PCのみ設定  768 以上*/
@media screen and (min-width:768px)
{

#message
{
	background-image: url(../images/about02.png);
	background-repeat: no-repeat;
	background-position: left center;
	min-height: 38vw;
	-ms-background-size: 38vw auto;
	-o-background-size: 38vw auto;
	-webkit-background-size: 38vw auto;
	-moz-background-size: 38vw auto;
	background-size: 38vw auto;
	margin-bottom: 60px;
}

#message .text
{
	width: 60%;
	margin-right: 0px;
	margin-left: auto;
}

#message .text h2,
#message .text h2 small
{
	text-align: justify;
}







#message_r
{
	background-image: url(../images/about03.png);
	background-repeat: no-repeat;
	background-position: right center;
	min-height: 38vw;
	-ms-background-size: 38vw auto;
	-o-background-size: 38vw auto;
	-webkit-background-size:38vw auto;
	-moz-background-size: 38vw auto;
	background-size: 38vw auto;
	margin-bottom: 60px;
}

#message_r .text
{
	width: 60%;
	margin-right: auto;
	margin-left: 0px;
}

#message_r .text h2,
#message_r .text h2 small
{
	text-align: justify;
}





}

/* タブレットレイアウト : 768 px 〜 959 px*/
@media screen and (max-width:1199px)




}

/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{




}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{

  #message {
    background-image: url(../images/about02.png);
    background-repeat: no-repeat;
    background-position: center bottom; /* 左下ではなく中央下に変更 */
    background-size: 90vw auto;
    margin-bottom: 60px;
    padding-bottom: 94vw; /* 画像分のスペース確保 */
  }

  #message .text {
    width: auto;
  }

  #message_r {
    background-image: url(../images/about03.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 90vw auto;
    margin-bottom: 60px;
    padding-bottom: 94vw;
  }

  #message_r .text {
    width: auto;
  }



}