@charset "utf-8";
/* CSS Document */

/* ----------------------------------------------------------------------------
 * base
 * ------------------------------------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 1.6rem;
	color: #333333;
	text-align: left;
	overflow-x: hidden;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	text-align: justify;
	text-justify: inter-ideograph;
	line-height: 1.5;
	word-wrap: break-word;
}
b, em, strong {
	font-weight: bold;
}

a {
	text-decoration: none;
	transition: 0.3s all ease;
	color: inherit;
}

a:hover, a:focus, a:active a:visited{
	opacity: 0.5;
}

a[href^="tel:"] {
	cursor: default;
}

a[href^="tel:"]:hover, a[href^="tel:"]:focus, a[href^="tel:"]:active a[href^="tel:"]:visited{
	opacity: 1;
}

li {
	list-style: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	transition: 0.3s all ease;
	border: none;
}
button{
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}


@media screen and (max-width:768px) {
	body {
		line-height: 1.5;
	}
}

@media screen and (max-width:350px) {
	html {
		font-size: 52.5%;
	}
}


/* ============================================================================
 * Layout
 * ========================================================================= */

/* ----------------------------------------------------------------------------
 * wrapper
 * ------------------------------------------------------------------------- */
.content_inner {
	width: 1040px;
	max-width: 100%;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

main {
	margin: 80px 0;
	display: block;
}

@media screen and (max-width:768px) {
	.content_inner {
		padding: 0 10px;
	}
	.nav_wrapper .content_inner {
		padding: 0;
		z-index: 3;
	}
	header .content_wrapper {
		position: relative;
	}
	main {
		margin: 30px 0 50px;
	}
}

/* ----------------------------------------------------------------------------
 * header
 * ------------------------------------------------------------------------- */

.header_logo {
	width: 300px;
	display: inline-block;
	margin: 10px 0;
}

.sp_togglebtn {
	display: none;
}

.s_nav {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 60%;
}

.s_nav ul {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:nowrap;
	-moz-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
}

.s_nav li {
	position: relative;
	padding-left: 50px;
	margin-left: auto;
}

.s_nav li:nth-of-type(n+2) {
	margin-left: 20px;
}

.s_nav .menu_icon {
	margin-right: 7px;
	vertical-align: middle;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}
.g_nav:not(.index) {
	background-color: #0F62A9;
	padding-left: 99999px;
	margin-left: -99999px;
	padding-right: 99999px;
	margin-right: -99999px;
}
.g_nav ul {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:nowrap;
	-moz-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
	justify-content: space-between;
	width: 1000px;
}

.g_nav.fixed {
	position: fixed;
	top: 0;
	width: 1000px;
	z-index: 1000;
}

.g_nav:not(.index) ul li br {
	display: none;
}

.g_nav ul li {
	text-align: center;
}

.g_nav ul li a.current {
	background-color: #fff;
}

.g_nav ul li a.current span {
	color: #0F62A9;
}

.g_nav:not(.index) ul li:first-child {
	width: 380px;
}

.g_nav:not(.index) ul li:nth-child(2) {
	width: 300px;
}

.g_nav:not(.index) ul li:nth-child(3) {
	width: 300px;
}

.g_nav:not(.index) ul li:nth-child(4) {
	width: 300px;
}

.g_nav:not(.index) ul li a {
	padding: 22px 0 16px ;
	display: block;
	color: #fff;
	border-left: 1px solid #fff;
}

.g_nav:not(.index) ul li:last-child a {
	border-right: 1px solid #fff;
}

.g_nav:not(.index) ul li a:hover {
	background-color: #fff;
	color: #0F62A9;
	opacity: 1;
}

.g_nav:not(.index) ul li a > span {
	position: relative;
	padding-left: 25px;
}

.g_nav:not(.index) ul li a > span::before {
	position: absolute;
	top: 5px;
	left: 0;
	content: '';
	background-color: #fff;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
}

.g_nav:not(.index) ul li:first-child a:hover > span::before,
.g_nav:not(.index) ul li:first-child .current > span::before {
	background-color: #0F62A9;
}

.g_nav:not(.index) ul li:nth-child(2) a > span::before {
	background-color: #DA3A1E;
}

.g_nav:not(.index) ul li:nth-child(3) a > span::before {
	background-color: #EFBD4E;
}

.g_nav:not(.index) ul li:nth-child(4) a > span::before {
	background-color: #41AF9E;
}


.g_nav.index {
	position: absolute;
	left: 0;
	padding: 0 20px;
	max-width: 100%;
	z-index: 10;
}

.g_nav.index ul {
	padding: 2px;
	box-shadow:0px 3px 12px -2px #b4b4b4;
	background-color: #fff;
	width: 1000px;
	max-width: 100%;
	margin: 0 auto;
}

.g_nav.index li {
	width: 25%;
}

.g_nav.index ul li:first-child {
	background-color: #0F62A9;
}

.g_nav.index ul li:nth-child(2) {
	background-color: #DA3A1E;
}

.g_nav.index ul li:nth-child(3) {
	background-color: #EFBD4E;
}

.g_nav.index ul li:nth-child(4) {
	background-color: #41AF9E;
}

.g_nav.index ul li a {
	padding: 15px 5px;
	display: table;
	height: 100%;
	width: 100%;
	color: #fff;
	border-right: 2px solid #fff;
}

.g_nav.index ul li:last-child a {
	border-right: none;
}

.g_nav.index ul li a > span {
	display: table-cell;
	vertical-align: middle;
	font-size: 2.2rem;
}

.g_nav.index ul li a > span span {
	display: none;
}

@media screen and (max-width:1000px) {
	.g_nav ul {
		max-width: 100%;
	}
	.g_nav.index ul li a > span {
		font-size: 1.5rem;
	}
	.g_nav:not(.index) ul li a > span {
		font-size: 1.3rem;
	}
	.g_nav.fixed:not(.index) {
		left: 0;
		margin: 0;
		padding: 0;
		max-width: 100%;
	}

}
@media screen and (max-width:970px) {
	.header_logo {
		width: 250px;
	}
	.s_nav {
		top: 16px;
	}
}
@media screen and (min-width:769px) {
	.sp_togglemenu {
		display: block!important;
	}
}
@media screen and (max-width:768px) {
	.nav_wrapper {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 10000;
		background-color: rgba(255,255,255,.8);
		width: 100%;
	}

	.header_logo {
		width: 200px;
		margin-left: 10px;
	}
	.sp_togglemenu {
		display: none;
		background-color: #fff;

	}
	.s_nav {
		position: static;
		width: 100%;
	}
	.s_nav ul {
		display: block;
		padding-right: 0;
	}
	.s_nav li {
		display: block;
		padding-left: 0;
	}
	.s_nav li:nth-of-type(n+2) {
		margin-left: 0;
	}
	.s_nav li a {
		padding: 15px 30px 15px 55px;
		border-bottom: 2px solid #0F62A9;
		display: block;
	}
	.s_nav .event_none {
		padding: 15px 30px 15px 55px;
		border-bottom: 2px solid #0F62A9;
		display: block;
	}
	.s_nav .event_none a[href^="tel:"] {
		padding: 0;
		display: inline;
		border-bottom: none;
		pointer-events: auto;
	}
	.s_nav .menu_icon {
		left: 10px;
	}
	.g_nav:not(.index) {
		background-color: #fff;
		padding-left: 0;
		margin-left: 0;
		padding-right: 0;
		margin-right: 0;
	}
	.g_nav ul {
		display: block;
		}
	.g_nav ul li {
		text-align: left;
	}
	.g_nav ul li a.current span {
		color: #fff;
	}
	.g_nav:not(.index) ul li a {
		padding: 10px 20px;
		border-left: none;
		border-bottom: 2px solid #fff;;
	}

	.g_nav:not(.index) ul li a > span {
		font-size: 1.8rem;
		padding-left: 0;
	}
	.g_nav:not(.index) ul li a > span::before {
		position: absolute;
		top: 5px;
		left: 0;
		content: '';
		background-color: #fff;
		width: 12px;
		height: 12px;
		transform: rotate(45deg);
	}
	.g_nav:not(.index) ul li a > span::before {
		content: none;
	}
	.g_nav:not(.index) ul li:first-child,
	.g_nav:not(.index) ul li:first-child .current {
		width: 100%;
		background-color: #0F62A9;
	}

	.g_nav:not(.index) ul li:nth-child(2),
	.g_nav:not(.index) ul li:nth-child(2) .current {
		width: 100%;
		background-color: #DA3A1E;
	}

	.g_nav:not(.index) ul li:nth-child(3),
	.g_nav:not(.index) ul li:nth-child(3) .current {
		width: 100%;
		background-color: #EFBD4E;
	}

	.g_nav:not(.index) ul li:nth-child(4),
	.g_nav:not(.index) ul li:nth-child(4) .current {
		width: 100%;
		background-color: #41AF9E;
	}
	.sp_togglebtn {
		display: block;
		position: absolute;
		top: 12px;
		right: 12px;
		font-size: 1.3rem;
		border: 1px solid #0F62A9;
		padding: 6px 10px;
		width: 105px;
	}
	.sp_togglebtn >div::after {
		position: absolute;
		left: 8px;
		top: 6px;
		content: 'メニュー';
		display: block;
		color: #000;
		font-size: 1.3rem;
		text-decoration: none;
		text-align: center;
		white-space: nowrap;
		transition: all .4s;
	}
	.sp_togglebtn.open >div::after {
		content: '閉じる';
		left: 20px;
	}
	.sp_togglebtn >div {
		display: block;
		margin-left: auto;
	}
	.sp_togglebtn .btn_border span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	.sp_togglebtn .btn_border {
		position: relative;
		width: 26px;
		height: 21px;
		margin-left: auto;
	}
	.sp_togglebtn .btn_border span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #0F62A9;
		border-radius: 4px;
	}
	.sp_togglebtn .btn_border span:nth-of-type(1) {
		top: 0;
	}
	.sp_togglebtn .btn_border span:nth-of-type(2) {
		top: 8px;
	}
	.sp_togglebtn .btn_border span:nth-of-type(3) {
		bottom: 0;
	}
	.sp_togglebtn.open .btn_border span:nth-of-type(2)::after {
		position: absolute;
		top: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 4px;
		background-color: #0F62A9;
		border-radius: 4px;
		transition: all .4s;
	}
	.sp_togglebtn.open .btn_border span:nth-of-type(1) {
		transform: translateY(20px) scale(0);
	}
	.sp_togglebtn.open .btn_border span:nth-of-type(2) {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.sp_togglebtn.open .btn_border span:nth-of-type(2)::after {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
	.sp_togglebtn.open .btn_border span:nth-of-type(3) {
		transform: translateY(-20px) scale(0);
	}
	.sp_togglemenu {
		display: none;
	}

}
@media screen and (max-width:470px) {
	.s_nav .event_none a[href^="tel:"] {
		display: block;
	}
}
@media screen and (max-width:340px) {
	.sp_togglebtn {
		top: 16px;
		padding: 3px 4px;
		width: 90px;
	}

}


/* ----------------------------------------------------------------------------
 * keyvisual
 * ------------------------------------------------------------------------- */

.key_visual p {
	position: relative;
}
.key_visual.index p::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/black_cover.png) no-repeat left top;
	background-size: 100%;
	z-index: 1;
}

