@charset "UTF-8";

/******************************************************************************
  .orig_wrapFloating
******************************************************************************/
.btmFloating{
  width: 100%;
  z-index:999;
}
.orig_wrapFloating .orig_floating{
  background: rgba(0,0,0,0.8);
  text-align: center;
}
.btmFloating.close .orig_wrapFloating,
.btmFloating.last .orig_wrapFloating{
  background: rgba(0,0,0,1);
}

.orig_wrapFloating{
  position: relative;
}
.orig_wrapFloating .orig_floating .orig_close{
    position: absolute;
    right: 0;
    top: -39px;
    padding: 10px;
    background: #000;
    opacity: 0.8;
}
.btmFloating.close .orig_close,
.btmFloating.last .orig_close{
  display: none;
}
.orig_wrapFloating .orig_floating .orig_close a{
  display: block;
  width: 19px;
  height: 19px;
  background: url("https://www.ntt.com/content/dam/nttcom/hq/jp/business/mobile/charge/home_5g/img/floating/btn_floating_close.png") center center no-repeat;
  transition-duration : 0.3s ;
  -webkit-transition : all 0.3s ease 0s ;
  -moz-transition : all 0.3s ease 0s ;
  -o-transition : all 0.3s ease 0s ;
}
.orig_wrapFloating .orig_floating .orig_close a span{
  display: none;
}
.orig_wrapFloating .orig_floating ul{
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width:100%;
  max-width: 928px;/*1160の80%*/
  margin: 0 auto;
  padding: 15px 0;
  height:80px;
}
.orig_wrapFloating .orig_floating ul li{
  width: calc((100% - 60px) / 3);
  /*ボタン背景下地*/
  background: #FFF;
  border-radius: 0.6em;
}
.orig_wrapFloating .orig_floating ul li a{
  font-size:16px;
}
.orig_wrapFloating .orig_floating ul li a:hover,
.orig_wrapFloating .orig_floating .close a:hover{
  text-decoration: none;
  opacity : 0.7 ;
}

@media screen and (max-width: 768px){
  .orig_wrapFloating .orig_floating ul{
    width: 100%;
    padding: 10px;
  }
  .orig_wrapFloating .orig_floating ul li{
    width: calc((100% - 20px) / 3);
  }
}
@media screen and (max-width: 768px){
  .orig_wrapFloating .orig_floating ul li a{
    font-size:12px;
  }
}

/*このページのトップへ フロートの高さ分の下余白をつける*/
.BackToTop{
    margin-bottom:79px;/*1pxはきれいに見えるようにツメ*/
}
/*ボタン内の改行*/
.orig_floating .only-sp{
	display: none !important;
}
@media screen and (max-width: 480px){
	.orig_floating .only-sp {
		display: block !important;
	}
}

/******************************************************************************
  ボタン
******************************************************************************/
/*黄色ボタン*/
.yellow-btn {
	display:inline-block;
	position: relative;
	transition:0.5s;
	color: #000 !important;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	background: #ffd601;/*黄*/
	border-radius: .5em;
	border: .15em solid #000 !important;/*黒*/
	padding: 0.8em 2.5em 0.8em 1.5em;
	width:100%;
	font-size:20px;
}
.yellow-btn:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1em;
	margin: auto;
	width: .5em;
	height: .5em;
	border-top: .15em solid #000;/*黒*/
	border-right: .15em solid #000;/*黒*/
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.yellow-btn:hover{
	opacity:.7;
	transition:0.5s;
}
@media screen and (max-width:768px) {
	.yellow-btn {
		font-size:18px;
	}
}
/*赤色ボタン*/
.red-btn {
	display:inline-block;
	position: relative;
	transition:0.5s;
	color: #FFF !important;
	font-weight: bold;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	background: #C03;/*赤*/
	border-radius: .5em;
	border: .15em solid #000 !important;/*黒*/
	padding: 0.8em 2.5em 0.8em 1.5em;
	width:100%;
	font-size:20px;
}
.red-btn:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1em;
	margin: auto;
	width: .5em;
	height: .5em;
	border-top: .15em solid #FFF;/*白*/
	border-right: .15em solid #FFF;/*白*/
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.red-btn:hover{
	opacity:.7;
	transition:0.5s;
}
@media screen and (max-width:768px) {
	.red-btn {
		font-size:18px;
	}
}