/*current_legacy.css*/

#main {
	padding-top: 0;
	overflow: hidden;
}

.faq-header {
	margin-top: 0;
}

/*----------------------------
.ancmenu
-----------------------------*/

.ancmenu {
	background-color: #DDE7F8;
	padding: 30px 20px 30px 20px;
	margin: -60px auto 60px;
	width: calc(100% + 40px);
	margin-left: -20px;
	margin-right: -20px;
	position: relative;
	z-index: 1;
}

.ancmenu::before,
.ancmenu::after {
	content: "";
	position: absolute;
	top: 0;
	width: 100vw;
	height: 100%;
	background: #DDE7F8;
	pointer-events: none;
}

.ancmenu::before {
	right: 100%;
}

.ancmenu::after {
	left: 100%;
}

.ancmenu ul {
	width: 1000px;
    max-width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 15px 15px;
}

.ancmenu ul li {
	width: auto;
}

.ancmenu ul li a {
	display: block;
	background: #fff;
/*	background: #DDE7F8;*/
	padding: 6px 24px 6px 36px;
	color: #212121;
	font-size: 1.4rem;
	font-weight: 500;
	border-radius: 20px;
	position: relative;
	cursor: pointer;
	-webkit-transition: 0.4s all;
	transition: 0.4s all;
	border: 1px solid;
	border-color: #fff;
}

.ancmenu ul li a:before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 5px solid transparent;
	border-left: 5px solid transparent;
	border-top: 9px solid #005BAC;
	border-bottom: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 18px;
	margin: auto 0;
}

.ancmenu ul li a:hover {
	opacity: 1;
	border-color: #005BAC;
	color: #005BAC;
}





/*----------------------------
title
-----------------------------*/

h1, h2, h3, h4, h5, h6 {
    color: #212121;
    text-transform: none;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
    line-height: normal;
}

.hl h2,
.ptit h2 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.6;
    color: #212121;
    position: relative;
    margin-bottom: 20px;
	padding-left: 20px;
    text-indent: -20px;
}

.hl h2::before,
.ptit h2::before{
    content: "";
    display: inline-block;
	vertical-align: middle;
    width: 12px;
    height: 4px;
    background-color: #005BAC;
	margin-right: 8px;
	margin-top: -4px;
}

.hl h3 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: calc(28.8 / 18);
    padding: 9px 15px;
    background-color: #eaeef5;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 20px;
}

.hl h4 {
	position: relative;
    padding-left: 30px;
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: calc(24 / 16);
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 20px;
}

.hl h4:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #245bac;
}

/*Levelがおかしいが、現行に合わせるため*/
.hlxm .hl h2 {
	font-size: 1.8rem;
    font-weight: 700;
    line-height: calc(28.8 / 18);
    padding: 9px 15px;
    background-color: #eaeef5;
	font-family: 'Noto Sans JP', sans-serif;
	text-indent: inherit;
	margin-bottom: 20px;
}

.hlxm .hl h2:before {
	content: none;
}
/*Levelがおかしいが、現行に合わせるため*/


.hlxs .hl h2 {
	font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
	text-indent: inherit;
	font-weight: 700;
	padding: 0;
}

.hlxs .hl h2:before {
	content: none;
}

h5 {
	font-size: 1.6rem;
	font-weight: 700;
	font-family: 'Noto Sans JP', sans-serif;
	margin-bottom: 12px;
}

/*----------------------------
btn (basic)
-----------------------------*/

.btnxcri a,
.btn.btnxcoa a {
/*
	display: block;
	width: 100%;
	border: 2px solid;
	border-color: #005BAC;
	padding: 17px 60px 17px 15px;
	border-radius: 3px;
	position: relative;
*/
	width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 12px 40px 12px 20px;
    background-color: #fff;
    border: 1px solid;
    border-color: #CCCCCC;
    font-weight: 500;
    position: relative;
    transition: all 0.4s ease 0s;
	line-height: 1.4;
	color: #212121;
    transition: all 0.4s ease 0s;
}

.btnxcri a::after,
.btn.btnxcoa a::after {
    content: "";
    width: 18px;
    height: 100%;
    position: absolute;
    right: 8%;
    top: 0;
    background: url(/tukyo/tukyo_current/assets/img/common/link_ar.png) no-repeat right center;
    background-size: 100% auto;
	transition: all 0.4s ease 0s;
}

.btnxcri a:hover,
.btnxcri a:focus-visible,
.btn.btnxcoa a:hover,
.btn.btnxcoa a:focus-visible {
    opacity: 1;
    border-color: #005BAC;
	color: #005BAC;
}

.btnxcri a:hover::after,
.btn.btnxcoa a:hover::after {
	background: url(/tukyo/tukyo_current/assets/img/common/link_ar_blue.png) no-repeat right center;
    background-size: 100% auto;
}

.btnxcri a:hover::after,
.btn.btnxcoa a:hover::after {
    transform: translateX(4px);
}



/*----------------------------
btn (pdf)
-----------------------------*/

.btnxcri.catxipd a:after {
	content: "";
    width: 24px;
    height: 100%;
    position: absolute;
    right: 8%;
    top: 0;
    background: url(/tukyo/tukyo_current/assets/img/common/pdf_ic.png) no-repeat right center;
    background-size: 100% auto;
	transition: all 0.4s ease 0s;
}