.key_visual:not(.index) {
	margin-bottom: 20px;
}

.key_visual img {
	width: 100%;
	height: auto;
	position: relative;
	display: block;
}

.index .key_visual img {
	margin-bottom: 20px;
}

.key_visual_title {
	position: absolute;
	left: 0;
	top: 120px;
	width: 100%;
	z-index: 2
}

.key_visual_title .text {
	width: 1040px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 3.8rem;
	line-height: 1.5;
	color: #fff;
	letter-spacing: -1.6px;
}

@media screen and (max-width:1000px) {
	.key_visual_title .text {
		font-size: 2.5rem;
	}
}
@media screen and (max-width:768px) {
	.key_visual.index {
		position: relative;
		overflow: hidden;
		height: 200px;
		background-size: 780px;
		background-position: center bottom;
	}
	.key_visual:not(.index) {
		position: relative;
		overflow: hidden;
		height: 180px;
		background-size: 780px;
		background-position: center bottom;
		margin: 60px 0 10px 0;
	}
	.key_visual img {
		display: none;
	}
	.key_visual_title {
		text-align: center;
		top: 35%;
	}
	.key_visual_title .text {
		font-size: 2rem;
	}
}

/* ----------------------------------------------------------------------------
 * breadcrumbs
 * ------------------------------------------------------------------------- */
.breadcrumbs_content {
	text-align: left;
}
.breadcrumbs_content li {
	display: inline-block;
}

.breadcrumbs_content li a {
	color: #0F62A9;
	position: relative;
	margin-right: 28px;
}

.breadcrumbs_content li a::after {
	position: absolute;
	content: '';
	right: -20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 10px;
	height: 10px;
	border-top: 3px solid #0F62A9;
	border-right: 3px solid #0F62A9;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.breadcrumbs_content li:first-child a::before {
	content: '◆';
	font-size: 1.8rem;
	margin-right: 5px;
}

@media screen and (max-width:768px) {
	.breadcrumbs_content {
		font-size: 1.3rem;
	}
	.breadcrumbs_content li a {
		margin-right: 14px;
	}

	.breadcrumbs_content li a::after {
		right: -12px;
		width: 8px;
		height: 8px;
		border-top: 2px solid #0F62A9;
		border-right: 2px solid #0F62A9;
	}
	.breadcrumbs_content li:first-child a::before {
		margin-right: 2px;
	}
}


/* ----------------------------------------------------------------------------
 * title
 * ------------------------------------------------------------------------- */
.common_title {
	font-weight: bold;
	border-bottom: 5px solid #0F62A9;
	position: relative;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 20px;
	letter-spacing: 2px;
	font-size: 3rem;
}

.common_title::before {
	content: '';
	position: absolute;
	left: 5px;
	bottom: -5px;
	width: 5px;
	height: 5px;
	background-color: #fff;
}

.common_title::after {
	content: '';
	position: absolute;
	right: 5px;
	bottom: -5px;
	width: 5px;
	height: 5px;
	background-color: #fff;
}

.message_content .common_title {
	z-index: -1;
}

.blog_content .common_title a {
	display: block;
}

.blog_content .common_title .title_icon {
	position: absolute;
	right: 0;
	top: 0;
	width: 13%;
}

.common_sub_title {
	font-weight: bold;
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 50px;
}

.common_title_type_bgc {
	background-color:#000;
	padding: 15px 10px 7px;
	color: #fff;
	margin-bottom: 30px;
	text-align: center;
}

.common_title_type_bgc > span {
	font-size: 2.8rem;
	position: relative;
}

.boxer-content .common_title_type_bgc {
	height: 70px;
	line-height: 70px;
	padding: 0 10px 0 20px;
	background-color: #ccc;
	margin-bottom: 0;
	text-align: left;
	font-size: 2rem;
}

.bigcircle_title {
	padding-left: 20px;
	position: relative;
	font-size: 2rem;
	font-weight: bold;
	margin: 50px 0 15px;
}

.bigcircle_title::before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}

main section:nth-child(n+2) {
	padding-top: 150px;
	position: relative;
}

main section:nth-child(n+2)::before {
	content: '';
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 128px;
	height: 17px;
	background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/border_01.png) no-repeat center top;
}

.content_inner br.sp {
	display: none;
}

@media screen and (max-width:768px) {
	.common_title {
		padding-bottom: 10px;
		margin-bottom: 20px;
		letter-spacing: 2px;
		font-size: 2.4rem;
	}
	.message_content .common_title {
		z-index: 0;
	}
	.blog_content .common_title {
		padding-right: 40px;
	}
	.blog_content .common_title .title_icon {
		position: absolute;
		right: 0;
		top: auto;
		bottom: 5px;
		width: 35px;
	}
	main section:nth-child(n+2) {
		padding-top: 100px;
	}
	main section:nth-child(n+2)::before {
		content: '';
		position: absolute;
		top: 50px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 128px;
		height: 17px;
		background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/border_01.png) no-repeat center top;
	}
	.common_sub_title {
		text-align: left;
		font-size: 1.6rem;
	}
	.common_sub_title br {
		display: none;
	}
	.common_title_type_bgc {
		padding: 7px 10px 7px;
		color: #fff;
	}
	.common_title_type_bgc > span {
		font-size: 1.6rem;
	}
	.boxer-content .common_title_type_bgc {
		font-size: 1.5rem;
	}
}

@media screen and (max-width:450px) {
	.blog_content .common_title {
		font-size: 2.1rem;
	}

	.content_inner br.sp {
		display: inline;
	}
}

/* ----------------------------------------------------------------------------
 * text
 * ------------------------------------------------------------------------- */
.section_read {
	margin-bottom: 20px;
	line-height: 1.5;
}

.section_read.mb10 {
	margin-bottom: 10px;
}

.section_read.mb30 {
	margin-bottom: 30px;
}

.section_read.mb40 {
	margin-bottom: 40px;
}

.section_read.mb50 {
	margin-bottom: 50px;
}
.wdh120p {
	width: 120%;
}
.wdh145p {
	width: 145%;
}
.caution_text {
	color: #FF0000;
}

.iblock_content {
	display: inline-block;
}

.img_caption {
	font-size: 1.3rem;
	text-align: right;
	margin-top: 10px;
}

.img_caption02 {
	font-size: 1.5rem;
	text-align: center;
	margin-top: 10px;
	display: block;
}

.irregular_info {
	border: 2px solid #da3b1e;
	color: #da3b1e;
	padding: 6px 6px 2px;
	text-align: center;
	font-size: 2.4rem;
	margin: 52px 0 85px;
	font-weight: bold;
}

