<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

@import url("/syntax/css/webinar.css");
@import url("/syntax/css/tx_products.css");
@import url("/syntax/css/jquery-scroll-hint.css");
@import url("/syntax/css/jquery-slick-theme.css");
@import url("/syntax/css/jquery-slick.css");
@import url("/syntax/css/jquery.bxslider.css");
@import url("/syntax/css/tx_basic.css");

/*--------------------- googleフォント -------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&amp;display=swap');
.zen-maru{
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
}
.light {
	font-weight: 300;
	font-style: normal;
}

.regular {
	font-weight: 400;
	font-style: normal;
}

.medium {
	font-weight: 500;
	font-style: normal;
}

.bold {
	font-weight: 700;
	font-style: normal;
}

.black {
	font-weight: 900;
	font-style: normal;
}

/*--------------------- リストスタイル -------------------------*/
/* .txBorderList li {
	border-bottom: 1px solid #ccc;
	padding: 10px 0;
}

.txNoDiskList {
	list-style: none;
} */


/* 枠 + 番号付きol */
.txWakuList li {
	counter-increment: cnt;
	position: relative;
	list-style: none;
	border: 1px solid #44AF35;
	border-radius: 15px;
	padding: 15px 15px 15px 20px;
	margin-bottom: 20px;
}

.txWakuList li:before {
	content: counter(cnt);
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 19%;
	left: -15px;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	background: #44AF35;
}

.txWakuList li div {
	border-bottom: 1px solid #44AF35;
	color: #44AF35;
	font-size: 1.333em;
	font-weight: bold;
}

.txWakuList li p {
	margin: 0;
}

/* セクションに下線区切りをつける時 */
.txBorder_bt,
.txBorder_bottom {
	position: relative;
	padding-bottom: 50px;
}

.txBorder_bt:after,
.txBorder_bottom:after {
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	margin-top: 50px;
	background: -moz-linear-gradient(to left, #efefef, #b5b5ac 30%, #efefef);
	background: -webkit-linear-gradient(to left, #efefef, #b5b5ac 30%, #efefef);
	background: linear-gradient(to left, #efefef, #b5b5ac 30%, #efefef);
	z-index: 2;
}


hr.txHr {
	margin-top: 50px;
}

/*--------------------- 横並び -------------------------*/
.txFlex {
	display: flex;
}

.txFlex.wrap {
	flex-wrap: wrap;
}

.txFlex.between {
	justify-content: space-between;
}

.txFlex.evenly {
	justify-content: space-evenly;
}

.txFlex.fCenter {
	justify-content: center;
}

.txFlex.rowReverse {
	flex-direction: row-reverse;
}

/* 2:1かつ1:1:1 */
.txColumn2-1even {
    display: flex;
}

.txColumn2-1even .left {
    width: calc(100% * 2 / 3);
    display: flex;
    flex-direction: column;
}

.txColumn2-1even .left-top {
    display: flex;
}

.txColumn2-1even .left-top-left,
.txColumn2-1even .left-top-right {
    width: 50%;
	padding: 0 5px;
}

.txColumn2-1even .right {
    width: calc(100% / 3);
	padding: 0 5px;
}

@media screen and (max-width:736px) {
	.txColumn2-1even {
		flex-direction: column;
	}
	.txColumn2-1even .left {
		width: 100%;
	}
	.txColumn2-1even .left-top {
		flex-direction: column;
	}
	.txColumn2-1even .left-top-left,
	.txColumn2-1even .left-top-right {
		width: 100%;
		padding: 0;
	}
	.txColumn2-1even .right {
		width: 100%;
		padding: 0;
	}
}

/* 2分割 */
.txColumn2 {
	width: calc(100% / 2 - 1%);
}

/* 3分割 */
.txColumn3 {
	width: calc(100% / 3 - 1%);
}

/* 3分割の2/3 */
.txColumn3-2 {
	width: calc(100% / 3 * 2 - 1%);
}

/* 4分割の1/4 */
.txColumn4 {
	width: calc(100% / 4 - 5px);
}

.txColumn4 img {
	width: 100%;
}

/* 4分割の3/4 */
.txColumn4-3 {
	width: calc(100% / 4 * 3 - 5px);
}

@media screen and (max-width:736px) {

	.txColumn3,
	.txColumn3-2,
	.txColumn4,
	.txColumn4-3 {
		width: 49%;
		margin: 0;
	}
}

@media screen and (max-width:480px) {

	.txFlex {
		display: flex;
		flex-direction: column;
	}

	.txColumn3,
	.txColumn3-2,
	.txColumn4,
	.txColumn4-3 {
		width: 100%;
		margin: 0;
		margin-bottom: 20px;
	}
}

.txBox3 {
	width: 32%;
}

.txBox2 {
	width: 49%;
}

@media screen and (max-width:736px) {
	.txBox3 {
		width: 49%;
	}
}

.ml1p {
	margin-left: 1%;
}

.mr1p {
	margin-right: 1%;
}

.txBrBt {
	border-bottom: 1px solid #333;
	padding: 5px 0;
}

/*--------------------- 両端揃え ---------------------------*/
/* .txJustify {
	text-align: justify;
	text-justify: inter-ideograph;
} */
.tJustify {
	text-align: justify;
}

/*--------------------- アコーディオン ---------------------------*/
/*---------- トグル 横Max 四角 -----------*/
.faq_btn {
	position: relative;
	margin-bottom: 0;
	background: #4b7fc1;
	border-bottom: #969696;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.39);
}

.faq_btn:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 13px;
	right: 15px;
	width: 13px;
	height: 13px;
	border: 3px solid;
	border-color: transparent #fff #fff transparent;
	transform: rotate(45deg);
}

.faq_btn:hover {
	opacity: 1;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .3), inset 0 0 5000px rgba(0, 0, 0, .05);
	cursor: pointer;
}

.faq_btn.green {
	background: #38a24a;
}

/*---------- トグル 横80% 楕円-----------*/
.txToggleBtn {
	position: relative;
	margin: 20px auto 0;
	padding: 6px 15px 5px;
	background: #4b7fc1;
	border-radius: 4px;
	box-shadow: 2px 2px 0 rgba(98, 142, 149, 0.8);
	color: #fff;
	font-size: 1.2em;
	font-weight: 700;
}

.txToggleBtn:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 13px;
	right: 20px;
	width: 13px;
	height: 13px;
	border: 3px solid;
	border-color: transparent #fff #fff transparent;
	transform: rotate(45deg);
}

