/*
=========================
Vertical Reponsive Menu
=========================
*/
/* line 6, sass/import/mixins.scss */
.vertical_nav, .collapse_menu .collapse_menu--icon {
	-moz-transition: all 0.3s ease-out;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: 9999;
}
/* line 14, sass/vertical-responsive-menu.scss */
* {
	box-sizing: border-box;
}
/* line 26, sass/vertical-responsive-menu.scss */
:focus, :active {
	outline: none;
}
/* line 32, sass/vertical-responsive-menu.scss */
.toggle_menu {
	display: block;
	float: left;
	width: 50px;
	height: 50px;
	line-height: 50px;
	padding: 0;
	background: none;
	border: 0;
	text-align: center;
	cursor: pointer;
}
/* line 44, sass/vertical-responsive-menu.scss */
.toggle_menu i {
	display: block;
	font-size: 28px;
}
.fa-bars {
	color: #fff;
}
/* line 52, sass/vertical-responsive-menu.scss */
.vertical_nav {
	position: fixed;
	left: -200px;
	top: 50px;
	bottom: 0px;
	width: 200px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1f3b08+0,627d4d+100 */
	background: #1f3b08; /* Old browsers */
	background: -moz-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1f3b08), color-stop(100%, #627d4d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1f3b08 0%, #627d4d 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f3b08', endColorstr='#627d4d', GradientType=0 ); /* IE6-9 */
}
/* line 63, sass/vertical-responsive-menu.scss */
.vertical_nav__closed {
	left: -200px !important;
}
/* line 67, sass/vertical-responsive-menu.scss */
.vertical_nav__opened {
	left: 0px !important;/*box-shadow: rgba(0, 0, 0, 0.4) -30px 0 30px 30px;*/
}
/* line 73, sass/vertical-responsive-menu.scss */
.menu {
	position: absolute;
	top: 100px;
	bottom: 40px;
	overflow-y: auto;
	width: 100%;
	margin: 10px;
	padding: 0;
	list-style-type: none;
}
/* line 84, sass/vertical-responsive-menu.scss */
.menu--item {
	position: relative;
	min-height: 50px;
	line-height: 40px;
}
/* line 90, sass/vertical-responsive-menu.scss */
.menu--item__has_sub_menu .menu--link:after {
	position: absolute;
	top: 0;
	right: 15px;
	height: 40px;
	line-height: 40px;
	font-family: "FontAwesome";
	content: "\f0d7";
}
/* line 100, sass/vertical-responsive-menu.scss */
.menu--subitens__opened {
	background: #fff;
	color: #fff;
}
/* line 103, sass/vertical-responsive-menu.scss */
.menu--subitens__opened .menu--link {
	color: #000;
}
/* line 107, sass/vertical-responsive-menu.scss */
.menu--subitens__opened .sub_menu {
	display: block;
}
/* line 113, sass/vertical-responsive-menu.scss */
.menu--link {
	display: block;
	overflow: hidden;
	font-size: 1.5em;
	text-decoration: none;
	color: #fff;
	font-weight: 400;
	white-space: nowrap;
	cursor: pointer;
}
/* line 123, sass/vertical-responsive-menu.scss */
.menu--link:hover, .menu--link:hover .menu--label {
	color: #333;
	background: #fff;
}
/* line 131, sass/vertical-responsive-menu.scss */
.menu--icon {
	display: block;
	float: left;
	width: 50px;
	height: 40px;
	line-height: 40px;
	font-size: 20px;
}
/* line 140, sass/vertical-responsive-menu.scss */
.menu--label {
	display: block;
	height: 40px;
	line-height: 40px;
}
/* line 148, sass/vertical-responsive-menu.scss */
.sub_menu {
	display: none;
	overflow: hidden;
	padding-left: 0;
	list-style: none;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1f3b08+0,627d4d+100 */
	background: #1f3b08; /* Old browsers */
	background: -moz-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1f3b08), color-stop(100%, #627d4d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #1f3b08 0%, #627d4d 100%); /* IE10+ */
	background: linear-gradient(to bottom, #1f3b08 0%, #627d4d 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1f3b08', endColorstr='#627d4d', GradientType=0 ); /* IE6-9 */
}
/* line 154, sass/vertical-responsive-menu.scss */
.sub_menu--link {
	display: block;
	padding-left: 50px;
	padding-right: 16px;
	font-size: 1.2em;
	color: #fff;
	text-decoration: none;
}
/* line 162, sass/vertical-responsive-menu.scss */
.sub_menu--link:hover {
	color: #333;
	background: #fff;
}
/* line 168, sass/vertical-responsive-menu.scss */
.sub_menu--link__active {
	color: #000;
	font-weight: 500;
}
/* line 176, sass/vertical-responsive-menu.scss */
.collapse_menu {
	display: none;
}

.social-media {
	text-align: center;
	margin-bottom: 10px; /* コピーライトとの間に余白を追加 */
	order: -1; /* コピーライトよりも上に表示 */
  }
  
  .social-media__link {
	color: #ffffff; /* アイコンの色を指定 */
	margin: 0 5px; /* アイコン間の余白 */
	font-size: 24px; /* アイコンのサイズを指定 */
	text-decoration: none; /* 下線を消す */
  }
  
  .social-media__link:hover {
	color: #1DA1F2; /* ホバー時の色 (Facebook) */
  }
  .social-media__link:nth-child(2):hover {
	color: #35c16b; /* ホバー時の色 (Instagram) */
  }
  .social-media__link:nth-child(3):hover {
	color: #9935c1; /* ホバー時の色 (X) */
  }
  .social-media__link:nth-child(4):hover {
	color: #c16d35; /* ホバー時の色 (YouTube) */
  }
  
  .fa-twitter:before {
    content: '𝕏';
    font-family: unset;
    font-weight: bold;
}

.copyright {
	color: #fff; /*文字色指定*/
	font-size: 1.0em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 20px; /*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	margin-left: 20px; /* 左側の余白 */
	position: fixed; /* 画面に固定 */
	bottom: 0px; /* 画面の下から0pxに配置 */
	width: 15%; /* 横幅を100%に設定 */
	text-align: left; /* テキストを左揃え */
}

@media screen and (min-width: 900px) and (min-height: 700px) {
/* line 193, sass/vertical-responsive-menu.scss */
.vertical_nav {
	left: 0;
	top: 70px;
}
/* line 197, sass/vertical-responsive-menu.scss */
.toggle_menu {
	display: none;
}
}

/* ロゴ画像が画面サイズに応じて縮小されるように設定（追加コードOK） */
#logo img {
    max-width: 100%;  /* 親要素の幅を最大幅として設定 */
    height: 85px;     /* アスペクト比を維持して高さを自動調整 */
    display: block;   /* ブラウザの余計なスペースを除去 */
}

@media screen and (max-width: 900px) {
    #logo img {
        max-width: 60%; /* スマートフォンやタブレットのような小さい画面ではさらに縮小 */
		height: 55px;
    }
}

@media screen and (max-width: 480px) {
    #logo img {
        max-width: 50%; /* さらに小さい画面ではさらに縮小 */
		height: 50px;
		margin-top: 3px;
		padding-right: 15px;
	}
}

@media (max-height: 600px) {
	.copyright {
		display: none !important;
	}
}

@media (max-width: 900px) {
	.copyright {
		display: none !important;
	}
}

