@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}
.overlay {
display: none;
width: 100%;
height: 100%;
background: rgba(167, 183, 196, 0.432);
position: fixed;
z-index: 1;
}
.btn_area {
width: 100%;
max-width: 400px;
height: auto;
position: absolute;
/* top: 50%;
left: 50%; */



/* transform: translate(-50%,-50%); */
bottom: 0;
background: #fff;
text-align: left;
z-index: 2;
border-radius: 8px 8px 0 0;
}
.btn_area .ttl {
font-weight: bold;
font-size: 16px;
padding: 15px 12px 0 15px;
margin: 0;
}
.btn_area p {
padding: 8px 15px 10px 15px;
font-size: 16px;
line-height: 1.3;
}
.btn_area button {
display: block;
margin: 0 auto;
width: 300px;
background: #333;
color: #fff;
padding: 14px 20px;
border: none;
}
.btn_area button:hover {
background: #777;
}





/* tab */
#select-language h2{
  margin: 0 !important;
}
/*タブを横並びに*/
.tab-label {
  display: block;
  float: left;
}
.tab-label-heading:not(:last-of-type) .tab-label{
  margin-right: 2px!important;
}
/*ラジオボタンを全て非表示に*/
input[name="tab-radio"] {
  display: none;
}
.tab-label{
  background-color: #b4bdbf!important;
  color: #525252!important;
  cursor: pointer!important;
  font-size: 15px!important;
  padding: 7px 20px!important;
  transition: .3s;
}
.tab-label:hover{
  opacity: .7!important;
}
/* 選択されたタブの見た目 */
input:checked + h2 > .tab-label{
  color: #000!important;
  background-color: #e2e8eb!important;
  transition: .3s;
}
.tab-panel{
  background-color: #e2e8eb;
  height: auto;
  clear: both;
  display: none; /*パネルを非表示*/
  border-radius: 0 0 6px 6px;
}
/* 選択されているチェックボックスに応じてパネルを表示 */
#tab-a:checked ~ .panel-a,
#tab-b:checked ~ .panel-b,
#tab-c:checked ~ .panel-c{
  display: block;
}
.tab-panel div{
  /* display: flex; */
  height: 100%;
  text-align: left;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.4;
}
b{
  font-weight: 600;
}
