@charset "UTF-8";
/*================================================
 *  CSSリセット
 ================================================*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}
body {
	line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
/*================================================
 *  一般?共通設定
 ================================================*/
html {
	font-size: 62.5%; /*10px*/
	min-height: 100%;
	scroll-behavior: smooth;
}
body {
	font-size: 1.5rem;
	color: #333;
	font-family: "Hiragino Sans", sans-serif;
	/*font-family: '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;*/
	font-weight: 500;
	line-height: 1.5;
	word-wrap: break-word;
}
section {
	margin-bottom: 5rem;
}
.inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
}
header {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	background: #fff;
}
.logo {
	margin: 10px 0;
}
#Container {
	overflow: hidden;
	max-width: 1200px;
	margin: 0 auto 30px auto;
}
a {
	color: #333;
	text-decoration: underline;
}
a:hover {
	color: #333;
	text-decoration: none;
	font-weight: bold;
}
del { /*取り消し線*/
	background-image: linear-gradient(#5d627b, #5d627b);
	background-position: 0 50%;
	background-size: 100% 2px;
	background-repeat: repeat-x;
	margin: 0 0.4em;
	text-decoration: none;
}
.fontMN {
	font-family: Georgia, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, serif;
}
.fontCrimson {
	color: crimson;
}
.fontS {
	font-size: 75%;
}
.textSpace { /*文字間詰める*/
	letter-spacing: -0.12em;
}
.indent1 {
	text-indent: -1em;
	padding-left: 1em;
}
.indent2 {
	text-indent: -2em;
	padding-left: 2em;
}
.indent3 {
	text-indent: -3em;
	padding-left: 3em;
}
.indent4 {
	text-indent: -4em;
	padding-left: 4em;
}
.dankumi2 {
	column-count: 2;
}
h1 {
	font-size: 3.5rem;
	color: #FFF;
	position: relative;
	margin: 0;
	padding: 3em;
	background-position: center;
	background-size: cover;
	text-shadow: 0 0 10px #333;
	letter-spacing: 0.2em;
	/*background: #ECF7F7;
	background-image: linear-gradient(0deg, transparent 31px, #FFF 32px), linear-gradient(90deg, transparent 31px, #FFF 32px);
	background-size: 32px 32px;
	box-sizing: border-box;
	box-shadow: 0 7px 3px -3px #ECF7F7;*/
}
@media screen and (max-width:1200px) {
	h1 {
		padding: 1em;
	}
}
h2 {
	position: relative;
	justify-content: center;
	align-items: center;
	font-size: clamp(15px, 3vw, 30px);
	margin: 1em 0 0.5em 0;
	padding: 0 0.5em;
	color: #006663;
}
h2:after {
	position: absolute;
	z-index: -1;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 7px;
	background: -webkit-repeating-linear-gradient(-45deg, #F1ECEB, #F1ECEB 2px, #fff 2px, #fff 4px);
	background: repeating-linear-gradient(-45deg, #F1ECEB, #F1ECEB 2px, #fff 2px, #fff 4px);
}
h3 {
	margin: 0.5em 0;
	padding: 0.5em;
	color: #0E8F8A;
	font-size: clamp(15px, 2.5vw, 25px);
	/*border-bottom:2px dashed #006663;*/
}
h4 {
	position: relative;
	margin: 1em 0;
	padding: 0.5em 0.75em;
	font-size: clamp(15px, 2.0vw, 20px);
	background-color: #ECF7F7;
	border: 1px solid #3A9B94;
	border-radius: 3px;
	clear: both;
}
h4::before, h4::after {
	position: absolute;
	top: 100%;
	left: 30px;
	content: '';
	height: 0;
	width: 0;
	border: 10px solid transparent;
}
h4::before {
	border-top: 15px solid #3A9B94;
}
h4::after {
	margin-top: -2px;
	border-top: 15px solid #ECF7F7;
}
p {
	margin: 0.5em;
	word-break: break-all;
}
img a:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
em {
	font-weight: bold;
}
pre {
	margin: 1em 0;
	padding: 1em;
}
blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}
address {
	font-style: normal;
	padding: 0.5em 1em;
	margin: 0 1em 1em 1em;
	color: #5d627b;
	background: #bbd7ea;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.25);
	display: inline-block;
}
figure {
	margin: 0 auto;
}
figure img {
	max-width: 100%;
	/*margin: 1em;*/
}
figcaption {
	/*font-size: 75%;*/
}
div.imagearea:after {
	content: "";
	clear: both;
	display: block;
}
ul.ul_list, ol.ol_list {
	margin: 0.5em 0 0.5em 2em;
}
ul.ul_list li {
	margin: 0 0 0.5em 0;
	list-style: circle;
}
ol.ol_list li {
	margin: 0 0 0.5em 0;
	list-style: decimal;
}
/*丸囲み数字*/
/*#Container ol.maru li {
	position: relative;
	list-style: none;
	margin: 0 0 0.5em 0;
}
#Container ol.maru li span {
	position: absolute;
	left: -1.5em;
}*/
/* 波状の線 */
.nami-border {
	text-decoration: underline wavy #0E8F8A;
}
/* NEWアイコン */
span.new {
	color: #ffffff;
	font-size: 10px;
	background: #f35b69;
	position: relative;
	top: -2px;
	display: inline-block;
	margin-left: 5px;
	padding: 2px 5px;
}
table {
	width: 100%;
	margin-bottom: 1em;
	border-collapse: collapse;
	border: 1px solid #ddd;
}
thead th {
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	border: 1px solid #ddd;
	background: #eee;
	/*white-space: nowrap;*/
}
tbody th {
	padding: 10px;
	font-weight: bold;
	border: 1px solid #ddd;
	white-space: nowrap;
}
td {
	padding: 10px;
	/*vertical-align: top;*/
	border: 1px solid #ddd;
}
td[data-title]::before {
	content: attr(data-title) "：";
	font-weight: bold;
	padding: 0 10px 0 0;
	display: inline;
}
caption {
	text-align: left;
	font-size: clamp(15px, 2.0vw, 20px);
	font-weight: bold;
}
@media screen and (max-width:1200px) {
	td {
		/*white-space: nowrap;*/
	}
}
/* パソコンだけ表示 */
.pc_only {
	display: block !important;
}
.sp_only {
	display: none !important;
}
/* タブレット向けデザイン */
@media screen and (max-width:1200px) {
	.inner {
		width: 100%;
	}
	#Container {
		box-sizing: border-box;
		width: 100%;
		padding: 0 10px;
	}
}
/* スマホ向けデザイン */
@media screen and (max-width:800px) {
	figure {
		width: 100%;
		float: none;
	}
	ul.footer_bnr li {
		max-width: 100%;
		display: inherit;
	}
	/* スマホだけ表示 */
	.pc_only {
		display: none !important;
	}
	.sp_only {
		display: block !important;
	}
	.scroll {
		overflow: auto; /*tableをスクロールさせる*/
		white-space: nowrap; /*tableのセル内にある文字の折り返しを禁止*/
	}
	.scroll::-webkit-scrollbar {
		height: 5px; /*tableにスクロールバーを追加*/
	}
	.scroll::-webkit-scrollbar-track {
		background: #F1F1F1; /*tableにスクロールバーを追加*/
	}
	.scroll::-webkit-scrollbar-thumb {
		background: #BCBCBC; /*tableにスクロールバーを追加*/
	}
	.lock {
		overflow: hidden;
	}
	#Container {
		display: flex;
		flex-direction: column;
	}
}

