@charset "UTF-8";

/* ===================================
	File Name   : report.css
	Description : Report Page Layout CSS
	Editor      : Bface Saeki
	Last Editor : Bface Nakamura
	
	Update Description :
	[2025/09/17] 不要なCSS削除
	[2023/09/106] 新規制作
====================================== */

/*========== Style Contents ==========

	1. Share Elements
	2. Section [quick] Setting
	3. Section [scene] Setting
	
====================================== */



/*===== ■1. Share Elements =====*/



/*===== ■2. Section [quick] Setting =====*/
#quick .report { margin-bottom: 15px;}

#quick dl {
	display: flex;
	margin: 15px 0 10px;
}

#quick dt {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 240px;
	padding: 10px;
	border-radius: 5px 0 0 5px;
	background: #162954;
	color: #fff;
	font-weight: bold;
	font-size: 1.6rem;
	line-height: 1.2;
	text-align: center;
}
#quick dt:after {
	position: absolute;
	top: 50%;
	right: 0;
	margin-right: -32px;
	border: 16px solid transparent;
	border-left: 16px solid #162954;
	transform: translateY(-50%);
	content: '';
}

#quick dd {
	width: calc(100% - 200px);
	border-radius: 0 5px 5px 0;
	background: #eceef5;
}

#quick dd table {
	width: 100%;
  height: 100%;
	text-align: center;
	table-layout: fixed;
}

#quick dd th {
	padding: 12px 10px;
	border-right: 1px dotted #fff;
	background: #c7cddb;
	vertical-align: middle;
}

#quick dd tr {height: 100%;}


#quick dd th:last-child {
	border-radius: 0 6px 0 0;
	border: none;
}

#quick dd td {
	padding: 12px 10px;
	border-right: 1px dotted #999;
	font-weight: bold;
	vertical-align: middle;
}
#quick dd td:last-child { border: none;}

#quick dd td b { display: block;}

#sokuhou01 {
  margin: 10px 10px 5px;
}
#sokuhou02 {
  margin: 25px 10px 5px;
}

#quick #quick_mente dt { background: #00125d;}
#quick #quick_mente dt:after { border-left: 16px solid #00125d;}
#quick #quick_mente dd { background: #e2e2ec;}
#quick #quick_mente dd th { background: #c5c6da;}

#quick #quick_meteo dt { background: #4a98cc;}
#quick #quick_meteo dt:after { border-left: 16px solid #4a98cc;}
#quick #quick_meteo dd { background: #dbeaf5;}
#quick #quick_meteo dd th { background: #c8e0f0;}

#quick #quick_plant dt { background: #132e79;}
#quick #quick_plant dt:after { border-left: 16px solid #132e79;}
#quick #quick_plant dd { background: #e2e9ff;}
#quick #quick_plant dd th { background: #aec1f5;}

#quick #quick_sum dt { background: #aa0000;}
#quick #quick_sum dt:after { border-left: 16px solid #aa0000;}
#quick #quick_sum dd { background: #f6e5e5;}
#quick #quick_sum dd th { background: #e5b2b2;}

#quick #quick_mente span > span {display: block;}

#quick #quick_mente span > span:not(:last-child) {margin-bottom: 5px;}

#quick #quick_mente span > span:not(:first-child) {font-size: 1.4rem;}

#quick .inner > ul { margin: 0 10px;}

#quick .inner > ul li {
	padding-left: 1em;
	text-indent: -1em;
	font-weight: bold;
	font-size: 1.2rem;
}

@media screen and (max-width:640px) {
  
	#quick dl {
		flex-direction: column;
	}

	#quick dt {
		width: auto;
		padding: 7px 10px;
		box-sizing: border-box;
		border-radius: 5px 5px 0 0;
		font-size: 1.3rem;
	}
	#quick dt:after {
		position: absolute;
		top: inherit;
		right: inherit;
		left: 50%;
		bottom: 0;
    margin-bottom: -20px;
    transform: translateX(-50%) rotate(90deg);
		border: 10px solid transparent;
		border-left: 10px solid #162954;
		content: '';
	}

	#quick dd {
		width: 100%;
		border-radius: 0 0 5px 5px;
	}

	#quick dd th {
		padding: 8px 3px;
		line-height: 1.2;
	}
	#quick dd th:last-child { border-radius: 0;}

	#quick dd td {
		padding: 8px 3px;
		font-size: 1.2rem;
		word-break: break-all;
	}
	
	#quick dd td br { display: block;}
  
  #quick #quick_mente dt:after {border: 10px solid transparent; border-top: 10px solid #00125d;}
	#quick #quick_meteo dt:after {border: 10px solid transparent; border-top: 10px solid #4a98cc;}
	#quick #quick_plant dt:after {border: 10px solid transparent; border-top: 10px solid #132e79;}
	#quick #quick_sum dt:after {border: 10px solid transparent; border-top: 10px solid #aa0000;}
	#quick .inner > ul { margin: 0;}
	
	#quick .inner > ul li {
		font-size: 1.2rem;
	}
}



/*===== ■3. Section [scene] Setting =====*/
#scene p { margin-bottom: 20px;}

#scene ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 10px;
}

#scene li {
	width: calc(33.33% - 20px);
	margin: 0 10px 20px;
	line-height: 0;
}

#scene .intro {margin-bottom: 10px;}

#scene .movie_wrapper {
	position: relative;
	margin: 0 auto 20px;
	width: 80%;
	padding: calc(315 / 560 * 80%) 0 0;
}

#scene .movie_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width:768px) {
	#scene li {
		width: calc(50% - 10px);
		margin: 0 5px 10px;
	}
	
  #scene .intro {margin-bottom: 5px;}

	#scene .movie_wrapper {
		width: calc(100% - 30px);
		margin-bottom: 5.34vw;
		padding: calc(315 / 560 * 100%) 0 0;
	}
}