.btnxcri.catxipd a:hover::after {
	background: url(/tukyo/tukyo_current/assets/img/common/pdf_ic_blue.png) no-repeat right center;
    background-size: 100% auto;
}

/*----------------------------
btn (external)
-----------------------------*/

.btnxcri.catxiot a:after {
	content: "";
    width: 20px;
    height: 100%;
    position: absolute;
    right: 8%;
    top: 0;
    background: url(/tukyo/tukyo_current/assets/img/common/external_ic.png) no-repeat right center;
    background-size: 100% auto;
    transition: all 0.4s ease 0s;
}

.btnxcri.catxiot a:hover::after {
	background: url(/tukyo/tukyo_current/assets/img/common/external_ic_blue.png) no-repeat right center;
    background-size: 100% auto;
}

/*----------------------------
a.catxipd
-----------------------------*/

a.catxipd {
	margin-bottom: 5px;
}

a.catxipd:after {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url(/tukyo/tukyo_current/assets/img/common/pdf_link_ic.svg);
	background-size: contain;
	vertical-align: middle;
	background-repeat: no-repeat;
	margin-left: 6px;
	margin-top: -4px;
}


/*----------------------------
a.catxiot
-----------------------------*/

.listx01 li a.catxiot:after {
	content: "";
	display: inline-block;
    width: 15px;
	height: 15px;
	background-image: url(/tukyo/tukyo_current/assets/img/common/external_ic.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	margin-left: 6px;
}

.listx01 li a.catxiot:hover::after {
	background-image: url(/tukyo/tukyo_current/assets/img/common/external_ic_blue.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
}


/*--------------------------
col setting
----------------------------*/

.colxc {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.colx1 {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: block;
}

.colx1 li,
.colx1 .colbox {
	width: 60%;
	margin: 0 auto 0 auto;
}

.colx2 {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.colx2 li,
.colx2 .colbox {
	width: 49%;
}

.colx3 {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.colx3 li,
.colx3 .colbox {
	width: 31%;
}

.colx3:after {
	content: "";
	display: block;
	width: 31%;
}

.colx4 {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.colx4 li,
.colx4 .colbox {
	width: 23.5%;
}

.colx4:after {
	content: "";
	display: block;
	width: 23.5%;
}

.colx4:before{
	content:"";
	display: block;
	width: 23.5%;
	order:1;
}


/*------- itemx04 setting -------*/
.itemx04 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.itemx04 li {
	position: relative;
	margin: 0 0 40px 0;
	padding: 0 0 0 0;
}

.itemx04 li a {
	width: 100%;
	width: 70%;
}

.itemx04 li:hover a {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 0.7;
}

.itemx04 li .imgbox {
	width: 100%;
	padding-bottom: 60%;
	background: #1d2088;
	margin: 0 auto 0 auto;
	position: relative;
}

.itemx04 li a .imgbox:hover {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 0.7;
}

.itemx04 li.iconxnew .imgbox:before {
	content: "";
	background: url(WSR/icon/i_new.png) no-repeat left top;
	background-size: 100% auto;
	position: absolute;
	width: 12%;
	height: 100%;
	top: 0;
	left: 0;
	font-size: 15px;
	color: #005bac;
	font-weight: 500;
}
				
.itemx04 li .cat {
	background: #005bac;
	padding: 3px 12px 3px 12px;
	position: absolute;
	top: 0;
	right: 0;
	font-size: 13px;
	color: #ffffff;
	font-weight: 500;
}

.itemx04 li .cat.catxb {
	background: #005bac;
	color: #ffffff;
}

.itemx04 li .cat.catxr {
	background: #cb4100;
	color: #ffffff;
}
				
.itemx04 li .hl {
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	text-align: left;
	margin: 20px auto 0 auto;
}

.itemx04 li .txtbox {
	width: 100%;
	font-size: 18px;
	font-size: 15px;
	text-align: left;
	margin: 5px auto 0 auto;
}

.itemx04 li a .txtbox {
	text-decoration: none;
	color: #212121;
}

.itemx04 li .btn {
	width: 100%;
	min-width: 100%;
	display: block;
	margin: 10px auto 0 auto;
}

@media screen and (max-width: 750px) {
	.itemx04 li a {
		width: 100%;
	}
	.itemx04 li.iconxnew .imgbox:before {
		content: "";
		background: url(WSR/icon/i_new.png) no-repeat left top;
		background-size: 100% auto;
		position: absolute;
		width: 10%;
		height: 100%;
		top: 0;
		left: 0;
		font-size: 15px;
		color: #005bac;
		font-weight: 500;
	}
	.itemx04 li .cat {
		background: #005bac;
		padding: 3px 12px 3px 12px;
		top: 0;
		right: 0;
		font-size: 2.8vw;
		font-size: 1.0rem;
	}
	.itemx04 li .cat.catxb {
		background: #005bac;
		color: #ffffff;
	}
	.itemx04 li .cat.catxr {
		background: #cb4100;
		color: #ffffff;
	}
	.itemx04 li .hl {
		width: 100%;
		font-size: 1.4rem;
		font-weight: 600;
		text-align: left;
		margin: 10px auto 0 auto;
	}

	.itemx04 li .txtbox {
		width: 100%;
		font-size: 1.3rem;
		text-align: left;
		margin: 5px auto 0 auto;
	}

	.itemx04 li a {
		text-decoration: none;
		color: #cb4100;
	}

}


/*----------------------------
linkmenu setting
-----------------------------*/

.linkmenu {
	margin: 0 auto 0 auto;
}

.linkmenu .contentbox .linkmenuxs {
	margin-bottom: 40px;
}

.linkmenuxnm {
	margin-bottom: 50px;
}

.linkmenuxnm .colx3 {
	width: 105%;
	max-width: 105%;
	margin: 0 auto 0 auto;
	margin-left: -2.5%;
	padding: 0 0 0 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.linkmenuxnm .colx3:after {
	display: none;
}
.linkmenuxnm .colx3 .btn {
	max-width: 29.5%;
/*
	width: 346px;
	max-width: 47%;
*/
	margin: 0 1.5% 0 1.5%;
	margin-bottom: 20px;
}
/*
.linkmenuxnm .colx3 .btnxcri a {
	width: 64%;
	padding-right: 18%;
	padding-left: 18%;
}
*/
.linkmenuxnm.linkmenuxnmxl .colx3 {
	width: 104.7%;
	max-width: 104.7%;
	margin: 0 auto 0 auto;
	margin-left: -1.5%;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.linkmenuxnm .colx3 .btnxcri {
    width: 346px;
	max-width: 47%;
    padding: 0;
}

.linkmenuxs {
	background: #e5eef6;
	padding: 10px 0 10px 0;
	margin-bottom: 30px;
}

.linkmenuxsad {
	margin: 30px 0 0 0;
	padding: 0 3% 0 3%;
}

.linkmenuxs li {
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}

/*
@media screen and (max-width: 1200px) {
	.linkmenuxl {
		width: 96%;
		margin: 0 auto 0 auto;
	}
}
*/

/*----------------------------
contentbox
-----------------------------*/


.contentbox {
	max-width: 1100px;
	padding-left: 0;
	padding-right: 0;
}

.contentboxxlb {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 2% 15px 2%;
	position: relative;
	border: 2px solid #005BAC;
}
	
.contentboxxg {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0 auto;
	padding: 15px 2% 15px 2%;
	position: relative;
	background: #f2f2f2;
}

.contentboxxw {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	margin: 0 auto 0 auto;
	padding: 15px 2% 15px 2%;
	position: relative;
	background: #ffffff;
}

.contentboxxlb.contentboxxwl {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 0 auto;
	padding: 20px 0 20px 0;
}

.contentboxxlb.contentboxxwl .itemx09 {
	width: 94%;
}

/*====================*/

@media screen and (max-width: 768px) {
	.contentbox {
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.contentboxxlb {
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		padding: 15px 0 15px 0;
		position: relative;
		border: 2px solid #005BAC;
	}
	.contentboxxlb.contentboxxwl {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 0 auto;
		padding: 20px 0 20px 0;
		position: relative;
	}
	.contentboxxlb.contentboxxwl:after {
		content: "";
		width: 2px;
		height: 100%;
		display: block;
		background: #005BAC;
		position: absolute;
		right: 2px;
		top: 0;
	}
	.contentboxxlb.contentboxxwl .itemx09 {
		width: 100%;
	}

}


/*----------------------------
article
-----------------------------*/

.article {
    margin: 0 auto 40px auto;
}

.article .articlewrap .txt {
    color: #212121;
    font-weight: 400;
    margin-bottom: 20px;
    width: 100%;
}

.article .articlewrap .tit {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
.article .articlewrap .tit {
        font-size: 1.5rem;
        line-height: 1.5;
        margin-bottom: 10px;
    }
}

.article .articlewrap {
	width: 100%;
	max-width: 1110px;
	margin: 0 auto 0 auto;
}

.article .articlewrap.colx1 {
	display: block;
	width: 100%;
	margin: 0 auto 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.article .articlewrap.colx1l {
	display: block;
	max-width: 1110px;
	margin: 0 auto 0 auto;
}

.article .articlewrap.colx1 li,
.article .articlewrap.colx1 .colbox,
.article .articlewrap.colx1l li,
.article .articlewrap.colx1l .colbox {
	width: 100%;
	margin: 0 auto 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}




.article .articlewrap.colx2,
.article .articlewrap.colx3 {
	max-width: 100%;
	margin: 0 auto 0 auto;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.article .articlewrap.colx2.colxl,
.article .articlewrap.colx3.colxl {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.article .articlewrap.colx2.colxr,
.article .articlewrap.colx3.colxr {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.article .articlewrap.colx2.colxc,
.article .articlewrap.colx3.colxc {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.article .articlewrap.colx2 .colbox.imgbox {
	width: auto;
	max-width: 48%;
	margin: 0 1% 20px 1%;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	display: inline-block;
	flex-shrink: 0;
}

.article .articlewrap.colx2 .colbox.txtbox {
	width: 100%;
	min-width: 48%;
	margin: 0 2% 0 0;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}

.article .articlewrap.colx2 .colbox:nth-child(even) {
	margin-right: 0;
	margin-left: 1%;
}

.article .articlewrap.colx2 .colbox:nth-child(odd) {
	margin-left: 0;
	margin-right: 1%;
}

.article .articlewrap.colx3 .colbox.imgbox {
	width: auto;
	max-width: 33%;
	margin: 0 1% 20px 1%;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}

.article .articlewrap.colx3 .colbox.txtbox {
	width: auto;
	margin: 0 2% 20px 0;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
}

.article .articlewrap.colx3 .colbox:nth-child(3n) {
	margin-right: 0;
}

.article .articlewrap.colx3 .colbox:first-child,
.article .articlewrap.colx3 .colbox:nth-child(4n) {
	margin-left: 0;
}

.article .articlewrap.colx3:after {
	display: none;
}

.article .articlewrap .txtbox {
	margin-bottom: 20px;
}

.article .articlewrap .imgbox {
	margin-bottom: 20px;
	text-align: center;
}

.article .articlewrap.colx1 .colbox.imgbox {
	width: initial;
	width: auto;
	max-width: 100%;
	margin: 0 auto 20px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
}

.article .articlewrap.colx1 .colbox.imgbox .cap {
	width: 100%;
	max-width: 100%;
}

.article .articlewrap .imgbox .img {
	margin: 0 auto 0 auto;
	width: auto;
	overflow: hidden;
	position: relative;
	text-align: center;
	display: inline-block;
	line-height: 0;
}

.article .articlewrap.colx2.colxl .imgbox .img {
	text-align: center;
}

.article .articlewrap.colx2.colxr .imgbox .img {
	text-align: center;
}

.article .articlewrap.colx1 .imgbox .img {
	margin: 0 0 0 0;
	width: initial;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.article .articlewrap .imgbox .img a {
	display: block;
	cursor: pointer;
}
.article .articlewrap .imgbox .img a:hover {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 0.7;
}
.article .articlewrap.colx1 .imgbox .img img {
	width: initial;
	width: auto;
	height: auto;
	max-width: 100%;
	margin: 0 auto 0 auto;
}

.article .articlewrap.colx2 .imgbox .img img {
	max-width: 100%;
	max-height: auto;
	width: 100%;
	height: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.article .articlewrap.colx3 .imgbox .img img {
	max-width: 355px;
	max-height: auto;
	width: 100%;
	height: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.article .articlewrap .moviebox {
	max-width: 100%;
	margin: 0 0 0 0;
}

.article .articlewrap.colx1 .moviebox,
.article .articlewrap.colx1l .moviebox {
	max-width: 830px;
	margin: 0 auto 0 auto;
	margin-bottom: 30px;
}

.article .articlewrap .txt {
	font-size: 13px;
	color: #272727;
	font-weight: 400;
	margin-bottom: 20px;
	width: 100%;
}

.txt a {
	text-decoration: underline;
}

.article .articlewrap .txt a {
	color: #005BAC!important;
}

.article .articlewrap .txtbox.txtxl {
	text-align: left;
}

.article .articlewrap .txtbox.txtxr {
	text-align: right;
}

.article .articlewrap .txtbox.txtxc {
	text-align: center;
}

/*
.article .articlewrap .txtbox > .tit {
	margin-top: -8px;
}

.article .articlewrap .txtbox > .txt {
	margin-top: -4px;
}
*/

.article .articlewrap .cap {
	font-size: 13px;
	color: #9b9b9b;
	font-weight: 400;
	width: auto;
	white-space: normal;
	line-break: normal;
	word-wrap:break-word;
}

.article .articlewrap .cap.capxl {
	text-align: left;
}

.article .articlewrap .cap.capxr {
	text-align: right;
}

.article .articlewrap .cap.capxc {
	text-align: center;
}

.article .articlewrap.colx1 .imgbox .cap {
	max-width: 1110px;
	margin-top: 10px;
}
.article .articlewrap.colx1 .moviebox .cap {
	max-width: 100%;
	width: 100%;
	margin-top: 10px;
}
.article .articlewrap.colx1 .imgbox .cap {
	margin-top: 10px;
}s

.article .articlewrap.colx2 .imgbox .cap {
	max-width: 540px;
}

.article .articlewrap.colx3 .imgbox .cap {
	max-width: 355px;
}


/*
@media screen and (max-width: 1200px) {
	.article .articlewrap {
		width: 96%;
		max-width: 96%;
		margin: 0 auto 0 auto;
	}
	.article .articlewrap .name {
		margin-bottom: 20px;
	}
	
	.article .articlewrap .name .namex01 {
		font-size: 1.7rem;
	}
	.article .articlewrap .name .namex02 {
		font-size: 1.2rem;
		margin-top: 3px;
	}
}
*/

@media screen and (max-width: 768px) {
	.article {
		margin: 10px auto 0 auto;
	}
	.article .articlewrap {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 0 auto;
	}
	.article .articlewrap.colx1 {
		display: block;
		max-width: 100%;
		margin: 0 auto 0 auto;
	}
	.article .articlewrap.colx1l {
		display: block;
		max-width: 100%;
		margin: 0 auto 0 auto;
	}
	.article .articlewrap.colx1 li,
	.article .articlewrap.colx1 .colbox,
	.article .articlewrap.colx1l li,
	.article .articlewrap.colx1l .colbox {
		width: 100%;
		margin: 0 auto 15px auto;
	}
	.article .articlewrap.colx1 .moviebox,
	.article .articlewrap.colx1l .moviebox {
		max-width: 100%;
		margin: 0 auto 0 auto;
		margin-bottom: 15px;
	}
	.article .articlewrap.colx2 {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 0 auto;
		display: block;
		text-align: center;
	}
	.article .articlewrap.colx2.colxl .imgbox .img {
		text-align: center;
	}
	.article .articlewrap.colx2.colxr .imgbox .img {
		text-align: center;
	}
	.article .articlewrap.colx2 .imgbox {
		width: 100%;
		margin: 0 auto 15px auto;
	}
	.article .articlewrap.colx2 .colbox.imgbox {
		width: 100%;
		max-width: 100%;
		margin: 0 auto 15px auto;
		text-align: center;
	}
	.article .articlewrap.colx2 .txtbox {
		width: 100%;
		margin: 0 auto 15px auto;
	}
	.article .articlewrap .txtbox > .tit {
		margin-top: 0;
	}
	.article .articlewrap .txtbox > .txt {
		margin-top: 0;
	}
	.article .articlewrap.colx2 .moviebox {
		width: 100%;
		margin: 0 auto 30px auto;
	}
	.article .articlewrap.colx2:after {
		display: none;
	}
	.article .articlewrap.colx3 {
		max-width: 94%;
		margin: 0 auto 0 auto;
		display: block;
		text-align: center;
	}
	.article .articlewrap.colx3 .imgbox {
		width: 80%;
		margin: 0 auto 15px auto;
		text-align: center;
	}
	.article .articlewrap.colx3 .colbox.imgbox {
		width: 80%;
		max-width: 80%;
		margin: 0 auto 15px auto;
	}
	.article .articlewrap.colx3 .txtbox {
		width: 100%;
		margin: 0 auto 15px auto;
	}
	.article .articlewrap .tit {
		font-size: 1.5rem;
		line-height: 1.5;
		margin-bottom: 10px;
	}
	.article .articlewrap .txt {
		font-size: 1.3rem;
		line-height: 1.5;
	}
	.article .articlewrap .cap {
		font-size: 1.3rem;
	}
}



/*-----------------------------------------------------------
list setting
-----------------------------------------------------------*/


.listx01 li {
	position: relative;
	margin-bottom: 5px;
	font-size: 1.4rem;
}

.listx01 li:before {
	content: "・";
	font-weight: bold;
	color: #005BAC;
}

.listx01 li a {
	width: auto;
	position: relative;
	color: #5c5c5c;
	text-decoration: none;
}

.listx01 li a span {
	text-decoration: underline;
}

.listx01 li a:hover {
	color: #005BAC;
	text-decoration: none;
	border-bottom: none;
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 1;
}

.listx01 li a:hover span {
	color: #005BAC;
}

/*
.listx01 li a:after {
	content: "　";
	font-weight: bold;
	color: #009fde;
	position: relative;
	width: 24px;
	margin-left: 12px;
	height: 100%;
}

.listx01 li a.catxiar:after {
	background: url(WSR/icon/i_arr.png) no-repeat center center;
	background-size: 94% auto;
}

.listx01 li a.catxiot:after {
	background: url(WSR/icon/i_otr.png) no-repeat center center;
	background-size: 92% auto;
}

.listx01 li a.catxipd:after {
	background: url(WSR/icon/i_pdr.png) no-repeat center center;
	background-size: 80% auto;
}
*/


/*
@media screen and (max-width: 768px) {
	.listx01 li {
		font-size: 1.3rem;
		position: relative;
	}
	.listx01 li a {
		max-width: 90%;
	}
}
*/


.listx02 {
	width: 80%;
	-ms-flex-item-align: start;
	-ms-grid-row-align: start;
	align-self: flex-start;
}

.colx2 .listx02.colbox {
	width: 47%;
}

.listx02 li {
	width: 86%;
	position: relative;
	border-bottom: 2px solid #d1d1d1;
	padding: 15px 12% 15px 2%;
	margin: 0 0 0 0;
}

.colx2 .listx02 li {
	width: 83%;
	position: relative;
	border-bottom: 2px solid #d1d1d1;
	padding: 15px 12% 15px 5%;
	margin: 0 0 0 0;
}

.listx02 li:first-child {
	padding-top: 0;
}

.listx02 li a {
	text-decoration: none;
	color: #272727;
	font-size: 17px;
	font-weight: 500;
	display: block;
}

.listx02 li:hover {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 0.7;
}

.listx02 li a .place {
	font-size: 14px;
	font-weight: normal;
}

/*
.listx02 li:after {
	background: url(WSR/arrow/04_r.png) no-repeat center center;
	background-size: 100% auto;
	content: "";
	position: absolute;
	width: 15px;
	height: 100%;
	right: 2.3%;
	top: 0;
	display: block;
}

.colx2 .listx02 li:after {
	background: url(WSR/arrow/04_r.png) no-repeat center center;
	background-size: 100% auto;
	content: "";
	position: absolute;
	width: 15px;
	height: 100%;
	right: 5%;
	top: 0;
	display: block;
}
*/

.listx02 li:last-child {
	border-bottom: none;
}


@media screen and (max-width: 750px) {
	.colx2 .listx02.colbox {
		width: 100%;
	}

}


.listx03 {
	width: 100%;
	margin: 0 auto 0 auto;
}

.listx03 li {
	position: relative;
	border-bottom: 1px solid #d1d1d1;
	padding: 0 0 25px 0;
	margin: 0 0 25px 0;
}

.listx03 li:last-child,
.listx03 li:nth-last-child(2):nth-child(odd) {
	border-bottom: none;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
}

.listx03 li a {
	text-decoration: none;
	color: #272727;
	font-size: 17px;
	font-weight: 300;
}

.listx03 li a .sub {
	padding: 2px 3% 2px 3%;
	margin: 0 0 10px 0;
	background: #005BAC;
	font-size: 13px;
	font-weight: normal;
	display: inline-block;
	color: #ffffff;
	text-align: center;
}

.listx03 li .sub {
	padding: 2px 3% 2px 3%;
	margin: 0 0 10px 0;
	background: #005BAC;
	font-size: 13px;
	font-weight: normal;
	display: inline-block;
	color: #ffffff;
	text-align: center;
}

.listx03 li .txt,
.listx03 li .date {
	font-size: 13px;
}

@media screen and (max-width: 750px) {
	.listx03 li {
		position: relative;
		border-bottom: 1px solid #d1d1d1;
		padding: 0 0 15px 0;
		margin: 0 0 15px 0;
	}
	.listx03 li a {
		text-decoration: none;
		color: #272727;
		font-size: 1.3rem;
		font-weight: 500;
	}
	.listx03 li a .sub,
	.listx03 li .sub {
		padding: 2px 3% 2px 3%;
		margin: 0 0 10px 0;
		background: #005BAC;
		font-size: 1.0rem;
		font-weight: normal;
		display: inline-block;
		color: #ffffff;
	}
	.listx03 li .txt,
	.listx03 li .date {
		font-size: 1.3rem;
	}

}




/*----------------------------
itemx10 setting
-----------------------------*/

.itemx10 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.itemx10 .imgbox {
	width: auto;
	max-width: 52%;
	margin-right: 3%;
	position: relative;
}

.itemx10 .imgbox .img {
	margin: 0 0 0 0;
	width: auto;
	max-width: 1080px;
	overflow: hidden;
	position: relative;
	line-height: 0;
}

.itemx10 .imgbox .img a {
	display: block;
	cursor: pointer;
}

.itemx10 .imgbox .img a:hover {
	-webkit-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
	opacity: 0.7;
}

.itemx10 .imgbox .img img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.itemx10 .imgbox + .txtbox {
	width: 100%;
	position: relative;
}

.itemx10 .txtbox .tit {
	font-size: 22px;
	font-weight: 600;
}

.itemx10 .txtbox .txt {
	font-size: 13px;
	margin: 5px 0 0 0;
}

.itemx10 .listx01 {
	margin: 10px 0 0 0;
}

.itemx10 .txtbox {
	width: 100%;
	position: relative;
}

@media screen and (max-width: 768px) {
	.itemx10 {
		display: block;
	}
	.itemx10 .imgbox {
		width: 90%;
		max-width: 90%;
		position: relative;
		margin: 10px auto 0 auto;
		position: relative;
		text-align: center;
	}
	.itemx10 .imgbox + .txtbox,
	.itemx10 .txtbox {
		width: 90%;
		margin: 0 auto 0 auto;
		position: relative;
	}
	.itemx10 .txtbox .tit {
		font-size: 1.5rem;
		font-weight: 600;
	}
	.itemx10 .txtbox .txt {
		font-size: 1.3rem;
		margin: 5px 0 0 0;
	}
	.itemx10 .listx01 {
		margin: 10px 0 0 0;
	}
}


/*----------------------------
table
-----------------------------*/


table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 0
	}

table,
table td,
table th {
	border: 1px solid #cccccc;
	border-collapse: collapse;
}

table td,
table th {
/*	padding: 17px 16px;*/
	padding: 1%;
}

table th {
  background: #005bac;
  border: 2px solid #fff;
  color: #fff;
/*  padding: 7px 0;*/
  font-size: 1.4rem;
  font-weight: 500;
  line-height: calc(20 / 14);
}

.tablewrap {
	width: 100%;
	margin: 0 auto 40px auto;
}

.tablewrap .tit {
	font-size: 22px;
	font-weight: 600;
	color: #272727;
	margin-bottom: 20px;
}

table .yellow {
    background: #ffffef;
}

.tablewrap .cap {
	font-size: 13px;
	color: #9b9b9b;
}

.tablewrap .cap.capxc {
	text-align: center;
}

.tablewrap .cap.capxr {
	text-align: right;
}

.tablewrap .cap.capxl {
	text-align: left;
}
.tablewrap .tablebox {
	margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
	.tablebox .tableitem {
		width: 100%;
		box-sizing: border-box;
		overflow-x: scroll;
		white-space: nowrap;
	}
	.tablebox.tablexnsc .tableitem {
		box-sizing: inherit;
		overflow-x: hidden;	
		white-space: inherit;
	}
	.tablewrap .tit {
		font-size: 1.5rem;
		line-height: 1.5;
		margin-bottom: 15px;
	}
	.tablewrap .cap {
		font-size: 1.3rem;
		line-height: 1.5;
		margin-bottom: 0;
		color: #676767;
	}

}


/*----------------------------
hlxs 
-----------------------------*/

.hlxs {
	height: auto;
	position: relative;
	padding: 0 0 5px 0;
	margin: 0 auto 15px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	line-height: 1.4;
	font-weight: 600;
}

.hlxs .cat {
	width: 2%;
	width: 2.3%;
	min-width: 30px;
	max-width: 30px;
	padding-top: 4px;
	padding-right: 10px;
}

.hlxs .cat:before {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	padding: 100% 0 0 0;
	color: #009fde;
	font-size: 24px;
	text-align: center;
	background: #999999;
}

.hlxs .hl {
	width: 96%;
	color: #212121;
	font-size: 24px;
	padding: 0 0 0 0;
}

.hlxs .cat:before {
	content: "";
	display: block;
	position: relative;
	width: 90%;
	padding: 100% 0 0 0;
	color: #005BAC;
	font-size: 22px;
	text-align: center;
}

.hlxs .cat:before {
	width: 90%;
	padding: 88% 0 0 0;
}

/*--catxi01--*/
.hlxs.catxi01 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_sq01.png) no-repeat;
	background-size: 100% auto;
}

/*--catxi02--*/
.hlxs.catxi02 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_peng.png) no-repeat;
	background-size: 100% auto;
}

/*--catxi03--*/
.hlxs.catxi03 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_commg.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
    vertical-align: middle;
    margin-top: 3px;
}

.hlxs.catxi03 .cat + .hl h2:before {
	content: none;
}

.hlxs.catxi03 .cat + .hl h2 {
	padding-left: 12px;
	text-indent: inherit;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

/*--catxi04--*/
.hlxs.catxi04 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_perg.png) no-repeat;
	background-size: 100% auto;
	min-width: 22px;
    height: 31px;
    background-size: contain;
    display: inline-block;
    vertical-align: middle;
    margin-top: 3px;
}

.hlxs.catxi04 .cat + .hl h3 {
	width: 96%;
    font-size: 24px;
    padding: 0 0 0 12px;
	background-color: transparent;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

/*--catxi05--*/
.hlxs.catxi05 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_carg.png) no-repeat;
	background-size: 100% auto;
}

/*--catxi06--*/
.hlxs.catxi06 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_01g.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
    vertical-align: middle;
}

.hlxs.catxi06 .cat + .hl h2:before {
	content: none;
}

.hlxs.catxi06 .cat + .hl h2 {
	padding-left: 12px;
	text-indent: inherit;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.hlxs.catxi06 .cat:before {
		margin-top: -6px;
	}
	.hlxs.catxi06 .cat + .hl h2 {
		font-size: 1.8rem;
	}
}

/*--catxi07--*/
.hlxs.catxi07 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_02g.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
    vertical-align: middle;
}

.hlxs.catxi07 .cat + .hl h2:before {
	content: none;
}

.hlxs.catxi07 .cat + .hl h2 {
	padding-left: 12px;
	text-indent: inherit;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.hlxs.catxi07 .cat:before {
		margin-top: -6px;
	}
	.hlxs.catxi07 .cat + .hl h2 {
		font-size: 1.8rem;
	}
}


/*--catxi08--*/
.hlxs.catxi08 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_03g.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
    vertical-align: middle;
}

.hlxs.catxi08 .cat + .hl h2:before {
	content: none;
}

.hlxs.catxi08 .cat + .hl h2 {
	padding-left: 12px;
	text-indent: inherit;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.hlxs.catxi08 .cat:before {
		margin-top: -6px;
	}
	.hlxs.catxi08 .cat + .hl h2 {
		font-size: 1.8rem;
	}
}


/*--catxi09--*/
.hlxs.catxi09 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_04g.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
    vertical-align: middle;
}

.hlxs.catxi09 .cat + .hl h2:before {
	content: none;
}

.hlxs.catxi09 .cat + .hl h2 {
	padding-left: 12px;
	text-indent: inherit;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.hlxs.catxi09 .cat:before {
		margin-top: -6px;
	}
	.hlxs.catxi09 .cat + .hl h2 {
		font-size: 1.8rem;
	}
}

/*--catxi10--*/
.hlxs.catxi10 .cat:before {
	width: 100%;
	padding: 100% 0 0 0;
	background: url(/tukyo/tukyo_current/WSR/icon/i_05g.png) no-repeat;
	background-size: 100% auto;
	width: 25px;
	height: 25px;
	display: inline-block;
    vertical-align: middle;
}

.hlxs.catxi10 .cat + .hl h2:before {
	content: none;
}

.hlxs.catxi10 .cat + .hl h2 {
	padding-left: 12px;
	text-indent: inherit;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.hlxs.catxi10 .cat:before {
		margin-top: -6px;
	}
	.hlxs.catxi10 .cat + .hl h2 {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 768px) {
	.hlxs {
		margin-bottom: 12px;
	}
	.hlxs .cat {
		width: 1.5rem;
		width: 1.8rem;
		padding-top: 3px;
		padding-right: 4%;
		padding-right: 2.5%;
	}
	.hlxs .cat:before {
		font-size: 1.5rem;
		font-size: 1.4rem;
	}
	.hlxs .hl {
		width: 90%;
		color: #212121;
		font-size: 1.5rem;
		font-size: 1.4rem;
		font-size: 1.6rem;
		padding: 0 0 0 0;
	}
	.hlxs .cat:before {
		font-size: 1.5rem;
	}

}

/*----------------------------
hlxnm
-----------------------------*/

.hlxnm {
	height: auto;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 auto 20px auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	line-height: 1.4;
	color: #212121;
	font-weight: 600;
}

.hlxnm .hl {
	color: #212121;
	font-size: 2rem;
	padding: 0 0 5px 0;
	display: inline;
	border-bottom: 3px solid #212121;
}

.hlxnm.hlxnmxl .hl {
	text-align: left;
}

.hlxnm.hlxnmxr .hl {
	text-align: right;
	margin: 0 0 0 auto;
}

.hlxnm.hlxnmxc .hl {
	text-align: center;
	margin: 0 auto 0 auto;
}

.hlxnm.catxno .hl {
	border-bottom: none;
}

.hlxnm.catxno .hl h2 {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 2rem;
}

.hlxnm.catxno .hl h2:before {
	content: none;
}

.hlxnm.catxc01 .hl,
.hlxnm.catxc02 .hl,
.hlxnm.catxc03 .hl,
.hlxnm.catxc04 .hl,
.hlxnm.catxc05 .hl,
.hlxnm.catxc06 .hl,
.hlxnm.catxc07 .hl,
.hlxnm.catxc08 .hl,
.hlxnm.catxc09 .hl,
.hlxnm.catxc10 .hl,
.hlxnm.catxc11 .hl,
.hlxnm.catxc12 .hl,
.hlxnm.catxc13 .hl {
	margin-bottom: 20px;
}

.hlxnm.catxc01 .hl > h2,
.hlxnm.catxc02 .hl > h2,
.hlxnm.catxc03 .hl > h2,
.hlxnm.catxc04 .hl > h2,
.hlxnm.catxc05 .hl > h2,
.hlxnm.catxc06 .hl > h2,
.hlxnm.catxc07 .hl > h2,
.hlxnm.catxc08 .hl > h2,
.hlxnm.catxc09 .hl > h2,
.hlxnm.catxc10 .hl > h2,
.hlxnm.catxc11 .hl > h2,
.hlxnm.catxc12 .hl > h2,
.hlxnm.catxc13 .hl > h2 {
	margin-bottom: 0;
	font-size: 2rem;
	font-family: 'Noto Sans JP', sans-serif;
}

.hlxnm.catxc01 .hl > h2:before,
.hlxnm.catxc02 .hl > h2:before,
.hlxnm.catxc03 .hl > h2:before,
.hlxnm.catxc04 .hl > h2:before,
.hlxnm.catxc05 .hl > h2:before,
.hlxnm.catxc06 .hl > h2:before,
.hlxnm.catxc07 .hl > h2:before,
.hlxnm.catxc08 .hl > h2:before,
.hlxnm.catxc09 .hl > h2:before,
.hlxnm.catxc10 .hl > h2:before,
.hlxnm.catxc11 .hl > h2:before,
.hlxnm.catxc12 .hl > h2:before,
.hlxnm.catxc13 .hl > h2:before {
	content: none;
}

.hlxnm.catxc01 .hl {
	border-color: #82af05;
}

.hlxnm.catxc02 .hl {
	border-color: #257af4;
}

.hlxnm.catxc03 .hl {
	border-color: #ea5514;
}

.hlxnm.catxc04 .hl {
	border-color: #3abbed;
}

.hlxnm.catxc05 .hl {
	border-color: #00346d;
}

.hlxnm.catxc06 .hl {
	border-color: #7e318e;
}

.hlxnm.catxc07 .hl {
	border-color: #d38700;
}

.hlxnm.catxc08 .hl {
	border-color: #006934;
}

.hlxnm.catxc09 .hl {
	border-color: #005bab;
}

.hlxnm.catxc10 .hl {
	border-color: #474747;
}

.hlxnm.catxc11 .hl {
	border-color: #009fde;
}

.hlxnm.catxc12 .hl {
	border-color: #cb4100;
}

.hlxnm.catxc13 .hl {
	border-color: #82d402;
}

@media screen and (max-width: 768px) {
	.hlxnm .hl {
		font-size: 1.5rem;
		font-weight: 500;
		padding: 0 0 2px 0;
		border-bottom: 2px solid #212121;
	}

}

/*-----------------------
annotation
------------------------*/
.annotation {
	margin: 0 auto 40px auto;
}

/*------------------------
datalist
------------------------*/

.datalist {
    margin: 0 auto 40px auto;
}

/*------------------------
.googlecal
------------------------*/

.googlecal{
	width: 100%;
	aspect-ratio: 3 / 2;
	position: relative;
	margin-bottom: 40px;
}

.googlecal > iframe{
	position: absolute;
	inset: 0;
  	width: 100%;
  	height: 100%;
	border: 0;
}


/*------------------------
.hlxdbcw20
------------------------*/

.hlxdbcw20 {
	background: #005BAC;
	font-size: 20px;
	text-align: center;
	color: #ffffff;
	padding: 12px 8% 12px 4%;
}
	
.hlxdbcw20 a {
	color: #ffffff;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.hlxdbcw20 {
	background: #005bab;
	font-size: 1.4rem;
	text-align: center;
	color: #ffffff;
	padding: 12px 4% 12px 4%;
}
	.hlxdbcw20 a {
		color: #ffffff;
		text-decoration: none;
	}
}






