/* (SP) */

.sp_br::after {
white-space:pre;
content:"\A";
}

.intro_q1 {
font-size:40px;
font-weight:bold;
}

.intro_q1_list {
}

.intro_q1_list dt,
.intro_q1_list ul {
width:100%;
background-color:#f66;
padding-left:6px;
text-align:left;
margin-top:0;
}

.intro_q1_list dt,
.intro_q1_list li {
list-style-type:none;
background-color:#66c;
border-bottom:2px solid #f00;
font-weight:bold;
font-size:20px;
padding:20px 10px 0 0;
text-indent:-1em;
margin-left:1.3em;
display:inline-block;
vertical-align:top;
}

.intro_q1_list dt::before,
.intro_q1_list li::before {
font-family: "Font Awesome 5 Free";
font-weight: 400;
content:"\f14a";
color:#f30;
display: inline-block;
width:1em;
text-indent:-0.3em;
}

.intro_q1_list dd {
text-align:left;
}


.marker {
display:inline;
background:linear-gradient(transparent 60%,#cfb 60%,#cfb 90%,transparent 0%);
}

.marker.yellow {
background:linear-gradient(transparent 60%,#fd9 60%,#fd9 90%,transparent 0%);
}

.marker.pink {
background:linear-gradient(transparent 60%,#f6c 60%,#f6c 90%,transparent 0%);
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
  margin:0 3% 3% 3%;
    padding: 3%;
}

/*========= レイアウトのためのCSS ===============*/


h2{
    text-align: center;
    margin: 30px 0;
    font-size:1rem;
}

/* (TB) */
@media screen and (min-width: 600px) {
/* タブレット用レイアウト 600px以上の範囲に収めるデザインはこの中に記述 */

.sp_br::after {
display:none;
}


.intro_q1_list li {
width:calc(50% - 2em);
}

}




/* (PC) */
@media screen and (min-width: 1024px) {
/* PC用レイアウト 1,024px以上の範囲に収めるデザインはこの中に記述 */

.intro_q1 {
font-size:50px;
}

.intro_q1_list {
}

.intro_q1_list > li {
font-size:32px;
}

ul.horizontal-list {
	overflow-x: auto;
	white-space: nowrap;
}
li.item {
	display: inline-block;
	width: 100%;
	margin: 16px;
	font-size: 48px;
	color: #fff;
	background-color: #ff5a5f;
}	


.table3col {
display:inline-block;
width:100%;
background-color:#ccf;
}

}
