@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 およびそれ以下. */
.itemBlock, .pointBlock{
    text-align: center;
}
.itemBlock .item{
    display: block;
    width: 100%;
    margin: 0%;
    vertical-align: top;
}
.itemBlock .item table{
    font-size: 12px;
    text-align: left;
}
.itemBlock .item h3{
    font-size: 18px;
    text-align: left;
    border-bottom-style:dashed;
    border-bottom-width: 1px;
    border-bottom-color: #706F70;
    font-weight: normal;
}
.itemBlock .item p{
    margin: 0;
}
.itemBlock .item table{
    width: 100%;
}
.itemBlock .item th{
    font-size: 14px;
    font-weight: normal;
    color: #7F7F7F;
    text-align: left;
    line-height: 175%;
}
.itemBlock .item .noteCell{
    font-size: 11px;
    line-height: 150%;
}
.itemBlock .item td{
    font-size: 14px;
    font-weight: normal;
    color: #7F7F7F;
    text-align: right;
    line-height: 175%;
}
.content hr{
    border-style: none none dashed none ;
    border-width: 1px;
    border-color: #706F70;
}
.introBox h2{
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    text-align: left;
    color: #C3AC65;
}
.introBox h2 p{
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    line-height: 175%;
    color: #221814;
}
.introBox p{
    font-size: 11px;
    color: #7F7F7F;
}
.introBox > div{
    display: inline-block;
    width: 100%;
}
.introBox .imageBox{
    float: none;
    text-align: center;
}
.introBox .imageBox img{
}
.pointBlock{
    clear: both;
}
.pointBlock .item h3{
    font-size: 18px;
    text-align: left;
    font-weight: normal;
    color: #221814;
}
.pointBlock .item p{
    font-size: 12px;
    text-align: left;
    font-family: 'Noto Serif JP', serif;
    color: #221714;
}
.pointBlock{
    text-align: left;
}
.pointBlock .point2Box > div{
    display: inline-block;
    vertical-align: top;
}
.pointBlock .point2Box > div:nth-child(1){
    width: 100%;
    float: none;
    text-align: center;
}
.pointBlock .point4Box > div{
    display: inline-block;
}
.pointBlock .point4Box > div:nth-child(1){
    width: 100%;
    float: none;
    text-align: center;
}

/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

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

@media only print {
.itemBlock .item, .pointBlock .item{
    display: inline-block;
    width: 47%;
    margin: 1%;
    vertical-align: top;
}
.introBox .imageBox{
    float: right;
    width:250px;
}
.introBox .textBox{
    width: calc(100% - 250px) ;
}
.pointBlock .point2Box > div:nth-child(1){
    width: 90px;
    float: right;
}
.pointBlock .point2Box > div:nth-child(2){
    width: calc(100% - 100px) ;
}
.pointBlock .point4Box > div:nth-child(1){
    width: 190px;
    float: right;
}
.pointBlock .point4Box > div:nth-child(2){
    width: calc(100% - 190px) ;
}
}