.txToggleBtn.clicked:after {
	transform: rotate(-135deg);
	top: 20px;
}

.txToggleBtn:hover {
	opacity: 1;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .3), inset 0 0 5000px rgba(0, 0, 0, .05);
}

.txToggleBtn.aqua-blue {
	background: #4bbcc1;
}

.txToggleBtn.green {
	background: #38a24a;
}


/*--------------------- youtube ---------------------------*/
/* .txVideo {
	max-width: 425px;
	height: 241px;
	overflow: hidden;
	margin: auto;
}

.txVideo_big {
	max-width: 560px;
	height: 315px;
	overflow: hidden;
	margin: auto;
}

.txVideo iframe,
.txVideo_big iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.txYoutube,
.txYoutube_big {
	position: relative;
}

.txYoutube::before,
.txYoutube_big::before {
	position: absolute;
	content: "Click to Play";
	color: #fff;
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	line-height: 50px;
	background: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	transition: all 0.3s;
}

.txYoutube:hover::before,
.txYoutube_big:hover::before {
	background: rgba(0, 0, 0, 0.7);
	cursor: pointer;
	transition: all 0.3s;
}

.txYoutube img,
.txYoutube_big img {
	width: 100%;
} */


/* youtubeページ内再生CSS */
	/* basic.cssに移行 */

/*--------------------- 背景 フォントカラーの追加 ---------------------------*/
.txBg-yellow {
	background: #ffe552 !important;
}

.txBg-red {
	background: #d00 !important;
}

.txBr-blue {
	border: 1px solid #e4f1fb;
	border-radius: 5px;
	padding: 1%;
}

.txBr-red {
	border: 1px solid #d00;
	padding: 1%;
}

.txMarker {
	background: -webkit-linear-gradient(transparent 70%, rgb(248, 128, 128) 30%);
	background: linear-gradient(transparent 70%, rgb(248, 128, 128) 30%);
}

.txml50 {
	margin-left: 50px;
}

.txfLeft {
	float: left;
}

@media screen and (max-width: 736px) {
	.txml50 {
		margin-left: 0;
	}

	.txfLeft {
		float: none;
		margin: 0 auto;
	}
}

/*--------------------- トップページ分野ボタンカラー ---------------------------*/
.toggleBar+div {
	display: none;
}

.toggleBar+div.active {
	display: block;
}

.txOverflow {
	overflow: hidden;
}

/*--------------------- 塩ビ管ページなど ---------------------------*/
/* 可視領域マーカー用CSS */
/* tx_basic.cssに移行 */

.bnr_col3 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.bnr_col3 a {
	display: block;
	width: 32%;
}

.bnr_col3 a img {
	width: 100%;
}

.txToC {
	position: fixed;
	bottom: 10px;
	left: 50%;
	margin-left: -75px;
	z-index: 10000;
	display: block;
	width: 150px;
	height: 48px;
}

.txToC a {
	display: inline-block;
	width: 100%;
	height: 100%;
	padding-top: 1.2em;
	vertical-align: middle;
	text-align: center;
	color: #FFF;
	font-size: 0.8em;
	opacity: 0.8;
	background: rgb(232, 70, 146);
}

.txToC a:hover {
	opacity: 1;
}

@media screen and (max-width:736px) {
	.bnr_col3 {
		flex-wrap: wrap;
	}

	.bnr_col3 a {
		width: 100%;
		margin-top: 20px;
	}
}



/*--------------------- 塩ビ管ページなど目次 ---------------------------*/
.partsFrame_head {
	background: #f0c3d8;
	padding: 5px 0 5px 25px;
	color: #e05490;
	font-size: 1.2666rem;
	font-weight: 700;
	letter-spacing: 6px;
}

.partsFrame {
	margin: 0;
	padding: 15px;
	border: none;
	background: #fff1f9;
}

.partsPage_list {
	margin-top: 0;
	padding-left: 2rem;
}

.partsPage_list li {
	width: 99.9%;
	margin: 15px 0 0 0;
	padding: 0 0 5px;
	line-height: 1.5;
}

.partsPage_list li&gt;a {
	display: block;
	color: #004ead;
	border-bottom: 1px solid #ddd;
	font-size: 1.0666rem;
}

.partsPage_list li&gt;a:hover {
	color: #ff4081;
}

.partsPage_list ul {
	list-style: none;
	padding-left: 1rem;
}

.partsPage_list ul li&gt;a:before {
	content: "";
	display: inline-block;
	border-top: 5px solid transparent;
	border-left: 8.66025px solid #004ead;
	border-bottom: 5px solid transparent;
	text-indent: 0;
	margin-right: .5em;
	vertical-align: 0;
}

.partsPage_list ul li&gt;a:hover:before {
	border-left: 8.66025px solid #ff4081;
}

.partsPage_list ul li ul li&gt;a:before {
	content: "";
	display: inline-block;
	background: #004ead;
	width: 5px;
	height: 5px;
	border: none;
	border-radius: 50%;
	text-indent: 0;
	margin-right: .5em;
	vertical-align: middle;
}

.partsPage_list ul li ul li&gt;a:hover:before {
	border: none;
}

@media screen and (max-width:736px) {
	.partsFrame_head {
		padding: 0 0 0 10px;
	}

	.partsPage_list li {
		width: auto;
		margin: 10px 0 0;
	}
}



/*--------------------- 水のある旅ページ ---------------------------*/
.txMizu_text {
	margin: -20px 190px 5em;
}

.txMizu_text a {
	font-weight: bold;
}

.txMizu_map {
	margin: 50px 0 -75px;
	width: 100%;
	padding: 50px 0 75px;
	text-align: center;
	background: #ffffcc;
}

.txMizu_map img {
	max-width: 1200px;
	width: 98%;
}

@media screen and (max-width:736px) {
	.txMizu_text {
		margin: -10px 1em 3em;
	}
}

