@charset "UTF-8";
/* header
   ========================================================================== */
header {
	background: #e6dfd0;
	margin: 0 auto 40px;
	padding: 0 0 10px;
	overflow: hidden;
}

.hdr_titlemenu {
	background: #009bde;
	border-bottom: solid 1px #fff;
	margin: 0 auto;
	padding: 5px 0 0;
	text-align: center;
}

.hdr_title {
	display: block;
	margin: 10px auto;
}

.hdr_inner {
	box-sizing: border-box;
	margin: 0 auto 50px;
	padding: ;
	width: 980px;
	display: grid;
	grid-template-columns: 310px 1fr;
}

.hdr_inner img { width: 100%;}

.hdr_book {
	grid-column-start: 1;
	position: relative;
	padding-top: 30px;
	margin-top: 30px;
}
	
.hdr_h1 {
	grid-column-start: 2;
	padding-top: 30px;
}

.hdr_bookimg {
	position: absolute;
	top: 140px;
	left: 0;
}

.hdr_mbtn a {
	display: block;
	box-sizing: border-box;
	background: #000;
	color: #fff;
	font-weight: 600;
	padding: 10px 5px;
	margin: 10px 30px 0;
	text-align: center;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
}

.hdr_mbtn a:hover {
	opacity: 0.7;
	transition: 0.3s;
}

@media screen and (max-width: 800px) {
header { margin: 0 auto;}

.hdr_inner {
	/*padding: 20px 5% 0;*/
	width: 100%;
	grid-template-columns: 1fr;	
	margin-bottom: 20px;
}

.hdr_titlemenu {
	border-bottom: none;
	padding: 5px 70px 5px 5px;
}

.hdr_title { width: 90%;}

.hdr_book {
	grid-rows-start: 1;
	grid-column-start: 1;
	background: url(../image/juuban.png) no-repeat center 20px;
	background-size: 72%;
	padding: 28% 5% 0;	
	margin-top: 0;
}

.hdr_jb { display: none;}

.hdr_bookimg {
	position: static;
	display: block;
	width: 80% !important;
	margin: auto;
	text-align: center;
}

.hdr_h1 {
	grid-rows-start: 2;
	grid-column-start: 1;
	padding-top: 10px;
}

.hdr_ttl {
	display: block;
	margin: auto auto 20px;
	text-align: center;
	width: 90% !important;
}

.hdr_mbtn a {
	font-size: 100%;
	padding: 15px;
}

.download .hdr_book {
	background: none;
	padding-top: 0;
}

.download .hdr_titlemenu {
	border-bottom: none;
}
}

/* drawr
   ========================================================================== */
#fixedBox {
	background: #009bde;
	overflow: hidden;
}

.mainmenu {
	background: #009bde;
	list-style: none;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0;
	width: 980px;
}

.mainmenu li {
	box-sizing: border-box;
	float: left;
	text-align: center;
	width: 25%;
	overflow: hidden;
}

.smtop { display: none;}
 
.mainmenu li a {
	/*background: #fef102;*/
	border-right: solid 1px #fff;
	color: #fff;
	padding: 17px 0;
	height: 30px;
	line-height: 1.3;
	text-decoration: none;
	display: flex;
	align-items: center; /* 縦方向中央揃え */
	justify-content: center; /* 横方向中央揃え */
}

.mainmenu li:nth-child(2) a {
	border-left: solid 1px #fff;
	background: #008cb0;
	color: #fff !important;
}

.mainmenu a:hover {
	background: #008cb0;
	transition: 0.3s;
	color: #fff !important;
}

.close-bt { display: none;}

.mainmenu li:nth-child(2) a:hover {
	opacity: 0.7;
	transition: 0.3s;
	-webkit-font-smoothing: antialiased;
}


@media screen and (max-width: 800px) {
/*右上に固定でメニューボタンを設置*/
.drawr-bt {
	display: block;
	background: #fff;
	/*box-shadow: 0 0 2px #333;*/
	cursor: pointer;
	text-align: center;
	font-size: 200%;
	padding: 6px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 7777;
}

#panel-btn-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 2px;
  margin: -1px 0 0 -15px; /* widthの半分引いた数 */
  background: #009bde;
}

#panel-btn-icon:before,
#panel-btn-icon:after {
  background: #009bde;
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 2px;
}

#panel-btn-icon:before { margin-top: -10px;}
#panel-btn-icon:after { margin-top: 8px;}


/*右から出てくるメニューボックス。こちらもfixed。z-indexでメニューボタンの上に持ってきましょう。*/
.drawr {
	display: none;
	background: rgba(255,255,255,0.8);
	padding: 0;	
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	z-index: 8888;
}

/*閉じるボタンを設置。z-indexを最強にしておかないと隠れちゃいます。*/
.close-bt {
	display: block;
	background: #f7f9fb;
	cursor: pointer;
	margin: 11px 11px 11px auto;
	width: 51px;
	height: 51px;
	z-index: 9999;
	position: relative;
}

.close-btn-icon {
  display: block;
	background: #f00;
	color: #00639e;
	position: relative;
	top: 50%;
	left: 50%;
  width: 30px;
  height: 2px;
	margin: -1px 0 0 -15px;
	background: transparent;
	transition: 0.3s;
}

.close-btn-icon:before,
.close-btn-icon:after {
	background: #00639e;
	content: "";
	position: absolute;
  width: 30px;
  height: 2px;
	margin-top: -1px;
}

.close-btn-icon:before {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.close-btn-icon:after{
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.mainmenu { /*background: #2c79ad !important;*/}

.mainmenu li {
	border-bottom: solid 1px #a5e0f9;
	float: none;
	font-size: 90%;
	/*margin: 0 0 1px;*/
	text-align: left;
	width: 100%;
}

.mainmenu li:nth-child(1) a {
	border-left: none;
	border-top: solid 2px #a5e0f9;
	border-left: none;;
}

.mainmenu li:nth-child(2) a {	border-left: none;}

.smtop { display: block;}

.mainmenu li a {
	border: none;
	text-decoration: none !important;
	padding: 20px 10px;
	justify-content: left; 
}

.mainmenu br {	display: none;}
}

@media screen and (min-width: 800px) {
.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
	box-shadow: 0px 1px 3px rgba(0,41,88,0.2);
	-webkit-box-shadow: 0px 1px 3px rgba(0,41,88,0.2);
 	-moz-box-shadow: 0px 1px 3px rgba(0,41,88,0.2);
}
}
/* プリント非表示
   ========================================================================== */
@media print {
	.drawr-bt { display: none !important;}
}