/*================================================
 *  ヘッダー/グローバルナビゲーション
 ================================================*/
/* パソコン向けデザイン */
@media print, screen and (min-width:800px) {
	html {
		scroll-padding-top: 100px;
	}
	nav {
		position: sticky;
		position: -webkit-sticky;
		top: 0;
		z-index: 3;
		background-color: #006663;
	}
	.header_bnr {
		position: absolute;
		top: 0;
		right: 10px;
		margin: 0;
	}
	/* 1段目 */
	nav ul {
		margin: 0;
		padding: 0;
		height: 60px;
		display: table;
		table-layout: fixed;
		text-align: center;
		width: 100%;
		font-size: 1.7rem;
	}
	nav ul li {
		position: relative;
		width: calc(100% / 5);
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
		/*top: 0;
		bottom: 0;
		display: flex;
		align-items: center;*/
		display: table-cell;
		vertical-align: middle;
	}
	nav ul li:first-child { /*ホーム*/
		/*width:10%;*/
	}
	nav ul li a {
		display: block;
		margin: 0;
		padding: 15px 0;
		background: #006663;
		color: #fff;
		font-weight: bold;
		line-height: 1;
		text-decoration: none;
	}
	nav ul li a:hover {
		color: #ECF7F7;
	}
	nav ul > li a:hover, nav ul > nav ul li ul li a:hover {
		background-color: #0E8F8A !important;
		-webkit-transition: all .5s;
		transition: all .5s;
		color: #ECF7F7;
	}
	/* 2段目 */
	nav ul li ul {
		list-style: none;
		position: absolute;
		z-index: 3;
		top: 100%;
		left: 0;
		/*width:150%;*/
		height: inherit;
		margin: 0;
		padding: 0;
		font-size: 1.5rem;
	}
	nav ul li ul li {
		overflow: hidden;
		width: 100%;
		height: 0;
		transition: 0.5s;
		float: left;
	}
	nav ul li ul li:first-child {
		/*width:150%;*/
	}
	nav ul li ul li a {
		padding: 15px;
		text-align: left;
		background: #FFF;
		color: inherit;
	}
	nav ul li:hover > ul {
		border: 2px solid #0E8F8A;
	}
	nav ul li:hover > ul > li {
		overflow: visible;
		height: auto;
		border-bottom: 1px solid #0E8F8A;
	}
	nav ul li:hover ul li:last-child {
		border-bottom: 0px !important;
	}
	nav ul li:last-child ul {
		/*left:-50%;*/
	}
	nav ul li ul li ul::before {
		position: absolute;
		content: "";
		top: 13px;
		left: -20px;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-left-color: #fff;
	}
	nav ul li:last-child ul li ul::before {
		position: absolute;
		content: "";
		top: 13px;
		left: 200%;
		margin-left: -20px;
		border: 5px solid transparent;
		border-right-color: #fff;
	}
	nav ul li ul li a:hover {
		background: #0E8F8A;
	}
	.subnav a::after {
		content: '';
		display: inline-block;
		width: 6px;
		height: 6px;
		margin: 0 0 0 15px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.subnav ul li a::after {
		display: none;
	}
	#spMenu {
		display: none;
	}
	/*.fixed {
		position:fixed;
		top:0;
		left:0;
	}*/
}
/* スマホ向けデザイン */
@media screen and (max-width:800px) {
	html {
		scroll-padding-top: 20px;
	}
	header {
		z-index: 2;
		box-sizing: border-box;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		padding: 10px;
	}
	.logo {
		width: 50%;
	}
	.header_bnr {
		position: relative;
		top: auto;
		right: auto;
		margin-top: 10px;
	}
	nav {
		background: #006663;
	}
	nav ul {
		margin: 0;
		padding: 0;
	}
	nav .inner > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		/*top:80px;*/
		right: 0;
		width: 100%;
		height: 88%;
		height: -webkit-calc(100% - 80px);
		height: calc(100% - 80px);
	}
	nav li {
		position: relative;
		width: 100%;
		float: none;
		margin: 0;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #FFF;
		background: #006663;
	}
	nav li:first-child {
		border-top: 0;
	}
	nav li:last-child {
		border-bottom: 0;
	}
	nav li a {
		display: block;
		padding: 10px 30px;
		color: #fff;
		text-decoration: none;
		background: #006663;
	}
	nav li a:hover {
		color: #fff;
		background: #006663;
	}
	nav ul ul {
		display: none;
		position: relative;
	}
	nav li li a {
		box-sizing: border-box;
		width: 100%;
		padding: 10px 30px 10px 50px;
		text-align: left;
		background: #FFF;
		color: #0E8F8A;
	}
	nav li li li a {
		padding: 10px 30px 10px 70px;
	}
	.subnav > a:before {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 30px;
		width: 10px;
		height: 10px;
		margin-top: -5px;
		background: #f1f1f1;
	}
	.subnav > a:after {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 30px;
		width: 10px;
		height: 10px;
		margin-top: -10px;
		background: #006663;
	}
	.subnav a:hover:after {
		background: #006663;
	}
	.active > a:before {
		margin-top: 0;
	}
	.active > a:after {
		margin-top: 5px;
	}
	.gnav {
		display: none;
	}
	#spMenu {
		display: block;
		z-index: 2;
		position: fixed;
		top: 10px;
		right: 10px;
	}
	#spMenu:hover {
		cursor: pointer;
	}
	#navBtn {
		display: inline-block;
		position: relative;
		width: 30px;
		height: 30px;
		border-radius: 5%;
		background: #006663;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #f1f1f1;
		transition: .2s;
	}
	#navBtnIcon:before, #navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #f1f1f1;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -6px;
	}
	#navBtnIcon:after {
		margin-top: 4px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before, #navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
	}
}
/*================================================
 *  スライドショー
 ================================================*/