/*--------------------- ソリューションページ ---------------------------*/
.txSolution03-02 h4.txOrange {
	display: inline-block;
	margin-top: 1em;
	width: 320px;
	padding: 0 0.5em;
	color: #FFF;
	font-size: 1.3em;
	border-radius: 0 20px 20px 0;
	background: #f6ac49;
}

.txSolution03-02 h4.txPink {
	display: inline-block;
	margin-top: 1em;
	width: 320px;
	padding: 0 0.5em;
	color: #FFF;
	font-size: 1.3em;
	border-radius: 0 20px 20px 0;
	background: #f19192;
}

.txSolution03-02 h4.txPorange {
	text-align: left;
	color: #f6ac49;
	font-size: 1.5em;
	font-weight: bold;
}

.txSolution03-02 h4.txPpink {
	text-align: left;
	color: #f19192;
	font-size: 1.5em;
	font-weight: bold;
}

.txSolution03-02 ul.txFlexList {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.txSolution03-02 ul.txFlexList li {
	margin-bottom: 50px;
	width: 49%;
	text-align: center;
}

.txSolution03-02 ul.txFlexList li p {
	margin-top: 0;
	text-align: left;
	font-size: 0.8em;
}

.txSolution03-02 ul.txFlexList li p.txFs {
	font-size: 0.8em;
}

.txSolution03-02 ul.txFlexList li p.txBt {
	padding-top: 0.2em;
	border-top: 1px solid #333;
}

.txSolution03-02 ul.txFlexList li img {
	max-width: 100%;
}

@media all and (max-width:736px) {
	.txSolution03-02 ul.txFlexList li {
		width: 100%;
	}
}

/*--------------------- タイトル・アンカーリンク---------------------------*/
.tx_h3 {
	padding: 0.8rem 0;
	background: #f2f2f2;
	border-top: 1px solid #5f5f5f;
	border-bottom: 1px solid #5f5f5f;
	font-size: 1.8rem;
	text-align: center;
}

.tx_h3 span {
	font-size: 1.1333rem;
}

.txAnchorLink {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
	background: #fff;
}

/* .slick {
	position: fixed;
	top: -110px; //上に隠す鷹さ
	left: 0; 
	width: 100%;
	padding: 10px 1% 25px;
	align-items: center;
	background: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #f2f2f2;
	box-shadow: 2px 2px 2px #efefef;
	color: #fff;
	opacity: 0; //最初読み込んだときは透過 
	z-index: 9999;
} */

.txAnchorLink li {
	width: 49%;
	text-align: center;
}

.txAnchorLink li a {
	display: block;
	border-left: 1px solid #9f9f9f;
}

.txAnchorLink li:last-child a {
	border-right: 1px solid #9f9f9f;
}

.txAnchorLink a:hover {
	background: #004ea2;
}

.txAnchorLink a:hover p {
	color: #fff;
	;
}

.txAnchorLink a:hover&gt;span {
	color: #fff;
}

.txAnchorLink li p {
	width: 94%;
	margin: 0 auto;
	padding: 0 0.5rem 0.5rem;
	border-bottom: 2px solid transparent;
	color: #191919;
	word-break: normal;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: bold;
}

.txAnchorLink li a:hover p {
	border-bottom: 2px solid #ffd700;
}

.txAnchorLink li p span {
	display: block;
	margin-top: 3px;
	color: #b8860b;
	font-size: 0.8rem;
	font-weight: bold;
}



#uiep_sem .txAnchorLink li {
	width: 49%;
}

#uiep_sem .txAnchorLink li p {
	padding: 1.25rem 0.5rem 0.8rem;
}

@media all and (max-width:736px) {
	.txAnchorLink li a:hover p {
		border-bottom: none;
	}
}

/*--------------------- テーブル調整 ---------------------------*/
.txTightTable {
	width: 100%;
}

.txTightTable th,
.txTightTable td {
	padding-left: 0.5% !important;
	padding-right: 0.5% !important;
}

.txCenterTable td {
	text-align: center;
}

.txCenterTable th,
.txCenterTable td {
	border-left: 1px solid #ddd !important;
	border-right: 1px solid #ddd !important;
}

.txBorder-left {
	border-left: 1px solid #ddd !important;
}

/*--------------------- 国土交通省認定・消防安全センター評定書一覧ページ ---------------------------*/
.txNintei_anc ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto 0;
	padding: 0;
	list-style: none;
}

.txNintei_anc ul li {
	width: 24%;
	margin: 0 1% 30px 0;
	box-sizing: border-box;
}

.txNintei_anc ul li a {
	display: block;
	border: 1px solid #ddd;
	box-sizing: border-box;
	text-decoration: none;
}

.txNintei_anc ul li a img {
	display: block;
}

.txNintei_anc ul li a p {
	position: relative;
	display: table;
	width: 100%;
	height: 72px;
	margin: 0;
	text-align: center;
	line-height: 1;
	padding: 0;
}

.txNintei_anc ul li a span {
	display: table-cell;
	height: 100%;
	vertical-align: middle;
	color: #333;
}

.txNintei_anc ul li a p::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 45%;
	bottom: -7px;
	border-top: 10px solid #333;
	border-right: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid transparent;
}

@media screen and (max-width:736px) {
	.txNintei_anc ul li {
		width: 100%;
		margin: 1% 0;
	}

	.txNintei_anc ul li a {
		display: flex;
		padding: 0;
	}

	.txNintei_anc ul li a p {
		width: 79%;
		height: 110px;
		padding-left: 1em;
		box-sizing: border-box;
		text-align: left;
	}

	.txNintei_anc ul li a p::after {
		top: 50%;
		right: 4%;
	}

	.txNintei_anc ul li a img {
		width: 20%;
		height: 100%;
		margin: auto;
	}
}


.txNintei_anc ul li:first-child a p {
	background: #77e2b6;
}

.txNintei_anc ul li:nth-child(2) a p {
	background: #8ce281;
}

.txNintei_anc ul li:nth-child(3) a p {
	background: #a5cfff;
}

.txNintei_anc ul li:nth-child(4) a p {
	background: #fdd35c;
}

.txNintei_anc ul li:nth-child(8) a p {
	background: #efa3c6;
}

