.nav-icons li {
	display: inline-block;
	margin-right: 10px;
}
.nav-icons li a {
	display: flex;
	align-items: center;
}
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.logo {
	margin-right: 20px;
	width: 400px; /* ロゴの幅を固定 */
}


/*
.logo img {
	width: 100%;
	height: auto;
}
*/

.navbar-brand {
	font-size: 24px;
	font-weight: bold;
}
.navbar-toggler {
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	font-size: 24px;
}
.navbar-toggler i {
	color: #000;
}
.navbar-menu {
	display: none;
}
.navbar-menu.active {
	display: flex;
	flex-direction: column;
	background-color: #f1f1f1;
	padding: 20px;
	position: absolute;
	top: 70px;
	right: 0;
	width: 200px;
}
.navbar-menu a {
	margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
	.nav-icons {
	display: none;
}
.navbar-menu {
	display: none !important;
}
.navbar-menu.active {
	display: flex !important;
}
}

/* トップロゴを画面サイズに応じて表示するための記述 */

.navbar img {
	max-width: 100%;
	height: auto;
}


/* スライドショー　*/

.slideshow-dots {
	text-align: center;
	margin-top: 20px;
}

.dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #bbb;
	margin: 0 5px;
	transition: background-color 0.3s ease;
}

.active-dot {
	background-color: #717171;
}


.slideshow-container {
	margin: 0 auto;
	text-align: center;
}


/* メインコンテンツ */

main p,
main h2 {
	text-indent: 5em;
}

		
/* タイトル画像・more表示用 */
		
.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
		
.center {
text-align: center;
margin-bottom: 20px;
}
		
.right {
align-self: flex-end;
margin-right: 100px;
}
		
.left {
margin-right: auto;
}


/* プロジェクトアイコン表示　*/

.project-images {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}

.project-images img {
	margin-right: 20px;
}

.image-space {
	width: 20px;
}


/* フッダー前のロゴ表示エリア */
.footer-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #f2f2f2;
	padding: 20px 0;
}

.footer-logos img {
	margin-right: 20px;
}

/* フッダーナビゲーション　*/

.footer-nav {
	list-style: none;
	padding: 0;
	margin-top: 20px;
	margin-left: 20px;
	padding-top: 10px;
	margin-bottom: 20px;
}

.footer-nav li {
	display: block;
}

.footer-nav li a {
	display: block;
	text-decoration: none;
	color: white;
}

.footer-nav li a i {
	margin-right: 5px;
}

.footer-nav {
	text-align: left;
}

.footer-text {
	text-align: center;
	color: white;
}

footer {
	background-color: #a4dfdc;
	/* background-color: #FFFFFF; */
}

/* 以下をフッダーナビゲーションの前に持ってくると、以降の表示で色がつかなくなる。　*/

body {
	/* font-family: "Arial", sans-serif;*/
	font-family: "Times New Roman;
		}