.slider {
	margin-bottom: 0;
}
.slick-dotted.slick-slider {
	margin-bottom: 0 !important;
}
.slider .l-mv-block {
	position: relative;
	z-index: 0;
	overflow: hidden;
}
ul.l-mv-block-slider {
	margin: 0;
	list-style: none;
}
.slider .slick-slide a {
	outline: none;
}
.slider .slick-slide img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.slider .l-mv-block-slider .slick-slide a {
	display: block;
}
.slider .l-mv-block-slider .u-slide-dots {
	text-align: center;
	position: absolute;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.slider .l-mv-block-slider .u-slide-dots li {
	width: 10px;
	height: 10px;
	background-color: #999;
	border-radius: 50%;
	cursor: pointer;
}
.slider .l-mv-block-slider .u-slide-dots li.slick-active {
	background-color: #fff;
}
.slider .l-mv-block-slider .u-slide-dots li:not(:first-child) {
	margin-left: 15px;
}
.slick_item img {
	height: auto;
	width: 100%;
	opacity: 0.4;
	transition: opacity .5s;
}
.slick_item.slick-center img {
	opacity: 1;
}
.slick_text {
	position: absolute;
	z-index: 1;
	bottom: 120px;
	right: 20px;
	background: #fff;
	padding: 5px 10px;
	color: #333;
	font-size: clamp(15px, 3.0vw, 30px);
}
.news_container {
	background-color: #F1ECEB;
}
.news_contents {
	display: flex;
	padding: 15px 15px;
	background-color: var(--color-white);
}
@media screen and (max-width: 800px) {
	.news_contents {
		display: block;
	}
}
@media screen and (min-width: 800px) {
	.news_contents {
		padding: 30px 100px;
		max-width: 1200px;
		margin: auto;
	}
}
.news_titleBox {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 12px;
	flex-shrink: 0;
}
@media screen and (max-width: 800px) {
	.news_titleBox {
		flex-direction: inherit;
		justify-content: space-between;
	}
}
.news_block {
	padding-left: 12px;
}
@media screen and (min-width: 800px) {
	.news_block {
		padding-left: 23px;
	}
}
@media screen and (min-width: 800px) {
	.news_block {
		padding-left: 50px;
		border-left: 2px solid #d6d0c2;
	}
}
.news_link {
	display: block;
	transition: opacity 0.4s;
	color: var(--color-black);
}
.news_link time {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: calc(21.6/ 16);
	margin-right: 15px;
}
.news_link dd {
	margin-bottom: 1em;
}
@media screen and (min-width: 800px) {
	.news_link time {
		line-height: calc(21.6/ 18);
		margin-right: 30px;
	}
}
.slider .news-block {
	background-color: #fafafa;
	padding: 10px 0;
}
.slider .news-block a {
	text-decoration: none;
}
.news-inner-block {
	position: relative;
	max-width: 1140px;
	padding: 0 30px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}
.slider .news-block > .news-inner-block::after {
	content: "";
	clear: both;
	display: block;
}
.slider .news-block-tag {
	width: 150px;
	height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	background-color: #006663;
}
.slider .news-block-content {
	max-width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.slider .news-block-content .time {
	font-size: 16px;
	font-weight: bold;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.slider .news-block-content .news-content {
	font-size: 16px;
	white-space: nowrap;
	overflow: hidden;
	/*text-overflow: ellipsis;*/
	/*max-height: 24px;*/
}
.slider .news-block-gallery-btn {
	margin-left: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.slider .news-block .news-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.slider .news-block .news-list .news-btn {
	width: 30px;
	height: 30px;
	background-color: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: solid 1px #0E8F8A;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	z-index: 1;
}
.slider .news-block .news-list .news-btn > span {
	display: block;
	position: relative;
}
.slider .news-block .news-list .news-btn > span::before {
	content: "";
	display: block;
	width: 6px;
	height: 11px;
}
.slider .news-block .news-list .news-btn:hover {
	background-color: #0E8F8A;
}
.slider .news-block .news-list .news-btn:hover.prev > span::before {
	background-image: url("/ptot-tracen/images/arrow-left-white.svg");
}
.slider .news-block .news-list .news-btn:hover.next > span::before {
	background-image: url("/ptot-tracen/images/arrow-right-white.svg");
}
.slider .news-block .news-list .news-btn.prev {
	right: 35px;
}
.slider .news-block .news-list .news-btn.prev > span::before {
	background-color: transparent;
	background-image: url("/ptot-tracen/images/arrow-left.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.slider .news-block .news-list .news-btn.next > span::before {
	background-color: transparent;
	background-image: url("/ptot-tracen/images/arrow-right.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@media only screen and (min-width: 800px) {
	.news-inner-block {
		margin: 0 auto;
	}
	.slider .slick-slide img {
		/*height: 400px;*/
		max-width: 1200px;
		/*width: 41.6666666667vw;*/
	}
	.slider .l-mv-block-slider .slick-slide a {
		opacity: 0.8;
	}
	.slider .news-block-tag {
		float: left;
	}
	.slider .news-block-content {
		margin-left: 20px;
	}
	.slider .news-block-content .news-content {
		margin-left: 20px;
	}
	.slider .news-block .news-list .slick-slide {
		line-height: 40px;
	}
}
@media only screen and (max-width: 800px) {
	.news-inner-block {
		padding: 0 15px;
		width: auto;
	}
	.slider .slick-slide img {
		height: 300px;
	}
	.slider .news-block {
		padding: 15px 0;
	}
	.slider .news-block-tag {
		margin-bottom: 10px;
	}
	.slider .news-block-content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.slider .news-block-content .time {
		display: block;
		font-size: 12px;
	}
	.slider .news-block-content .news-content {
		font-size: 14px;
		margin-top: 6px;
	}
	.slick_item img {
		opacity: 1;
	}
	.slick_text {
		bottom: 20px;
	}
}
/*================================================
 *  パンくずリスト
 ================================================*/
.breadcrumb {
	margin: 0;
	padding: 0;
}
.breadcrumb li {
	display: inline-block; /*横に並ぶように*/
	list-style: none;
}
.breadcrumb li:after { /* ?を表示*/
	content: '>';
	padding: 0 3px;
	color: #333;
}
.breadcrumb li:last-child:after {
	content: '';
	padding: 0;
}
.breadcrumb li a {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 15px;
	/*text-decoration: none;*/
	color: #333;
	/*background: #CCC;*/
	font-size: 0.9em;
}
.breadcrumb li a:hover {
	background: #FFF;
}
/*================================================
 *  カラム
 ================================================*/
.column {
	display: flex;
	margin: -20px 0 -20px -20px;
}
.column img {
	max-width: 100%;
}
.col_20 {
	flex-basis: 20%;
	margin: 20px 0 20px 20px;
}
.col_25 { /*4分割*/
	flex-basis: 25%;
	margin: 20px 0 20px 20px;
}
.col_75 {
	flex-basis: 75%;
	margin: 20px 0 20px 20px;
}
.col_80 {
	flex-basis: 80%;
	margin: 20px 0 20px 20px;
}
.col_50 { /*2分割*/
	flex-basis: 50%;
	margin: 20px 0 20px 20px;
}
@media screen and (max-width:1200px) {
	.column, .col_20, .col_25, .col_75, .col_80, .col_50 {
		/*width: 95%;*/
		display: block;
	}
}
/*================================================
 *  リンクボックス
 ================================================*/
ul.link_box {
	margin: 1em auto;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-around;
}
ul.link_box li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	width: 20%;
	position: relative;
	text-align: center;
	margin-bottom: 30px;
}
ul.link_box li a {
	display: block;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px;
	border: 1px dotted #CCC;
	background-color: #FAEBE9;
	text-decoration: none;
	color: #333;
}
ul.link_box li a img {
	width: auto;
	max-width: 100%;
	opacity: 0.9;
	filter: alpha(opacity=90);
	-ms-filter: "alpha( opacity=90 )";
}
ul.link_box li a:hover img {
	opacity: 1.0;
	filter: alpha(opacity=100);
	-ms-filter: "alpha( opacity=100 )";
}
ul.link_box li a span {
	display: block;
	padding-top: 10px;
	font-weight: bold;
}
ul.link_box li a:hover {
	box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 10px 0px;
	border: 1px solid #000;
	color: #000;
}
@media screen and (max-width:800px) {
	ul.link_box li {
		width: 100%;
		display: block;
	}
}
ul.nav-menu li a {
	position: relative;
	display: block;
	text-decoration: none;
	padding: 1em;
	border-bottom: solid 1px #CCC;
	font-size: clamp(15px, 2.0vw, 20px);
}
ul.nav-menu li a:hover {
	color: #0E8F8A;
}
ul.nav-menu li a::after {
	position: absolute;
	font-family: "FontAwesome";
	content: "\f061";
	right: 10px;
	color: #006663;
	transform: rotate3d(1, 0, 0, 360deg);
	transition: 2s;
}
/*================================================
 *  テーブル
 ================================================*/
table.table_yoko {
	border-collapse: separate;
	border: 0px;
}
table.table_yoko th {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px dashed #ccc;
	background: none;
	font-weight: bold;
	text-align: left;
}
table.table_yoko td {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px dashed #ccc;
}
.th_name {
	width: 7em;
}
/* 横スクロールあり */
.tableArea td {
	white-space: nowrap;
}
/*------------------------------------------
// 囲み
----------------------------------------- */
.kakomi {
	position: relative;
	margin: 2em auto;
	padding: 1.2em;
	display: inline-block;
	background-color: #FFF;
	border: 2px solid #E8E8ED;
	box-shadow: 2px 2px 1px #ccc;
}
.kakomi .kakomi-title {
	position: absolute;
	padding: 0 0.5em;
	left: 20px;
	top: -15px;
	font-weight: bold;
	background-color: #fff;
}
/*------------------------------------------
// リンクボタン
----------------------------------------- */
.btn {
	display: inline-block;
	/*max-width: 320px;*/
	text-align: left;
	background-color: #006663 !important;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	margin: 0.5em;
	padding: 10px 20px 10px 30px !important;
	border-radius: 5px;
	position: relative;
	/*white-space: nowrap;*/
}
.btn::before {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -10px;
}
.btn:hover {
	opacity: 0.8;
	color: #FFF;
}
input {
	white-space: normal;
}
input.btn_archive {
	display: inline-block;
	border: none;
	border-radius: 5px;
	padding: 10px 15px;
	margin: 5px;
	background-color: #3A72BC;
	color: #FFF;
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	cursor: pointer;
}
input.btn_archive:hover {
	background-color: #2E5A93;
}
/*-------------------------------------------
タブメニュー
-------------------------------------------*/
.tab-wrap {
	display: flex;
	flex-wrap: wrap;
	margin: 20px 0;
}
.tab-wrap:after {
	content: '';
	width: 100%;
	height: 3px;
	background: #006663;
	display: block;
	order: -1;
}
.tab-label {
	color: #3A9B94;
	background: #ECF7F7;
	font-weight: bold;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
	white-space: nowrap;
	text-align: center;
	padding: 10px .5em;
	order: -1;
	position: relative;
	z-index: 1;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	flex: 1;
}
.tab-label:not(:last-of-type) {
	margin-right: 5px;
}
.tab-label:hover {
	color: #FFF;
	background: #3A9B94;
}
.tab-content {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked + .tab-label {
	color: #FFF;
	background: #006663;
}
.tab-switch:checked + .tab-label + .tab-content {
	height: auto;
	overflow: auto;
	opacity: 1;
	transition: .5s opacity;
}
/* ラジオボタン非表示 */
.tab-switch {
	display: none;
}
@media screen and (max-width:800px) {
	.tab-label {
		max-width: 5em;
	}
}
/*------------------------------------------
// 絞り込み表示
----------------------------------------- */
ul#filter {
	background: #EAF5F5;
	margin: 0 10px;
	display: block;
	font-size: 13px;
	overflow: hidden;
}
ul#filter li {
	list-style: none;
	float: left;
	margin: 0 !important;
	padding: 10px;
}
ul#filter li a {
	color: #333;
	text-decoration: none;
	padding: 10px;
}
ul#filter li.current a, ul#filter li a:hover {
	color: #FFF;
	background: #006663;
	text-decoration: none;
	border-radius: 5px;
	padding: 10px;
}
ul#filter li.current a {
	color: #FFF;
	font-weight: bold;
}
/* スマホ向け */
@media screen and (max-width: 800px) {
	ul#filter {
		width: 100%;
	}
}
/*------------------------------------------
// アコーディオンメニュー
----------------------------------------- */
.acd-check {
	display: none;
}
.acd-label {
	background: #006663;
	color: #fff;
	display: block;
	padding: 10px;
	position: relative;
	cursor: pointer;
}
.acd-label::after {
	background: #0E8F8A;
	box-sizing: border-box;
	content: '\f067';
	display: block;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	height: 40px;
	padding: 10px 20px;
	position: absolute;
	right: 0;
	top: 0px;
}
.acd-content {
	background: #ECF7F7;
	display: block;
	height: 0;
	opacity: 0;
	margin: 0 0 0.5em 0;
	padding: 0 10px;
	transition: .5s;
	visibility: hidden;
}
.acd-check:checked + .acd-label::after {
	content: '\f068';
}
.acd-check:checked + .acd-label + .acd-content {
	height: 350px;
	opacity: 1;
	padding: 10px;
	visibility: visible;
}
/*------------------------------------------
// 写真整列
----------------------------------------- */
.photo_inner {
	display: flex;
	flex-wrap: wrap;
}
.photo_card {
	margin: 0 20px 20px 0;
}
.photo_card:last-child {
	margin-right: 0px;
}
.photo_item {
	height: 213px;
	object-fit: contain;
}
@media screen and (max-width:800px) {
	.photo_inner {
		display: block;
	}
	.photo_card {
		width: 100%;
	}
}
/*------------------------------------------
// リンクアイコン自動付与
----------------------------------------- */
/* pdf要素*/
a[href*=".pdf"]:not([src*=".png"])::after {
	content: url(/ptot-tracen/images/icon_pdf.png);
}
/* Word要素*/
a[href*=".doc"]::after {
	content: url(/ptot-tracen/images/icon_word.png);
}
/* Excel要素*/
a[href*=".xls"]::after {
	content: url(/ptot-tracen/images/icon_excel.png);
}
/* zip要素*/
a[href*=".zip"]::after {
	content: url(/ptot-tracen/images/icon_zip.png);
}
/*別サイトリンク*/
a[href^="http"]:not(.no_icon)::after {
	content: url(/ptot-tracen/images/icon_external.png);
}
/* 画像拡大*/
a[href*=".jpg"], a[href*=".png"] {
	cursor: zoom-in;
}
/*メール*/
a[href^="mailto"]::after {
	content: url(/ptot-tracen/images/icon_mail.png);
}
/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	width: 100%;
	background: #006663;
	color: #FFF;
	margin: 0 auto;
	padding: 1em 0;
}
.footer_sitetitle {
	font-size: 2rem;
}
.footer_area {
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em;
}
.footer_area a {
	font-family: 'Noto Sans JP', "游ゴシック", YuGothic, "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	top: 0;
	left: 0;
	transition-duration: 0.2s;
}
.footer_area a:hover {
	left: 0;
	top: -5px;
	box-shadow: 0px 3px 5px rgb(0 0 0 / 20%);
}
.footer_link {
	margin-bottom: 2em;
	font-size: 1.7rem;
	text-align: center;
}
.footer_mail {
	color: #FFF !important;
}
a.link_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	background-color: #fff;
	width: 100%;
	padding: 1em 0.5em;
}
.copyright {
	clear: both;
	padding: 10px 0;
	font-size: 1rem;
	text-align: center;
}
/*================================================
 *  ページトップへの戻り
 ================================================*/
