@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 およびそれ以下. */
.faqIndex{
    text-align: center!important;
} 
.faqIndex a{
    display: inline-block;
    vertical-align: middle;
    background-color: #F6921D;
    border-radius: 50%;
    width: 200px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 23px;
    text-decoration: none;
    color:#fff;
    margin: 1%;
    padding: 3em 0;
    height: calc(200px - 6em);
}
.faqIndex a:hover{
    opacity: 0.7;
}
h2{
    color: #F7921E;
}
dl{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
	line-height: 180%;
    font-weight: normal;
    text-align: left;
    
}
dt{
    font-weight: bold;
    color: #28ABE1;
}
dd{
    margin-left: 1em;
    margin-bottom: 20px;
}
dd dt{
    color: #000;
}
dd dd{
    margin-bottom: 30px;
}
dd ul{
    list-style-type: none;
    padding: 0 0 0 1em;
}
dd ul li{
    text-indent: -1em;
}
/* タブレットレイアウト : 481 px ～ 768 px。モバイルレイアウトからスタイルを継承。 */

@media only print {
}

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

@media only print {
}