.txNintei_anc ul li:nth-child(7) a p {
	background: #f29a76;
}

.txNintei_anc ul li:nth-child(5) a p {
	background: #79d1f5;
}

.txNintei_anc ul li:nth-child(6) a p {
	background: #fb9090;
}

/*--------------------- 新規取得 装飾 ---------------------------*/
.sinki_fukidasi {
	position: relative;
}

.sinki_fukidasi p {
	position: absolute;
	left: 0;
	bottom: 10px;
}

@media screen and (max-width:736px) {
	.sinki_fukidasi p {
		width: 17%;
	}
}

.txHeadLine5 {
	position: relative;
	height: 1.2em;
}

.txHeadLine5 p {
	display: inline-block;
	position: absolute;
	left: 1em;
	top: -10px;
	margin: 0;
	padding: 5px 1em;
	background: #fff;
	font-size: 1.06667rem;
	font-weight: 700;
}

.txHeadLine5.bg_red {
	background: #dd1234;
}

/*--------------------- 資料検索ページ ---------------------------*/
.txDlHead {
	position: relative;
	margin-top: -30px !important;
	margin-bottom: 20px;
}

.txDlSupport {
	position: absolute;
	left: 0;
	top: 7px;
	display: flex;
	margin-bottom: 30px;
}

.txDlSupport .supportBtn,
.txDlSupport .supportShortcutBtn {
	margin-right: 10px;
}

.txDlSupport .supportBtn br,
.txDlSupport .supportShortcutBtn br {
	display: none;
}

@media screen and (max-width:736px) {
	.txDlHead {
		margin-top: -20px;
		margin-bottom: 20px;
	}

	.txDlSupport {
		position: relative;
		top: auto;
		width: 100%;
		justify-content: space-between;
		margin-top: 20px;
		margin-bottom: 0;
		padding-left: 0;
	}

	.txDlSupport .supportBtn,
	.txDlSupport .supportShortcutBtn {
		width: calc(50% - 5px);
		margin-right: 0;
		line-height: 1.3;
	}

	.txDlSupport .supportBtn br,
	.txDlSupport .supportShortcutBtn br {
		display: inline;
		font-size: 13px;
	}
}

@media screen and (max-width:360px) {

	.txDlSupport .supportBtn,
	.txDlSupport .supportShortcutBtn {
		font-size: 3vw;
	}
}

.txPDFbtn {
	padding: 15px 10px 10px;
	box-sizing: border-box;
	border-top: 5px solid #004ea2;
	background: #e4f1ff;
}

.txPDFbtn ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	width: 100%;
	padding: 0;
	list-style: none;
}

.txPDFbtn li {
	width: 20%;
	margin-bottom: 1em;
}

.txPDFbtn h2 {
	position: relative;
	display: block;
	margin: 0.5em auto 0;
	width: 90%;
	padding-left: 2em;
	box-sizing: border-box;
	color: #004ea2;
	font-weight: bold;
}

.txPDFbtn h2 img {
	position: absolute;
	left: 0;
	top: 50%;
	width: 1.5em;
	margin-top: -0.75em;
	margin-right: 0.2em;
	vertical-align: middle;
}

.txPDFbtn h2 span {
	font-size: 0.6em;
}

.txPDFbtn .txbtn a {
	display: table;
	margin: 0 auto 0.5em;
	width: 93%;
	min-height: 45px;
	padding: 0.3em 0.5em 0.1em;
	box-sizing: border-box;
	color: #3e99e6;
	font-size: 0.9em;
	text-align: center;
	border-radius: 5px;
	border: 2px solid #3e99e6;
	background: #fff;
	line-height: 1.4;
}

.txPDFbtn .txbtn a.tokusetsu {
	color: #e59a41;
	border: 2px solid #e59a41;
}

.txPDFbtn .txbtn a span {
	display: table-cell;
	vertical-align: middle;
}

.txPDFbtn p {
	display: block;
	margin: 0.2em auto;
	width: 93%;
	padding: 0.2em 0.5em;
	box-sizing: border-box;
	font-size: 0.8em;
}

.txPDFbtn li ul {
	margin: 0;
	margin-left: 1em;
	text-indent: -1em;
}

.txPDFbtn li ul li {
	display: block;
	margin: 0 auto;
	width: 90%;
	padding: 0 0.5em;
	box-sizing: border-box;
	font-size: 0.8em;
}

.txPDFbtn&gt;ul&gt;li:nth-last-child(4) {
	width: 40%;
}

.txPDFbtn&gt;ul&gt;li:nth-last-child(4) a {
	width: 95%;
}

.txPDFlink {
	width: 100%;
	text-align: center;
}

.txPDFlink ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 0;
	padding-left: 0;
}

.txPDFlink ul li {
	display: inline-block;
	width: 48%;
}

.txPDFlink ul li a {
	display: block;
	width: 100%;
	height: 100%;
}

.txPDFlink ul li img {
	margin: 20px 0;
	width: 360px;
}

@media screen and (min-width:737px) {
	.txPDFbtn&gt;ul&gt;li:nth-last-child(3) .certificate {
		margin-top: 15px;
	}

	.txPDFbtn&gt;ul&gt;li .refractory {
		margin-top: 15px;
	}
}

@media screen and (max-width:736px) {
	.txPDFbtn li {
		width: 50%;
	}

	.txPDFbtn&gt;ul&gt;li:nth-last-child(4) {
		width: 100%;
	}

	.txPDFbtn&gt;ul&gt;li:nth-last-child(4) a {
		width: 95%;
	}
}


.txPDFdl a {
	font-weight: bold;
	text-decoration: underline;
}

.txPDFdl img {
	max-height: 50px;
	border: 1px solid #CCC;
}

.txPDFdl tr td {
	padding: 5px 20px;
	box-sizing: border-box;
}

.txPDFdl tr td:first-child {
	min-width: 80px;
}


/*--------------------- 目次改修 ---------------------------*/
.frame_head {
	background: #f0c3d8;
	padding: 5px 0 5px 25px;
	color: #e05490;
	font-size: 1.2666rem;
	font-weight: 700;
	letter-spacing: 6px;
}

.frame {
	margin: 0;
	border: none;
	background: #fff1f9;
}

