@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: #007B89;
		border: 1px solid #007B89;
		border-radius: 6px;
	}
	.newsList p {
		margin-top: -2px;
		font-size: 1.7rem;
		font-weight: var(--font-w-medium);
		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;
	}

	header .menuBoxWrap {
		height: 70px;
		background: #fff;
		border-bottom: 1px solid #DEDEDE;
	}
	header .menuBox ul {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 140px;
		height: 70px;
	}
	header .menuBox ul li {
		position: relative;
		margin-top: -3px;
		font-weight: var(--font-w-bold);
	}
	header .menuBox ul li::before {
		content: "";
		display: block;
		height: 40px;
		width: 0;
		border-right: 1px solid #D8D8D8;
		position: absolute;
		left: -70px;
		top: -10px;
		margin: auto;
	}
	header .menuBox ul li:first-of-type::before{
		content: none;
	}
	header .menuBox ul li a:hover {
		text-decoration: underline;
	}


	/*------------------------------------
		トップページ
	-------------------------------------*/
	#top .txHeadWrap {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#top .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;
	}

	/*------------------------------------
		下層ページ
	-------------------------------------*/
	#page .txHeadWrap {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 50px 0 0;
	}

	#page .txHead {
		font-size: 3.6rem;
	}

	.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: #0D7471;
	}

	.wrapSearchList {
		padding: 38px 20px 42px;
	}

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

	.searchItem {
		font-size: 1.8rem;
		font-weight: var(--font-w-bold);
		line-height: 1.4;
		text-align: center;
	}

	.searchItem a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 300px;
		height: 90px;
		padding: 0 25px;
		background: #0099AA;
		color: #fff;
		border-radius: 6px;
		transition: .2s;
	}
	.searchItem a:hover {
		background: #00B8CC;
	}

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

	.columnWrap +	.downloadWrap {
		margin-top: 90px;
	}

	.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: #0099AA;
		border-radius: 6px;
		transition: .2s;
	}

	.buDownload:hover {
		background: #00B8CC;
	}

	.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;
	}

	/*--------------  アンカーリンク  -------------*/
	.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;
	}

	.anchorHead {
		margin: -4px 0 36px;
		text-align: center;
	}

	.anchorHead span {
		display: inline-block;
		padding: 8px 28px 9px;
		background: #0D7471;
		font-size: 1.8rem;
		font-weight: var(--font-w-bold);
		color: #fff;
		border-radius: 9999px;
	}

	.anchorList {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 34px 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.notAfter::after {
		content: none;
	}

	.anchorItem a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
		color: #007B89;
		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;
	}

	.caseSection + .buPdfWrap {
		margin-top: 90px;
	}

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

	.caseInner {
		display: flex;
		flex-direction: column;
		margin: 42px 0 0;
	}

	.techCaseImage {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 580px;
		margin: 45px 0 0;
		background: #ddd;
		border-radius: 10px;
	}

	.techCaseImage img {
		max-width: 100%;
		max-height: 100%;
		object-fit: contain;
	}

	.caseInner.techCase {
		gap: 30px;
	}

	.caseBox {
		padding: 32px 30px 35px;
		background: #fff;
		border-radius: 10px;
	}

	.caseInner .wrapNewsList {
		width: auto;
	}

	/*--------------  効果別  -------------*/
	.tableScrollText {
		display: none;
	}

	.caseInner.effectCase {
		gap: 35px;
	}

	.effectItem .txHeadM {
		margin-bottom: 20px;
	}

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

	.effectTable th,
	.effectTable td {
		font-size: 1.4rem;
		line-height: 1.6;
		border: 1px solid #9F9F9F;
	}

	.effectTable th {
		padding: 5.5px 14px 6.5px;
		background: #D8F6F4;
		font-weight: var(--font-w-bold);
		text-align: center;
		vertical-align: middle;
	}
	.effectTable tr:nth-child(2) th {
		width: 280px;
	}

	.effectTable td {
		padding: 9px 15px 10px;
	}
	.effectTable td:nth-child(1) {
		width: 360px;
	}

	.effectTable td a {
		display: block;
		margin: 0 0 18px;
		font-weight: var(--font-w-medium);
		text-decoration: underline;
	}
	.effectTable td a:last-of-type {
		margin-bottom: 0;
	}

	.effectTable td a:hover {
		text-decoration: none;
	}

	/*--------------  作業別  -------------*/
	.taskCaseList {
		display: flex;
		flex-direction: column;
		gap: 14px;
	}

	.taskCaseItem {
		font-size: 1.7rem;
		font-weight: var(--font-w-medium);
		line-height: 1.6;
	}

	.taskCaseItem a {
		color: #007B89;
	}
	.taskCaseItem a:hover {
		text-decoration: underline;
	}

	/*--------------  コラム  -------------*/
	.columnWrap {
		margin: 80px 0 0;
		padding: 40px 47px 50px;
		background: #fff;
		border: 3px solid #259692;
		border-radius: 10px;
	}

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

	.columnList {
		display: flex;
		flex-wrap: wrap;
		gap: 25px;
		margin: 34px 0 0;
	}

	.columnItem {
		font-size: 1.6rem;
		font-weight: var(--font-w-medium);
		line-height: 1.4;
	}

	.columnItem a {
		display: flex;
		align-items: center;
		width: 350px;
		padding: 23.5px 30px 24.5px;
		background: #E5FAF9;
		color: #007B89;
		border: 1px solid #E5FAF9;
		border-radius: 10px;
		transition: 0.2s;
	}
	.columnItem a:hover {
		border: 1px solid #259692;
	}

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

	.txArticleNumber {
		position: relative;
	}

	.txArticleNumber::before {
		content: "";
		width: 100%;
		height: 1px;
		background: #007B89;
		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: #007B89;
		border: 1px solid #0099AA;
		border-radius: 9999px;
		box-shadow: 2px 2px 0px #0099AA;
		transition: .2s;
	}
	.buPdf:hover {
		background: #0099AA;
		color: #fff;
	}

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

	.organizationWrap {
		margin: 50px 0 0;
		padding: 35px 37px 42px;
		background: #fff;
		border: 3px solid #259692;
		border-radius: 10px;
	}

	.organizationContent:not(:last-child) {
		margin-bottom: 40px;
		padding-bottom: 40px;
		border-bottom: 1px solid #D8D8D8;
	}

	.organizationHead {
		padding: 3px 0 4px 22px;
		position: relative;
		font-size: 2.6rem;
		font-weight: var(--font-w-bold);
	}

	.organizationHead::before {
		content: "";
		width: 6px;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #0D7471;
	}

	.organizationBody {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin: 30px 0 0;
	}

	.organizationImageWrap {
		width: 410px;
	}

	.organizationImage img {
		max-width: 100%;
	}

	.organizationImageCaption {
		margin: 15px 0 0;
		font-size: 2rem;
		line-height: 1.3;
	}

	.organizationInfo {
		width: 660px;
		padding: 25px 30px;
		background: #E5FAF9;
		border-radius: 10px;
	}

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

	.organizationMeta {
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: flex-start;
		gap: 40px;
		width: 100%;
	}

	.organizationMetaCol {
		display: grid;
		gap: 12px;
	}
	.organizationMetaRow {
		display: grid;
		grid-template-columns: 220px 1fr;
		align-items: stretch;
		font-size: 1.4rem;
		line-height: 1.8;
	}

	.organizationMetaRow div {
		display: flex;
		align-items: center;
		padding: 12px 15px 13px;
	}

	.organizationMetaRow div:nth-child(1) {
		background: #D0F3F1;
		font-weight: var(--font-w-bold);
	}

	.organizationMetaRow div:nth-child(2) {
		background: #F1F1F1;
	}

	.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 p.commentSection {
		margin-top: 28px;
	}

	.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: #259692;
		border-radius: 50%;
	}

	.caseContentImage {
		width: 900px;
		margin: 10px auto 0;
	}

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

	.caseContentImageCaption {
		margin: 14px 0 0;
		font-size: 1.5rem;
		line-height: 1.4;
	}

	.caseBackWrap {
		margin: 90px 0;
		padding: 42px 20px 45px;
		background: #fff;
		border: 3px solid #259692;
		border-radius: 10px;
	}

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

	.caseBackLinkWrap {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		gap: 30px;
		margin: 35px 0 0;
	}

	.caseBackLinkWrap a {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		width: 250px;
		padding: 10.5px 20px 11.5px;
		background: #fff;
		font-size: 1.5rem;
		font-weight: var(--font-w-medium);
		line-height: 1.4;
		color: #007B89;
		border: 1px solid #0099AA;
		border-radius: 9999px;
		box-shadow: 2px 2px 0px #0099AA;
		transition: .2s;
	}
	.caseBackLinkWrap a:hover {
		background: #0099AA;
		color: #fff;
	}

	/*------------------------------------
		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;
	}
}
