h1{
	width: 100%;
	padding: 20px;
	background: #40a9ff;
	font-size: 32px;
	color: #fff;
	text-align: center;
	font-weight: normal;
}

.inner{
	width: 100%;
	max-width: 980px;
	margin: 40px auto;
}

/*タブ実装*/
.tab_box{
	max-width: 720px;
	margin: 0 auto;
}

.tab_box .btn_area {
	margin:0 10px;
	display: -webkit-box;
	display: flex;
}

.tab_box .tab_btn {
	width: 188px;
	padding: 8px 0;
	color: #333;
	background: #f5f7f8;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease 0s;
}

.tab_box .tab_btn + .tab_btn {
	margin-left: 8px;
}

.tab_box .tab_btn:hover {
	background-color: #dce1e4;
}

.tab_box .tab_btn.active {
	background:#07539f;
	color:#fff;
}

.tab_box .panel_area {
	border: solid 1px #e3ebf3;
	padding: 20px;
}

.tab_box .tab_panel {
	display:none;
}

.tab_box .tab_panel.active {
	display:flex;
}

.txtinput_area{
	width: 85%;
	-webkit-appearance: none;
	background-color: #FFF;
	background-image: none;
	border: 1px solid #DCDFE6;
	box-sizing: border-box;
	color: #606266;
	display: inline-block;
	font-size: inherit;
	height: 40px;
	line-height: 40px;
	outline: 0;
	padding: 0 15px;
}

.search-section button {
	width: 15%;
	height: 40px;
	font-size: 17px;
	background: #ff6d00;
	color: #fff;
	border: none;
	padding: 0 20px;
	cursor: pointer;
}

.passcertificate-area{
	margin: 0 auto;
}

.passcertificate-area-bg{
	padding: 40px;
}

.sub-ttl{
	left: 0px;
	right: 0px;
	text-align: center;
	font-size: 16px;
	top: 156px;
	color: #1b2f59;
}

.madelicense{
	text-align: left;
}

.serial-number{
	display: flex;
}

.article-content{
	display: flex;
	flex-wrap: wrap;
	margin: 20px auto;
}
.article-content.section-02{
	display: block;
}

.article-item {
	width: 50%;
	padding: 10px 0 8px 0;
	word-wrap: break-word;
	font-size: 16px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 1px;
	display: flex;
	text-align: left;
}

.article-item span:nth-child(2) {
	min-width: 126px;
}

.article-content.section-02 .article-item{
	width: 50%;
}

.article-content.section-02 .article-item span:nth-child(2) {
	border-bottom: none;
}

.article-content.section-03 .article-item{
	width: 25%;
}
.article-content .article-item a{
	text-decoration: underline !important;
}

.article-content .article-item a:hover{
	text-decoration: none !important;
}

/* モーダル全体(背景＋本体) */
.modal{
	display: none;
	position: fixed;
	top: 0;
	height: 100vh;
	width: 100%;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: auto;
	margin: 0;
	z-index: 2;
}

/* モーダル背景 */
.modal-bg{
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: .5;
	background: #000;
	z-index: 1;
}

/* モーダル本体 */
.modal-content{
	position: relative;
	width: 50%;
	background: #fff;
	padding: 20px;
	margin: 0 auto 50px;
	margin-top: 15vh;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

.modal-content .flex{
	display: flex;
	justify-content: space-between;
}

.modal-content .flex p{
	font-size: 18px;
}

.js-modal-close{
	font-size: 30px;
}

.js-modal-close:hover{
	text-decoration: none;
}

.underlayer.fixed{
	overflow: hidden;
}

html{
	overflow-y: auto;
}


@media screen and (max-width: 768px){
	h1{
		font-size: 26px;
	}
	
	.search-section button{
		width: 30%;
	}
	
	.passcertificate-area-bg{
		padding: 20px;
	}
	
	.article-content{
		display: block;
	}
	
	.article-item,
	.article-content.section-02 .article-item{
		width: 100%;
	}
}