.frame&gt;:first-child {
	margin-top: 0;
}

.frame_body {
	margin: 20px 0 0;
}

.frame_body&gt;:first-child {
	margin-top: 0;
}

.frame .pageAnc {
	margin: 0;
}

.frame .pageAnc_list {
	display: block;
	padding: 20px;
	box-sizing: border-box;
}

.frame .pageAnc_item {
	display: block;
	width: 100%;
	margin: 0.5em 0 0;
	padding: 0.5em 1em;
	border-bottom: 1px solid #ddd;
	line-height: 1.5;
}

.frame .pageAnc_item&gt;a {
	display: block;
	padding: 0;
	box-sizing: border-box;
	color: #004ead;
	font-size: 1.0666rem;
	border-radius: 0;
	border: none;
	box-shadow: none;
}

.frame .pageAnc_item&gt;a:hover {
	color: #ff4081;
}

.frame .pageAnc_item&gt;a:before {
	content: "";
	display: inline-block;
	border-top: 7px solid transparent;
	border-left: 12.124px solid #004ead;
	border-bottom: 7px solid transparent;
	text-indent: 0;
	margin-right: .5em;
	vertical-align: 0;
}

.frame .pageAnc_item&gt;a:hover:before {
	border-left: 12.124px solid #ff4081;
}

.frame .pageAnc_item&gt;a:after,
.frame .pageAnc_item&gt;button:after {
	display: none;
}

@media screen and (max-width:736px) {
	.frame .frame_head {
		padding: 0 0 0 10px;
	}

	.frame .pageAnc_item {
		width: auto;
		margin: 10px 0 0;
	}
}

/* リンクボタン 青ライン 青文字 */
.btn.lineBlue {
	background: #fff;
	border: 1px solid #004ea1;
	color: #004ea1;
}

.btn.lineBlue:hover {
	background: #004ea1;
	color: #fff;
}


/* ---------- 共通装飾 ---------- */
th.br_left,
td.br_left {
	border-left: 1px solid #ddd;
}


/* table パターン */
.txTable_pattern01 {
	border-collapse: separate;
	border-spacing: 3px 3px;
	border: none;
}

.txTable_pattern01 th,
.txTable_pattern01 td {
	border: 2px solid transparent;
	padding: 12px 10px;
}

.txTable_pattern01 th {
	background: #004ea1;
	color: #fff;
}

.txTable_pattern01 tr:nth-child(odd) td {
	background: #f8f8f8;
}

.txTable_pattern01 tr:nth-child(even) td {
	background: #e8e8e8;
}

.txBalloon {
	position: relative;
	margin-top: 20px;
	padding: 12px;
	background: #fff9f2;
	border-radius: 5px;
	border: 1px solid #ffaa33;
}

.txBalloon::before {
	content: "";
	display: block;
	position: absolute;
	top: -19px;
	left: 47%;
	width: 0;
	height: 0;
	border-left: 11px solid transparent;
	border-bottom: 19.05255px solid #ffaa33;
	border-right: 11px solid transparent;
}

.txBalloon::after {
	content: "";
	display: block;
	position: absolute;
	top: -17px;
	left: 47%;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-bottom: 17.3205px solid #fff5ea;
	border-right: 10px solid transparent;
}


/* youtube modal */
/* uiepチャンネル使用 */
#modal-overlay {
	z-index: 13;
	position: relative;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
}

#modal-content {
	position: relative;
	border: 0px solid #aaa;
	/*display: none;*/
}

@media screen and (min-width:736px) {
	#modal-content {
		max-width: 960px;
	}
}

.supportShortcutBtn {
	display: flex;
	display: -webkit-flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background: #004ea1;
	padding: 5px 18px;
	border-radius: 26px;
	box-shadow: 2px 2px 0 0 #d8efff;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.supportShortcutBtn::before {
	-ms-flex-positive: 0;
	flex-grow: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	content: "";
	font-family: icons;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
	background: #fff;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	margin-right: 5px;
	color: #004ea1;
	font-size: 12px;
	font-weight: 400;
}


/* 220615 追加
 * 画像を使ったリンクに使用
 */
 .txImgHover{
	display: inline-block;
	box-shadow: 3px 3px 6px rgba(0,0,0,0.4);
	transition: 0.3s;
 }
 @media (any-hover:hover){
	.txImgHover:hover {
		opacity: 0.6;
		transform: translate(3px,3px);
		box-shadow: 0 0 0 rgba(0,0,0,0);
	}
	.txHover:hover {
		opacity: 0.6;
	}
 }

.txProductBtn {
	display: inline-block;
	padding: 0.8em 2.5em 0.6em;
	border-radius: 5px;
	border: 1px solid #d72e2e;
	background: linear-gradient(90deg, #d02b69, #ce3138);
	box-shadow: 2px 2px 0 #ddd;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	cursor: pointer;
}

.txProductBtn:hover {
	background: #fff;
	color: #d72e2e;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .3), inset 0 0 5000px rgba(0, 0, 0, .05);
}


/* 20230825 このボタンは参考になりましたか？ 設定 */
.evaluation.feedback_btn {
	margin-top: 20px;
	padding: 20px;
	background: #054b97;
	border: none;
	text-align: center;
}

.feedback_btn .evaluation_q {
	margin-top: 0;
	color: #fff;
	line-height: 1;
}

.full_open+.feedback_btn {
	display: flex;
}

.feedback_note {
	display: flex;
	flex-wrap: wrap;
	width: 70%;
	margin: 0 auto;
	font-size: 0;
}

.feedback_note figure {
	display: flex;
	align-items: center;
}

.feedback_note p {
	position: relative;
	display: inline-block;
	width: calc(100% - 70px);
	margin-left: 30px;
	padding: 8px;
	/* background-color: #ebf2fc; */
	background-color: #fcebeb;
	font-size: 14px;
}

.feedback_note p:before {
	content: "";
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 30px 10px 0;
	border-color: transparent #fcebeb transparent transparent;
	left: -25px;
	top: 35%;
}

.feedback_message {
	display: block;
	width: 100%;
	text-align: center;
	font-weight: 700;
	transition: .7s ease;
	position: relative;
}

.feedback_message .link_btn {
	background: #004ea1;
	width: 45%;
	margin: 1em auto;
	border-radius: 30px;
	position: relative;
}

.feedback_message .link_btn img {
	position: absolute;
	display: block;
	width: 60px;
	right: -18px;
	top: 10px;
}

.feedback_message .link_btn:hover img {
	opacity: .9;
}

.feedback_message .link_btn a {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	width: 96%;
	/* height: 100%; */
	font-weight: 700;
	color: #fff;
	padding: 8px;
}

.feedback_message .link_btn:hover {
	box-shadow: 2px 2px 6px inset #3b3b3b;
}

.feedback_message .link_btn a:hover {
	opacity: 1;
}

.feedback_message .sp_br {
	display: none;
}

#table_result_plaad,
#table_result_kyakubu,
#table_result_tatepipe {
	overflow: visible;
}

