@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese");

body {
	/* min-width: 1240px; */
	color: #333333;
	font-size: 14px;
	line-height: 1.75;
	    font-family: 
        "Yu Gothic Medium", 
        "Yu Gothic", 
        "Hiragino Sans", 
        "ヒラギノ角ゴ ProN", 
        "Noto Sans JP", 
        "メイリオ", 
        sans-serif;
	outline: none;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

.inner {
	/* max-width: 1240px; */
	margin: 0 auto;
	padding: 0 40px;
}

.vis-hidden {
	display: block;
	visibility: visible;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: none;
}

.vis-sp {
	display: none;
}

/* ヘッダー全体 */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 45px;
	/* background: #fff; */
	/* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
	position: fixed;
	z-index: 10;
	width: 100%;
}

.header_cnt {
	position: relative;
	display: contents;
}


/* ロゴ */
.logo {
	font-size: 20px;
	font-weight: bold;
}


/* ハンバーガーボタン */
.hamburger {
	width: 30px;
	height: 22px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}
.hamburger span {
	display: block;
	height: 4px;
	background: #fff;
	border-radius: 2px;
}


/* スライドメニュー */
.side-menu {
	position: fixed;
	top: 0;
	right: -30%;
	width: 30%;
	height: 100vh;
	color: #fff;
	background: #43533c;
	box-shadow: -2px 0 6px rgba(0,0,0,0.1);
	transition: right 0.3s ease;
	display: flex;
	/* flex-direction: column; */
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
	z-index: 100;
}


/* メニュー開く状態 */
.side-menu.active {
	right: 0;
	z-index: 100;
}

.nav-item {}

.side-menu .nav-item ul {
}

.side-menu .nav-item ul li {
	text-align: start;
}

.side-menu .nav-item ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	margin: 15px 0;
	display: inline-flex;
    width: 100%;
	flex-direction: column;
	transition: transform 0.3s ease;
}

.side-menu .nav-item ul li a:hover {
	transform: scale(1.1);
}

.side-menu .nav-item ul li.no-link a {
    pointer-events: none;
    cursor: default;
    transform: none !important;
}

.side-menu .nav-item ul li.no-link a:hover {
    transform: none !important;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    font-weight: bold;
    z-index: 200;
    transition: opacity 0.3s ease;
}

.close-btn:hover {
    opacity: 0.6;
}

.logo img {
    transition: opacity 0.4s ease;
    opacity: 1;
}

/* スクロール後のロゴ（差し替え）*/
.logo.scrolled img {
    opacity: 0;
}

/* ハンバーガーの色フェード */
.hamburger span {
    transition: background-color 0.4s ease;
}

/* スクロール後のハンバーガー色 */
.hamburger.scrolled span {
    background: #43533C;
}

footer {
	position: relative;
}

.footer_img {
	position: relative;
	width: 100%;
}


.footer_logo {}
.footer_logo img {
	z-index: 20;
    position: absolute;
    top: 30%;
	left: 50%;
    transform: translateX(-50%);
    max-width: 666px;
	width: 100%;
}

.footer_txt {
	z-index: 20;
    position: absolute;
    bottom: 20px;
	left: 50%;
    transform: translateX(-50%);
	text-align: center;
	color: #fff;
	font-weight: bold;
}

.footer_txt a {
	text-decoration: underline;
	transition: all ease 0.3s;
}

.footer_txt a:hover {
	opacity: 0.7;
}

.footer_txt a::after {
	content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/monitoring_tour/img/cmn/link-icn.webp");
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 6px;
}

@media screen and (max-width:1240px) {
	.vis-tb {
		display: block;
	}

	.hide-tb {
		display: none;
	}
}

@media screen and (max-width:1024px) {
	.side-menu {
		width: 50%;
		right: -50%;
	}
}

@media screen and (max-width:767px) {
	body {
		min-width: 0;
	}

	.inner {
		padding: 0 24px;
	}

	.vis-tb {
		display: none;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	
}

@media screen and (max-width:430px) {
	header {
		padding: 20px 15px;
	}
	.logo {
	}
	.logo img {
		max-width: 256px;
		width: 100%;
	}
	.side-menu {
		width: 78%;
		right: -80%;
	}
	.footer_logo img {
		width: 80%;
		top: 25%;
	}

	.footer_txt {
		bottom: 50px;
	}


}
