@charset "utf-8";

/* common */

html{
  font-size:80px;
}
@media (max-width: 1200px) and (min-width:800px){
  html{
    font-size:55px;
  }

}

/*medium screen*/
@media (max-width: 799px) and (min-width:600px){
  html{
    font-size:45px;
  }

}

/* small screen */
@media (max-width: 599px){
  html{
    font-size:40px;
  }

}

@media (max-width: 400px){
  html{
    font-size:30px;
  }

}

body{
  font-size: 0.16rem;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}




*{
  padding:0;
  margin: 0;
  
}

ul li{
  list-style-type: none;
 
}

a{
  color:white;
  text-decoration: none;
}

/* header */

header .container{
  background-image:url("../img/back.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 4rem;
  margin: 0;

}

header .header_nav{
  width: 90%;
  margin:0 auto;
   padding-top: 0.32rem; 
  display: flex;
  justify-content:space-between;
}

header ul{
  display: flex;
}

header ul li{
  font-size: 0.24rem;
  margin-top: 0.16rem;
  margin-right:0.16rem;
  font-weight: bolder;
}

@media (max-width: 799px){
  .normal_nav{
    display: none;
  }
 
 }
 
 @media (min-width:800px){
  .nav{
    display: none;
  }
 
 }
 .nav_list{
  display: flex;
  flex-direction:column;
}

.nav_item a{
  font-size:0.5rem;
  padding-bottom: 0.8rem;
 }
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 0.6rem;
  width: 0.6rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: rgb(255, 255, 255);
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0%;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #0394F2;;
  transition: .5s;
  text-align: center;
  padding-top: 20px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
 
  

h1{
  color: white;
  font-size: 0.8rem;
  text-align: center;
  padding: 0.4rem;
}


.logo{
  width:3.2rem;
  height:0.64rem;
}

/* main */

h2{
  text-align: center;
  font-size: 0.48rem;
  margin: 0.32rem;
  padding:0.1rem;
  background-color: #0394F2;
  color: #ffffff;
  border-radius: 0.1rem;
  box-shadow: 0 0.1rem 0.25rem 0 rgba(0, 0, 0, .5);
 
}



.kc_form{
    width: 70%;
    margin: 0 auto;
  
}

.kc_creative_required{
	background: #f2859d;
}
.kc_creative_not_required{
	background: #7fbee7;
}
.kc_creative_label_notice{
	color: black;
	/* margin: 0.05rem; */
	display: inline-block;
	font-style: normal;
	line-height: 0.24rem;
	padding: 0.06rem 0.05rem;
	
}
.kc_creative_label{
	color: #666;
	display: block;
  font-size: 0.32rem;
	padding-bottom: 0.05rem;
}
.kc_creative_note{
	margin: 0 0.05rem;
	color: #999;
}
.kc_creative_text{
	width: 100%; 
	-webkit-flex: 1 0 1rem;
	-ms-flex: 1 0 1rem; 
	flex: 1 0 1rem;
	padding: 0.13rem;
	border-radius: 0.02rem;
	outline: none;
	color: #333;
	box-shadow: inset 0.01rem 0.01rem 0.02rem 0 rgba(0,0,0,.1);
	border: 0.01rem solid rgba(0,0,0,.3);
	background-color: hsla(0,0%,39%,.1);
}
.line{
  width: auto;
  
}
input[type="radio"]{
  vertical-align:middle;
  font-size: 0.32rem;
  text-align: center;
  line-height: 50%;
  margin-right: 0.02rem;
}

.kc_creative_submit{
	background-color: #50C8A7;
	color: #184E41;
	box-shadow: 0rem 0rem 0.15rem 0rem #50C8A7;
	text-align: center;
	border-radius: 0.02rem;
	min-width: 1rem;
	padding: 0.02rem 0.1rem;
	cursor: pointer;
	border-style: none;
}

p{
  font-weight: bold;
  font-size: 0.36rem;
  text-align: center;
}







/* footer */
footer {
 
  background-image: url("../img/footer_background.png");
  background-size: cover;
  width: 100%;
  height: 4rem;
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  position: relative;
  padding-bottom: none;
  }


footer .footer_nav{
  width: 90%;
  display: flex;
  justify-content:space-between;
  padding-top: 1.4rem;
  color:white;
  margin:0 auto;
  text-align: center;
  
}

footer ul{
  display: flex;
}

footer ul li{
  margin-top: 0.16rem;
  margin-right:0.16rem;
  font-size: 0.24rem;
  font-weight: bolder;
}

@media (max-width: 900px){
  footer .footer_nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1.4rem;
    color:white;
    margin:0 auto;
    text-align: center;
    
  }
  footer ul li{
    margin-top: 0.16rem;
    margin-right:0.16rem;
    font-size: 0.28rem;
    font-weight: bolder;
  }
  

}

footer p {
  color:white;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;

  }