.table_wrapper {
	overflow-y: auto;
}

.evaluation_btns{
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 0;
}

.evaluation_btns li{
	margin: 0 20px;
}

.evaluation_btns li a{
	padding: 0 2em;
	background: #f3f3f3;
	box-shadow: 2px 2px 0 #0f0b0b;
	color: #000;
}


@media screen and (max-width: 736px) {
	.feedback_message .link_btn {
		width: 100%;
		font-size: 14px;
		padding: 4px;
	}

	.feedback_message .link_btn {
		width: 100%;
	}

	.feedback_message .link_btn img {
		position: absolute;
		display: block;
		width: 63px;
		right: -6px;
		top: 9px;
	}

	.feedback_message .link_btn a {
		width: 85%;
	}

	.feedback_message .sp_br {
		display: inline-block;
	}

	.feedback_note {
		width: 100%;
	}
}

@media screen and (max-width:300px) {
	.feedback_message .link_btn {
		font-size: 12px;
		margin-bottom: 5em;
	}

	.feedback_message .link_btn a {
		width: 100%;
	}


	.feedback_message .link_btn img {
		width: 57px;
		top: 30px;
	}
}

/* 231114_アンケートにご協力お願いします */

.bubble_animation {
	text-align: center;
	font-weight: 600;
	color: #054b97;
	font-size: 18px;
	position: relative;
	animation: plz_choice .8s ease infinite;
	margin-top: 2em;
}

.bubble_animation span::before,
.bubble_animation span::after {
	content: '';
	display: block;
	background: #054b97;
	width: 3px;
	height: 50px;
	position: absolute;
}

.bubble_animation span::before {
	left: 16%;
	top: -12px;
	transform: rotate(-35deg);
}

.bubble_animation span::after {
	right: 17%;
	top: -12px;
	transform: rotate(35deg);
}

.sp_br {
	display: none;
}

.pc_br {
	display: inline;
}

@media screen and (max-width: 736px) {
	.bubble_animation {
		font-size: 16px;
	}

	.bubble_animation span::before {
		left: 8%;
		top: 8px;
	}

	.bubble_animation span::after {
		right: 8%;
		top: 8px;
	}

	.sp_br {
		display: inline;
	}

	.pc_br {
		display: none;
	}
}

@keyframes plz_choice {
	0% {
		top: 5px;
	}

	50% {
		opacity: .5;
	}

	100% {
		opacity: 1;
		top: 0px;
	}
}


/* 2024.09.03 追加
 * 前にNEWアイコンが付く
 */
.txIcon_new {
	position: relative;
	padding-left: 60px !important;
}

.txIcon_new::before {
	content: "NEW";
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	background: #d00;
	font-size: 0.8em;
	color: #fff;
}

/* 跳ねるピックアップ */
/* --------------------------------------------------------- */
.icon_pickup {
	display: flex;
	margin-top: 0;
	margin-left: 0.5em;
	overflow: hidden;
	color: #c00;
}

.icon_pickup span {
	display: block;
	transform: translate(0, 105%);
	transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.icon_pickup.-visible span { transform: translate(0, 0);}

.icon_pickup span:nth-child(2) { transition-delay: 0.06s; }

.icon_pickup span:nth-child(3) { transition-delay: 0.12s; }

.icon_pickup span:nth-child(4) { transition-delay: 0.18s; }

.icon_pickup span:nth-child(5) { transition-delay: 0.24s; }

.icon_pickup span:nth-child(6) { transition-delay: 0.30s; }

.icon_pickup span:nth-child(7) { transition-delay: 0.36s; }


/* 「前に戻る」「先に進む」のやじるし */
/* --------------------------------------------------------- */
.prev:before, .next:after{
	display: inline-block;
	color: #004ea2;
	font-family: icons;
	font-size: .75em;
	text-rendering: auto;
	transform: translateY(-.1em) scale(0.7,2)
}
.prev:before{content: "&lt;"; margin-right: 0.5em;}
.next:after{content: "&gt;"; margin-left: 0.5em;}

/* 2024.09.12 追加 */
br.pc {
	display: inline;
}

br.sp {
	display: none;
}

@media all and (max-width:736px) {
	br.pc {
		display: none;
	}

	br.sp {
		display: inline;
	}
}

/* 2024.09.13 追加 */
/* 横並び（display:grid） */
/* --------------------------------------------------------- */
.txGrid{
	display: grid;
	gap: 20px 40px;
}

/* 2等分 */
.txGrid.txColumn2{
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
}

/* 2:1 */
.txGrid.txColumn1-2{
	grid-template-columns: 1fr 2fr;
}
.txGrid.txColumn2-1{
	grid-template-columns: 2fr 1fr;
}

.txGrid.txColumn3{
	grid-template-columns: repeat(3, 1fr);
	width: 100%;
}

/* 3-2分 */
.txGrid.txColumn3-2{
	grid-template-columns: 3fr 2fr;
	width: 100%;
}

.txGrid.txColumn2-3{
	grid-template-columns: 2fr 3fr;
	width: 100%;
}


/* 4-1分 */
.txGrid.txColumn1-3{
	grid-template-columns: 1fr 3fr;
	width: 100%;
}

.txGrid.txColumn3-1{
	grid-template-columns: 3fr 1fr;
	width: 100%;
}

/* 4-1分 */
.txGrid.txColumn4{
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
}

.txGrid.txColumn1-4{
	grid-template-columns: 1fr 4fr;
	width: 100%;
}

.txGrid.txColumn4-1{
	grid-template-columns: 4fr 1fr;
	width: 100%;
}

@media screen and (max-width:736px){
	.txGrid.txColumn2{
		grid-template-columns:1fr;
	}

	.txGrid.txColumn3-2,
	.txGrid.txColumn2-3,
	.txGrid.txColumn3{
		grid-template-columns: 1fr;
	}

	.txGrid.txColumn1-2,
	.txGrid.txColumn2-1{
		grid-template-columns: 1fr;
	}
	
	.txGrid.txColumn1-3,
	.txGrid.txColumn3-1{
		grid-template-columns: 1fr;
	}

	.txGrid.txColumn4,
	.txGrid.txColumn1-4,
	.txGrid.txColumn4-1{
		grid-template-columns: 1fr;
	}
}

/*--=================== タイトルバージョン違い =======================--*/
.txHeadLine1_bar{
	position: relative;
	font-size: 2em;
	line-height: 1.4;
	margin: 50px 0 20px;
	text-align: center;
}

.txHeadLine1_bar span{
	position: relative;
	display: inline-block;
	padding: 0 1em;
	background: #fff;
	z-index: 2;
}

.txHeadLine1_bar::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #333;
	transform: translateY(-50%);
}