a.totop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	padding: 0;
	background: #fff;
	border-radius: 50%;
	-webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
	box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}
a.totop i {
	font-size: 200%;
	padding: 0 30%;
	line-height: 60px;
	-webkit-transition: all .3s;
	transition: all .3s;
	letter-spacing: 0;
}
a.totop:hover i {
	line-height: 50px;
}
/*================================================
 *  ご挨拶
 ================================================*/
@media screen and (min-width:800px) {
	#aisatsu figure img {
		margin: 0.5em 3em 1em 0;
	}
	#aisatsu p {
		font-size: 110%;
		line-height: 3rem;
	}
	#aisatsu .aisatsu_name {
		font-size: 130%;
		text-align: right;
	}
}
@media screen and (max-width:800px) {
	#aisatsu figure {
		text-align: center;
	}
	#aisatsu figure img {
		width: 30%;
	}
	#aisatsu .aisatsu_name {
		margin-top: 1em;
	}
}
/*================================================
 *  応募方法フロー
 ================================================*/
.flow {
	margin: 0 0 20px 0;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	gap: 20px;
}
.flow li {
	margin-left: 0 !important;
	list-style-type: none;
	width: 285px;
	display: grid;
}
.flow li .icon {
	line-height: 2;
	width: 2em;
	height: 2em;
	text-align: center;
	color: #fff;
	background: #4788c6;
	margin: 0 auto 10px;
	display: block;
	border-radius: 100vh;
	position: relative;
	-webkit-animation: icon 2s infinite cubic-bezier(.51, .35, .71, .55);
	animation: icon 2s infinite cubic-bezier(.51, .35, .71, .55);
	opacity: 0.3;
}
.flow li .icon::before {
	content: "";
	border: solid transparent;
	border-width: 7px;
	border-top-color: #4788c6;
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.step1 {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.step2 {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.step3 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.step4 {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.flow li dl {
	padding: 30px;
	margin: 0;
	border: 1px solid #b2d3dd;
	position: relative;
}
.flow li:not(:first-child) dl::before {
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 10px;
	display: inline-block;
	border-top: 4px solid #b2d3dd;
	border-right: 4px solid #b2d3dd;
	position: absolute;
	top: calc(50% - 14px);
	left: -25px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.flow li dl dt {
	font-size: 2rem;
	font-weight: 600;
	color: #4788c6;
	-ms-flex-preferred-size: 20%;
	flex-basis: 20%;
	margin-bottom: 10px;
	text-align: center;
}
.flow li dl dd {
	margin-left: 0;
}
@media screen and (max-width:800px) {
	.flow {
		margin: auto;
		width: 300px;
	}
	.flow li:not(:first-child) dl::before {
		top: -35px;
		left: 50%;
		transform: rotate(135deg);
	}
	.flow li dl {
		margin-top: 30px;
	}
}
/*================================================
 *  業績
 ================================================*/
.graph {
	width: 100vw;
	height: 50vw;
	overflow-x: scroll;
}
/*================================================
 *  過去のお知らせ
 ================================================*/
dl.information {
	margin: 1em;
}
dl.information dt {
	float: left;
	margin: 0;
	padding: 15px 0;
	vertical-align: top;
	border-bottom: none;
	color: #534741;
	width: 7em;
}
dl.information dd {
	margin: 0;
	padding: 15px 0;
	vertical-align: top;
	border-bottom: 1px dotted #333;
	font-weight: bold;
}
span.new {
	color: #ffffff;
	font-size: 10px;
	background: #f35b69;
	position: relative;
	top: -2px;
	display: inline-block;
	margin-left: 8px;
	padding: 2px 5px;
}
@media only screen and (max-width:800px) {
	dl.information dd {
		display: block;
		clear: both;
	}
}