@charset "utf-8";



/*############################################################################*/
/*

ローカルメニューで使うCSS定義

*/
/*############################################################################*/



.localmenu {
  margin: 0;
  padding: 20px 0 0 0;
  background: url(../img/common/dot_pattern.png) center center;
  background-size: 12px;
  background-color: #406376;
}

.localmenu::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 50%;
  background: url(../img/common/gogo.png) top left no-repeat;
  background-size: 105%;
}

.localmenu ul {
  margin: 0 auto;
  padding: 40px 0;
  list-style: none;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.localmenu a {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}

.localmenu a:hover {
  opacity: 0.8;
}

.localmenu ul li:nth-of-type(1) a {
  display: block;
  overflow: hidden;
  margin: 0;
  padding-top: 100px;
  height: 0 !important;
  line-height: 250%;
  width: 100%;
  background: url(../img/common/pagemenu1.svg) top left no-repeat;
  background-size: 80%;
}

.localmenu ul li:nth-of-type(2) a {
  display: block;
  overflow: hidden;
  margin: 0;
  padding-top: 100px;
  height: 0 !important;
  line-height: 250%;
  width: 100%;
  background: url(../img/common/pagemenu2.svg) top left no-repeat;
  background-size: 80%;
}

.localmenu ul li:nth-of-type(3) a {
  display: block;
  overflow: hidden;
  margin: 0;
  padding-top: 100px;
  height: 0 !important;
  line-height: 250%;
  width: 100%;
  background: url(../img/common/pagemenu3.svg) top left no-repeat;
  background-size: 80%;
}

.localmenu ul li:nth-of-type(4) a {
  display: block;
  overflow: hidden;
  margin: 0;
  padding-top: 100px;
  height: 0 !important;
  line-height: 250%;
  width: 100%;
  background: url(../img/common/pagemenu4.svg) top left no-repeat;
  background-size: 80%;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*SP調整*/

@media (max-width: 767px) {

.localmenu ul {
	padding: 40px 50px;
  grid-template-columns: 1fr;
}

.localmenu ul li:nth-of-type(1) a,
.localmenu ul li:nth-of-type(2) a,
.localmenu ul li:nth-of-type(3) a,
.localmenu ul li:nth-of-type(4) a {
  padding-top: 90px;
	background-size: 100%;
}

.localmenu::before {
  width: 100%;
  height: 80px;
  background: url(../img/common/gogo.png) top left no-repeat;
  background-size: 100%;
}

} /*SP調整ここまで*/



/**/