﻿@charset "utf-8";

.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(200, 200, 200, 0.5);
	display: flex;
	justify-content: center;
	align-items: flex-start
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.2s ease;
	padding-top: 10vh;
}

.popup {
	background: white;
	height: 20%;
	padding: 0.5em;
	border-radius: 10px;
	text-align: center;
	width: 360px; /* 小さめサイズ */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transform: translateY(-20px);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ボタンのデザイン */
.popup button {
	margin: 10px;
	padding: 8px 15px;
	border: none;
	cursor: pointer;
	border-radius: 5px;
}

.yes-btn {
	background-color: #007bff;
	color: white;
}

.no-btn {
	background-color: #ccc;
	color: black;
}

/* ポップアップを表示する時のクラス */
.show {
	opacity: 1;
	visibility: visible;
}

.show .popup {
	opacity: 1;
	transform: translateY(0);
}


body {
	margin: 0 auto;
	font-family: 'Arial', sans-serif;
	background-color: #fff;
	color: #333;
	max-width: 980px;
	border-top: solid 3px rgb(230, 180, 34);
}

.container {
	padding: 0em 2em 2em 2em;
	max-width: 1200px;
	box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
	.container {
	transform: scale(calc(100vw / 1200));
	}
}

@media screen and (max-height: 800px) {
	.container {
	transform: scale(calc(100vh / 800));
	}
}

.adjustment{
	font-size:28px;
	display: flex;
	align-items: center;
}

.image {
	width: 100px;
	height: auto;
}

h3{
	text-align:right;
}

.strong{
	font-size:18px;
	font-weight:bold;
}

.grid-ct {
	display: flex;
	flex-wrap: wrap;
	max-width: 70%;
}

.box1 {
	width:15%;
	display: flex;
}
.box2 {
	width:25%;
	display: flex;
}
.box3 {
	width:30%;
	display: flex;
}
.box4 {
	width:30%;
	display: flex;
}

@media screen and (max-width: 768px) {
.box {
	width:50%;
	}
}

@media screen and (max-width: 480px) {
.box {
	width: 100%;
	}
}

.appointment-ct {
	display: flex;
	flex-wrap: wrap;
	text-align:left;
	justify-content: space-between;
	margin:1em 0em 1em 0em;
}

.appointment-item1,
.appointment-item2,
.appointment-item3 {
	width: 40%; 
	box-sizing: border-box;
	border: 1px solid #333;
	display: flex;
	text-align:left;
	padding-left:1em;
}

.appointment-item3 {
	width: 20%;
}


.meeting-ct {
	display: flex;
	flex-wrap: wrap;
	text-align:left;
	justify-content: space-between;
	margin:1em 0em 1em 0em;
	border: 1px solid #333;
	outline: 1px solid #333;
}

.meeting-item1 {
	width:100%; 
	box-sizing: border-box;
	border-bottom: 1px solid #333;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.meeting-item2 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.meeting-item3 {
	width:65%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.index-ct {
	display: flex;
	flex-wrap: wrap; 
	margin:1em 0em 1em 0em;
	text-align:left;
}

.index-item1{
	width: 35%; 
	box-sizing: border-box;
	border: 1px solid #333;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}
.index-item2 {
	width: 65%; 
	box-sizing: border-box;
	border: 1px solid #333;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}


.obverse1{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 60%;
	border: 1px solid #333;
}

.obverse1-item1{
	width: 15%;
	border: 1px solid #333;
	box-sizing: border-box;
	display: flex;
	background-color:#e5e5e5;
	justify-content: center;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.obverse1-item2{
	width: 20%;
	border: 1px solid #333;
	box-sizing: border-box;
	display: flex;
	background-color:#e5e5e5;
	justify-content: center;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.obverse1-item3{
	width: 15%;
	border: 1px solid #333;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.obverse1-item4{
	width: 20%;
	border: 1px solid #333;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.image-container {
	position: relative;
	width: 80%;
	box-sizing: border-box;
}

.image-box {
	position: relative;
	display: inline-block;
}

.image1 {
	width:80%;
	position: relative;

}

.arrow {
	height: 33%;
	width:30%;
	position: absolute;
	left: -18%;
	top:20.5%;
	transform: translateX(50%);
	z-index: 10;
}


.smt1 {
	width:100%;
	padding-left:10%;

}
.smt2 {
	width:100%;
}

.smt3 {
	width:100%;
	padding-left:20%;
}

.arrow2 {
	width: 20%;
	height:30%;
	position: absolute;
	left: 44%; 
	top:9.9%; 
	transform: translateX(50%);
	z-index: 10;
}

.arrow3 {
	width: 10%;
	height:70%;
	position: absolute;
	left: 82.5%;
	top:9.9%;
	transform: translateX(50%);
	z-index: 10;
}

.image2 {
	width:80%;
}

.frame{
	border:1px solid;

}

.obverse2{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.obverse2-item1{
	width: 33.3%;
	border: 1px solid #333;
	box-sizing: border-box;
	display: flex;
	background-color:#e5e5e5;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.obverse2-item2{
	width: 33.3%;
	border: 1px solid #333;
	box-sizing: border-box;
	display: flex;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}


.flex-container {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	width: 80%;
	margin: 0 auto;
	flex-wrap: wrap;
}

.k1-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border: 1px solid #333;
	outline: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k1-item1 {
	width:50%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k1-item2 {
	width:50%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	font-weight:bold;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k2-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k2-item1 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k2-item2 {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k2-item3 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;

}

.k2-item4 {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k3-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k3-item1 {
	width:22.5%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k3-item2 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k3-item3 {
	width:22.5%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k3-item4 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k4-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border-top:1px solid;
	border-bottom:1px solid;
}

.k4-item1 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k4-item2 {
	width:70%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k4-item3 {
	width:100%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k5-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k5-item1 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k5-item2 {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	padding-left:1em;
	background-color:#e6e6e6;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k5-item3 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k5-item4 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left:1px solid;
	border-top:1px solid;
	border-right:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k5-item5 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left:1px solid;
	border-bottom:1px solid;
	border-right:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k6-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k6-item1 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k6-item2 {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k6-item3 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k6-item4 {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k7-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k7-item1 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k7-item2 {
	width:15%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k7-item3 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k7-item4 {
	width:15%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}


.k8-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k8-item1 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k8-item2 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k8-item3 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k8-item4 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k9-item1 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item2 {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item3 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item1nl {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item2nl {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item3nlb {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item3nlt {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item3nlr {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item3nll {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item4 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item5 {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k9-item6 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k10-item1 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item2 {
	width:45%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item3 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item1nl {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item2nl {
	width:45%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item3nlr {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-top: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item3nll {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-top: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item4 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item5 {
	width:45%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k10-item6 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;

}

.k11-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k11-item1nlb {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-top: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k11-item1nlt {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	border-right: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k11-item2 {
	width:40%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k11-item3 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	background-color:#e6e6e6;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k11-item4 {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k11-item5 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k11-item6 {
	width:100%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k12-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k12-item1 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k12-item2 {
	width:80%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k13-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k13-item1 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	background-color:#e6e6e6;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k13-item2 {
	width:65%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	background-color:#e6e6e6;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k13-item3 {
	width:35%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k13-item4 {
	width:65%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k14-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.k14-item1 {
	width:52%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	background-color:#e6e6e6;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k14-item2 {
	width:12%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	background-color:#e6e6e6;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k14-item3 {
	width:52%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k14-item4 {
	width:12%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.k15-ct {
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.materials1-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:80%; 
}

.materials1-item1 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials1-item2 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials1-item3 {
	width:50%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}


.materials2-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:80%; 
}

.materials2-item1 {
	width:40.6%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	background-color:#e6e6e6;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	font-weight:bold;
}

.materials2-item2 {
	width:6.6%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border: 1px solid #333;
	background-color:#e6e6e6;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	font-weight:bold;
}

.materials2-item3 {
	width:100%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	background-color:#f1f1f1;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
	font-weight:bold;
}

.materials2-item4 {
	width:40.6%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	padding-left:1em;
	border: 1px solid #333;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;

}

.materials2-item5 {
	width:6.6%; 
	box-sizing: border-box;
	display: flex;
	border: 1px solid #333;
	font-size:28px;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials3-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:80%; 
}

.materials3-item1 {
	width:100%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	font-weight:bold;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials3-item2 {
	width:17%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials3-item3 {
	width:83%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials4-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:100%; 
}

.materials4-item1 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:center;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials4-item2 {
	width:52%; 
	box-sizing: border-box;
	display: flex;
	text-align:center;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials4-item3 {
	width:14%; 
	box-sizing: border-box;
	display: flex;
	text-align:center;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials4-item4 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials4-item5 {
	width:52%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials4-item6 {
	width:14%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials5-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:100%; 
}

.materials5-item1 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials5-item2 {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
}

.materials5-item3 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials5-item4 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials6-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width:100%; 
}

.materials6-item1 {
	width:60%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials6-item2 {
	width:20%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials6-item3 {
	width:10%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials7-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.materials7-item1 {
	padding-left:1em;
	width:25%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	border:1px solid;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials8-ct {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.materials8-item1 {
	width:100%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}

.materials8-item2 {
	width:30%; 
	box-sizing: border-box;
	display: flex;
	text-align:left;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}



.materials8-item3 {
	width:70%;
	box-sizing: border-box;
	display: flex;
	text-align:left;
	flex-wrap: wrap;
	min-width: 0;
	word-break: break-word;
	overflow-wrap: break-word;
	white-space: normal;
}


.lateperiod1-ct{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	border:1px solid;
	margin:0em 3em 0em 3em;
	padding:0.5em;
}

.lateperiod1-item1{
	width:100%;
	margin-left:57%;
	margin-top:3em;
	font-size:18px;
	font-weight:bold;
}

.lateperiod2-ct{
	justify-content: space-between;
	border-top:1px solid;
	border-bottom:1px solid;
	margin:5em 3em 0em 3em;
	padding:0.5em;
}