@charset "UTF-8";

html {
	font-size: 62.5%;
}
body {
	font-size: 1.4rem;	
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝','Yu Mincho', '游明朝体', 'YuMincho','ＭＳ Ｐ明朝', 'MS PMincho', serif;
	font-weight: 500;
    color: #333;
    background: #fff;   
}
a:link, a:visited, a:active {
	color: #888888;
	text-decoration: none;
}
img {
	max-width: 100%;
}
p {
	font-size: 1.4rem;
	line-height: 1.7;	
}


a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
ul {
    list-style: none;
}

li {
    list-style: none;
}

/*-------------------------------------------------
  フォームボタン
-------------------------------------------------*/
#formBtn {
    position: fixed;
}

#formBtn a { 
    display: block;
    background-color: #f382ae;
    color: #fff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;   
}
/*-------------------------------------------------
  フォントカラー
-------------------------------------------------*/
.fc__pink {
    color: #f382ae;
}

.fc__green {
    color: #06c755;
}

.fc__red {
    color: #d70e18;
}

/*-------------------------------------------------
  PAGE TOP
-------------------------------------------------*/
#page-top {
    position: fixed;
}

#page-top a {   
    display: block;
    background-color: #f6adc9;
    color: #fff;
    text-align: center;
    text-decoration: none;
    width: 55px;
    height: 55px;
    border-radius: 60px;
}

#page-top a::before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    display: inline-block;
    transform: rotate(-45deg);
}

#page-top a:hover {
    background-color: #fec7c9;
    text-decoration: none;
}

/*-------------------------------------------------
    タブ
-------------------------------------------------- */

.tab {
  margin: 0 auto;
  padding: 30px 20px;
}

.tab__list {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}

.tab__item {
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 8px 0;
  text-align: center;
  width: 15%;
}
.tab__item__web {
  background: #fff;
  border: 1px solid #f382ae;
  color: #f382ae;
}
.tab__item__line {
  background: #fff;
  border: 1px solid #06c755;
  color: #06c755;
}
.tab__item__karaoke {
  background: #fff;
  border: 1px solid #d70e18;
  color: #d70e18;
}
@media screen and (min-width: 768px) {
  .tab__item {
    font-size: 1.8rem;
    padding: 16px 0;
  }
}

.tab__contents {
  display: none;
  padding: 30px 0 0;
}

.is-btn-active {
  background: #111111;
  color: #fff;
  font-weight: bold;
}

.is-contents-active {
  display: block;
}

@media screen and (max-width: 480px) {
  .tab {
    padding: 20px 15px;
  }

  .tab__contents {
    padding: 10px 0 0;
  }
  
  .tab__item {
    width: 30%;
    margin: 0 0 10px;
  }  
}  

.tab__menu .tab__item {
  display: inline-block;
  width: 30%;
  text-align: center;
}

  
@media screen and (max-width: 480px) {
  .tab__menu .tab__item {
    margin-right: 1.9%;
  }
} 

.tab__menu .tab__item:last-of-type {
  margin-right: auto;
}
  
.tab input[name="tab__item"] {
  display: none;
}

#tab01:checked ~ #tab01,
#tab02:checked ~ #tab02,
#tab03:checked ~ #tab03 {
  display: block;
}

.tab input:checked + .tab__item__web {
  background-color: #f382ae;
  color: #ffffff;
}

.tab input:checked + .tab__item__line {
  background-color: #06c755;
  color: #ffffff;
}

.tab input:checked + .tab__item__karaoke {
  background-color: #d70e18;
  color: #ffffff;
}
  
  /*WEB応募ボタン*/
.applicationBtn__web a {
  display: block;
  max-width:340px;
  height: 55px;
  line-height: 55px;
  font-size: 2rem;
  color: #fff;
  background: #f382ae;
  text-align: center;
  border-radius: 6px;
  margin: 2em auto 0;
}
/*LINE応募ボタン*/
.applicationBtn__line a {
  display: block;
  max-width:340px;
  height: 55px;
  line-height: 55px;
  font-size: 2rem;
  color: #fff;
  background: #06c755;
  text-align: center;
  border-radius: 6px;
  margin: 2em auto 0;
}
/*カラオケ応募ボタン*/
.applicationBtn__karaoke a {
  display: block;
  max-width:340px;
  height: 55px;
  line-height: 55px;
  font-size: 2rem;
  color: #fff;
  background: #d70e18;
  text-align: center;
  border-radius: 6px;
  margin: 2em auto 0;
}