@charset "utf-8";
@media only screen and (min-width: 751px) {
	/*--------------------*/
	/*---- pc_cont.css ----*/
	/*--------------------*/

	/*------------------------------------
		基本設定
	-------------------------------------*/
	html {
		font-size: 62.5%;
		overflow: auto;
	}

	body {
		font-size: 1.7em;
		min-width: 1280px;
	}

	img {
		height: auto;
		vertical-align: bottom;
	}

	.pcNone {
		display: none;
	}

	/*------------------------------------
		section共通
	-------------------------------------*/
	.sectionCommon {
		width: 1200px;
		margin: 0 auto;
	}

	/*------------------------------------
		共通
	-------------------------------------*/
	.boxWhite {
		width: 1200px;
		margin: 0 auto;
		background: #fff;
		border-radius: 10px;
		box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.05);
	}

	.wrapNewsList {
		display: flex;
		flex-direction: column;
		gap: 14px;
		width: fit-content;
		margin: 0 auto;
	}
	.newsList {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	.newsList a:hover {
		text-decoration: underline;
	}
	.newsList .num {
		min-width: 110px;
		padding: 5px 10px 6px 10px;
		font-size: 1.5rem;
		text-align: center;
		color: #0D68B8;
		border: 1px solid #0D68B8;
		border-radius: 6px;
	}
	.newsList p {
		margin-top: -2px;
		line-height: 1.5;
	}

	.formText {
		height: 45px;
		padding: 0 13px;
		font-size: 1.7rem;
		background: #fff;
		border: 1px solid #666666;
		border-radius: 6px;
	}

	.checkRadioWrap {
		display: flex;
		flex-wrap: wrap;
		gap: 15px 20px;
	}
	.checkRadioWrap > div {
		height: 27px;
	}
	/* ラジオボタンの設定 */
	.formRadioLabel {
		position: relative;
		display: flex;
		align-items: center;
		margin: 0;
		padding: 0;
		margin-top: -1px;
		font-size: 1.6rem;
		cursor: pointer;
	}
	.formRadioLabel:before {
		content: "";
		display: inline-block;
		min-width: 27px;
		height: 27px;
		margin: 1px 9px 0 0;
		background: #fff;
		border: solid 1px #666;
		border-radius: 50%;
	}
	.formRadio:checked + .formRadioLabel:after {
		content: "";
		position: absolute;
		top: 1px;
		bottom: 0;
		left: 7px;
		display: block;
		min-width: 15px;
		height: 15px;
		margin: auto;
		background: #111;
		border-radius: 50%;
	}


	/*------------------------------------
		header
	-------------------------------------*/
	header .headerWrapTop {
		height: 80px;
		background: #fff;
	}
	header .headerTop {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 60px;
		height: 80px;
	}
	header .headerTop > div {
		position: relative;
	}
	header .headerTop > div::before {
		content: "";
		display: block;
		height: 50px;
		width: 0;
		border-right: 1px solid #BABABA;
		position: absolute;
		left: -30px;
		top: 0;
		margin: auto;
	}
	header .headerTop > div:first-of-type::before{
		content: none;
	}
	header .headerWrapBottom {
		height: 200px;
		background-image: url(../img/common/header/bg_header_top_1.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: top center;
	}
	header .headerBottom {
		display: flex;
		align-items: center;
		justify-content: center;
		height: 200px;
	}
	#page header .headerWrapBottom,
	#page header .headerBottom {
		height: 150px;
	}
	header .headerBottom > div {
		margin-top: -4px;
		font-size: 3.6rem;
		font-weight: var(--font-w-bold);
		color: #fff;
	}
	#page header .headerBottom > div {
		font-size: 3rem;
	}


	/*------------------------------------
		タイトル
	-------------------------------------*/
	.txHeadWrap {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.txHead {
		position: relative;
		font-size: 2.8rem;
		font-weight: var(--font-w-bold);
	}


	/*------------------------------------
		トップページ
	-------------------------------------*/
	#top .txHead.news {
		margin: 60px 0 28px -20px;
		padding: 0 0 0 52px;
	}
	#top .txHead.news::before {
		content: "";
		position: absolute;
		top: calc(50% - 19px);
		left: 0;
		width: 32px;
		height: 38px;
		background-image: url(../img/top/icon_news.svg);
		background-repeat: no-repeat;
	}
	#top .boxWhite.news {
		padding: 30px 40px;
	}
	#top .txHead.search {
		margin: 60px 0 28px -20px;
		padding: 0 0 0 52px;
	}
	#top .txHead.search::before {
		content: "";
		position: absolute;
		top: calc(50% - 18px);
		left: 0;
		width: 36px;
		height: 36px;
		background-image: url(../img/top/icon_search.svg);
		background-repeat: no-repeat;
	}

	.boxWhite.search1 {
		padding: 35px 40px;
	}

	.txHeadM {
		position: relative;
		margin: 0 0 24px 0;
		padding: 0 0 0 19px;
		font-size: 2.2rem;
		font-weight: var(--font-w-bold);
		line-height: 1.4;
	}
	.txHeadM::before {
		content: "";
		position: absolute;
		top: calc(50% - 13px);
		left: 0px;
		width: 6px;
		height: 28px;
		background: #005AAA;
	}

	.txHeadS {
		position: relative;
		margin: 0 0 15px 0;
		padding: 0 0 12px 0;
		font-size: 1.7rem;
		font-weight: var(--font-w-bold);
		line-height: 1.4;
	}
	.txHeadS::after {
		content: "";
		position: absolute;
		bottom: 0px;
		left: 0px;
		width: 100%;
		border-bottom: 1px solid #005AAA;
	}

	.wrapKeyWord {
		display: flex;
		align-items: center;
		gap: 30px;
	}
	.formText {
		width: 690px;
	}

	.buSearch {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 10px;
		padding: 15px 70px 16px;
		font-size: 1.9rem;
		font-weight: var(--font-w-bold);
		line-height: 1.5;
		color: #fff;
		background: #1A74C4;
		border-radius: 6px;
		transition: 0.2s;
	}
	.buSearch:hover {
		background: #2690EE;
	}
	.buSearch::before {
		content: "";
		width: 25px;
		height: 25px;
		background: url(../img/common/icon_search.svg) no-repeat;
		background-size: contain;
	}

	.buSearchS {
		position: relative;
		display: inline-block;
		width: 135px;
		padding: 10px 15px 11px 50px;
		font-size: 1.6rem;
		font-weight: var(--font-w-bold);
		line-height: 1.5;
		color: #fff;
		background: #1A74C4;
		border-radius: 6px;
		transition: 0.2s;
	}
	.buSearchS:hover {
		background: #2690EE;
	}
	.buSearchS::before {
		content: "";
		position: absolute;
		top: calc(50% - 11px);
		left: 19px;
		width: 22px;
		height: 22px;
		background-image: url(../img/common/icon_search.svg);
		background-repeat: no-repeat;
	}

	.boxWhite.search2 {
		margin-top: 40px;
		padding: 35px 40px 50px;
	}

	.search2 .searchListWrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 15px;
		margin: 0 0 30px 0;
	}

	.search2 .searchListWrap + .searchListWrap {
		margin-top: -15px;
	}

	.searchListLabel {
		width: 9em;
		font-size: 1.7rem;
		line-height: 1.5
	}

	/*--- 環境、路線等で検索する　チェックボックスの設定 ---*/
	.searchCheckbox {
		display: none;
	}
	.searchCheckLabel {
		display: flex;
		align-items: center;
		height: 100%;
		margin: 0;
		padding: 8px 23px 9px 23px;
		position: relative;
		font-size: 1.6rem;
		line-height: 1.5;
		font-weight: var(--font-w-bold);
		color: #0D68B8;
		background: #fff;
		border: 2px solid #1A74C4;
		border-radius: 6px;
		cursor: pointer;
	}
	.searchCheckbox:checked + .searchCheckLabel {
		color: #fff;
		background: #1A74C4;
		border: 2px solid #1A74C4;
	}

	/*--- 修繕工法　チェックボックスの設定 ---*/
	.repairWrap {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.repairItem {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 20px;
		padding: 10px;
		background: #ECF2FF;
		border-radius: 10px;
	}

	.repairCheckbox {
		display: none;
	}

	.repairCheckLabel {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 160px;
		height: 100%;
		margin: 0;
		padding: 12px 10px 13px 10px;
		position: relative;
		font-size: 1.6rem;
		line-height: 1.5;
		font-weight: var(--font-w-bold);
		color: #0D68B8;
		background: #fff;
		border: 2px solid #1A74C4;
		border-radius: 6px;
		cursor: pointer;
	}

	.repairCheckbox:checked+.repairCheckLabel {
		color: #fff;
		background: #1A74C4;
		border: 2px solid #1A74C4;
	}

	.repairTextWrap {
		flex: 1;
	}

	.repairText {
		font-size: 1.7rem;
		line-height: 1.5;
	}

	.repairTextS {
		margin: 2px 0 0;
		font-size: 1.5rem;
		line-height: 1.6;
	}

	/*--- 検索ボタン ---*/
	.searchButtonWrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 60px 0 0;
	}

	/*--- 事例集ダウンロード ---*/
	.downloadWrap {
		margin: 70px 0 0;
		padding: 40px 20px 42px;
		background: #E3ECFF;
		text-align: center;
		border-radius: 10px;
	}

	.downloadText {
		font-size: 1.7rem;
		line-height: 1.6;
	}

	.buDownloadWrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		margin: 27px 0 0;
	}
	
	.buDownload {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 15px;
		padding: 16px 44px 17px;
		font-size: 1.8rem;
		font-weight: var(--font-w-bold);
		line-height: 1.5;
		color: #fff;
		background: #1A74C4;
		border-radius: 6px;
		transition: .2s;
	}
	.buDownload:hover {
		background: #2690EE;
	}

	.buDownload::before {
		content: "";
		width: 26px;
		height: 20px;
		background: url(../img/common/icon_download.svg) no-repeat;
		background-size: contain;
		position: relative;
		top: 1px;
	}

	/*--------------  パンクズリスト  -------------*/
	.breadcrumbWrap {
		margin: 18px 0 0;
	}

	.breadcrumbList {
		font-size: 0;
		text-align: center;
	}

	.breadcrumbList li {
		display: inline;
		margin: 0 36px 0 0;
		position: relative;
		font-size: 1.4rem;
		line-height: 1.4;
	}

	.breadcrumbList li:last-child {
		margin-right: 0;
	}

	.breadcrumbList li::after {
		content: ">";
		position: absolute;
		top: 50%;
		right: -22px;
		transform: translateY(-50%);
	}

	.breadcrumbList li:last-child::after {
		content: none;
	}

	.breadcrumbList li a {
		color: #111;
		text-decoration: underline;
	}
	.breadcrumbList li a:hover {
		text-decoration: none;
	}

	/*--------------  検索結果  -------------*/
	.txHead.result {
		margin: 60px 0 0;
	}

	.tableScrollText {
		display: none;
	}

	.resultTableWrap {
		margin: 34px 0 0;
	}

	.resultTable {
		width: 100%;
		border-collapse: collapse;
		background: #fff;
	}

	.resultTable th,
	.resultTable td {
		font-size: 1.4rem;
		line-height: 1.4;
		text-align: center;
		border: solid 1px #9F9F9F;
		vertical-align: middle;
	}

	.resultTable th:first-child,
	.resultTable td:first-child {
		width: 50px;
		padding-inline: 0;
		text-align: center;
	}

	.resultTable th {
		padding: 15px 22px 16px;
		background: #ECF2FF;
		font-weight: var(--font-w-bold);
		white-space: nowrap;
	}

	.resultTable td {
		padding: 15px 15px 16px;
		text-align: left;
	}

	.resultTable td a {
		font-weight: var(--font-w-medium);
		color: #0D68B8;
		text-decoration: underline;
	}
	.resultTable td a:hover {
		text-decoration: none;
	}

	.accordionResult {
		margin: 52px 0 0;
	}

	.accordionResultBody {
		margin: 25px 0 0;
	}

	/* --------- アコーディオン ----------- */

	.buReroute,
	.buResponse {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 14px 20px 15px;
		position: relative;
		gap: 14px;
		background: #1A74C4;
		font-size: 1.8rem;
		font-weight: var(--font-w-medium);
		color: #fff;
		box-shadow: 0 2px 0 #00256D;
		border-radius: 6px;
		cursor: pointer;
	}
	.buReroute::after,
	.buResponse::after {
		content: "";
		width: 22px;
		height: 22px;
		background: url(../img/common/arrow_accordion.svg) no-repeat;
		background-size: contain;
		position: relative;
		top: 1px;
		transition: 0.2s;
	}
	.buReroute.open::after,
	.buResponse.open::after {
		transform: rotate(180deg);
	}
	.rerouteBoxWrap {
		display: none;
	}

	.accordionBody {
		padding: 20px 30px 34px;
		background: #fff;
		border-radius: 0 0 10px 10px;
	}

	.accordionBody div {
		margin: 0 0 34px;
	}

	.accordionBody p {
		font-size: 1.7rem;
		line-height: 1.8;
	}

	.accordionBody *:last-of-type {
		margin-bottom: 0;
	}


	/* --------- ページネーション ----------- */
	.ulPager {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 70px;
	}
	#temp .ulPager {
		margin-top: 80px;
	}
	.ulPager li {
		padding: 0px 0px 0px 0px;
		background-image: none;
		font-size: 1.6rem;
	}
	.ulPager li a:hover {
		opacity: 1;
	}
	.ulPager li.top a::before {
		content: "<<";
		display: inline-block;
		transform: scaleX(0.6);
	}
	.ulPager li.prev a::before {
		content: "<";
		display: inline-block;
		transform: scaleX(0.6);
	}
	.ulPager li.next a::before {
		content: ">";
		display: inline-block;
		transform: scaleX(0.6);
	}
	.ulPager li.end a::before {
		content: ">>";
		display: inline-block;
		transform: scaleX(0.6);
	}
	.ulPager li.prev {
		margin-right: 33px;
	}
	.ulPager li.next {
		margin-left: 33px;
	}
	.ulPager li a,
	.ulPager li div {
		display: block;
		width: 46px;
		height: 46px;
		margin: 0px 8px;
		padding: 13px 0;
		color: #111 !important;
		text-align: center;
		border-radius: 6px;
		border: 1px solid #005AAA;
		text-decoration: none !important;
		transition: 0.2s;
	}
	.ulPager li a {
		background-color: #ffffff;
	}
	.ulPager li a:hover {
		background-color: #005AAA;
		color: #ffffff !important;
	}
	.ulPager li div {
		background-color: #005AAA;
		color: #ffffff !important;
	}
	.ulPager li span,
	.ulPager li.spNum {
		display: none;
	}

	/*--------------  事例個別  -------------*/
	.txArticleHeadWrap {
		margin: 55px 0 0;
		text-align: center;
	}

	.txArticleNumber {
		position: relative;
	}

	.txArticleNumber::before {
		content: "";
		width: 100%;
		height: 1px;
		background: #005AAA;
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
	}

	.txArticleNumber span {
		display: inline-block;
		padding: 0 20px;
		position: relative;
		background: #F9F9F9;
		font-size: 2.8rem;
		font-weight: var(--font-w-bold);
	}

	.txArticleHead {
		margin: 18px 0 0;
		font-size: 3.5rem;
		font-weight: var(--font-w-bold);
		line-height: 1.3;
	}

	.txArticleHeadWrap .buPdfWrap {
		margin-top: 35px;
	}

	.buPdfWrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 30px;
	}

	.buPdf {
		display: flex;
		/*! flex-wrap: wrap; */
		align-items: center;
		justify-content: center;
		gap: 15px;
		padding: 7px 24px 9px 28px;
		background: #fff;
		font-size: 1.5rem;
		font-weight: var(--font-w-medium);
		line-height: 1.4;
		color: #0D68B8;
		border: 1px solid #1A74C4;
		border-radius: 9999px;
		box-shadow: 2px 2px 0px #1A74C4;
		transition: .2s;
	}
	.buPdf:hover {
		background: #1A74C4;
		color: #fff;
	}

	.buPdf::after {
		content: "";
		min-width: 22.5px;
		height: 27px;
		background: url(../img/common/icon_pdf.svg) no-repeat;
		background-size: contain;
		position: relative;
		top: 1px;
	}

	/*--------------  アンカーリンク  -------------*/
	.anchorWrap {
		margin: 50px 0 0;
		padding: 30px 20px 32px;
		background: #fff;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
		border-radius: 10px;
	}

	.anchorList {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 36px 0;
	}

	.anchorItem {
		padding: 0 34px 0 30px;
		position: relative;
		font-size: 1.8rem;
		font-weight: var(--font-w-medium);
	}

	.anchorItem:not(:last-child)::after {
		content: "";
		width: 1px;
		height: 40px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		background: #D8D8D8;
	}

	.anchorItem a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
		color: #0D68B8;
		text-decoration: underline;
	}
	.anchorItem a:hover {
		text-decoration: none;
	}

	.anchorItem a::after {
		content: "";
		width: 8px;
		height: 5px;
		background: url(../img/common/anchor_arrow.svg) no-repeat;
		background-size: contain;
		position: relative;
		top: 1px;
	}

	/*--------------  事例  -------------*/
	.caseSection {
		margin: 0 0 20px;
		padding: 64px 0 0;
	}

	.txCaseHead {
		font-size: 3rem;
		font-weight: var(--font-w-bold);
		text-align: center;
	}

	.caseInner {
		margin: 42px 0 0;
	}
	#case1 .caseInner {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
	}
	#case1 .accordion {
		width: 100%;
	}

	.caseImageWrap {
		display: flex;
		flex-wrap: wrap;
		gap: 44px 60px;
		width: 1060px;
		margin: 0 auto;
	}

	.caseImageItem {
		width: 500px;
	}

	.caseImageCaption {
		font-size: 1.6rem;
		line-height: 1.6;
	}

	.caseImage {
		margin: 15px 0 0;
	}

	.caseImage img {
		width: 100%;
		height: auto;
	}

	.caseContent {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.caseContnetBlockHead {
		padding: 16px 10px 17px;
		background: url(../img/case/bg_case_head.jpg) no-repeat;
		background-size: cover;
		font-size: 1.8rem;
		font-weight: var(--font-w-bold);
		color: #fff;
		text-align: center;
	}

	.caseContentBlockBody {
		padding: 22px 30px 26px;
		background: #fff;
	}
	
	.caseContentBlockBody p {
		font-size: 1.7rem;
		line-height: 1.9;
	}

	.caseContentBlockBody ul {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.caseContentBlockBody ul li {
		padding: 0 0 0 20px;
		position: relative;
		font-size: 1.7rem;
		line-height: 1.9;
	}

	.caseContentBlockBody ul li::before {
		content: "";
		width: 9px;
		height: 9px;
		position: absolute;
		top: 12px;
		left: 0;
		background: #005AAA;
		border-radius: 50%;
	}

	.caseTable {
		width: 100%;
		background: #fff;
		border-collapse: collapse;
	}

	.caseTable th,
	.caseTable td {
		padding: 9px 14px 10px;
		font-size: 1.4rem;
		line-height: 1.8;
		border: 1px solid #9F9F9F;
	}

	.caseTable th {
		width: 250px;
		background: #ECF2FF;
		font-weight: var(--font-w-bold);
		vertical-align: middle;
	}

	.caseTable td:nth-of-type(1) {
		width: 200px;
		text-align: center;
	}
	
	.caseTable small {
		font-size: 1.2rem;
	}
	
	.caseInner .note {
		margin-top: 10px;
		font-size: 1.3rem;
		line-height: 1.6;
	}

	.referenceWrap {
		margin: 65px 0 0;
		padding: 40px 20px 45px;
		background: #fff;
		text-align: center;
		border: 3px solid #1A74C4;
		border-radius: 10px;
	}

	.referenceHead {
		font-size: 2.2rem;
		font-weight: var(--font-w-bold);
	}

	.referenceWrap .buPdfWrap {
		margin: 35px 0 0;
	}

	.referenceWrap + .buPdfWrap {
		margin: 90px 0;
	}


	/*------------------------------------
		footer
	-------------------------------------*/
	/* --------- ページトップボタン ----------- */
	#gPagetop {
		transition: 0.3s;
		cursor: pointer;
		visibility: hidden;
	}
	#gPagetop .pagetopBtn {
		position: fixed;
		position: relative;
		right: 30px;
		display: block;
		width: 69px;
		height: 69px;
		border-radius: 100%;
		z-index: 100;
	}
	#gPagetop .pagetopBtn::after {
		content: "";
		position: absolute;
		top: 0;
		right: 0px;
		display: block;
		width: 69px;
		height: 69px;
		border-radius: 100%;
		background-image: url(../img/common/pagetop_icon_1.svg);
		background-position: center;
		background-size: contain;
		background-repeat: no-repeat;
		transition: all 0.2s ease;
		z-index: 100;
	}

	footer {
		height: 170px;
		margin: 160px 0 0 0;
		background-color: #747474;
	}
	footer .footerWrap .sectionCommon {
		display: flex;
		align-items: flex-end;
		justify-content: center;
		height: 170px;
		font-size: 1.4rem;
		color: #fff;
	}
	footer .copyright {
		margin: 0 0 25px 0;
	}
}
