@charset "utf-8";
/* CSS Document */

/***** reset *****/
* {
	word-break: break-all;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/***** feature *****/

.feature {
	position: relative;
	width: 100%;
	font-family: 'Noto Sans Japanese' !important;
	font-size: 10pt;
	line-height: 2em;
	text-align: left;
	text-decoration: none;
}

.feature p {
	margin: 0 0 1em;
}

.feature img {
	max-width: 100%;
}

.feature ol {
	margin: 1em 0;
	list-style-type: decimal-leading-zero;
	list-style-position: inside;
	font-size: 0.9em;
	line-height: 1.8;
}
.feature ul {
	margin: 1em 0;
	list-style-type: none;
	list-style-position: inside;
	font-size: 0.9em;
	line-height: 1.8;
}

.feature .stxt {
	font-size: 75%;
	line-height: 1.4;
}

.feature.light {
	color: #333;
	background-color: #fff;
}

.feature.light strong {
	color: #000;
}

.feature.dark {
	color: #aaa;
	background-color: #000;
}

.feature.dark strong {
	color: #fff;
}

article.container {
	padding: 1em;
}

@media (min-width:475px) {
	.feature {
		font-size: 12pt;
	}
}

@media (min-width:1000px) {
	.feature {
		font-size: 14pt;
	}

	article.container {
		padding: 0;
	}

}

/***** btn *****/
.block-btn {
	margin: 0.4em 0.6em;
	text-align: center;
}

.inline-btn {
	display: inline-block;
}

.block-btn a,
.inline-btn {
	padding: 0.6em;
	color: #fff;
	background: #f33;
	transition: .3s;
	text-decoration: none !important;
}

.block-btn a {
	display: block;
}

.inline-btn {
	display: inline-block;
}

.block-btn a:visited,
.inline-btn:visited {
	color: #fff !important;
	background: #f33 !important;
	transition: .3s;
}

.block-btn a:hover,
.inline-btn:hover {
	color: #f33 !important;
	background: #ffcdcd !important;
	transition: .3s;
}

.block-btn.disabled a,
.inline-btn.disabled {
	color: #fff !important;
	background: #cacaca !important;
}

.link-base {
	margin: 1.5em auto;
	padding: 1.5em;
	text-align: center;
	background: #711313;
}

/***** color *****/

/***** bg *****/

/***** header *****/
header {
	position: relative;
	height: 80px;
}

.bc-navi {
	position: absolute;
	top: 0;
	right: 1em;
	width: calc(100% - 100px);
	height: 3em;
	font-size: 12px;
	text-align: right;
	word-wrap: break-word;
}

.bc-navi li {
	display: inline-block;
	line-height: 1.2;
}

.bc-navi li a::after {
	content: " > ";
}

.bc-navi li a {
	display: block;
	padding: 0.5em 0.2em;
	text-decoration: none;
	color: #888;
}

.bc-navi li a:hover {
	color: #211;
	background: rgba(255, 255, 255, 0.6);
}

/***** toplink-log *****/
.toplink-logo {
	position: fixed;
	top: 10px;
	left: 10px;
	width: 60px;
	height: 60px;
	max-width: 33%;
	background: #fff;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
	z-index: 1000;
	transition-duration: 0.5s;
}

.toplink-logo:hover {
	transform: scale(1.2, 1.2);
	transition-duration: 0.5s;
}

.toplink-logo .corplogo {
	margin: auto;
	vertical-align: middle;
}

@media screen and (min-width:475px) {
	.toplink-logo {
		top: 15px;
		left: 15px;
		width: 75px;
		height: 75px;
	}
}

@media screen and (min-width:1200px) {
	.toplink-logo {
		top: 20px;
		left: 20px;
		width: 100px;
		height: 100px;
	}
}

/***** visual *****/

.visual {
	width: 100%;
	margin: 0 auto;
}

.visual img {
	width: 100%;
	max-width: 100%;
	object-fit: cover;
	display: block;
	transition: .5s;
}

.visual-img.pc {
	display: none;
}

.visual-img.sp {
	display: block;
}

@media screen and (min-width:800px) {
	.visual-img.pc {
		display: block;
	}

	.visual-img.sp {
		display: none;
	}
}

/***** col-box *****/
.col-box {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
}

.col-box img {
	max-width: 100%;
}

.col-box>div {
	padding: 2%;
}

.col-box>div.pd0 {
	padding: 0;
}

.col12,
.col20,
.col25,
.col50.sm {
	width: 50%;
}

.col33,
.col66,
.col50,
.col100 {
	width: 100%;
}

@media (min-width:768px) {
	.col12 {
		width: 50%;
	}

	.col20 {
		width: 33.33%;
	}

	.col33 {
		width: 33.33%;
	}

	.col50 {
		width: 50%;
	}

	.col66 {
		width: 66.66%;
	}
}

@media (min-width:1024px) {
	.col12 {
		width: 12.5%;
	}

	.col20 {
		width: 20%;
	}

	.col25 {
		width: 25%;
	}

	.col33 {
		width: 33.33%;
	}

	.col66 {
		width: 66.66%;
	}
}

/***** responsive *****/

@media (max-width:1600px) {}

@media (max-width:1400px) {}

@media (max-width:1200px) {}

@media (max-width:1024px) {}

@media (max-width:834px) {}

@media (max-width:768px) {}

@media (max-width:475px) {}

@media (max-width:375px) {}

@media (max-width: 320px) {}


/***** base *****/

* {
	padding: 0;
	margin: 0 auto;
}

body {
	width: 100%;
	text-align: center;
}

/***** shtmlHeader1 *****/

.shtmlHeader1 {
	position: fixed;
	z-index: 100;
	top: -100%;
	left: unset;
	right: 0;
	width: 100%;
	height: 70px;
	margin: 0px 0px 0px 0px;
	background-color: #fff;
	border-bottom: 1px solid #e8e8e8;
	transition: .5s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1.act1 {
	top: 0;
}

.shtmlHeader1-inner1 {
	position: relative;
	width: 100%;
	height: 100%;
	max-width: 1600px;
	padding: 0px 50px 0px 50px;
	margin: 0px 0px 0px 0px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1-inner2 {
	position: fixed;
	z-index: 10;
	top: 0;
	right: -400px;
	width: 400px;
	height: 100%;
	margin: 0px 0px 0px 0px;
	background-color: #fff;
	transition: .5s;
	overflow: hidden;
}

.shtmlHeader1-inner2.act1 {
	right: 0;
}



/***** shtmlHeader1-img1 *****/

.shtmlHeader1-img1 {
	width: 50%;
	height: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.shtmlHeader1-img1 img {
	width: 100%;
	max-width: 75px;
	margin: 0px 0px 0px 0px;
}



/***** shtmlHeader1-btn1 *****/

.shtmlHeader1-btn1 {
	width: 50%;
	height: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	transition: .7s;
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-end;
	align-items: center;
}

.shtmlHeader1-btn1 p {
	width: auto;
	color: #000 !important;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
	text-indent: 2px;
	letter-spacing: 2px;
	padding: 0px 0px 5px 0px;
	margin: 0px 0px 0px 0px;
	border-bottom: 1px solid #aeaeae;
	cursor: pointer;
	display: inline-block;
}


/***** header1-menu1 *****/

.shtmlHeader1-menu1 {
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	padding: 50px 50px 50px 50px;
	margin: 0px 0px 0px 0px;
	border-left: 1px solid #e8e8e8;
	transition: .5s;
}

.shtmlHeader1-menu1.act1 {
	right: 100%;
}

.shtmlHeader1-menu1-btn1 {
	position: absolute;
	z-index: 50;
	top: 30px;
	right: 30px;
	width: auto;
	height: auto;
	margin: 0px 0px 0px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1-menu1-btn1 p {
	width: 100%;
	color: #000 !important;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
	text-indent: 2px;
	letter-spacing: 2px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	transition: .5s;
	cursor: pointer;
}

.shtmlHeader1-menu1-btn1 p:hover {
	color: #d52b1e !important;
}

.shtmlHeader1-menu1 ul {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1-menu1 ul li {
	width: 100%;
	height: auto;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1-menu1-title1 {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1-menu1-title1::before {
	content: "";
	position: absolute;
	top: 45%;
	bottom: 0;
	right: 0px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-color: #c2c2c2 transparent transparent transparent;
	border-width: 7px 5px 0px 5px;
	transform: rotate(90deg);
	transition: .3s;
}

.shtmlHeader1-menu1-title1:hover::before {
	border-color: #cc001d transparent transparent transparent;
}

.shtmlHeader1-menu1-title1::after {
	content: "";
	position: absolute;
	z-index: 10;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background-color: #e8e8e8;
	transition: .3s;
}

.shtmlHeader1-menu1-title1:hover::after {
	height: 2px;
	background-color: #d52b1e;
}

.shtmlHeader1-menu1-title1 p {
	width: 100%;
	color: #000 !important;
	font-size: 14pt;
	font-weight: 300;
	text-align: left;
	text-indent: 0px;
	letter-spacing: 2px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
}



/***** header1-menu1-category1 *****/

.shtmlHeader1-menu1-category1 {
	position: absolute;
	z-index: 50;
	top: 0;
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-left: 1px solid #e8e8e8;
	transition: .5s;
	overflow-y: scroll;
}

.shtmlHeader1-menu1-category1.act1 {
	right: 0;
}

.shtmlHeader1-menu1-category1-inner1 {
	width: 100%;
	height: auto;
	padding: 50px 50px 50px 50px;
}

.shtmlHeader1-menu1-category1-title1 {
	width: 100%;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 0px solid #d52b28;
}

.shtmlHeader1-menu1-category1-title1 p {
	width: 100%;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
	text-indent: 0px;
	letter-spacing: 2px;
	transition: .5s;
}

.shtmlHeader1-menu1-category1-title1 p:hover {
	color: #d52b28;
}

.shtmlHeader1-menu1-category1-list1 {
	width: 100%;
	height: auto;
	padding: 20px 0px 20px 0px;
}

.shtmlHeader1-menu1-category1-list1-title1 {
	width: 100%;
	margin: 0px 0px 10px 0px;
}

.shtmlHeader1-menu1-category1-list1-title1 a {
	width: auto;
	display: inline-block;
}

.shtmlHeader1-menu1-category1-list1-title1 a p {
	font-size: 14px;
	font-weight: 500;
	text-align: left;
	text-indent: 0px;
	letter-spacing: 2px;
	transition: .3s;
}

.shtmlHeader1-menu1-category1-list1-title1 a:hover p {
	color: #d52b1e;
}

.shtmlHeader1-menu1-category1-list1 ul {
	width: 95%;
	height: auto;
	padding: 0px 0px 0px 5%;
	margin: 0px 0px 0px 5%;
	border-left: 1px solid #e8e8e8;
	display: block;
}

.shtmlHeader1-menu1-category1-list1 ul li {
	width: 100%;
	height: auto;
	padding: 3px 0px 3px 0px;
	margin: 0px 0px 0px 0px;
	display: block;
}

.shtmlHeader1-menu1-category1-list1 ul li a {
	width: auto;
	display: inline-block;
}

.shtmlHeader1-menu1-category1-list1 ul li a p {
	font-size: 12px;
	font-weight: 300;
	text-align: left;
	text-indent: 0px;
	letter-spacing: 2px;
	transition: .3s;
}

.shtmlHeader1-menu1-category1-list1 ul li a:hover p {
	color: #d52b1e;
}

.shtmlHeader1-menu1-category1-btn1 {
	position: absolute;
	z-index: 50;
	top: 30px;
	right: 30px;
	width: auto;
	height: auto;
	margin: 0px 0px 0px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.shtmlHeader1-menu1-category1-btn1 p {
	width: 100%;
	color: #000 !important;
	font-size: 12px;
	font-weight: 300;
	text-align: center;
	text-indent: 2px;
	letter-spacing: 2px;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	transition: .5s;
	cursor: pointer;
}

.shtmlHeader1-menu1-category1-btn1 p:hover {
	color: #d52b28 !important;
}


/***** grid *****/

.grid-main {
	width: 100%;
	height: auto;
	letter-spacing: 0.1em;
}

@media (min-width:1040px) {
	.grid-main {
		width: 100%;
		max-width: 1040px;
	}

}

/***** visual1 *****/

.visual {
	width: 100%;
}


/***** intro1 *****/

.intro {
	width: 100%;
}

.intro .lead {
	width: 100%;
	font-size: 2em;
	font-weight: 600;
	text-align: center;
	letter-spacing: 2px;
	line-height: 2em;
}

/***** responsive *****/

@media (max-width: 1024px) {

	.shtmlHeader1-inner2 {
		right: -50%;
		width: 50%;
	}

}


@media (max-width: 767px) {

	.shtmlHeader1-inner1 {
		padding: 0px 30px 0px 30px;
	}

	.shtmlHeader1-inner2 {
		right: -100%;
		width: 100%;
	}

	.shtmlHeader1-menu1 {
		padding: 60px 30px 60px 30px;
	}

	.shtmlHeader1-menu1-category1 {
		padding: 0px 0px 0px 0px;
	}

	.shtmlHeader1-menu1-category1-inner1 {
		padding: 60px 30px 60px 30px;
	}

	.shtmlHeader1-menu1-category1-list1 {
		padding: 15px 0px 15px 0px;
	}


}

/***** ncis 独自CSS *****/
.ncis {
	color: #5b4a3d;
}

.ncis h1 {
	margin: 0;
	padding: 0;
}

.ncis h2 {
	margin: 0.5em auto;
	padding: 1em 0 0.5em;
	font-size: 1.6em;
	font-weight: 600;
	border-bottom: 1px solid;
}

.ncis .h2 span {
	display: block;
	font-size: 50%;
	font-weight: 300;
	letter-spacing: 2px;
}

.ncis h3 {
	font-size: 0.9em;
	color: #000;
	margin-top:1.4em;
}

.intro {
	padding: 2em 0;
	text-align: center;
}

.intro .intro-lead {
	padding: 1em;
	font-size: 1.8em;
	font-weight: bold;
	color: #514e4e;
}

.venue{
	margin: 0.5em 0;
	padding:0.6em;
	font-weight: bold;
	background: #e3e3e3;
}
.venue .detail{
	font-size: 75%;
	font-weight: normal;
	line-height: 1.2;
}

@media (min-width:1000px) {
	.intro .intro-lead {
		padding: 0;
	}
	.cn-tel-txt{
		font-size:90%;
	}
}


.movie {
	position: relative;
	width: 100%;
	height: auto;
	margin: 20px auto;
	background-color: #000;
}

.movie:after {
	content: "";
	display: block;
	padding-top: 56.25%;
}

.movie img {
	cursor: pointer;
}

.movie img,
.movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: auto;
}

.text-danger {
	font-size: 0.75em;
	color: #c00;
}

.specs {
	font-size: 0.9em;
	line-height: 1.8;
}

.feature .itemlist {
	line-height: 1.2em !important;
	font-size: 0.8em;
}

.feature .itemlist a {
	text-decoration: none;
	color: #5b4a3d;
}

.feature .itemlist a:hover {
	text-decoration: underline;
	color: #cc001d;
}
ul.bio {
	text-align:center;
	font-size:0.9em;
	list-style-type:none !important;
}
ul.bio li{
	text-align:center;
	list-style-type:none !important;
}
ul.bio li.bio-year{
	margin-top:1.4em;
	font-weight: bold;
}
.ouen {
	padding: 1em;
	text-align: center;
	border: 1px dashed;
}