footer .irregular_info {
	border: 2px solid #da3b1e;
	color: #da3b1e;
	padding: 26px 28px;
	text-align: left;
	font-size: 1.6rem;
	margin: 0;
	font-weight: normal;
	background-color: #fff;
}

.equality_content {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:nowrap;
	-moz-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
}

.equality_content > .th {
	width: 80px;
	text-align: justify;
	text-justify: inter-ideograph;
	-moz-text-align-last: justify;
	text-align-last: justify;
}

.equality_content > .td {
	position: relative;
	padding-left: 15px;
	width: 90%
}

.equality_content > .td::before {
	content: '：';
	position: absolute;
	left: 0;
	top: -1px;
}

.number_circle {
	color: #fff;
	background-color:#f00;
	padding: 0;
	margin: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	font-size: 2rem;
}

.border_type01 {
	margin:35px 0 50px;
	border: none;
	border-top: 2px solid #0F62A9;
}

@media screen and (max-width:768px) {
	.irregular_info {
		padding: 10px 10px 8px;
		font-size: 1.6rem;
		margin: 30px 0 30px;
		text-align: left;
	}
	.equality_content > .th {
		width: 80px;
	}
	.img_caption {
		text-align: center;
	}
	.wdh120p {
		width: 100%;
	}
	.wdh145p {
		width: 100%;
	}
}


/* ----------------------------------------------------------------------------
 * img wrapper
 * ------------------------------------------------------------------------- */
.img_border_wrapper {
	border: 1px solid #999999;
	padding: 20px;
}

.img_wrapper {
	margin-top: 10px;
}

.img_wrapper02 {
	margin-bottom: 34px;
}

.img_wrapper03 {
	margin: 10px  20px 0 0;
}

.iframe_wrapper {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 40%;
	overflow: hidden;
}

.iframe_wrapper iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.facebook_nss{
	position:relative;
    width:100%;
    height:0;
    padding-top:75%;
}
.facebook iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

/* ----------------------------------------------------------------------------
 * list
 * ------------------------------------------------------------------------- */
.list_content li {
	position: relative;
	padding-left: 15px;
}
.list_content.limb10 li {
	margin-bottom: 20px;
	line-height: 1.5;
}

.list_content.type_bigcircle li {
	padding-left: 20px;
	margin-bottom: 5px;
}
.list_content.type_bigcircle li::before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}

.list_content.type_circle li {
	padding-left: 15px;
}

.list_content.type_circle li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

.list_content.type_caution {
	margin-top: 10px;
}

.list_content.type_caution li {
	padding-left: 35px;
	position: relative;
	list-style: none;
	font-size: 1.3rem;
}
.list_content.type_caution li span {
	position: absolute;
	top: 0;
	left: 0;
}

.list_content.limb10 li {
	margin-bottom: 20px;
}

.list_content.limb5 li {
	margin-bottom: 5px;
}

.numberlist_circle_default {
	counter-reset: counter01;
	list-style: none;
	padding: 0;
}

.numberlist_circle_default > li {
	margin-bottom: 20px;
	padding-left: 20px;
	position: relative;
	line-height: 1.6;
	padding-top: 3px;
}

.numberlist_circle_default > li:before {
	content: counter(counter01);
	counter-increment: counter01;
	background-color: #fff;
	color: #333;
	display: block;
	float: left;
	border: 1px solid #333;
	line-height: 16px;
	text-align: center;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 4px;
	font-size: 1.3rem;
}

.numberlist_circle {
	counter-reset: counter02;
	list-style: none;
	padding: 0;
}

.numberlist_circle li {
	margin-bottom: 10px;
	padding-left: 42px;
	position: relative;
	line-height: 1.6;
	padding-top: 3px;
}

.numberlist_circle li:before {
	content: counter(counter02);
	counter-increment: counter02;
	background-color: #000;
	color: #fff;
	display: block;
	float: left;
	line-height: 30px;
	text-align: center;
	height: 30px;
	width: 30px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
}

.numberlist_brackets {
	counter-reset: counter03;
	list-style: none;
	padding: 0;
}

.numberlist_brackets > li {
	margin-bottom: 20px;
	padding-left: 25px;
	position: relative;
	line-height: 1.6;
}
.numberlist_brackets > li:before {
	content: counter(counter03)')';
	counter-increment: counter03;
	position: absolute;
	left: 0;
	top: 0;
}
.numberlist_brackets > li:last-child {
	margin-bottom: 0;
}

.article_pager {
	text-align: center;
}

.article_pager li {
	display: inline-block;
	margin-right: 10px;
	font-weight: bold;
}

.article_pager li a {
	font-weight: normal;
	color: #0F62A9;
}


@media screen and (max-width:768px) {
	.numberlist_circle {
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}

	.numberlist_circle li {
		width: 48%;
		padding: 0 0 0 30px;
	}
	.numberlist_circle li:nth-child(2n) {
		margin-left: 4%;
	}
	.numberlist_circle li:before {
		line-height: 25px;
		height: 25px;
		width: 25px;
	}
}

/* ----------------------------------------------------------------------------
 * link
 * ------------------------------------------------------------------------- */
.event_none {
	pointer-events: none;
}
.text_link {
	color: #0F62A9;
	padding-right: 15px;
	position: relative;
	margin-right: 15px;
	display: inline-block;
}

.text_link::after {
	position: absolute;
	top: 7px;
	right: 0;
	margin: auto 0;
	content: '';
	width: 9px;
	height: 9px;
	border-top: 2px solid rgba(15,98,169,1);
	border-right: 2px solid rgba(15,98,169,1);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.text_link[target="_blank"] {
	padding-right: 25px;
	margin-right: 25px;
	word-wrap: break-word;
	max-width: 100%;
}

.text_link[target="_blank"]::after {
	position: absolute;

	top: 4px;
	right: 0;
	margin: auto 0;
	content: '';
	width: 16px;
	height: 16px;
	background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/icon_blank.png) no-repeat center center;
	transform: none;
	border: none;
}

/* ----------------------------------------------------------------------------
 * btn
 * ------------------------------------------------------------------------- */
.btn_kobelcoman {
	margin-top: 20px;
}

.btn_kobelcoman.big {
	text-align: right;
}

.btn_kobelcoman a {
	position: relative;
	background-color: #0071BE;
	border-radius: 8px;
	padding: 10px;
	color: #fff;
	text-align: center;
	display: inline-block;
	margin-left: 30px;
}

.btn_kobelcoman.big a {
	padding: 16px 20px 14px;
	font-size: 2rem;
	margin-left: 50px;
}

.btn_kobelcoman a::before {
	content: '';
	width: 44px;
	height: 60px;
	position: absolute;
	background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/kobelcoman_04.png) no-repeat center center;
	top: -15px;
	left: -40px;
}
.btn_kobelcoman.type_pdf {
	text-align: left;
}

.btn_kobelcoman.type_pdf a {
	padding: 16px 65px 16px 14px;
}

.btn_kobelcoman.type_pdf a::after {
	content: '';
	position: absolute;
	right: 5%;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 36px;
	height: 46px;
	background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/icon_pdf.png) no-repeat center center;
}

@media screen and (max-width:768px) {
	.btn_kobelcoman.big {
		text-align: center;
	}
	.btn_kobelcoman.type_pdf a {
		font-size: 1.6rem
	}
}


/* ----------------------------------------------------------------------------
 * table
 * ------------------------------------------------------------------------- */
.table_content table {
	width: 100%;
}

.table_content th {
	background-color: rgba(0,136,206,0.10);
	padding: 10px 20px;
	border: 1px solid rgba(0,136,206,0.50);
	font-weight: normal;
	width: 190px;
	vertical-align: top;
}

.table_content td {
	padding: 10px 30px;
	border: 1px solid rgba(0,136,206,0.50);
	vertical-align: top;
}

.table_content.type_dashed tr:first-child th,
.table_content.type_dashed tr:first-child td{
	border-top: 1px solid rgba(0,136,206,0.50);
}

.table_content.type_dashed tr:last-child th,
.table_content.type_dashed tr:last-child td{
	border-bottom: 1px solid rgba(0,136,206,0.50);
}

.table_content.type_dashed th {
	border-bottom: none;
	border-bottom: 1px dashed rgba(0,136,206,0.50);
	border-top: 1px dashed rgba(0,136,206,0.50);
	padding: 15px 20px;
}

.table_content.type_dashed td {
	border-bottom: none;
	border-bottom: 1px dashed rgba(0,136,206,0.50);
	border-top: 1px dashed rgba(0,136,206,0.50);
	padding: 15px 30px;
}

.table_content.type_color01 th {
	background-color: rgba(218,21,125,0.20);
	padding: 7px 20px;
	border: 1px solid #999999;
	vertical-align: top;
	font-weight: bold;
	width: 100%;
	text-align: center;
}

.table_content.type_color01 td {
	padding: 7px 10px;
	border: 1px solid #999999;
	vertical-align: top;
	text-align: center;
}

