.vibration .is-serif {
	font-family: Century, Hiragino Mincho ProN, "ヒラギノ明朝 Pro W3", "HG明朝b", MS PMincho, MS PMing, "ＭＳ Ｐ明朝", MS PMincho, serif;
}
.vibration .is-sp {
	display: none;
}
@media screen and (max-width:736px) {
	.vibration .is-sp {
		display: block;
	}
	.vibration .is-pc {
		display: none;
	}
}
/* .sec-intro */
.sec-intro{}
.sec-intro .txt{margin: 0;}
.sec-intro .txt + .txt{margin-top: 1em;}
.sec-intro .img{margin-top: 22px;}
.sec-intro .set{
	background: #F4EDDF;
	padding: 34px 50px;
	margin-top: 60px;
	text-align: center;
}
.sec-intro .set-head{
	margin: 0 0 15px;
	font-weight: bold;
	font-size: 2rem;
}
.sec-intro .set-txt{
	font-size: 1.6rem;
	line-height: 1.87;
	letter-spacing: .0em;
	margin: 0;
}
@media screen and (max-width:736px) {
	.lout-grid.vibration{
		padding-left: 10px;
		padding-right: 10px;
		box-sizing: border-box;
	}
	.sec-intro .txt{
		
	}
	.sec-intro .head{
		margin-left: 0;margin-right: 0;
	}
	.sec-intro .img{margin-top: 15px;}
	.sec-intro .set{
		padding: 25px;
		margin-top: 30px;
	}
	.sec-intro .set-head{
		margin: 0 0 15px;
	}
	.sec-intro .set-txt{
		font-size: 1.5rem;
	}
}

/* .sec-system */
.sec-system{margin-top: 65px;}
.sec-system .head{}
.sec-system .txt{margin: 0;}
.sec-system .txt + .txt{margin-top: 1em;}
.sec-system table{
	border-collapse: separate;
	border-spacing: 2px 2px;
	table-layout: fixed;
	max-width: 760px;
	margin: 54px auto 0;
}
.sec-system th{background: #ddd;font-weight: bold;width: auto;}
.sec-system th:nth-of-type(1){width: 224px;}
.sec-system td{width: auto;}
.sec-system th,
.sec-system td{border-color: #ddd;}
.sec-system thead th{}
.sec-system tbody th,
.sec-system tbody td{padding: 20px 38px;}
.sec-system .red{color: #F00;}
@media screen and (max-width:736px) {
	.sec-system{margin-top: 40px;}
	.sec-system .head{margin-bottom: 20px;}
	.sec-system table{
		display: table;
		margin-top: 20px;
	}
	.sec-system th{}
	.sec-system th:nth-of-type(1){width: 140px;}
	.sec-system th,
	.sec-system td{display: table-cell !important;}
	.sec-system tbody th,
	.sec-system tbody td{
		padding: 15px;
	}
}

/* .sec-support */
.sec-support{margin-top: 65px;}
.sec-support .set{
	display: grid;
	grid-template-columns: auto 480px;
	gap: 30px;
}
.sec-support .txtarea p{margin: 0;}
.sec-support .txtarea p + p{margin-top: 1em;}
.sec-support .note{
	text-align: right;
	margin: 5px 0 0;
	color: #646161;
}
@media screen and (max-width:736px) {
	.sec-support{margin-top: 40px;}
	.sec-support .head{margin-bottom: 20px;}
	.sec-support .set{
		display: grid;
		grid-template-columns: unset;
		grid-template-rows: auto;
		gap: 20px;
	}
	.sec-support .txtarea p{margin: 0;}
	.sec-support .txtarea p + p{margin-top: 1em;}
	.sec-support .note{
		font-size: 1.2rem;
	}
}

/* .sec-faq */
.sec-faq{margin-top: 65px;}
.sec-faq .head{margin-bottom: 0;}
.qa-item {
	border-bottom: 1px dashed #707070;
}
.qa-toggle {
	display: none;
}
.qa-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
	padding: 23px 24px;
}
.qa-answer {
	padding: 20px 24px;
}
.qa-row {
	display: flex;
	align-items: flex-start;
}
.qa-prefix {
	margin-right: 20px;
	flex-shrink: 0;
	transform: translateY(4px);
	width: 21px;height: 25px;
	display: inline-block;
	background-image: url('/wordpress/wp-content/themes/ymt_juken_orgtheme/img/housemade/traffic-vibration/ico_q.png');
	background-size: contain;
}
.qa-prefix.is-a{
	background-image: url('/wordpress/wp-content/themes/ymt_juken_orgtheme/img/housemade/traffic-vibration/ico_a.png');
}
.qa-text { margin: 0; padding-top: 5px; }

/*anime*/
.qa-answer-wrap {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease-out;
	background-color: #FFF399;
}
.qa-toggle:checked ~ .qa-answer-wrap {
	grid-template-rows: 1fr;
}
.qa-answer-inner {
	min-height: 0;
	overflow: hidden;
	position: relative;
}
.qa-answer-inner::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	border-top: 1px dashed #707070;
}

/* icon */
.qa-icon {
	position: relative;
	width: 26px;
	height: 26px;
	flex-shrink: 0;
}
.qa-icon::before, .qa-icon::after {
	content: "";
	position: absolute;
	background-color: #707070;
	top: 50%;
	left: 50%;
}
.qa-icon::before {
	width: 26px; height: 1px;
	transform: translate(-50%, -50%);
}
.qa-icon::after {
	width: 1px; height: 26px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.qa-toggle:checked + .qa-question .qa-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}
@media screen and (max-width:736px) {
	.qa-question,
	.qa-answer{
		padding: 15px 10px;
	}
	.qa-prefix{
		width: 18px;
    height: 23px;
		margin-right: 10px;
	}
	.qa-question{
		gap: 10px;
	}
	.qa-icon {
		width: 16px;
		height: 16px;
	}
	.qa-icon::before {
		width: 16px;
	}
	.qa-icon::after {
		height: 16px;
	}
}