@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 およびそれ以下. */
.signature{
    font-size: 17px;
}
.signature span{
    font-size: 19px;
}
.staffContents{
    background: #f2f2f2;
}
.itemList{
    display: flex;
    justify-content: center;
}
.itemList img{
    width: 100%;
}
.itemList .item{
    display: inline-block;
    box-sizing: border-box;
    width: calc(98% / 2) ;
    margin: 5px 0.5%;
    position: relative;
}
.itemList .item .textBox{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}
.itemList .item .textBox p{
    color: #fff;
    text-align: left;
    width: 80%;
    margin: 0 auto;
}
.itemList .item .textBox .name{
    font-size: 25px;
    font-weight: bold;
}
.itemList .item .textBox .yomi{
    font-size: 12px;
}
.companyInfo{
    width: 100%;
    margin: 0 auto;
}
.companyInfo p{
    text-align: left;
}
.companyInfo .name{
    font-size: 19px;
    font-weight: bold;
}
.companyTable{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
	line-height: 190%;
    border-collapse: separate;
    border-spacing: 4px;
}
.companyTable th{
    background: #f2f2f2;
    font-weight: normal;
    width: 6em;
    padding: 0.25em 0.5em;
    text-align: justify;
    text-align-last:justify;
    text-justify: inter-ideograph; /* Edge */
}
.linkButton{
    background: #d1b79d;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

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

@media only print {
.itemList .item{
    width: calc(96% / 4) ;
    margin: 0 0.5%;
}
.companyInfo{
    width: 63%;
}
.itemList .item .textBox p{
    font-size: clamp(12px, 1.2vw, 15px) ;
}
.itemList .item .textBox .name{
    font-size: clamp(16px, 2.1vw, 27px);
}
.itemList .item .textBox .yomi{
    font-size: clamp(10px, 1.0vw, 13px);
}
}