@charset "utf-8";
.container {
	margin: 0 auto;
	max-width: 1200px;
	padding: 0 16px 0 16px;
}

/* ヘッダー */

header {
	background: white;
	border-bottom: solid 3px #082877;
	height: 70px;
}

.heade-inner {
	justify-content: space-between;
	display: flex;
	align-items: center;
}

.logo {
	padding: 10px 0;
	width: 59px;
	height: 50px;
}

.contact-font {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-font a {
	color: #082877;
	text-decoration: none;
	padding: 6px 15px;
	border: 2px solid #082877;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: all 0.3s ease;
	min-height: 40px;
	box-sizing: border-box;
}

.contact-font a:hover {
	background-color: #082877;
	color: white;
}

.contact-font i {
	font-size: 16px;
}

/* コンテンツ */

.main-container {
	margin: 0 auto;
	max-width: 1200px;
	max-height: 600px;
	min-height: 384px;
	min-width: 768px;
	height: calc((100vh - 70px - 30px - 51px));
    width: calc((100vh - 70px - 30px - 51px) * 1200/600);
}

.img-responsive{
	max-width:1200px;
	max-height: 600px;
	min-height: 384px;
	min-width: 768px;
	height: calc(100vh - 70px - 30px - 51px);
    width: calc((100vh - 70px - 30px - 51px) * 1200/600);
}

/* ナビゲーション */

.navigation {
	background: transparent;
}

.nav-font-japanese {
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 2px;
}

.nav-font-english {
	font-size: 12px;
	font-weight: bold;
	line-height: 1.2;
}

.navbar {
	display: flex;
	list-style-type: none;
	justify-content: space-between;
}

.nav-item {
	text-align: center;
	flex: 1 1 auto;
	margin-right: 5px;
	margin-bottom: 5px;
	width: 25%;
	position: relative;
	min-height: 52px;
}

.nav-anchor {
	display: block;
	color: white;
	text-decoration: none;
	border: solid 2px white;
	padding: 6px 5px;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.nav-anchor:hover {
	background: rgba(255,255,255,0.3);
}

/* フッター */
footer {
	background: #082877;
	color: white;
	height: 30px;
}

.footer-container {
	width: 100%;
}

.footer-inner {
	line-height: 30px;
	text-align: center;
	font-size: 10px;
}

.privacy-policy {
	text-decoration: none;
	color: white;
}

@media (max-width: 1150px) {
	.main-container {
		margin: 0 auto;
		min-height: 384px;
		min-width: 0px;
		width: 100%;
		height: auto;
	}
	
	.img-responsive{
		min-height: 384px;
		min-width: 0px;
		width: 100%;
		height: auto;
	}
	.footer-container {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
}


@media (min-width: 768px) {
	.navigation {
		position: relative;
		bottom: 60px;
	}
	.nav-item:first-child {
		margin-left: 5px;
	}

}

@media (max-width: 768px) {

	.main-container {
		margin: 0 auto;
		min-height: 200px;
		min-width: 0px;
		width: 100%;
		height: auto;
	}

	.img-responsive{
		min-height: 200px;
		min-width: 0px;
		width: 100%;
		height: auto;
	}
	.nav-item {
		margin: 0 2px 5px 2px;
		width: 100%;
		position: relative;
		min-height: 42px;
	}
	.nav-anchor {
		color: #082877;
		border: solid 2px #082877;
		padding: 4px;
	}
	.nav-anchor:hover {
		background: #dedede;
	}
	.nav-font-japanese {
		font-size: 10px;
		margin-bottom: 1px;
	}
	.nav-font-english {
		font-size: 8px;
		line-height: 1;
	}
	.navbar {
		flex-direction: column;
	}
	.nav-item:first-child {
		margin-top: 5px;
	}
	.contact-font {
		gap: 5px;
	}
	
	.contact-font a {
		padding: 4px 10px;
		font-size: 12px;
		min-height: 32px;
	}
	
	.contact-font i {
		font-size: 14px;
	}
	.footer-container {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 100;
	}
}

/* メインコンテンツの下部にフッターの高さ分のマージンを追加 */
#content {
	margin-bottom: 40px;
}

/* 料金表 */
.price-table-container {
    margin: 40px auto;
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.price-table th,
.price-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
}

.price-table th {
    background-color: #082877;
    color: white;
    font-weight: bold;
}

.price-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tr:hover {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .price-table {
        font-size: 14px;
    }

    .price-table th,
    .price-table td {
        padding: 8px;
    }
}
