#Lp__globalNavi {
  z-index: 1001;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  display: block;
  width: 0;
  top: 0;
  right: 50%;
  margin-right: -500px;
  background-color: #000;
  overflow: hidden;
  opacity: 0;
  font-size: 1.5em;
  color: white;
  text-align: center;
  -webkit-transition: 200ms all ease-out;
  -o-transition: 200ms all ease-out;
  transition: 200ms all ease-out;
}
#Lp__globalNavi.active {
  width: 320px;
  opacity: 1;

}
#Lp__globalNavi #Lp__globalNavi__container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 320px;
  padding: 25px 16px 20px 16px;
}
#Lp__globalNavi ul {
  margin: 0;
  list-style: none;
}
#Lp__globalNavi li {
  position: relative;
  margin: 0.5em 0;
  /*background-color: #101a26;*/
  text-align: center;
}
/*#Lp__globalNavi li:after,
#Lp__globalNavi li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, color-stop(1%, #1e5799), color-stop(20%, #55b5ba), color-stop(80%, #55b5ba), to(#1e5799));
  background: -o-linear-gradient(left, #1e5799 1%, #55b5ba 20%, #55b5ba 80%, #1e5799 100%);
  background: linear-gradient(to right, #1e5799 1%, #55b5ba 20%, #55b5ba 80%, #1e5799 100%);
}
#Lp__globalNavi li:before {
  top: auto;
  bottom: 0;
}*/
#Lp__globalNavi li a {
  display: block;
  padding: 5px 20px;
  color: #fff;
  text-decoration: none;
  background-color: #101a26;
  -webkit-transition: 200ms all linear;
  -o-transition: 200ms all linear;
  transition: 200ms all linear;
}
#Lp__globalNavi li a:hover {
  background-color: #1e5291;
}
#Lp__globalNavi #Lp__globalNavi__header {
  color: #55b5ba;
  text-align: center;
  font-weight: bold;
}
#Lp__globalNavi__toggle {
  z-index: 1002;
  position: fixed;
  display: block;
  top: 12px;
  right: 50%;
  margin-right: -500px;
  padding: 10px;
  /*border-radius: 100px;*/
  background-color: #00096e;
}
#Lp__globalNavi__toggle.active span:nth-child(1) {
  -webkit-transform: translateY(18px) rotate(-45deg);
      -ms-transform: translateY(18px) rotate(-45deg);
          transform: translateY(18px) rotate(-45deg);
}
#Lp__globalNavi__toggle.active span:nth-child(2) {
  opacity: 0;
}
#Lp__globalNavi__toggle.active span:nth-child(3) {
  -webkit-transform: translateY(-18px) rotate(45deg);
      -ms-transform: translateY(-18px) rotate(45deg);
          transform: translateY(-18px) rotate(45deg);
}
#Lp__globalNavi__toggle #Lp__globalNavi__toggle__container {
  position: relative;
  width: 46px;
  height: 40px;

}
#Lp__globalNavi__toggle span {
  position: absolute;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  -webkit-transition: 200ms all ease;
  -o-transition: 200ms all ease;
  transition: 200ms all ease;
}
#Lp__globalNavi__toggle span:nth-child(1) {
  top: 0;
}
#Lp__globalNavi__toggle span:nth-child(2) {
  top: 46%;
}
#Lp__globalNavi__toggle span:nth-child(3) {
  bottom: 0;
}
@media (max-width: 414px) {
  #Lp__globalNavi {
    right: 0;
    margin-right: 0;
    font-size: 18px;
  }
  #Lp__globalNavi__toggle {
    top: 0;
    right: 0;
    margin-right: 0;
  }
}
/*ハンバーガー*/

.btn,
a.btn,
button.btn {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
	margin-top: 30px;
	margin-bottom: 30px;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
   border-radius: 100vh;
}


.shareList {
	list-style:none;
	display: flex;
	justify-content: flex-end;
	flex-wrap:wrap;
	padding:0;
	margin:-5px 0 0 -5px;
}
.shareList__item {
	flex-grow: 1;
	height:50px;
	line-height:50px;
	min-width:180px;
	text-align:center;
	margin:9px 0 0 5px;
}
.shareList__link {
	display:block;
	color:#ffffff;
	text-decoration: none;
	transition: .2s;
	border:2px solid;
	border-radius: 5px;
}
.shareList__link::before{
	font-size:16px;
}
.shareList__link::after{
	content:attr(title);
	font-size:14px;
	font-weight:700;
	vertical-align: top;
	margin-left:5px;
}


.shareList__link.icon-twitter{background:#55acee;}
.shareList__link.icon-twitter:hover{color:#55acee; background:#ffffff; border-color:#55acee;}

.shareList__link.icon-facebook{background:#3B5998;}
.shareList__link.icon-facebook:hover{color:#3B5998; background:#ffffff; border-color:#3B5998;}

.shareList__link.icon-google-plus{background:#dd4b39;}
.shareList__link.icon-google-plus:hover{color:#dd4b39; background:#ffffff; border-color:#dd4b39;}

.shareList__link.icon-hatebu{background:#008FDE;}
.shareList__link.icon-hatebu:hover{color:#008FDE; background:#ffffff; border-color:#008FDE;}

.shareList__link.icon-pocket{background:#EB4654;}
.shareList__link.icon-pocket:hover{color:#EB4654; background:#ffffff; border-color:#EB4654;}

.shareList__link.icon-rss{background:#ff9900;}
.shareList__link.icon-rss:hover{color:#ff9900; background:#ffffff; border-color:#ff9900;}

.shareList__link.icon-feedly{background:#6cc655;}
.shareList__link.icon-feedly:hover{color:#6cc655; background:#ffffff; border-color:#6cc655;}

.shareList__link.icon-pinterest{background:#cb2027;}
.shareList__link.icon-pinterest:hover{color:#cb2027; background:#ffffff; border-color:#cb2027;}

.shareList__link.icon-linkedin{background:#0e76a8;}
.shareList__link.icon-linkedin:hover{color:#0e76a8; background:#ffffff; border-color:#0e76a8;}

.shareList__link.icon-line{background:#1dcd00;}
.shareList__link.icon-line:hover{color:#1dcd00; background:#ffffff; border-color:#1dcd00;}