.table_content.type_color02 th {
	background-color: rgba(32,174,229,0.20);
	padding: 7px 20px;
	border: 1px solid #999999;
	width: 100%;
	text-align: center;
	vertical-align: middle;
	font-weight: bold;
}

.table_content.type_color02 td {
	padding: 7px;
	text-align: center;
	border: 1px solid #999999;
	vertical-align: middle;
}

.table_content.typedl {
	padding-top: 10px;
}
.table_content.typedl dt {
	width: 30%;
	float: left;
	padding: 12px 10px 12px 20px;
}

.table_content.typedl dd {
	padding: 12px 5px 12px 30%;
	border-bottom: 1px dashed #999999;
}

.table_content.typedl dd:last-child {
	border-bottom: none;
}

@media screen and (max-width:768px) {
	.table_content th {
		background-color: rgba(0,136,206,0.10);
		padding: 5px 10px;
		border: 1px solid rgba(0,136,206,0.50);
		font-weight: normal;
		width: 100px;
		vertical-align: top;
	}
	.table_content td {
		padding: 5px 10px;
	}
	.table_content.type_dashed th {
		padding: 5px 10px;
	}
	.table_content.type_dashed td {
		padding: 5px 10px;
	}
	.table_content.typedl dt {
		padding: 6px 10px 6px 10px;
	}

	.table_content.typedl dd {
		padding: 6px 5px 6px 30%;
	}
}

/* ----------------------------------------------------------------------------
 * content
 * ------------------------------------------------------------------------- */
.section_content {
	margin-bottom: 50px;
}
.center_content {
	text-align: center;
	margin: 0 auto;
}
.center_content_sp {
	text-align: left;
}
.right_content {
	text-align: right;
	margin-left: auto;
}

/* dl */
.dl_content dt {
	font-weight: bold;
	position: relative;
	padding-left: 15px;
	margin-bottom: 25px;
}

.dl_content.fs01:nth-of-type(n+2) {
	margin-top:  50px;
}

.dl_content.fs01 dt {
	font-size: 2rem;
	padding-left: 20px;
	margin-bottom: 10px;
}

.dl_content.fs02 dt {
	font-size: 2.4rem;
	padding-left: 0;
	margin-bottom: 10px;
	text-align: left;
}

.dl_content.fs02 dd {
	text-align: left;
}

.dl_content.ddmb30 dd {
	margin-bottom: 30px;
}

.dl_content.type_circle dt::before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}
.dl_content dt.type_circle_a,
.dl_content dt.type_circle_b,
.dl_content dt.type_circle_c,
.dl_content dt.type_circle_d {
	padding-left: 55px;
}

.dl_content dt.type_circle_a::before {
	content: '●A：';
	position: absolute;
	top: -2px;
	left: 0;
}

.dl_content dt.type_circle_b::before {
	content: '●B：';
	position: absolute;
	top: -2px;
	left: 0;
}

.dl_content dt.type_circle_c::before {
	content: '●C：';
	position: absolute;
	top: -1px;
	left: 0;
}

.dl_content dt.type_circle_d::before {
	content: '●D：';
	position: absolute;
	top: -2px;
	left: 0;
}

.dl_content.mt50 {
	margin-top: 50px;
}

.dl_content.mt50 dt {
	margin: 55px 0 20px 0;
}

.dl_content.mt50 dt:first-child {
	margin-top: 0;
}

.dl_content.mt50 dd {
	margin-bottom: 50px;
}

.dl_content.mt50 dd:last-child {
	margin-bottom: 0;
}

.dl_content.mt80 {
	margin-top: 50px;
}

.dl_content.mt80:nth-of-type(n+2) {
	margin-top: 80px;
}

.dl_content.mt80 dt {
	margin: 55px 0 20px 0;
}

.dl_content.mt80 dt:first-child {
	margin-top: 0;
}

.dl_content.mt80 dd {
	margin-bottom: 50px;
}

.dl_content.mt80 dd:last-child {
	margin-bottom: 0;
}


@media screen and (max-width:768px) {
	.center_content_sp {
		text-align: center;
	}
	.dl_content dt {
		margin-bottom: 0;
	}
	.dl_content.fs01 dt {
	font-size: 1.7rem;
}

}

/* イベント */
.event_content .column_box {
	padding: 22px 0;
	/* border-bottom: 1px dashed #ccc; */
}

