@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 およびそれ以下. */
h2{
    text-align: left;
    border:solid 1px #EEEEEE;
    padding: 0.2em 0.2em;
    color:#999999;
    margin: 2em 0 1em 0;
}
h2 span{
    background: #005BAC;
    width: 0.25em!important;
    padding: 0 0;
}
.tableContent table {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 13px;
	line-height: 175%;
	border-spacing: 3px;
	width: 100%;
	border-left: solid 5px #009ae7;
    box-sizing: border-box;
    margin: 0 0 50px 0;
}
.tableContent table th{
    text-align: left;
    vertical-align: top;
    /*text-align-last: justify;*/
    background: #009ae7;
    padding: 0 0.5em;
    color: #fff;
    width: 6em;
    border-bottom: solid 1px #555;
}
.tableContent table td{
    padding: 0 0.5em;
    background: #fff;
    border-bottom: solid 1px #555;
}
.tableContent table tr:last-child th, .tableContent table tr:last-child td{
    border-bottom: none;
}
.tableContent table td ul{
    margin: 0 0;
    padding: 0 0 0 1em;
}
.iTrunkContent .intro .imageBox{
    float: right;
}
.iTrunkContent .intro ul{
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 13px;
	line-height: 175%;
    padding: 0 0 0 1.5em;
}
.iTrunkContent2 .itemList > div{
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
}
.iTrunkContent2 .itemList .imageBox{
    width: 100% ;
    margin: 0 0 20px 0;
    text-align: center;
}
.iTrunkContent2 .itemList .textBox{
    width: 100% ;
}
.iTrunkContent2 .itemList .textBox table{
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
}
.iTrunkContent2 .itemList .textBox table thead th{
    background: #005bac;
    color: #fff;
    padding: 0.5em 0;
}
.iTrunkContent2 .itemList .textBox table tbody td{
    background: #f0f0f0;
    padding: 1em 1em;
}
.iTrunkContent2 .itemList .textBox table tbody tr{
    padding: 10px 10px;
}
.iTrunkContent3 dl{
    font-family: "Zen Maru Gothic", sans-serif;
}
.iTrunkContent3 dt{
    font-size: 15px;
    font-weight: bold;
    margin: 0 0;
}
.iTrunkContent3 dd{
    margin: 0 0 2em 0;
}
.iTrunkContent3 dd p{
    font-size: 15px;
    margin: 0 0;
}
.iTrunkContent3 img{
    vertical-align: bottom;
}
.photoBox{
    text-align: center;
}
.photoBox img{
    margin: 10px 10px;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

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

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

@media only screen and (min-width: 768px) {
h2{
    font-size: clamp(20px, 1.8vw, 23px) ;
}
.tableContent table {
	font-size: 16px;
	border-spacing: 4px;
	border-left: solid 10px #009ae7;
    box-sizing: border-box;
    margin: 0 0 50px 0;
}
.greetingContent{
    width: 100% ;
}
.iTrunkContent .intro ul{
    font-size: 15px;
}
.iTrunkContent2 .itemList .imageBox{
    width: 20% ;
    margin: 0 2% 0 0;
}
.iTrunkContent2 .itemList .textBox{
    width: 78% ;
}
}