.txHeadLine3_center{
    font-size: 1.375em;
    font-weight: 700;
    line-height: 1.6;
    margin: 50px 0 20px;
    padding: 0 0 1px 15px;
	text-align: center;
}

/*--=================== タグ =======================--*/
.txTaglist{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.txTaglist li{
	display: inline-block;
	margin-left: 10px;
	margin-bottom: 10px;
	padding: 0 15px 1px;
	border-radius: 2em;
	background: #efefef;
}

/*--=================== 色 =======================--*/
.tx_bg-skyblue{
	background: #e3f7ff;
}

.tx_contact{
	padding: 40px 25px;
	background: #f0f9fd;
}

.txContact1{
	padding: 40px 25px;
	border: 1px solid #bbb
}

/*--=================== ボタンカラー =======================--*/
.txBtn_blue{
	background: #004ea1;
	color: #fff;
}

.txBtn_skyblue{
	background: #5cb9df;
	color: #fff;
}

.txBtn_purple{
	background: #4d4398;
	color: #fff;
}

.txBtn_orange{
	background: #e57716;
	color: #fff;
}

.txBtn_gold{
	background: #f7b61d;
	color: #fff;
}

.txBtn_magenta{
	background: #f46996;
	color: #fff;
}

.txBtn_lightblue{
	background: #2191d5;
	color: #fff;
}

.txBtn_green{
	background: #329b3d;
	color: #fff;
}

.txBtn_green2{
	background: #0b8e4c;
	color: #fff;
}

.txBtn_lightgreen{
	background: #7bb94c;
	color: #fff;
}

.txBtn_lightseagreen{
	background: lightseagreen;
	color: #fff;
}

@media (hover: hover){
	a.txBtn_blue:hover{
		border: 1px solid #004ea1;
		background: #fff;
		color: #004ea1;;
	}
	
	a.txBtn_skyblue:hover{
		border: 1px solid #5cb9df;
		background: #fff;
		color: #5cb9df;;
	}
	
	a.txBtn_green:hover{
		border: 1px solid #329b3d;
		background: #fff;
		color: #329b3d;;
	}

	a.txBtn_green2:hover{
		border: 1px solid #0b8e4c;
		background: #fff;
		color: #0b8e4c;
	}
	
	a.txBtn_purple:hover{
		border: 1px solid #4d4398;
		background: #fff;
		color: #4d4398;;
	}
	
	a.txBtn_orange:hover{
		border: 1px solid #e57716;
		background: #fff;
		color: #e57716;;
	}
	
	a.txBtn_gold:hover{
		border: 1px solid #f7b61d;
		background: #fff;
		color: #f7b61d;;
	}
	
	a.txBtn_magenta:hover{
		border: 1px solid #f46996;
		background: #fff;
		color: #f46996;;
	}
	
	a.txBtn_lightblue:hover{
		border: 1px solid #2191d5;
		background: #fff;
		color: #2191d5;
	}
	
	a.txBtn_lightgreen:hover{
		border: 1px solid #7bb94c;
		background: #fff;
		color: #7bb94c;;
	}

	a.txBtn_lightseagreen:hover{
		border: 1px solid lightseagreen;
		background: #fff;
		color: lightseagreen;
	}
}

/* 枠線のボタン */
.txBtn_redLine{
	background: #fff;
	border: 1px solid #cc0000;
	color: #cc0000;
}

.txBtn_blueLine {
	background: #fff;
	border: 1px solid #004ea1;
	color: #004ea1;
}

@media (hover: hover){
	a.txBtn_redLine:hover {
		background: #cc0000;
		color: #fff;
	}

	a.txBtn_blueLine:hover {
		background: #004ea1;
		color: #fff;
	}
}

/*--=================== 文字カラー =======================--*/
/* シフトのstyle.cssにあるもの */
/*
.color-txtColor {color:#333!important}
.color-red {color:#da3b49!important}
.color-blue {color:#004ea2!important}
.color-gray {color:#aaa!important}
.color-black {color:#000!important} 
*/

.txColor_white {
	color: white !important;
}

.txColor_goldenrod{
	color: goldenrod;
}

.txColor_darkgoldenrod{
	color: darkgoldenrod;
}

.txColor_purple,
.color-purple {
	color: purple;
}

.txColor_magenta{
	color: magenta;
}

.txColor_darkmagenta{
	color: darkmagenta;
}

.txColor_orange,
.color-orange {
	color: orange
}

.txColor_orangered,
.color-orangered{
	color: orangered;
}

.txColor_darkorange,
.color-darkorange{
	color: darkorange;
}

.txColor_red,
.txColor-red {
	color: red;
}

.txColor_darkred{
	color: darkred;
}

.txColor_deeppink{
	color: deeppink;
}

.txColor_palevioletred{
	color: palevioletred;
}

.txColor_skyblue{
	color: skyblue;
}

.txColor_deepskyblue,
.color-deepskyblue{
	color: deepskyblue;
}

.color-blueJIS{
	color: #0080cb;
}

.txColor_slateblue{
	color: slateblue;
}

.txColor_darkblue{
	color: darkblue;
}

.txColor_navy,
.color-navy {
	color: navy;
}

.txColor_lime{
	color: lime;
}

.txColor_limegreen{
	color: limegreen;
}

.txColor_teal{
	color: teal;
}

.txColor_green,
.color-green{
	color: green;
}

.txColor_dimgrey{
	color: #696969;
}

.txColor_grey{
	color: #808080;
}

.txColor_lightslategrey{
	color: #778899;
}

.txColor_slategray{
	color: #708090;
}

/* NEWアイコン */
.tx_icon-new{
	display: inline-block;
	padding: 0 5px 2px;
	background: #c00;
	color: #fff;
	font-weight: 700;
	font-size: 0.875em;
	line-height: 1.2;
}

/* フォントサイズ  */
/* シフト style.cssにある */
/* .font-default {font-size:16px!important}
.font-lllll {font-size:1.75rem !important;}
.font-llll {font-size:1.5rem!important}
.font-lll {font-size:1.375rem!important}
.font-ll {font-size:1.25rem!important}
.font-l {font-size:1.125rem!important}
.font-s {font-size:.9375rem!important}
.font-ss {font-size:.875rem!important}
.font-sss {font-size:.8125rem!important}
.font-ssss {font-size:.75rem!important}
.font-sssss {font-size:.6875rem!important} */

.font-v{
	font-size:2.5rem !important;
}


/*--=================== 横幅 =======================--*/
.mw240{
	max-width: 240px;
}
.mw360{
	max-width: 360px;
}

.mw480{
	max-width: 480px;
}

.mw560{
	max-width: 560px;
}

.mw640{
	max-width: 640px;
}

.mw720 {
	max-width: 720px;
	margin: 0 auto;
}

.mw768 {
	max-width: 768px;
}

.mw800 {
	max-width: 800px;
}

.mw880 {
	max-width: 880px;
}

.mw960 {
	max-width: 960px;
}

.mw1000 {
	max-width: 1000px;
}

/*--=================== 光るボタン =======================--*/
.txBtn_slash {
	position: relative;
	color: #fff;
	overflow: hidden;
	text-decoration: none;
}

.txBtn_slash::after {
	content: "";
	position: absolute;
	top: -40px;
	left: 0;
	height: 100%;
	width: 10px;
	background-color: #fff;
	opacity: 0;
	transform: rotate(45deg);
	animation: kirarin 4s ease-in-out 1s infinite;
}

.txBtn_slash:hover{
	text-decoration: underline;
	box-shadow: inset 1px 1px 3px rgba(0, 0, 0, .3), inset 0 0 5000px rgba(0, 0, 0, .05);
}

@keyframes kirarin {
	0% {
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}

	15% {
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}

	18% {
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}

	45% {
		transform: scale(200) rotate(45deg);
		opacity: 0;
	}
}

/* クリックで画像を別窓で大きく */
/* 数値は.btnを参考 */
/* .txBigger{
	position: relative;
	display: block;
}
.txBigger span{
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 94%;
	max-width: 800px;
	padding: 14px;
	border-radius: 56px;
	border: 2px solid dodgerblue;
	background: dodgerblue;
	color: #fff;
	text-align: center;
	line-height: 1.6;
	transform: translate(-50%, -50%);
}
.txBigger:hover span{
	color: dodgerblue;
	background: #fff;
} */


/*--=================== モーダル =======================--*/
/* .txjs_popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.75);
	z-index: 9999;
}

.txjs_popup_inner{
	position: relative;
	height: 100vh;
}

.txjs_popup_container{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.txjs_pop_closebtn{
	color: #fff;
}

.txjs_pop_closebtn:hover{
	cursor: default;
} */

/*--=================== オンマウス回転 =======================--*/
.mv_flip{
	position: relative;
	z-index: 5;
	display: block;
	width: 100%;
	min-height: 10em;
	transform-style: preserve-3d;
	color: inherit;
}

.mv_flip_wrap{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.9);
	border-radius: 1em; box-shadow: 0.3em 0.3em 2em rgba(0,0,0,0.2);
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transition: 0.7s ease-in-out;
}

