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

main.subpage_illustration .subpage_main_box {
    max-width: 840px;
    background-image: url("../images/main_bg_voice.png");
    background-size: 280px 275px;
    min-height: 328px;
}

main.subpage .subpage_main_box h2{
	margin-bottom: 24px;
}

/*==================================================
タブ css
===================================*/
.tab {
  display: flex;
}
.tab.tab-top {
    margin: 0 0 56px;
}
.tab.tab-bottom {
    margin: 56px 0 0;
}
.tablist{
	width: calc(100% / 3);
	font-size: var(--fz115);
	text-decoration: none;
	color: var(--black);
	font-weight: 500;
 	text-align:center;
	padding: 10px;
	display: inline-block;
	background-color: var(--bg-gray);
	cursor: pointer;
}
.tab-top .tablist{
	border-bottom: solid 1px var(--gray);
}
.tab-bottom .tablist{
	border-top: solid 1px var(--gray);
}
.tablist.active {
	color: var(--white);
	background-color: var(--blue);
	border-bottom:none;
}

.content-container .tab_main {
  display: none;
  transition-duration: 0.3s;
}
.tab_main.is_show {
  display: block;
}

/*==================================================
end タブ css
===================================*/

#voice_detail{
	margin-bottom: 72px;
}
#voice_detail .topics_title {
    min-height: 128px;
}
#voice_detail .topics_text+.topics_title{
	margin-top: 56px;
}

h3.voice_q{
	position: relative;
	padding-top: 20px;
	padding-left: 54px;
	font-size: var(--fz135-110);
	letter-spacing: 0.075em;
	margin-bottom: 20px;
	line-height: 1.6;
}
h3.voice_q:before{
	position: absolute;
	content: 'Q.';
	font-size: 2.2rem;
	font-family: zeitung-micro, sans-serif;
	font-weight: 300;
	font-style: italic;
	top: 0;
	left:0;
	display: block;
}

.voice_a{}
.voice_a ul{
	
}

.voice_a li{
	position: relative;
	padding-left: 32px;
	margin-bottom: 16px;
}
.voice_a li:last-of-type{
	margin-bottom: 0;
}
.voice_a li:before{
	position: absolute;
	content: '';
	top: 3px;
	left:0;
	display: block;
	width: 20px;
	height: 20px;
	
	background-size: contain;
	background-repeat: no-repeat;
}
.voice_a li:nth-of-type(2n-1):before{
	background-image: url("../images/icon_speech_bubble_blue.svg");
}
.voice_a li:nth-of-type(2n):before{
	background-image: url("../images/icon_speech_bubble_white.svg");
}


hr {
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto 72px;
    border: none;
    border-top: 1px dashed var(--gray);
}

#info-link{
	
}
#info-link .flex-box{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
#info-link .link_text{
	margin-top: 16px;
}
#info-link .flex-box-r img{
	padding-left: 40px;
}

@media print, screen and (max-width: 767px) {
	#info-link .flex-box{
		flex-direction: column;
	}
	#info-link .flex-box-r img{
		padding-left: 0px;
		margin-top: 32px;
	}
	hr {
		width: 90%;
	}
}