@charset "UTF-8";

/*================================================================
 site_default
================================================================*/
/* -------------------------------------------
 * initialize
 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* For Android */
body * {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}

article, aside, dialog, figure, footer, header, hgroup, nav, section, main {
  display: block;
}

sup {
  font-size: 10px;
  vertical-align: super;
}

sub {
  font-size: 10px;
  vertical-align: sub;
}

ul li {
  list-style: none;
}

input, select {
  vertical-align: middle;
}

body {
  font-family: YuGothic, Yu Gothic, "游ゴシック", "メイリオ", "Meiryo", sans-serif;
  font-weight: 500;
  max-width: 1280px;
  margin: 0 auto;
}

img {
  -ms-interpolation-mode: bicubic;
}

.pc {
	display: block;
}

.sp {
	display: none;
}



main {
	display: flex;
}

/*** サイドメニュー ***/
#sideMenuWrap {
	width: 350px;
	min-width: 350px;
}

#sideMenuWrap a {
	color: #000;
	text-decoration: none;
}

#backToCover {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

#backToCover img {
    width: 22%;
}

#backToCover div {
	font-size: 16px;
	padding: 8px 12px;
	display: inline-block;
	border: 1px solid #666;
	border-radius: 5px;
	margin-left: 10px;
}

#title {
	text-align: center;
	margin-top: 20px;
}
h1 {
	position: relative;
	border-bottom: 6px solid #76beea;
	line-height: 1.5;
	display: inline-block;
	padding: 0 5px;
	font-size: 30px;
}

h1::after {
	position: absolute;
	bottom: -6px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 6px;
	background-color: #f27179;
}

#sideMenuWrap {
    margin-bottom: 60px;
}

#sideMenuArea .bu ul {
    display: none;
}

nav.sideMenu {
	width: 95%;
	margin: 0 auto;
	margin-top: 40px;
}

.sideMenu li {
    padding-left: 1em;
    line-height: 1.3;
}

.sideMenu li.bu  {
    padding-left: 0;
}

.sideMenu .bu > span {
    font-weight: 600;
}


.sideMenu li span {
	display: block;
	margin-right: 0px;
	line-height: 1.3;
    padding: 15px 40px 15px 15px;
    border-bottom: 1px solid #c6c6c6;
}

.sideMenu li span.current {
	background-color: #fbd4d7;
}

.sideMenu li a:hover {
	opacity: 0.7;
}

.toggle > span {
    position: relative;
}

.toggle > span::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 55%;
    transform: translateY(-50%);
    background: url("../icons/sidemenu_arrow.svg") no-repeat;
	transition: 0.3s;
	width: 11px;
    height: 20px;
    cursor: pointer;
}

.toggle.open > span::after {
    transform: rotate(90deg) translateX(-100%);
    transition: 0.3s;
}



.toggle input.sideMenuLabel:checked + label::after {
    transform: rotate(90deg);
    transition: 0.3s;
}




@media screen and (max-width: 345px) {
    #backToCover img, #title {
		display: none;
    }

    #backToCover div {
        margin-left: 0;
        margin-top: 2vw;
    }

    nav.sideMenu {
        margin-top: 5vw;
    }
    
}


/*** コンテンツ ***/
#contents {
	margin: 40px;
	font-size: 17px;
	text-align: justify;
}

#contents h2 {
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: .5em;
	border-bottom: 4px solid #76beea;
}

#contents h2::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 20%;
	height: 4px;
	background-color: #f27179;
}

/* 本文 */
.title_bu {
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1.5em;
	border-left: 9px solid #f27179;
	border-bottom: 2px solid #c6c6c6;
	padding: 0.5em 0 0.5em 0.5em;
}


.title_sho {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1.5em;
	border-left: 6px solid #76beea;
	border-bottom: 2px solid #c6c6c6;
	padding: 0.5em 0 0.5em 0.5em;
}

.title_setsu {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1.5em;
	border-left: 6px solid #666;
	border-bottom: 2px solid #c6c6c6;
	padding: 0.5em 0 0.5em 0.5em;
}

.title_kou {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1.5em;
	border-bottom: 2px solid #c6c6c6;
	padding: 0.5em 0 0.5em 0.5em;
}




.maintxt {
	line-height : 1.7;
	margin-bottom:	20px;
}

