.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: 8em;
}
*/


/* 新しく追加 2024.5.25 */
main p {
	font-size: 1.0em; /* 任意のフォントサイズを指定 */
	text-indent: 1em;
	margin-left: 10px; /* 任意のマージンサイズを指定 */
}

/* 新しく追加 2024.5.25 */
main h1 {
	font-size: 1.5em; /* 任意のフォントサイズを指定 */
	text-indent: 3em;
	margin-left: 0px; /* 任意のマージンサイズを指定 */
}

/* 新しく追加 2024.5.25 */
main h2 {
	font-size: 1.2em; /* 任意のフォントサイズを指定 */
	text-indent: 3em;
}

/* 新しく追加 2024.6.24 */
main h3 {
	font-size: 1.1em; /* 任意のフォントサイズを指定 */
	text-indent: 0em;
}

/* 新しく追加 2024.6.24 */
main h4 {
	font-size: 1.3em; /* 任意のフォントサイズを指定 */
	text-indent: 0em;
}

/* 新しく追加 2024.6.27 */
main h5 {
	font-size: 1.0em; /* 任意のフォントサイズを指定 */
	text-indent: 10em;
	margin-left: 0px; /* 任意のマージンサイズを指定 */
	margin-bottom: 0px; /* 任意のマージンサイズを指定 */
}

/* 新しく追加 2024.6.27 */
main h6 {
	font-size: 0.9em; /* 任意のフォントサイズを指定 */
	text-indent: 1em;
	margin-left: 0px; /* 任意のマージンサイズを指定 */
	margin-bottom: 0px; /* 任意のマージンサイズを指定 */
}

/* タイトル画像・more表示用 */
		
.container {
display: flex;
flex-direction: column;
align-items: center;          /* center */
text-align: left;          /* center */
}


/* 修正 2024.6.24 */
.center {
text-align: center;
margin-bottom:0px;　　　　/* 20px */
}
		
.right {
	align-self: flex-end;
    margin-right: 10px; */         /* 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;
		}