.event_content > a {
	display: block;
	position: relative;
}
.event_content > a > .column_box {
	padding-right: 60px;
}
.event_content > a > .column_box::after {
	position: absolute;
	content: '';
	right: 3px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 36px;
	height: 36px;
	border-top: 6px solid rgba(15,98,169,.5);
	border-right: 6px solid rgba(15,98,169,.5);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.event_content a:nth-child(2) {
	padding-top: 0;
}

.event_content a:last-child {
	margin-bottom: 0;
}

.event_content > a:not(.event_other_content01) .column_box {
	border-top: 1px dashed #ccc;
}

.event_content hr {
	border-top: 1px dashed #ccc;
	border-bottom: none;
}

.event_content > h3 + a .column_box {
	border-top: 0 !important;
}

.event_content .img img {
	min-width: 100%;
	height: auto;
}

.event_content .event_title {
	font-size: 2.8rem;
	padding-left: 48px;
	border-bottom: 3px solid #000;
	position: relative;
	font-weight: bold;
}

.event_content .event_title::before {
	position: absolute;
	top: 8px;
	left: 10px;
	content: '';
	background-color: #000;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
}

.event_content .event_title.color01 {
	border-color: #F95496;
}

.event_content .event_title.color01::before {
	background-color: #F95496;
}

.event_content .event_title.color02 {
	border-color: #069ED6;
}

.event_content .event_title.color02::before {
	background-color: #069ED6;
}

.event_content .event_title:nth-child(n+3) {
	margin-top: 37px;
}
.event_content .event_title.color03 {
	border-color: #79C408;
}
.event_content .event_title.color03::before {
	background-color: #79C408;
}

.event_content .event_title.color04 {
	border-color: #F18800;
}
.event_content .event_title.color04::before {
	background-color: #F18800;
}

.event_content .title {
	font-weight: bold;
	font-size: 2.4rem;
	margin-bottom: 15px;
}

.event01_details .text {
	background-color: rgba(249,84,150,0.10);
	padding: 20px;
}

.event01_details .common_title {
	border-color: #F95496;
}

.event02_details .text {
	background-color: rgba(6,158,214,0.10);
	padding: 20px;
}

.event02_details .common_title {
	border-color: #069ED6;
}

.event03_details .text {
	background-color: rgba(121,196,8,0.10);
	padding: 20px;
}

.event03_details .common_title {
	border-color: #79C408;
}

/* はてなのおみやげ答え合わせ */
.event_content > .event_other_content01 {
	padding: 15px 30px;
	border: 3px solid #7C7C7C;
	border-radius: 25px;
	margin-bottom: 20px;
}

.event_content > .event_other_content01 .column_box {
	border: none;
	padding: 0;
}

.event_content > .event_other_content01 .column_box .title {
	font-size: 2.7rem;
	font-weight: normal;
}

.event_content > .event_other_content01 .column_box .text {
	color: #8B8A8A;
}

.event_content > a > .column_box::after {
	content: none;
}


@media screen and (max-width:768px) {
	.event_content > a > .column_box::after {
		content: none;
	}
	.event_content > a > .column_box {
		padding-right: 0;
	}
	.event_content .event_title {
		font-size: 2rem;
		padding-left: 36px;
		border-bottom: 3px solid #000;
		position: relative;
		font-weight: bold;
	}
	.event_content .event_title::before {
		position: absolute;
		top: 5px;
		left: 10px;
		content: '';
		background-color: #000;
		width: 15px;
		height: 15px;
		transform: rotate(45deg);
	}
	.event_content .column_box {
		padding: 20px 0;
	}
	.event_content .title {
		font-size: 2rem;
		margin-top: 10px;
	}
	.event_content a {
		padding: 0;
	}
	.event_content a::after {
		content: none;
	}
	.event_content .tag {
		margin-bottom: 5px;
	}
	/* はてなのおみやげ答え合わせ */
	.event_content > .event_other_content01 {
		padding: 10px;
	}
	.event_content > .event_other_content01 > .column_box {
		padding: 0;
	}
	.event_content > .event_other_content01 .column_box .title {
		font-size: 1.6rem;
		padding-left: 50px;
	}
	.event_content > .event_other_content01 .column_box .column_item:last-child::before {
		display: none;
	}

}

/* コベルコマンからのお知らせ日記 */

.blog_content .column_item a {
	background-color: rgba(0,136,206,0.10);
	padding: 20px 30px 20px 20px;
	position: relative;
	display: block;
	margin-right: 20px;
	height: 100%;
}

.blog_content .column_item:last-child a {
	margin-right: 0;
}

.blog_content .column_item a::after {
	position: absolute;
	content: '';
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 15px;
	height: 15px;
	border-top: 4px solid rgba(15,98,169,.5);
	border-right: 4px solid rgba(15,98,169,.5);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.blog_content .dl_content dt {
	margin-bottom: 0;
}

@media screen and (max-width:768px) {
	.blog_content .column_item a {
		margin: 0 0 20px 0;
		height: auto;
	}
	.blog_content a::after {
		width: 18px;
		height: 18px;
		right: 15px;
	}
}

/* コベルコマンファミリーの紹介 */

.family_content {
	border: 1px solid #0088CE;
	padding: 30px;
}

.family_content .family_title {
	font-size: 2.8rem;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}
@media screen and (max-width:768px) {
	.family_content {
		padding: 20px 8px;
	}
	.family_content .family_title {
		font-size: 2rem;
	}
}
@media screen and (max-width:450px) {
	.family_content .family_title {
		font-size: 1.9rem;
	}
}


/* 展示室全景 */
.hallmap_content {
	position: relative;
}

.hallmap_anchor {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.hallmap_content .anchor_link {
	position: absolute;
	min-width: 250px;
	text-align: center;
	border-radius: 6px;
	color: #fff;
	font-size: 2.4rem;
}
.hallmap_content .anchor_link a {
	padding: 24px 0 20px;
	display: block;
}

.hallmap_content .anchor_link.anchor01{
	top: 0;
	left: 0;
	background-color: #E8381B;
}

.hallmap_content .anchor_link.anchor02{
	bottom: 0;
	right: 10%;
	background-color: #E9A01B;
}

.hallmap_content .anchor_link.anchor03{
	bottom: 15%;
	right: 0;
	background-color: #3FAB9B;
}

.hallmap_content .anchor_link.anchor04{
	bottom: 0;
	left: 10%;
	background-color: #EB6EA5;
}

.hallmap_content .anchor_link.anchor05{
	top: 0;
	right: 0;
	background-color: #20AEE5;
}

.hallmap_content .anchor_link.anchor06{
	bottom: 15%;
	left: 0;
	background-color: #0071BE;
}

.hallmap_content .anchor_link.anchor07{
	top: 15%;
	right: 0;
	background-color: #EE774E;
}

.hallmap_content + .column_box {
	border-bottom: 1px dashed #555555;
	border-top: 1px dashed #555555;
	padding: 20px 0;
	margin-top: 50px;
}

.hallmap_content + .column_box .anchor_link.anchor07 a {
	background-color: #EF7300;
	text-align: center;
	border-radius: 6px;
	color: #fff;
	font-size: 2.4rem;
	padding: 24px 0 20px;
	display: block;
	width: 300px;
	margin: 0 auto;
}

.hallmap_content.hollmap_anchor01 .numberlist_circle li:before,
.hallmap_content.hollmap_anchor01 .slider_title {
	background-color: #E8381B;
}

.hallmap_content.hollmap_anchor01 .common_title {
	border-color: #E8381B;
}

.hallmap_content.hollmap_anchor01 .slider_content .slider_title .number_circle {
	color: #E8381B;
}
.hollmap_anchor01 .swiper-button-prev,
.hollmap_anchor01 .swiper-container-rtl .swiper-button-next,
.hollmap_anchor01 .swiper-button-next,
.hollmap_anchor01 .swiper-container-rtl .swiper-button-prev {
	border-color: rgba(232,56,27,0.50);
}

.hollmap_anchor01 .common_title_type_bgc {
	background-color: #E8381B;
}

.hollmap_anchor01 .dl_content.fs02 dt {
	color: #E8381B;
}

.hallmap_content.hollmap_anchor02 .numberlist_circle li:before,
.hallmap_content.hollmap_anchor02 .slider_title {
	background-color: #E9A01B;
}

.hallmap_content.hollmap_anchor02 .common_title {
	border-color: #E9A01B;
}

.hallmap_content.hollmap_anchor02 .slider_content .slider_title .number_circle {
	color: #E9A01B;
}
.hollmap_anchor02 .swiper-button-prev,
.hollmap_anchor02 .swiper-container-rtl .swiper-button-next,
.hollmap_anchor02 .swiper-button-next,
.hollmap_anchor02 .swiper-container-rtl .swiper-button-prev {
	border-color: rgba(233,160,27,0.50);
}

.hollmap_anchor02 .common_title_type_bgc {
	background-color: #E9A01B;
}

.hollmap_anchor02 .dl_content.fs02 dt {
	color: #E9A01B;
}

.hallmap_content.hollmap_anchor03 .numberlist_circle li:before,
.hallmap_content.hollmap_anchor03 .slider_title {
	background-color: #3FAB9B;
}

.hallmap_content.hollmap_anchor03 .common_title {
	border-color: #3FAB9B;
}

.hallmap_content.hollmap_anchor03 .slider_content .slider_title .number_circle {
	color: #3FAB9B;
}
.hollmap_anchor03 .swiper-button-prev,
.hollmap_anchor03 .swiper-container-rtl .swiper-button-next,
.hollmap_anchor03 .swiper-button-next,
.hollmap_anchor03 .swiper-container-rtl .swiper-button-prev {
	border-color: rgba(63,171,155,0.50);
}

.hollmap_anchor03 .boxer-close::after,
.hollmap_anchor03 .boxer-close:before {
	color: #3FAB9B;
}

.hollmap_anchor03.modal_content .common_title_type_bgc {
	background-color: #3FAB9B;
}

.hallmap_content.hollmap_anchor04 .common_title {
	border-color: #EB6EA5;
}

.hollmap_anchor04 .border_content .common_title_type_bgc {
	background-color: #EB6EA5;
}

.hallmap_content.hollmap_anchor05 .common_title {
	border-color: #20AEE5;
}

.hollmap_anchor05 .border_content .common_title_type_bgc {
	background-color: #20AEE5;
}

.hollmap_anchor05 p + .border_content {
	margin-top: 35px;
}
.hallmap_content.hollmap_anchor06 .numberlist_circle li:before,
.hallmap_content.hollmap_anchor06 .slider_title {
	background-color: #0071BE;
}

.hallmap_content.hollmap_anchor06 .common_title {
	border-color: #0071BE;
}

.hallmap_content.hollmap_anchor06 .slider_content .slider_title .number_circle {
	color: #0071BE;
}
.hollmap_anchor06 .swiper-button-prev,
.hollmap_anchor06 .swiper-container-rtl .swiper-button-next,
.hollmap_anchor06 .swiper-button-next,
.hollmap_anchor06 .swiper-container-rtl .swiper-button-prev {
	border-color: rgba(0,113,190,0.50);
}


.hallmap_content.hollmap_anchor07 .numberlist_circle li:before,
.hallmap_content.hollmap_anchor07 .slider_title {
	background-color: #EE774E;
}

.hallmap_content.hollmap_anchor07 .common_title {
	border-color: #EE774E;
}

.hallmap_content.hollmap_anchor07 .slider_content .slider_title .number_circle {
	color: #EE774E;
}

.hollmap_anchor07 .common_title_type_bgc {
	background-color: #EE774E;
}

.hollmap_anchor07 .dl_content.fs02 dt {
	color: #EE774E;
}

.hollmap_anchor07 .swiper-button-prev,
.hollmap_anchor07 .swiper-container-rtl .swiper-button-next,
.hollmap_anchor07 .swiper-button-next,
.hollmap_anchor07 .swiper-container-rtl .swiper-button-prev {
	border-color: rgba(238,119,78,0.50);
}


@media screen and (max-width:768px) {

	.hallmap_content .anchor_link {
		position: absolute;
		min-width: 150px;
		font-size: 1.6rem;
	}
	.hallmap_content .anchor_link a {
		padding: 5px 10px 6px;
	}
	.hallmap_content .anchor_link.anchor02{
		right: 5%;
	}
	.hallmap_content .anchor_link.anchor03{
		bottom: 22%;
	}
	.hallmap_content .anchor_link.anchor04{
		left: 5%;
	}

	.hallmap_content .anchor_link.anchor06{
		bottom: 22%;
	}
	.hallmap_content + .column_box .anchor_link.anchor07 a {
		font-size: 1.6rem;
		padding: 12px 0 10px;
		display: block;
		width: 300px;
		margin: 0 auto;
	}
}
@media screen and (max-width:360px) {
	.hallmap_content .anchor_link {
		min-width: 130px;
	}
}

/* スライダー */

.slider_content {
	border: 1px solid #999999;
	padding: 8px 10px 10px;
	display: block;
}

.slider_content .slider_title {
	text-align: center;
	background-color:#000;
	padding: 15px 10px 7px;
	color: #fff;
}
.slider_content .slider_title > span {
	font-size: 2.8rem;
	padding-left: 45px;
	position: relative;
}

.slider_content .slider_title .number_circle {
	color: #000;
	background-color:#fff;
	width: 30px;
	height: 30px;
	line-height: 33px;
	font-size: 2rem;
	position: absolute;
	top: 4px;
	left: 0;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, .slider_content .slider_title .number_circle {
		top: -1px;
	}
}
.slider_content .irregular_icon {
	position: absolute;
	right: 7%;
	bottom: 10%;
}
.slider_title + .column_box {
	padding: 30px 80px 20px;
}

.slider_title + .column_box .column_item:first-child {
	width: 23%;
}

.slider_title + .column_box .column_item:nth-child(2) {
	width: 72%;
	margin: 0 auto;
}

.hollmap_anchor06 .slider_title + .column_box .column_item:nth-child(2),
.hollmap_anchor07 .slider_title + .column_box .column_item:nth-child(2) {
	width: 62%;
	margin: 0 auto;
}

.slider_title + .column_box .column_item:nth-child(3) {
	width: 9%;
	margin-top: auto;
	margin-bottom: 20px;
	position: relative;
}
.slider_title + .column_box .column_item:nth-child(3) .center_content {
	position: absolute;
	bottom: 0;
	right: 0;
}

/* モーダル */
.modal_wrapper {
	display: none;
	width: 600px;
	max-width: 100%;
}
.boxer-open #boxer {
	width: 600px!important;
	max-width: 100%;
	text-align: center;
	z-index: 99999;
}
.modal_content_inner {
	padding: 20px;
}
.boxer-content .boxer {
	display: block;
	pointer-events: none;
}
.boxer-content .boxer:hover {
	opacity: 1;
}

@media screen and (max-width:768px) {
	.swiper-container {
		margin-top: 20px;
	}
	.slider_content .slider_title {
		padding: 7px 10px 7px;
		color: #fff;
	}
	.slider_content .slider_title > span {
		font-size: 1.6rem;
		padding-left: 35px;
		position: relative;
	}
	.slider_content .slider_title .number_circle {
		width: 25px;
		height: 25px;
		line-height: 25px;
		font-size: 1.8rem;
		position: absolute;
		top: 0;
		left: 0;
	}
	.slider_title + .column_box {
		padding: 15px 10px 20px;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.slider_title + .column_box .column_item:first-child {
		width: 100%;
		display:-webkit-box;
		display:-moz-box;
		display:-ms-box;
		display:-webkit-flexbox;
		display:-moz-flexbox;
		display:-ms-flexbox;
		display:-webkit-flex;
		display:-moz-flex;
		display:-ms-flex;
		display:flex;
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		order: 2;
	}
	.slider_title + .column_box .column_item:nth-child(2) .btn_kobelcoman,
	.slider_title + .column_box .column_item:first-child .btn_kobelcoman{
		width: 100%;
		text-align: center;
	}
	.slider_title + .column_box .column_item:nth-child(2) .btn_kobelcoman a,
	.slider_title + .column_box .column_item:first-child .btn_kobelcoman a {
		width: 70%;
	}
	.slider_title + .column_box .column_item:nth-child(2) {
		width: 100%;
		order: 1;
		margin-bottom: 10px;
	}
	.hollmap_anchor06 .slider_title + .column_box .column_item:nth-child(2),
	.hollmap_anchor07 .slider_title + .column_box .column_item:nth-child(2) {
		width: 100%;
	}
	.slider_title + .column_box .column_item:nth-child(3) {
		display: none;
	}
}

/* book_content */

.book_content.column_box .column_item:first-child {
	width: 37%;
}

.book_content.column_box .column_item:nth-child(2) {
	width: 45%;
	margin: 0 auto;
}

.book_content.column_box .column_item:nth-child(3) {
	width: 9%;
	margin-top: 130px;
	margin-bottom: 20px;
}
.book_content .book_list {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:nowrap;
	-moz-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
}

/*  border_content*/
.border_content {
	border: 1px solid #999999;
	padding: 8px 10px 30px;
	margin-bottom: 25px;
}
.border_content:last-child {
	margin-bottom: 0;
}

.border_content .list_content li {
	margin-bottom: 5px;
}

.border_content_inner {
	padding: 0 10px;
}

@media screen and (max-width:768px) {
	.book_content.column_box .column_item:first-child {
		width: 100%;
	}

	.book_content.column_box .column_item:nth-child(2) {
		width: 100%;
		margin: 0 auto;
	}

	.book_content.column_box .column_item:nth-child(3) {
		width: 9%;
		margin-top: auto;
		margin-bottom: 20px;
	}
	.book_content .book_list {
		width: 100%;
	}
}

/* ビオトープ屋外展示 */

.biotope_content .numberlist_circle li:before,
.biotope_content .slider_title {
	background-color: #EF7300;
}

.biotope_content .common_title {
	border-color: #EF7300;

}
.biotope_content .common_title_type_bgc {
	background-color: #EF7300;
	font-size: 2.8rem;
	position: relative;
}
.biotope_content .common_title_type_bgc .title_icon {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}

.biotope_content .slider_content .slider_title .number_circle {
	color: #EF7300;
}
.biotope_content .swiper-button-prev,
.biotope_content .swiper-container-rtl .swiper-button-next,
.biotope_content .swiper-button-next,
.biotope_content .swiper-container-rtl .swiper-button-prev {
	border-color: rgba(239,115,0,0.50);
}

.biotope_anchor01 .common_title_type_bgc {
	background-color: #EF7300;
}

.biotope_anchor01 .dl_content.fs02 dt {
	color: #EF7300;
}

@media screen and (max-width:768px) {
	.biotope_content .common_title_type_bgc {
		font-size: 1.6rem;
	}
}

/* ギャラリー */

.gallery_content {
	margin-bottom: 85px;
}
.gallery_content {
	margin-bottom: 80px;
}
.gallery_content .common_title_type_bgc {
	margin-bottom: 20px;
}
.gallery_content .dl_content {
	border: 1px solid #999999;
	padding: 10px 10px 15px;
	height: 100%;
}

.gallery_content .dl_content dt {
	padding-left: 0;
	text-align: left;
}

.gallery_content .dl_content dt span {
	margin-left: 15px;
}

.gallery_content .dl_content dt:first-child {
	margin-bottom: 15px;
	text-align: center;
}

.gallery_content .dl_content dt:nth-child(2) {
	margin-bottom: 10px;
}

@media screen and (max-width:768px) {
	.gallery_content {
		margin-bottom: 40px;
	}
	.gallery_content .right_content span {
		display: inline-block;
	}
	.gallery_content .common_title_type_bgc {
		font-size: 1.6rem;
		padding-bottom: 30px;
	}
	.gallery_content .common_title_type_bgc .title_icon {
		position: absolute;
		right: 20px;
		top: auto;
		bottom: 5px;
		width: auto;
		height: 25px;
	}
}

/* ブログ */
.blog_content .article_content .blog_data {
	background: #fdedc8 url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/kobelcoman_07.png) no-repeat left top;
	padding: 0 24px 0 80px;
	height: 64px;
	display: table;
}

.blog_content .article_content .blog_data time {
	display: table-cell;
	vertical-align: middle;
}

.blog_content .article_content .blog_title {
	font-size: 2.3rem;
	font-weight: bold;
}

.blog_content .article_content p {
	margin-top: 0px;

}

@media screen and (max-width:768px) {
	.blog_content .article_content .blog_data {
		padding: 0 12px 0 40px;
		height: 32px;
		background-size: contain;
		margin-bottom: 20px;
	}
	.blog_content .article_content .blog_title {
		font-size: 2.3rem;
		font-weight: bold;
	}
	.blog_content .article_content p {
		margin-top: 0px;

	}
}

.color_content_type01 {
	padding: 20px;
	background-color: rgba(0,136,206,0.10);
}

/* QRコード */
.qr_content {
	margin-top: 50px;
	padding: 20px;
}

.qr_content dt {
	margin-bottom: 30px;
}

/* ヒント本 */

.hint_content {
	padding-left: 20px;
}

.hint_content_text {
	color: #EF7300;
	font-size: 2.3rem;
	margin-bottom: 15px;
}

.hint_book_imgwrapper {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:nowrap;
	-moz-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
}

.hint_book_img01 {
	background: url(https://www.kobelco.co.jp/nadahama/science/assets/img/common/bg_circle.png) no-repeat center center;
	background-size: contain;
	width: 250px;
	height: 250px;
	padding-top: 4%;
	text-align: center;
}

.hint_book_img01 img {
	transform: rotate(10deg);
	-moz-transform: rotate(10deg);
	-webkit-transform: rotate(10deg);
}

.hint_book_img02 {
	width: 180px;
	margin: -50px 0 0 auto;
}

@media screen and (max-width:768px) {
	.hint_book_imgwrapper {
		-webkit-justify-content: center;
		justify-content: center;
	}
	.hint_content {
		padding-left: 0;
	}
	.hint_content_text {
		color: #EF7300;
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
	.hint_content_text br {
		display: none;
	}
	.hint_book_img01 {
		width: 200px;
		height: 200px;
		padding-top: 2%;
	}
	.hint_book_img01 img {
		width: 125px;
	}
	.hint_book_img02 {
		width: 125px;
		margin: 0 0 0 15px;
	}
}


/* アコーディオン */
.accordion_content_wrapper {
	counter-reset: counter03;
	list-style: none;
}

.dl_content.fs01 .accordion_content dt {
	margin-bottom: 20px;
	padding: 3px 22px 0 45px;
	position: relative;
	line-height: 1.6;
	color: #0F62A9;
	cursor: pointer;
	border-bottom: 1px dashed #0F62A9;
	font-weight: normal;
	font-size: 1.6rem;
}

.dl_content.fs01 .accordion_content dd {
	display: none;
	padding: 20px;
	background-color: rgba(0,136,206,0.10);
	margin-bottom: 50px;
}

.dl_content.fs01 .accordion_content dt::before {
	content: 'Q'counter(counter03)'.';
	counter-increment: counter03;
	background-color: #fff;
	display: block;
	position: absolute;
	left: 0;
	top: 3px;
	color: #0F62A9;
}
.dl_content.fs01 .accordion_content dt::after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid #0F62A9;
	border-right: 2px solid #0F62A9;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	transition: all .4s;
}
.dl_content.fs01 .accordion_content dt.open::after {
	position: absolute;
	content: '';
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 10px;
	height: 10px;
	border-top: 2px solid #0F62A9;
	border-right: 2px solid #0F62A9;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transition: all .4s;
}

/* サイトマップ */


.sitemap_content .sitemap_title {
	position: relative;
	padding-left: 25px;
	font-size: 2rem;
	margin-bottom: 15px;
	font-weight: bold;

}

.sitemap_content .sitemap_title::before {
	position: absolute;
	top: 5px;
	left: 0;
	content: '';
	background-color: #000;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
}

.sitemap_content .sitemap_title.color_01::before {
	background-color: #0070BC;
}

.sitemap_content .sitemap_title.color_02::before {
	background-color: #DA3A1E;
}

.sitemap_content .sitemap_title.color_03::before {
	background-color: #EFBD4E;
}

.sitemap_content .sitemap_title.color_04::before {
	background-color: #41AF9E;
}
.sitemap_content strong {
	display: block;
	margin: 5px 0;
}

@media screen and (max-width:768px) {
	.sitemap_content .column_box.section_content {
		margin-bottom: 20px;
	}
}
/* ----------------------------------------------------------------------------
 * breadcrumbs_nav
 * ------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------
 * anchor_nav
 * ------------------------------------------------------------------------- */

/* ----------------------------------------------------------------------------
 * column_box
 * ------------------------------------------------------------------------- */

.column_box {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:nowrap;
	-moz-flex-wrap:nowrap;
	-ms-flex-wrap:nowrap;
	flex-wrap:nowrap;
}

.column_box[data-type="5-5"] .column_item {
	width: 49%;
}

.column_box[data-type="5-5"] .column_item:last-child {
	margin-left: auto;
}

.column_box[data-type="5-5"] .column_item:last-child .center_content_sp {
	text-align: right;
}

.column_box[data-type="7-3"] .column_item {
	width: 65%;
	margin-right: auto;
}

.column_box[data-type="7-3"] .column_item:last-child {
	width: 30%;
	margin-right: 0;
}

.border_content .column_box[data-type="5-5"] .column_item {
	width: 49%;
}

.border_content .column_box[data-type="5-5"] .column_item:last-child {
	margin-left: auto;
}

.border_content .column_box[data-type="8-2"] .column_item:first-child {
	width: 70%;
}

.border_content .column_box[data-type="7-3"] .column_item:nth-child(2) {
	margin-top: auto;
}

_:-ms-input-placeholder, :root .border_content .column_box[data-type="7-3"] .column_item:nth-child(2) {
	margin-top: 130px;
}

.message_content .column_box .column_item:first-child {
	width: 15%;
}

.message_content .column_box .column_item:first-child img {
	margin-top: -80px;
	padding-left: 10px;
}

.message_content .column_box .column_item:nth-child(2)  {
	width: 85%;
	font-size: 1.6rem!important;
	line-height: 1.5;
}

.message_content .column_box .column_item:nth-child(2) .iframe_wrapper02 p span {
	font-size: 1.6rem!important;
	line-height: 1.5;
}

.event_content .column_box .column_item:first-child {
	width: 21%;
}

.event_content .event_other_content01 .column_box .column_item:first-child {
	width: 12%;
	margin: auto;
}

.event_content .column_box .column_item:first-child img {
	width: 100%;
}

.event_content .event_other_content01 .column_box .column_item:first-child img {
	width: auto;
}

.event_content .column_box .column_item:last-child {
	width: 76%;
	margin-left: auto;
}
.event_content .event_other_content01 .column_box .column_item:last-child {
	width: 80%;
	margin-left: auto;
}

.blog_content .column_box {
	width: 85%;
}

.blog_content .column_box .column_item {
	width: 65%;
}

.family_content .column_box .column_item:first-child {
	width: 17%;
}

.family_content .column_box .column_item:nth-child(2){
	width: 45%;
	font-size: 2rem;
	line-height: 1.5;
}

.family_content .column_box .column_item:last-child {
	width: 35%;
	text-align: right;
	margin-left: auto;
}

.footer_content > .column_box > .column_item:first-child {
	width: 36%;
}

.footer_content > .column_box > .column_item:nth-child(2) {
	width: 59%;
	margin-left: auto;
}

.footer_content > .column_box .icon_content {
	margin-top: 20px;
}

.footer_content > .column_box .icon_content > .column_item:first-child {
	width: 95px;
}

.footer_content > .column_box .icon_content > .column_item:nth-child(2) {
	width: 130px;
}

.footer_content > .column_box .icon_content > .column_item:nth-child(3) {
	width: 350px;
	margin-left: auto;
}

.hallmap_content > .column_box > .column_item:first-child {
	width: 55%;
}

.hallmap_content > .column_box > .column_item:last-child {
	width: 40%;
	margin-left: auto;
}

.hallmap_content.hollmap_anchor03 > .column_box > .column_item:first-child {
	width: 60%;
}

.hallmap_content.hollmap_anchor03 > .column_box > .column_item:last-child {
	width: 35%;
	margin-left: auto;
}

.hallmap_content.hollmap_anchor04 > .column_box > .column_item:first-child {
	width: 44%;
}

.hallmap_content.hollmap_anchor04 > .column_box > .column_item:last-child {
	width: 56%;
	margin-left: auto;
}

.hallmap_content.hollmap_anchor06 > .column_box > .column_item:first-child {
	width: 60%;
}

.hallmap_content.hollmap_anchor06 > .column_box > .column_item:last-child {
	width: 35%;
	margin-left: auto;
}

.hallmap_content.hollmap_anchor07 > .column_box > .column_item:first-child {
	width: 60%;
}

.hallmap_content.hollmap_anchor07 > .column_box > .column_item:last-child {
	width: 35%;
	margin-left: auto;
}



.modal_content_inner .column_box > .column_item:first-child {
	width: 82%;
}
.modal_content_inner .column_box > .column_item:last-child {
	width: 10%;
	margin: auto 0 auto auto;
}

.biotope_content .column_box > .column_item:last-child {
	width: 34%;
	margin-left: auto;
}
.biotope_content.border_content .column_box > .column_item:last-child {
	width: 80%;
	margin-left: auto;
}

.gallery_content .column_box {
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}

.gallery_content .column_box > .column_item {
	width: 24.2%;
	margin: 35px 1% 0 0;
}
.gallery_content .column_box > .column_item:nth-child(4n) {
	margin-right: 0;
}
.gallery_content .column_box > .column_item:last-child {
	width: 24.2%;
	margin-left: 0;
}

.blog_content .article_content .column_box {
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}
.blog_content .article_content:first-child .column_box:first-child {
	width: 85%;
}
.blog_content .article_content .column_box .column_item:first-child {
	width: 290px;
	margin-right: 30px;
	margin-bottom: auto;
}

.blog_content .article_content .column_box[data-type="5-5"] {
	margin-top: 30px;
	-ms-flex-align: flex-start;
	align-items: flex-start;
}

.blog_content .article_content .column_box[data-type="5-5"] .column_item {
	width: 49%;
}

.blog_content .article_content .column_box[data-type="5-5"] .column_item p:first-child {
	margin-top: 0;
}

.blog_content .article_content .column_box[data-type="5-5"] .column_item:last-child {
	margin-left: auto;
}

@media screen and (max-width:768px) {
	.column_box[data-type="5-5"] {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.column_box[data-type="5-5"] .column_item {
		width: 100%;
	}
	.column_box[data-type="5-5"] .column_item:last-child {
		margin-top: 20px;
	}
	.column_box[data-type="5-5"] .column_item:last-child .center_content_sp {
		text-align: center;
	}
	.column_box[data-type="7-3"] {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.column_box[data-type="7-3"] .column_item {
		width: 100%;
	}

	.column_box[data-type="7-3"] .column_item:last-child {
		width: 100%;
	}
	.border_content .column_box[data-type="7-3"] .column_item:nth-child(2) {
		margin-top: 30px;
	}
	.message_content .column_box .column_item:first-child {
		display: none;
	}
	.message_content .column_box .column_item:nth-child(2)  {
		width: 100%;
	}
	.event_content .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.event_content .column_box .column_item:first-child {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.event_content .column_box .column_item:first-child img {
		width: 100%;
	}
	.event_content .column_box .column_item:last-child {
		width: 100%;
	}
	.event_content > a .column_box .column_item:last-child {
		width: 100%;
		padding: 0 30px 0 0;
		position: relative;
	}
	.event_content > a .column_box .column_item:last-child::before {
		content: '';
		position: absolute;
		right: 10px;
		top: 0;
		bottom: 0;
		margin: auto 0;
		width: 20px;
		height: 20px;
		border-top: 4px solid rgba(15,98,169,.5);
		border-right: 4px solid rgba(15,98,169,.5);
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.event_content .event_other_content01 .column_box .column_item:first-child {
		width: 40px;
		position: absolute;
	}
	.event_content .event_other_content01 .column_box .column_item:last-child {
		width: 100%;
		padding-right: 0;
	}
	.blog_content .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		width: 100%;
	}
	.blog_content .column_box .column_item {
		width: 100%;
	}
	.family_content .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.family_content .column_box .column_item:first-child {
		width: 27%;
	}

	.family_content .column_box .column_item:nth-child(2){
		width: 70%;
		margin-left: auto;
		font-size: 1.6rem;
		line-height: 1.5;
	}
	.family_content .column_box .column_item:last-child {
		width: 100%;
		text-align: center;
		margin-top: 20px;
	}
	.footer_content > .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.footer_content > .column_box > .column_item:first-child {
		width: 100%;
		margin-bottom: 20px;
	}

	.footer_content > .column_box > .column_item:nth-child(2) {
		width: 100%;
		margin-left: auto;
	}
	.footer_content > .column_box .icon_content {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
		justify-content: center;
		align-items: center;
	}
	.footer_content > .column_box .icon_content > .column_item:first-child {
		width: 95px;
	}

	.footer_content > .column_box .icon_content > .column_item:nth-child(2) {
		width: 100px;
	}

	.footer_content > .column_box .icon_content > .column_item:nth-child(3) {
		width: 100%;
		margin-left: auto;
		margin-top: 20px;
	}
	.footer_content .f_nav .column_box {
		display: block;
	}
	.column_box.sp_replace .column_item:first-child {
		order: 2;
		margin-top: 20px;
	}
	.column_box.sp_replace .column_item:nth-child(2) {
		order: 1;
		margin-top: 0;
	}
	.hallmap_content > .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.hallmap_content > .column_box > .column_item:first-child {
		width: 100%;
		margin-bottom: 20px;
	}
	.hallmap_content > .column_box > .column_item:last-child {
		width: 100%;
	}
	.hallmap_content.hollmap_anchor03 > .column_box > .column_item:first-child {
		width: 100%;
		margin-bottom: 20px;
	}
	.hallmap_content.hollmap_anchor03 > .column_box > .column_item:last-child {
		width: 100%;
	}
	.hallmap_content.hollmap_anchor04 > .column_box > .column_item:first-child {
		width: 100%;
	}
	.hallmap_content.hollmap_anchor04 > .column_box > .column_item:last-child {
		width: 100%;
	}
	.hallmap_content.hollmap_anchor07 > .column_box > .column_item:first-child {
		width: 100%;
	}
	.hallmap_content.hollmap_anchor07 > .column_box > .column_item:last-child {
		width: 100%;
	}
	.border_content .column_box[data-type="5-5"] .column_item {
		width: 100%;
	}
	.border_content .column_box[data-type="3-7-1"] {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.border_content .column_box[data-type="3-7-1"] .column_item:first-child {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.border_content .column_box[data-type="3-7-1"] .column_item:nth-child(2) {
		width: 100%;
	}

	.border_content .column_box[data-type="3-7-1"] .column_item:nth-child(3) {
		width: 100%;

	}
	.hallmap_content.hollmap_anchor06 > .column_box > .column_item:first-child {
		width: 100%;
		margin-bottom: 20px;
	}
	.hallmap_content.hollmap_anchor06 > .column_box > .column_item:last-child {
		width: 100%;
	}

	.biotope_content .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.biotope_content .column_box > .column_item:last-child {
		width: 100%;
		margin-left: auto;
		margin-top: 20px;
	}
	.gallery_content .column_box {
		-webkit-flex-wrap:wrap;
		-moz-flex-wrap:wrap;
		-ms-flex-wrap:wrap;
		flex-wrap:wrap;
	}
	.gallery_content .column_box > .column_item{
		width: 100%;
		margin: 10px 0 0 0;
	}
	.gallery_content .column_box > .column_item:last-child {
		width: 100%;
	}
	.biotope_content.border_content .column_box > .column_item:first-child,
	.biotope_content.border_content .column_box > .column_item:last-child {
		width: 100%;
	}
	.biotope_content.border_content .column_box > .column_item:last-child {
		margin-top: 0;
	}
	.blog_content .article_content .column_box {
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
	}
	.blog_content .article_content .column_box .column_item {
		width: auto;
	}

	.blog_content .article_content .column_box .column_item:first-child {
		width: 100%;
		margin-right: 0;
	}
	.blog_content .article_content:first-child .column_box:first-child {
		width: 100%;
	}
	.blog_content .article_content .column_box[data-type="5-5"] {
		margin-top: 15px;
	}

	.blog_content .article_content .column_box[data-type="5-5"] .column_item {
		width: 100%;
	}

	.blog_content .article_content .column_box[data-type="5-5"] .column_item p:first-child {
		margin-top: 0;
	}

	.blog_content .article_content .column_box[data-type="5-5"] .column_item:last-child {
		margin-left: auto;
	}

}



/* ----------------------------------------------------------------------------
 * アンカーリンク
 * ------------------------------------------------------------------------- */
#anchor01,
.anchor_control,
.anchor_wrapper div[id^="a"] {
	padding-top: 150px;
	margin-top: -150px;
}

#anchor01.anchor_control {
	margin-top: 0;
}
i#anchor02 {
	padding-top: 90px;
	margin-top: -90px;
	display: block;
}
@media screen and (max-width:768px) {
	#anchor01,
	.anchor_control,
	.anchor_wrapper div[id^="a"]  {
		padding-top: 60px;
		margin-top: -60px;
	}
	#anchor01.anchor_control {
		margin-top: 0;
	}
	i#anchor02 {
		padding-top: 0;
		margin-top: 0;
	}
}


/* ----------------------------------------------------------------------------
 * footer
 * ------------------------------------------------------------------------- */

footer .content_wrapper {
	background-color: #0F62A9;
	padding: 50px 0 10px;
}

.footer_content .address_content {
	background-color: #fff;
	padding: 30px;
}

.footer_content .address_content dt {
	margin-bottom: 30px;
}

.footer_content .address_content dt img {
	width: 300px;
}

.footer_content .address_content .equality_content {
	margin-bottom: 5px;
}

.footer_content .address_content .equality_content > .th {
	width: 35px;
}

.footer_content .sub_content {
	color: #fff;
	font-size: 2rem;
}

.footer_content .sub_content .equality_content {
	margin-bottom: 5px;
}

.footer_content .sub_content .equality_content > .th {
	width: 85px;
}

.f_nav {
	margin-top: 43px;
	color: #fff;
	border-top: 1px solid #fff;
	padding: 15px 0 0 10px;
}
.f_nav li {
	display: block;
	float: left;
}

.f_nav li a {
	color: #fff;
	border-left: 2px solid #fff;
	padding: 0 10px;
}

.f_nav li:last-child a {
	border-right: 2px solid #fff;
}

.copy {
	margin-left: auto;
}

#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: none;
	z-index: 9999;
}


@media screen and (max-width:768px) {
	footer .content_wrapper {
		padding: 10px 0 10px;
	}
	.footer_content .address_content {
		padding: 10px 20px;
	}
	.footer_content .address_content dt {
		margin-bottom: 10px;
	}
	.footer_content .address_content .equality_content {
		margin-bottom: 0;
	}
	.footer_content .sub_content {
		font-size: 1.6rem;
	}
	.footer_content .sub_content .equality_content {
		margin-bottom: 0;
	}
	.f_nav {
		border-top: none;
		padding: 0;
		margin-top: 20px;
	}
	.f_nav ul {
		overflow: hidden;
	}
	.f_nav li {
		display: block;
		width: 50%;
		font-size: 1.6rem;
		float: left;
		text-align: center;
	}
	.f_nav li a {
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
		padding: 0 10px;
	}
	.f_nav li a {
		border-left: 2px solid #fff;
		display: block;
		padding: 10px;
	}
	.f_nav li:nth-child(odd) a {
		border-left: none;
	}
	.f_nav li:last-child a {
		border-right: none;
	}
	.f_nav li:nth-child(-n+2) a {
		border-top: 2px solid #fff;
	}
	.copy {
		font-size: 1.3rem;
		margin-top: 15px;
		text-align: center;
	}
	#pageTop {
		width: 40px;
		height: 40px;
	}

}

.font_red{
color: #ff0000;
}