.maintxt p {
	line-height : 1.7;
	font-size: 17px;
	margin-bottom:	20px;
}

p.title5th, p.title6th, p.title7th{
	margin-bottom: 0;
}

.mb0 {
	margin-bottom:0!important;
}

p.indent1-m1 {
	text-indent:-1em;
	margin-left:1em;
}

p.indent2-m2 {
	text-indent:-2em;
	margin-left:2em;
}

p.indent3-m3 {
	text-indent:-3em;
	margin-left:3em;
}

p.indent4-m4 {
	text-indent:-4em;
	margin-left:4em;
}

p.indent5-m5 {
	text-indent:-5em;
	margin-left:5em;
}

p.indent6-m6 {
	text-indent:-6em;
	margin-left:6em;
}

p.indent7-m7 {
	text-indent:-7em;
	margin-left:7em;
}

p.indent8-m8 {
	text-indent:-8em;
	margin-left:8em;
}

p.indent9-m9 {
	text-indent:-9em;
	margin-left:9em;
}

table.waku td {
	padding : 8px;
}

div.chartname {
	margin-top: 40px;
	margin-bottom : 5px;
	text-align: center;
}
.italic {
	font-style: italic;
}

.chart {
	margin-bottom: 30px;
	text-align: center;
}

.chart img {
	margin-bottom: 5px;
	max-width: 100%;
}

.chart .data {
	display:inline-block;
}

.chart .data p {
	text-align:left;
	font-size:12px;
}

.chart table {
	margin-bottom: 5px;
	width:100%;
	border-collapse:collapse;
}

.chart th,
.chart td{
	padding: 0.3em 0.6em;
	border: 1px solid #181818;
	text-align: left;
}

.chart th{
	background-color: #C8E7F0;
}

.chart td ul{
	padding-left: 1.5em;
}

.chart td ul li{
	list-style: disc;
	line-height: 1.7;
}

.chart .data .math {
	margin-left:3em;
	margin-bottom:20px;
	text-align:left;
	font-size:12px;
}

.excel {
	margin-top: -10px;
	margin-bottom: 30px;
	text-align: center;
}


.note {
	border-top: 1px solid #666;
	padding-top: 0.5em;
}

.note li {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0.3em;
	list-style: none;
	word-break:break-all;
}

.note p {
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 0.3em;
	word-break:break-all;
}

.movie-qr-flex{
  display:flex;
}

.movie-icon{
  margin-top:10px;
  margin-right:10px;
}

.movie-icon p{
  margin-bottom:0;
  font-size:0.75em;
  text-align:center;
}

.data-qr-flex{
  display:flex;
}

.data-text{
  margin-top:10px;
  margin-right:10px;
}

.url{
  margin-bottom:20px;
  padding:7px 14px;
  border:3px solid #f27179;
  border-radius:10px;
}

.url p{
  margin-bottom:0;
  word-break:break-all;
}

.chart > .data > p:not(:last-child){
  margin-bottom:0;
}


/* ヘッダ及びフッダバーの設定 */
.bar .header	{
		text-align : left;
		font-weight : bold
}
.bar .footer	{
		text-align : right;
		font-weight : bold
}
/* バーの色 */
.divh .bar	{
		background-color : #bedcd4;
}
.div1 .bar	{
		background-color : #bedcd4;
}
.div2 .bar	{
		background-color : #c0deeb;
}
.divs .bar	{
		background-color : #e2d0b8;
}
/* 囲み */
.kakomi {
	padding: 10px;
	border: solid 1px #333333;
}
/* 箇条書き */
ul {
	margin-top:0em;
	margin-bottom:0em;
}
ol.main {
	margin-left:20px;
	margin-top:0em;
	margin-bottom:0em;
}
ol.main li {
	line-height:1.7;
	font-size:17px;
}

/* 下線 */
.underline{ border-bottom: solid 1px #000000; }


#pageFeed {
	position: relative;
	padding-top: 30px;
	border-top: 4px solid #76beea;
}

#pageFeed::after {
	position: absolute;
	top: -4px;
	left: 0;
	z-index: 2;
	content: '';
	width: 70%;
	height: 4px;
	background-color: #f27179;
}


#pageFeed ul {
	display: flex;
	justify-content: center;
}


