* {
	margin:0;
	padding:0;
}
* {
	box-sizing: border-box;
}
a {
	text-decoration: none;
}
body {
	position:relative;
	font-size: 16px;
	line-height: 24px;
	color: #333;
	font-family: 'メイリオ', Meiryo,'Meiryo UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
}
header {
	border-bottom:#ccc 5px solid;
	position:fixed;
	top:0;
	display:flex;
	justify-content: space-between;
	width:100%;
	background-color:#fff;
	height:54px;
	z-index:1001
}
.header-nav {
	background:#fff;
	width:100%;
	z-index:999;
}
.hdr-logo {
	display:block;
	width:250px;
	height:100%;
	z-index:1002;
}
#gnav-btn {
  width:45px;
	position: fixed;
	top: 12px;
	right: 12px;
	height: 35px;
	cursor: pointer;
	z-index:1002;
}
#gnav-btn div {
	position: relative;
	width: 100%;
}
#gnav-btn span {
	width: 41px;
	height: 5px;
	left: 0;
	display: block;
	background: #93b900;
	position: absolute;
	transition: transform .2s ease-in-out;
}
#gnav-btn div :nth-child(1) {
	top: 0;
}
#gnav-btn div :nth-child(2) {
	top: 12px;
}
#gnav-btn div :nth-child(3) {
	top: 24px;
}
#gnav-btn div :hover :nth-child(1) {
	top: 2px;
}
#gnav-btn div :hover :nth-child(3) {
	top: 22px;
}
#gnav-btn.open div :nth-child(1) {
  top:13px;
  transform: rotate(45deg);
}
#gnav-btn.open div :nth-child(2) {
  top: 15px;
  width: 0;
  left: -50%;
}
#gnav-btn.open div :nth-child(3) {
  top:13px;
  transform: rotate(-45deg);
}
#gnav {
	margin-top:54px;
  background: #fff;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  transform: translateY(-500px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition:.3s ease;
}
#gnav nav {
	width:100%;
}
#gnav li{
  display: block;
  color: #333;
  text-decoration: none;
  padding: 5px 0;
  transition:  .2s ease;
	border-bottom: #93b900 2px solid;
}
#mainnav > li {
  list-style: none;
	background: rgba(147,185,0,.5);
}
#gnav > nav > ul > li {
	position:relative;
}
#gnav > nav > ul > li:after {
	content:'';
	display:inline-block;
	width:12px;
	height:12px;
	background-image: url(../img/plus.png);
  background-size: contain;
  vertical-align: middle;
	position:absolute;
	top:10px;
	right:10px;
}
#gnav > nav > ul > li.toggleOpen:after {
	background-image:url(../img/minus.png);
	content:'';
	display:inline-block;
	width:12px;
	height:2px;
  background-size: contain;
  vertical-align: middle;
	position:absolute;
	top:15px;
	right:10px;
}
#gnav.open {
  visibility: visible;
  opacity: 1;
	transform: translateY(0);
}
.subnav {
	background : #fff;
	display:none;
}
.subnav a {
	font-size:14px;
	text-decoration:none;
	color:#333;
}

/* --------------------------------
   main
   -------------------------------- */
/* ------------- common ------------- */
.wrapper {
	width: 90%;
	margin: 0 auto;
}
.title-2 {
	font-size: 20px;
	color: #fff;
	line-height: 40px;
}
.title-2 span {
	display: block;
	width: 90%;
	margin: 0 auto;
}
/* ------------- pickup ------------- */
.pickup {
	background: #eaf8b3;
	padding: 80px 0 20px 0;
}
.pickup .title-2 {
	background: #e18113;
}
.pickup .wrapper {
	max-width: 480px;
	width: 90%;
	display:flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.pickup .content {
	display: block;
	max-width: 170px;
	width: 40%;
	height: 120px;
	border: #787878 solid 4px;
	border-bottom: #787878 solid 10px;
	border-radius: 15px;
	margin: 20px auto;
	color: #333333;
	background: #fff;
	text-align: center;
	position: relative;
	font-family: YuGothic,'Yu Gothic',sans-serif;
}
.pickup .content:nth-of-type(3),
.pickup .content:nth-of-type(4) {
	margin-top: 0;
}
.pickup .content p {
	font-size: 18px;
	font-weight: bold;
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100px;
}
.pickup .content .small {
	font-size: 14px;
}
/* ------------- news ------------- */
.news {
	position: relative;
}
.news .wrapper {
	padding-bottom: 20px;
	font-size: 14px;
}
.news .title-2 {
	background: #93b900;
}
.news .new {
	display: inline;
	font-size: 10px;
	font-weight: normal;
	padding: 1px 5px;
	margin-left: 10px;
	color: #fff;
	background: #ff0000;
}
.all-news-btn {
	display: block;
	border: #fff solid 2px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	padding: 1px 5px;
	position: absolute;
	right: 5%;
	top: 7px;
}
.all-news-btn span:before {
	content:'';
	display: inline-block;
	width: 14px;
	height: 10px;
	background: url(../img/all-news-btn.png);
	margin-right: 2px;
}
#information {
	margin: 10px 0;
}
.news ul li {
	list-style: none;
	border-bottom: #787878 dashed 1px;
	padding-top: 10px;
}
.news ul li span {
	display: block;
	padding-bottom: 10px;
}
.news ul li:last-of-type {
	border-bottom: none;
}
/* ------------- senmonshoku ------------- */
.senmonshoku {
	background: #bbdcf5;
}
.senmonshoku .title-2 {
	background: #368ec8;
}
.senmonshoku ul {
	list-style: none;
	padding: 20px 0;
}
.senmonshoku ul li {
	padding-left: 30px;
	line-height: 32px;
	background: url(../img/link-arrow.png) left 0px top 4px no-repeat;
	background-size: 22px auto;
}
.senmonshoku a {
	color: #333;
}
/* ------------- others ------------- */
.others {
	padding: 20px 0;
}
.others .content {
	display: block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	color: #fff;
	text-align: center;
	margin-bottom: 10px;
	border-radius: 10px;
}
.others .content-1 {
	background: #197e76;
}
.others .content-2 {
	background: #de4422;
}
.others .content-3 {
	background: #3c2982;
}
.others .content-4 {
	background: #85c73f;
}

/* ------------- company ------------- */
.company {
	padding: 20px 0;
	background: #ffffd6;
}
.company .title-2 {
	text-align: center;
	color: #333;
}
.company .wrapper {
	display: flex;
	justify-content: space-between;
}
.company .content {
	display: block;
	width: calc(100% - 20px / 5);
	font-size: 11px;
	line-height: 46px;
	color: #333;
	text-align: center;
	padding: 0 5px;
	background: #fee75b;
	border-radius: 10px;
	border-bottom: #787878 solid 4px;
	border-right: #787878 solid 4px;
	position:relative;
}
.company .long {
	line-height: 15px;
	padding: 8px 5px;
}

/* ------------- footer ------------- */
footer {
	font-size: 12px;
	text-align: center;
	line-height: 15px;
	margin: 5px 0;
}
.prtimes_wrap{
	text-align: left;
	padding-left: 20px;
}
.prtimes_logo{
	height: 13px;
	width: auto;
}
