.titlelayout{
	width:800px;
	display:block;
}
.top_left{
	float:left;
	margin-bottom:10px;
}
.top_right{
	float:right;
	text-align:right;
	margin-bottom:10px;
}
.title{
	width:800px;
	display:block;
}
.title_right{
	text-align:center;
	width:220px;
	float:left;
}

.midashi_icon{
	width:26px;
	height:25px;
	float:left;
	display:block;
}

.midashi{
	height:25px;
	padding:5px 0 0 10px;
	font-size:120%;
	color:#F00;
	vertical-align:middle;
	font-weight:bold;
	text-align:left;
	display:block;
}

.textarea{
	display:block;
	margin:20px auto;
}

.clear {
    clear:both;
}

div.notes_sign{
    width:10px;
    float:left;
}

div.notes_body{
    width:650px;
    float:left;
}

body {
	margin: 0;
	/*padding: 20px;*/
}

.box_parent {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1em;
	outline: none;
	border-left: solid 6px #000;
}

.box_child {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	padding-left: 4em;
	padding-top: 1em;
	padding-right: 1em;
	padding-bottom: 1em;
	outline: none;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	border-left: solid 20px #000;
}

.text {
	max-width: 100%;
}

.text-margin {
	padding: 2em;
}

.iframe-container {
	max-width: 600px;
	max-height: 600px;
	aspect-ratio: 1 / 1;
}

h3 {
	font-size: 21px;
	margin: 0;
}

.left_pict {
	width: 30%;
	margin-right: 3%;
}

.right_pict {
	width: 30%;
	margin-left: 3%;
}

.pict img {
	width: 100%;
	height:auto;
}

.table2 {
	margin: auto;
	font-size: 120%;
}

.table2 th {
	text-align-last: justify;
}

.box-map {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 1em;
	outline: none;
}

.right-triangle{
	width: 0;
	height: 0;
	border-left: 0.5em solid white;
	border-top: 0.5em solid transparent;
	border-bottom: 0.5em solid transparent;
}

.box_button {
	display:flex;
	flex-direction: row;
	justify-content: space-between;
	outline: none;
}

.text-block {
	display: block;
	text-align: center;
	margin: auto;
	padding-right: 1em;
}

.decorated-btn-parent {
	display: block;
	text-align: center;
	margin: auto;
}

.decorated-btn {
	text-align: center;
	font-size: 150%;
	display: inline-block;
	padding: 0.5em 1em;
	border-radius: 25px;
	text-decoration: none;
	color: #FFF;
	background: #000;
	transition: .4s;
}

.decorated-btn:hover {
	background: #87befd;
}


/*accordion-003*/
.accordion-003 {
    /*max-width: 500px;*/
    margin-bottom: 7px;
    border-bottom: 2px solid #d0d0d0;
}
.accordion-003 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
	font-weight: 600;
    cursor: pointer;
	transition: .4s;
}

.accordion-003 summary::-webkit-details-marker {
    display: none;
}

.accordion-003 summary:hover {
	color: white;
	background: #87befd;
}


.accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion-003[open] summary::after {
    transform: rotate(225deg);
}

.accordion-003 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
    transform: none;
    opacity: 1;
}


/*tab*/
.tab-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10px;
    /*max-width: 500px;*/
}

.tab-2 > label {
    flex: 1 1;
    order: -1;
    opacity: .5;
    min-width: 70px;
    padding: .6em 1em;
    border-radius: 5px 5px 0 0;
    background-color: #000000;
    color: #fff;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
	transition: .4s
}

.tab-2 > label:hover {
	background: #87befd;
}

.tab-2 input {
    display: none;
}

.tab-2 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tab-2 label:has(:checked) {
    opacity: 1;
}

.tab-2 label:has(:checked) + div {
    display: block;
}


/*code*/
pre {
	position: relative;
	margin: 2em 0;
	padding: 0;
	line-height: 1;
	font-size: 15px;
	background: aliceblue;
    white-space: pre-line;
}

pre code {
	display: block;
	margin: 0;
	padding: 2em 1em 1em;
	line-height: 1.4;
	overflow: auto;
}

.copy-button {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	margin: 0 auto;
	padding: 0 1em;
	height: 24px;
	border: none;
	line-height: 1;
	font-weight: bold;
	background: black;
	color: white;
	cursor: pointer;
}

.copy-button:hover {
	background: #87befd;
}