#pageFeed ul li:nth-child(2) {
	margin-left: 60px;
}

#pageFeed ul li.prev::before {
	content: "●";
	color: #76beea;
	margin-right: 0.2em;
}

#pageFeed ul li.next::after {
	content: "●";
	color: #f27179;
	margin-left: 0.2em;
}


@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	
	.sp {
		display: block;
	}

	main {
		display: block;
		position: relative;
		width: 100%;
		margin: 0 auto;
	}

	#sp_headerArea {
		height: 15vw;
		position: fixed;
		width: 100%;
		z-index: 100;
		top: 0;
		box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	}

	#sp_header {
		width: 100%;
		position: absolute;
		top: 0;
		height: 100%;
		display: flex;
		align-items: center;
		background-color: rgba(255,255,255,0.9);
		padding-left: 16vw;
		z-index: 15;
		box-sizing: border-box;
	}

	#sp_header h1 {
		font-size: 6vw;
		line-height: 1;
		margin-right: 3%;
		position: relative;
		padding: 0;
		padding-bottom: .2em;
		border-bottom: 0.8vw solid #76beea;
		margin-left: 2%;
	}

	#sp_header h1::after {
		position: absolute;
		bottom: -0.8vw;
		left: 0;
		z-index: 2;
		content: '';
		width: 20%;
		height: 0.8vw;
		background-color: #f27179;
	}

	#sp_header img {
		width: 12%;
		margin-left: 2%;
	}

	#bg {
		background-color: rgba(0,0,0,0.6);
		width: 100vw;
		height: 100%;
		position: fixed;
		top: 15vw;
		left: 0;
		display: none;
	}

	#nav-toggle {
		display: block;
		position: absolute;
		cursor: pointer;
		z-index: 1050;
		width: 8vw;
		height: 6vw;
		left: 5%;
		top: 6vw;
	}

	#nav-toggle div:first-child {
		position: relative;
		padding-bottom: 1em;
	}
	
	#nav-toggle span {
		width: 100%;
		height: 2px;
		left: 0;
		display: block;
		background: #76beea;
		position: absolute;
		transition: transform .4s ease-in-out, top .5s ease;
	}

	#nav-toggle span:nth-child(1) {
		top: 0;
	}

	#nav-toggle span:nth-child(2) {
		top: 2vw;
		width: 100%;
	}
	
	#nav-toggle span:nth-child(3) {
		top: 4vw;
		width: 100%;
	}
	
	.open #nav-toggle span:nth-child(1) {
		top: 2vw;
		transform: rotate(45deg);
		width: 100%;
		left: 0;
	}
	.open #nav-toggle span:nth-child(2) {
		top: 2vw;
		width: 0;
		left: 0;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 2vw;
		transform: rotate(-45deg);
		width: 100%;
		left: 0;
	}
	
	#nav-toggle div:nth-child(2) {
		color: #76beea;
		font-size: 90%;
		text-align: center;
	}

	.open #bg {
		display: block;
	}

	body.open {
		overflow: hidden;
	}


	#sideMenuWrap {
		position: fixed;
		background-color: #fff;
		z-index: 10;
		transform: translateX(-100%);
		transition: transform 0.6s;
		width: 85%;
		height: calc(100% - 15vw);
		min-width: 200px;
		margin-top: 15vw;
		top: 0;
		left: 0;
		overflow-y:	scroll;
    	-webkit-overflow-scrolling:touch;
	}

	.open #sideMenuWrap {
		transform: translateX(0);
	}

	#backToCover img, #title {
		display: none;
    }

    #backToCover div {
        margin-left: 0;
        margin-top: 2vw;
    }

    nav.sideMenu {
        margin-top: 5vw;
    }

	
	#contents {
		width: 85%;
		display: block;
		margin: 0 auto;
		padding-bottom: 60px;
		padding-top: 20vw;
	}

	div.chartname {
		margin-top: calc(40px - 20vw);
   		padding-top: 20vw;
	}

	#pageFeed ul {
		display: block;
		text-align: center;
	}
	
	#pageFeed ul li.prev {
		margin-left: -1.2em;
	}

	#pageFeed ul li.next {
		margin-left: 0;
		margin-top: 15px;
		margin-right: -1.2em;
	}

}