@charset "utf-8";
/*------------------------------
		all
------------------------------*/
.heading {
	width: 100%;
	margin: 0 0 28px 0;
	font-size: 26px;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	color: #005193;
	line-height: 1.3;
	text-align: center;
	padding: 60px 0 0;
}
.contents_tx {
		width: 800px;
		margin: 0 auto 28px;
}
h3 {
		margin: 10px 0;
		text-align: center;
}
h3.blue::before {
		content: '';
		display: inline-block;
		width: 18px;
		height: 18px;
		background: url(../img/service/1x/bg_blue.png) no-repeat center/contain;
		margin: -10px -10px 0 0;
		vertical-align: middle;
}
h3.yellow::before {
		background: url(../img/service/1x/bg_yellow.png) no-repeat center/contain;
}
/*------------------------------
		mainContents
------------------------------*/
.inner_faq {
	max-width: 1000px;
	padding: 60px 0;
	margin: 0 auto;
}

.faq_wrap h2.h2_ttl span {
		width: 175px;
}
.faq_wrap h2.h2_ttl + p {
	margin-bottom: 30px;
	text-align: center;
}
.faq_tab input {
	display: none;
}
.faq_tab .tab_item {
	display: flex;
	position: relative;
	float: left;
	align-items: center;
	justify-content: center;
	width: calc((100% - 60px) / 3);
	height: 60px;
	margin-right: 20px;
	line-height: 20px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #333;
	background-color: #f1f4f4;
	border-radius: 4px;
	box-shadow: 2px 2px 3px #b2b2b2;
	cursor: pointer;
}

.faq_tab .tab_item:nth-of-type(3n) {
	margin-right: 0;
}

.faq_tab .tab_item:nth-of-type(n+4) {
	margin-top: 40px;
}
.faq_tab .tab_item > span {
	padding-right: 15px;
}
.faq_tab .tab_item span::before {
	position: absolute;
	font-family: 'Material Symbols Outlined';
	content: "\e7cd";
	font-size: 25px;
	right: 15px;
	top: 20px;
	color: #fff;
	margin: auto;
	font-variation-settings: 
	'FILL' 0,
	'wght' 400,
	'GRAD' 100,
	'opsz' 24;
}
.faq_tab .tab_item span::after {
	position: absolute;
	font-family: 'Material Symbols Outlined';
	content: "\e7cd";
	font-size: 25px;
	right: 15px;
	top: 20px;
	color: #5cb3d1;
	margin: auto;
	font-variation-settings: 
	'FILL' 0,
	'wght' 400,
	'GRAD' 100,
	'opsz' 24;
}

.faq_tab input:checked + .tab_item span::before {
  color: #5cb3d1;  /* チェックされた時のアイコン色 */
}

.faq_tab input:checked + .tab_item span::after {
  color: #fff;  /* チェックされた時のアイコン色 */
}

.tab_content {
	display: none;
	clear: both;
	overflow: hidden;
}
input[name="tab-item"] {
	display: none;
}
#all:checked ~ #all_content, #web:checked ~ #web_content, #youtube:checked ~ #youtube_content, #owned:checked ~ #owned_content, #ad:checked ~ #ad_content, #print:checked ~ #print_content {
	display: block;
}
.faq_tab input:checked + .tab_item {
	color: #fff;
	background-color: #5cb3d1;
}
.faq_list {
	width: 1000px;
	padding-bottom: 15px;
}
.faq_list li .question {
	position: relative;
	padding: 20px 20px 20px 60px;
	line-height: 1;
	cursor: pointer;
	border-radius: 10px;
	color: #fff;
	background-color: #005193;
	margin: 10px 0;
}
.faq_list li .question::before {
	position: absolute;
	content: "";
	top: 20px;
	bottom: 0;
	left: 30px;
	width: 16px;
	height: 15px;
	background: url("../img/faq/tx_question.png")no-repeat center left /16px;
}
.faq_list li .question::after {
	position: absolute;
	font-family: 'Material Icons';
	content: "\e147";
	top: 15px;
	right: 10px;
	line-height: 1;
	color: #fff;
	font-size: 25px;
	font-weight: 200;
}
.faq_list li .question.open::after {
	content: "\e644";
}
.faq_list li .answer {
	position: relative;
	margin-top: 10px;
	line-height: 2;
	margin-bottom: 30px;
	padding: 20px 20px 20px 60px;
	color: #005193;
	background-color: #F8F6F5;
	border-radius: 10px;
}
.faq_list li .answer::before {
	position: absolute;
	content: "";
	top: 27px;
	bottom: 0;
	left: 30px;
	width: 16px;
	height: 15px;
	background: url("../img/faq/tx_answer.png")no-repeat center left /16px;
}


@media screen and (max-width: 960px) {

	/* all */
	.inner {
		padding: 30px 0;
	}
	.contents_tx {
		width: calc(100% - 30px);
	}
	.card_box img {
		width: 100%;
		height: auto;
	}
	.card_box_inner {
		width: calc((100% - 20px) / 3);
	}
	.card_box02_inner {
		width: calc((100% - 20px) / 2);
	}
	/* リード文 */
	.line {
		width: 90%;
	}
	.lead_tx {
		width: 465px;
	}
	.lead_img {
		top: 80%;
	}
	/* よくある質問 */
	
	.inner_faq {
		width: calc(100% - 30px);
		padding: 30px 0;
	}

	.faq_tab .tab_item {
		display: block;
		width: 100%;
		height: 60px;
		margin: 10px 0 0 0;
		padding: 20px 0 0 15px;
	}
	.faq_tab .tab_item span {
		font-weight: bold;
	}
	.faq_list {
		width: 100%;
		padding-bottom: 15px;
	}
	.faq_list li .question {
		padding: 20px 40px 20px 40px;
	}
	.faq_list li .question::before {
		top: 20px;
		left: 14px;
	}
	.faq_tab .tab_item:nth-of-type(n + 4) {
		margin-top: 10px;
	}
	.faq_list li .question::after {
		font-size: 20px;
		top: 18px;
	}

}
@media screen and (max-width: 768px) {
	/* all */
	h1 a {
			width: 100%;
	}
	.card_box {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			padding: 0 0 40px 0;
	}
	.card_box_inner {
			width: calc((100% - 20px) / 2);
	}
	.card_box > div:nth-child(2) {
			top: 0;
	}
	.card_box > div:nth-child(3) {
			top: 0;
			margin: 20px 0 0 0;
	}
	/* リード文 */
	.lead_tx {
			width: 100%;
	}
	.lead_img {
			top: 274%;
	}
	.lead_tx_p {
			padding: 0 0 15px 0;
	}
	
}
	
@media screen and (max-width: 480px) {
	.partner_img {
			width: 100%;
			gap: 15px;
	}
	.partner_img p img {
			height: auto;
	}
	.card_box_inner {
			width: 100%;
	}
	/* リード文 */
	.heading {
			font-size: 24px;
	}
	.lead_tx {
			width: 100%;
	}
	.lead_img {
			top: 330%;
	}
	.lead_img img {
			width: 100%;
			height: 300px;
			object-fit: cover;
	}
}