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

.voice {
    background-color: #FFF;
    margin: 2em 10px;
	box-shadow:0px 0px 6px 3px #e5e5e5;
	-moz-box-shadow:0px 0px 6px 3px #e5e5e5;
	-webkit-box-shadow:0px 0px 6px 3px #e5e5e5;
}

.voiceIn {
	padding: 1em 2em 2em;
}

.voice h4,
.voice_heading {
	position:relative;
	margin:0 -10px 0 -10px;
	padding:10px 20px;
	background:#88ccef;
	box-shadow: 0 3px 3px 0 rgba(0,0,0,0.1);
	font-size: 130%;
	font-weight: 500;
}
.voice h4:before,
.voice_heading:before {
	content:" ";
	position:absolute;
	top:100%;
	left:0;
	width:0;
	height:0;
	border-width:0 10px 10px 0;
	border-style:solid;
	border-color:transparent;
	border-right-color:#7bb8d8;
}
.voice h4:after,
.voice_heading:after {
	content:" ";
	position:absolute;
	top:100%;
	right:0;
	width:0;
	height:0;
	border-width:10px 10px 0 0;
	border-style:solid;
	border-color:transparent;
	border-top-color:#7bb8d8;
}

.voice h4 span.voiceCat,
.voice_heading span.voiceCat {
	background: #3AA1EF;
	font-size: 70%;
	font-weight: 700;
	padding: 2px 10px;
	margin-right: 10px;
	color: #FFF;
}

.voiceData {
	margin-bottom: 1em;
	font-weight: 500;
}

.quote {
	font-size: 85%;
	color: #666;
	text-align: right;
}

.voiceTxt p {
	margin-bottom: 1em;
}

	display: grid;
	justify-content: center;
	grid-template:
		repeat(1, auto) /
		repeat(2, 1fr);
	gap: 10px 20px;
	grid-auto-flow: column;
}
.img_box3 {
	display: grid;
	justify-content: center;
	grid-template:
		repeat(1, auto) /
		repeat(3, 1fr);
	gap: 2px 2px;
	grid-auto-flow: column;
}
// リスト
.itn_nav {
	margin-top: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-justify-content    : center;
	justify-content        : center;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px 0;
	list-style: none;
	overflow: hidden;
}
.itn_nav .itn_nav_item a {
	display: block;
	padding: 3px 24px;
	position: relative;
	color: #333;
	float: left;
}
.itn_nav .itn_nav_item a:hover {
	text-decoration: none;
	opacity: .7;
}
.itn_nav .itn_nav_item a:after {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 17px;
	height: 17px;
	background: #000;
	margin-top: -5px;
	border-radius: 3px;
}
.itn_nav .itn_nav_item a:before {
	content: "";
	position: absolute;
	top: 13px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(135deg);
	margin-top: -5px;
	z-index: 33;
}