.mv_flip_content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transform: translateZ(6rem);
}

.mv_flip_wrap.-front{
	color: inherit;
	text-decoration: none;
}

@media all and (min-width:737px){
	.mv_flip .mv_flip_wrap.-back{
		transform: rotateY(-180deg);
	}

	@media (any-hover: hover) {
		.mv_flip:hover{
			opacity: 1;
		}
		.mv_flip:hover .mv_flip_wrap.-front{
			transform: rotateY(180deg);
		}
		.mv_flip:hover .mv_flip_wrap.-back{
			transform: rotateY(0);
		}
	}
}

@media all and (max-width:736px){
	.mv_flip .mv_flip_wrap.-back{
		display: none;
	}
}

/*--=================== オンマウス回転 =======================--*/
.group_flip{
	position: relative;
	z-index: 5;
	display: block;
	width: 100%;
	min-height: 10em;
	color: inherit;
}

.group_flip_wrap{
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.9);
	box-shadow: 0.3em 0.3em 2em rgba(0,0,0,0.2);
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transition: 0.7s ease-in-out;
	pointer-events: none;
}

.group_flip_content{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	transform-style: preserve-3d;
	transform: translateZ(6rem);
}

.group_flip_wrap.-front{
	color: inherit;
	text-decoration: none;
	z-index: 2;
}
.group_flip_wrap.-back{z-index: 1;}

@media all and (min-width:737px){
	.group_flip .group_flip_wrap.-back{transform: rotateY(-180deg);}

	@media (any-hover: hover) {
		.group_flip:hover{opacity: 1;}
		.group_flip.hovered .group_flip_wrap.-front{transform: rotateY(180deg);}
		.group_flip.hovered .group_flip_wrap.-back{transform: rotateY(0);}
	}
}

@media all and (max-width:736px){
	.group_flip .group_flip_wrap.-back{display: none;}
}</pre></body></html>