@charset "utf-8";
/* CSS Document */

.faqArea{
	width: 90%; /* スマホなどのための余裕 */
    max-width: 750px; /* PCでのFAQの最大横幅。好みの長さに調整してください */
    margin-top: 0px; /* 上の画像との隙間 */
	margin-bottom: 20px;
	}
/* -------------------------------------------------------------------------- */
/*FAQ*/
/* -------------------------------------------------------------------------- */
/*「Q」コンテンツ*/
.faqArea .tab {
    width: 100%;
    min-height: 70px;
    margin: 0 0 10px 0;
    border: 1px solid #4D4D4D;
    background-color: #D4F4FF;
    border-radius: 3px;
    position: relative;
    display: flex;
    align-items: center;

    /* 左右に余白を設定 (上 右 下 左) */
    /* 右側もアイコンの大きさに合わせて 60px ほど確保します */
    padding: 10px 45px 10px 60px !important; 

    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
	
	font-size: 1.6em;
	line-height: 1.2;

	text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
    -ms-text-align: justify;
}

/* 左側のアイコン */
.faqArea .tab:before {
    content: "";
    position: absolute;
    left: 15px; 
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 28px;
    background-image: url('../../images/sec08-faq-icon01.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 右側のアイコン */  
.faqArea .tab:after {
    content:"\f078";
    font-family: "fontawesome";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transition: 0.2s;
    font-weight: normal;
    }
.faqArea .tab .selected:after {
    transform: translateY(-50%) rotate(180deg);
    transition: 0.2s;
    }

.faqArea .tab:last-child{margin:0;}



/*「A」コンテンツ*/
.faqArea div.faqBox{
    margin: -10px 0 10px 0;
    padding: 10px 20px 10px 60px !important; 
    background: #ffffff;
    border-left: 1px solid #4D4D4D;
    border-right: 1px solid #4D4D4D;
    border-bottom: 1px solid #4D4D4D;
    border-radius: 0 0 3px 3px;
    display: none;
    position: relative; /* 擬似要素の基準点 */
    box-sizing: border-box;
	
	font-size: 1.6em!important;
	line-height: 1.4;
	
    text-align: justify;
    text-justify: inter-ideograph;
    -ms-text-justify: inter-ideograph;
    -ms-text-align: justify;
    }
    
/* 回答エリア用のアイコン設置 */
.faqArea div.faqBox:before {
    content: "";
    position: absolute;
    left: 15px; /* アイコンの左端からの位置 */
    top: 20px;  /* 回答が長い場合を考慮し、中央ではなく上端から固定 */
    width: 24px; 
    height: 28px;
    background-image: url('../../images/sec08-faq-icon02.png'); /* 必要に応じてアイコン画像名を変更してください */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.faqArea div.faqBox p:last-of-type {border-bottom: 0px !important;}   
.faqArea  div.faqBox:last-child{margin: -10px 0 0 0;}






