@charset "utf-8";
* {
margin: 0;
padding: 0;
}
body {
  font-family:'ヒラギノ角ゴ Pro W3','Osaka','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
  margin: 0;
  padding: 0;
}

a{
	text-decoration: none;
}
a:hover{
	opacity:0.7;
}

ul,li{
    list-style: none;
}
img {
	max-width: 100%;
	height: auto;
}

input[type="button"] {
  border: none;
  outline: none;
  background: transparent;
}


#container {
  position: relative;
  height: 100vh;
  margin: 0;
  padding: 0;
/*  background: url(../img/image.png) no-repeat;
  background-size: 200%;*/
  overflow: hidden;
}

.home{
  position: absolute;
    top: -100px;
    left: -100px;
    animation: circle-move-anim 4s linear infinite;
    width: 160%;
}
@keyframes circle-move-anim {
	0% {
		transform: rotate(0deg) translateX(-100px) rotate(0deg);
	}

	100% {
		transform: rotate(360deg) translateX(-100px) rotate(-360deg);
	}
}
/* ログイン */
.login{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.login .form {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 360px;
  margin: 0 30px 100px;
  padding: 45px;
  text-align: center;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  border-radius: 15px;
}
.login .form input {
  font-family: "Roboto", sans-serif;
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 14px;
}
.login .form a {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  outline: 0;
  background: #20ACE8;
  width: 100%;
  border: 0;
  padding: 15px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
  display: block;
  box-sizing: border-box;
}
.login .form a:hover,.form a:active,.form a:focus {
  background: rgba(32, 172, 232, 0.7);
}

/* ダウンロード画面 */
.download,
.splash {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}
.download .btn{
	width: 125px;
    margin: 50px;
}
/* ID入力画面 */
.id {
  	background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center;
}

.id .box p{
	font-size:16px;
	font-weight:bold;
	color:#20ACE8;
	margin:40px 0 20px 0;
}
.id .form{
	margin-bottom:20px;
}
.id .form input {
	outline: 0;
    background: #fff;
    width: 300px;
    border: 1px solid #20ACE8;
    border-radius: 5px;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
}
.id .box .btn_design{
	margin:0 auto;
}
.id .box .btn_design a{
	font-size:16px;
	font-weight:bold;
}
/* 吹き出し本体 */
.soudan{
  position: absolute;
  top:-26px;
  
}
.fukidasi{
  position: relative;
  padding: 10px;
  background-color: #20ACE8;
  border-radius: 8px;
  color:#fff;
  opacity: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  /*animation: poyoyon2 1s ease-in-out forwards;*/
/*  animation: zoomIn 3s linear,
  elasticity 1.5s ease 1; */
}
.fukidasi.in{
  animation: fukidasi_in 1s ease-in-out forwards;
}
.fukidasi.out{
  animation: fukidasi_out 1s;
}
 
@keyframes fukidasi_in {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(1.05, 1.05) translate(0, 0);
  }
  30% {
    transform: scale(1.30, 1.30) translate(0, 0);
  }
  50% {
    transform: scale(1.05, 1.05) translate(0, 0);
  }
  70% {
    transform: scale(1.15, 1.15) translate(0, 0);
  }
  85% {
    transform: scale(0.9, 0.9) translate(0, 0);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  /*
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.98, 0.9) translate(0, 5px);
  }
  30% {
    transform: scale(1.02, 1.0) translate(0, 8px);
  }
  50% {transform: scale(0.98, 1.05) translate(0, -8px);
  }
  70% {
    transform: scale(1.0, 0.9) translate(0, 5px);
  }
  100% {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  */
  /*
  0%, 100% {
    opacity: 1;
  }*/
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fukidasi_out {
  0%  {
    transform: scale(1.0, 1.0) translate(0, 0);
  }
  15% {
    transform: scale(0.08, 0.08) translate(0, 0);
  }
  30% {
    transform: scale(0.06, 0.06) translate(0, 0);
  }
  50% {
    transform: scale(0.04, 0.04) translate(0, 0);
  }
  70% {
    transform: scale(0.02, 0.02) translate(0, 0);
  }
  100% {
    transform: scale(0.0, 0.0) translate(0, 0);
  }
  from { opacity: 1; }
  to { opacity: 0; }
}



.fadeUp{
  animation: zoomIn 3s linear;
}
.fadeOut{
  animation: zoomOut 10s linear ;
}
@keyframes zoomIn{
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1);
    }
}
@keyframes elasticity {

  20% {
    transform: scale3d(1.3, 0.7, 1);
  }

  40% {
    transform: scale3d(0.7, 1.3, 1);
  }

  60% {
    transform: scale3d(1.1, 0.8, 1);
  }

  80% {
    transform: scale3d(0.8, 1.1, 1);
  }

  100%{
    transform: scale3d(1, 1, 1);
  }
}
@keyframes zoomOut{
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

.fukidasi:before{
    position: absolute;
    height: 0;
    width: 0;
    border: solid transparent;
    content: "";
}
.pattern1{
    left:28px;
    }
.pattern2{
    left:-28px;
    }
.pattern3{
    left:-68px;
    }

.pattern1:before {
    top: 72%;
    right: 80px;
    margin-left: -10px;
    border-color: transparent;
    border-top-color: #20ACE8;
    border-right-color: #20ACE8;
    border-width: 8px;
    transform: rotate(60deg);
}
.pattern2:before {
    top: 90%;
    right: 80px;
    margin-left: -10px;
    border-color: transparent;
    border-top-color: #20ACE8;
    border-right-color: #20ACE8;
    border-width: 8px;
    transform: rotate(-20deg);
}
.pattern3:before {
    top: 90%;
    right: 80px;
    margin-left: -10px;
    border-color: transparent;
    border-top-color: #20ACE8;
    border-right-color: #20ACE8;
    border-width: 8px;
    transform: rotate(-20deg);
}

.fukidasi p{
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
}

.balloons {
  position: relative;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
  
.balloons .icon {
	position: absolute;
    top: 55px;
    right: 15px;
    width: 30px;
}

.balloons .new {
	position: absolute;
    top: 55px;
    right: 15px;
    width: 20px;
}

.balloons .flag {
	position: absolute;
    top: 63px;
    left: 14px;
    width: 100px;
}

.balloons a {
  position: absolute;
  left: 0;
  bottom: -110px;
  width: 130px;
  height: 100px;
  background-size: 100px;

}




.balloons .catch {
	margin-top:84px;
	padding:5px;
	font-size: 12px;
	text-align:center;
	color: #3A3A41;
}

.balloons a:nth-of-type(1) {
  top:100px;
  left: 12%;
  background: url(../img/Frame.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(2) {
  top:400px;
  left: 45%;
  background: url(../img/Group250.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(3) {
  top:200px;
  left: 65%;
  background: url(../img/Group243.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(4) {
  top:300px;
  left: 2%;
  background: url(../img/Frame2.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(5) {
  top:500px;
  left: 12%;
  background: url(../img/Frame3.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite;
}

.balloons a:nth-of-type(6) {
  top:800px;
  left: 45%;
  background: url(../img/Frame4.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(7) {
  top:600px;
  left: 65%;
  background: url(../img/Frame5.png) center no-repeat;
  background-size: 70px;
  animation: fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(8) {
  top:700px;
  left: 2%;
  background: url(../img/Frame6.png) center no-repeat;
  background-size: 70px;
  animation:fly_high 25s -13s linear infinite ;
}

.balloons a:nth-of-type(9) {
  top:900px;
  left: 12%;
  background: url(../img/Group253.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(10) {
  top:1200px;
  left: 45%;
  background: url(../img/Frame7.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(11) {
  top:1000px;
  left: 65%;
  background: url(../img/Group244.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(12) {
  top:1100px;
  left: 2%;
  background: url(../img/Frame8.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(13) {
  top:1300px;
  left: 12%;
  background: url(../img/Group250_2.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(14) {
  top:1600px;
  left: 45%;
  background: url(../img/Frame282.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(15) {
  top:1400px;
  left: 65%;
  background: url(../img/Group343.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

.balloons a:nth-of-type(16) {
  top:1500px;
  left: 2%;
  background: url(../img/Group249.png) center no-repeat;
  background-size: 70px;
  animation: fly_high2 25s infinite linear ;
}

@keyframes fly_high {
  from {
    transform: translateY(850%);
  }
  to {
    transform: translateY(-850%);
  }
}


@keyframes fly_high2 {
  from {
    transform: translateY(0);
  }
    to {
    transform: translateY(-1700%);
  }
}




/*ヘッダーをページ上部に固定*/
.sp-fixed-header{
   position: fixed;
   width: 100%;
   top: 0px;
   font-size: 0;
   z-index: 99;
   background: #fff;
}

/*メニューを横並びにする*/
.sp-fixed-header ul{
   display: flex;
   justify-content: space-between;
   align-items: center;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

.sp-fixed-header li{
   justify-content: center;
   align-items: center;
   padding:0;
   font-size: 14px;
   border-right: 1px solid #fff;
}



/*ボタンを調整*/
.sp-fixed-header li a{
   color:#717171;
   text-align: center;
   display:block;
   width: 100%;
   padding:15px 0;
   font-size:20px;
}

.sp-fixed-header .usericon{
	width:30px;
	margin-left: 15px;
}
.sp-fixed-header .tapisserie{
	width:120px;
}.sp-fixed-header .setting{
	width:20px;
	margin-right: 15px;
}

/*メニューをページ下部に固定*/
.sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   z-index: 99;
   background: #fff;
}

/*メニューを横並びにする*/
.sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

.sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 25%;
   margin-top: auto;
   padding:0;
   font-size: 14px;
   border-right: 1px solid #fff;
}


/*ボタンを調整*/
.sp-fixed-menu li a{
   color:#717171;
   text-align: center;
   display:block;
   width: 100%;
   padding:10px 0px;
   font-size:10px;
}

.sp-fixed-menu img{
	height:25px;
}

/* つながり */
.community,
.home_data {
  position: relative;
  margin: 0;
  padding: 0;
  background: url(../img/bg.png) ;
  background-size: 250%;
  overflow: hidden;
}
.community .header,
.home_data .header {
    max-height: 100vh;
    padding: 70px 5% 50px 5%;
    display: flex;
}
.community .header a,
.home_data .header a{
	width: 20px;
    margin: 10px 0;
}
.community .header h2,
.home_data .header h2{
	font-size: 14px;
    width: calc(100% - 30px);
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 7px 0px 0 0px;
    color: #393D45;
    text-decoration: none;
}
.member .header h2{
	padding: 17px 0px 0 0px;
}
.community .data{
	position: relative;
	background:rgba(255,255,255,0.55);
    padding: 30px 5% 20px 5%;
	color:#393D45;
}
.community .data .iconbox{
    position: absolute;
    width: 30%;
    max-width: 135px;
    top: -35px;
    right: 15px;
    border-radius: 10px;
    padding: 8px;
    background-color: #fff;
}
.community .data .icon{
    width: 100%;
/*
	position: absolute;
    width: 30%;
    max-width: 135px;
    top: -35px;
    right: 15px;
*/
}
.community .data .bachi{
    position: absolute;
    left: 1px;
    bottom: 1px;
    width: 30px;
}
.community .data .catch{
	font-size: 12px;
}
.community .data .name{
	font-size: 22px;
	font-weight:bold;
	margin:10px 0 20px 0;
	color: #20ACE8;
}
.community .data .text,
.modalbox .text{
	font-size: 14px;
    margin-bottom: 15px;
}
.community .data .box{
	font-size: 13px;
    color: #fff;
    text-align: center;
    background: #20ACE8;
    border-radius: 15px;
    margin: 20px 0;
    padding: 15px;
}
.community .data .box3{
	font-size: 13px;
    color: #3A3A41;
    text-align: center;
    border:1px solid #3A3A41;
    border-radius: 15px;
    margin: 20px 0;
    padding: 15px;
}
.community .fukidasi2,
.modalbox .fukidasi2{
	position: relative;
    background: #C2E9FF;
    border-radius: 15px;
    margin: 35px 0;
    padding: 20px;
}
.tab-content-wrap .test{
	text-align: center;
    margin-top: 20px;
}
.tab-content-wrap .test img{
    width: 73%;
}
.fukidasi2:before,
.fukidasi2:after {
    position: absolute;
    right: 25px;
    height: 0;
    width: 0;
    border: solid transparent;
    content: "";
}

.fukidasi2:before {
    top: 100%;
    margin-left: -10px;
    border-color: transparent;
    border-top-color: #C2E9FF;
    border-right-color: #C2E9FF;
    border-width: 10px;
}

.fukidasi2:after {
    top: 99%;
    margin-left: -7px;
    border-color: transparent;
    border-top-color: #C2E9FF;
    border-right-color: #C2E9FF;
    border-width: 7px;
}
/*
.community .fukidasi2 img{
	width: 150px;
    position: absolute;
    top: -15px;
}
*/
.community .fukidasi2 .midasi,
.modalbox .fukidasi2 .midasi{
	color:#0096EA;
	font-size:18px;
	font-weight:bold;
	margin:15px 0;
}
.community .fukidasi2 .btn_design,
.modalbox .fukidasi2 .btn_design{
	background: #0096EA;
    width: 60%;
    border-radius: 60px;
    padding: 13px;
    text-align: center;
    margin: 0px auto;
}
.community .fukidasi2 .btn_design a,
.modalbox .fukidasi2 .btn_design a{
	color:#fff;
	font-size: 14px;
	display: block;
	position: relative;
}

.community .fukidasi2 .btn_design a::before,
.modalbox .fukidasi2 .btn_design a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    right: 10px;
    top: 6px;
    transform: rotate(45deg);
}



.community .data h3{
	font-size: 18px;
    font-weight: normal;
    margin: 10px 0;
    color: #20ACE8;
}
.community .data .tag{
	display: flex;
    flex-wrap: wrap;
}
.community .data .tag p{
	background: #fff;
	color: #20ACE8;
    border: 1px solid #20ACE8;
    border-radius: 20px;
    padding: 4px 17px;
    font-size: 11px;
    margin: 3px 5px 3px 0;
}
.community .data .box2{
	margin:40px 0;
}

.community .tab_area{
   background:rgba(255,255,255,0.35);
   width: 100%;
   height: 500px;
   margin-bottom: 300px;
}
.community .tab_area2{
   background:rgba(255,255,255,0.35);
   width: 100%;
   margin-bottom: 100px;
}

.community .tab_menu_data{
   position: static;
}

.community .tab_menu_data ul{
	height: 48px;
	padding:0; /*デフォルトの値をクリア*/
	margin: 0; /*デフォルトの値をクリア*/
	list-style-type:none; /*デフォルトの値をクリア*/
	display:flex; /*ボタンを横並びに*/
	justify-content:space-between; /*ボタンを横幅いっぱいに配置*/
	border-bottom: 1px solid #20ACE8;
}
.community .tab_menu_data li{
	width: 50%;
    color: #717171;
    font-size: 14px;
    padding-top: 13px;
    text-align: center;
    font-weight: bold;
}

.community .tab_menu_data .tab-list_data{
	display:block;
	box-sizing:border-box; /*borderの値を横幅に含める*/
	cursor:pointer; /*オンマウス時にカーソルを指の形に*/
}
.community .tab_menu_data .tab-list_data span{
	font-size: 10px;
    margin-left:3px;
}

.community .tab_menu_data #tab-btn1:checked ~ ul #tab-list1,
.community .tab_menu_data #tab-btn2:checked ~ ul #tab-list2,
.community .tab_menu_data #tab-btn3:checked ~ ul #tab-list3{
	border-bottom: 5px solid #20ACE8;
    width: 110px;
    margin: 0 auto;
    padding-bottom: 9px;
    color: #20ACE8;
}
.community .tab_menu_data .tab-content-wrap{
    position: static;
    width: 100%;
}
.community .tab_menu_data .tab-content{
	display:none; /*初期状態を非表示に*/
}
.community .tab_menu_data #tab-btn1:checked ~ .tab-content-wrap #tab-content1,
.community .tab_menu_data #tab-btn2:checked ~ .tab-content-wrap #tab-content2,
.community .tab_menu_data #tab-btn3:checked ~ .tab-content-wrap #tab-content3{
	display: block;/*対応するボタンにチェックが入ったときに表示*/
}

.community .supporter{
	display: flex;
    flex-wrap: wrap;
    padding: 30px 15px;
}
.community .supporter div{
	width:calc(33% - 30px);
	margin: 15px;
}
.community .supporter p{
	font-size:10px;
	text-align: center;
	color: #3A3A41;
}
.community .tab_menu_data .btn_design{
	background: initial;
    width: 60%;
    border:1px solid #3A3A41;
    border-radius: 60px;
    padding: 13px;
    text-align: center;
    margin: 0px auto;
}
.community .tab_menu_data .btn_design a{
	color:#3A3A41;
	font-size: 14px;
	display: block;
	position: relative;
}


/* コミュニティ詳細 */
.community.detail .header {
    position: relative;
    max-height: 100vh;
    padding:0;
    display: block;
}
.community.detail .image {
	margin-top: 60px;
}
.community.detail .header .icon{
	position: absolute;
    width: 110px;
    top: 200px;
    left: 10px;
    display: block;
}
.community.detail .com_name_box{
	background: rgba(255,255,255,0.6);
    border-bottom: 1px solid #D0D0D0;
}
.community.detail .com_name_box .box1{
	padding: 15px 15px 0 0;
	text-align:right;
}
.community.detail .com_name_box .box1 .btn {
	font-size: 13px;
	font-weight: bold;
    color: #fff;
    text-align: center;
    background: #20ACE8;
    border-radius: 30px;
    margin: 5px 0;
    padding: 8px;
    width: 145px;
    display: inline-block;
}

.community.detail .com_name{
	font-size:20px;
	font-weight:bold;
	margin:0px 0px 0px 20px;
	color:#20ACE8;

}
.community.detail .member{
	display: flex;
    align-items: center;
	font-size:12px;
	margin:10px 0px 0 20px;
	color:#fff;
}
.community.detail .member span{
	margin-left: 10px;
	color: #717171;
}
.community.detail .member img{
	display: block;
    width: 100px;
    height: auto;
    margin: 10px 0;
    text-align: left;
}
.community.detail .new_area{
	display: flex;
	
}.community.detail .new_area p{
	font-size:12px;
	line-height: 175%;
	margin:10px 0;
}
.community.detail .new_area .name{
	font-size:16px;
	font-weight:bold;
	
}
.community.detail .new_area .date{
	font-size:12px;
	color:#8E8E8E;
}
.community.detail .new_area .fbox1{
	margin:15px 0 0 15px;
	
}
.community.detail .new_area .fbox1 img{
	max-width:60px;
	
}
.community.detail .new_area .fbox2{
	padding: 10px;
}
.community.detail .toukou{
	position: fixed;
    bottom: 70px;
    right: 10px;
    width: 50px;
    z-index: 10;
}
/* コミュニティメンバー */
.member .header{
    max-height: 100vh;
    margin-bottom: 10px;
    padding: 50px 5% 0px 5%;
    background: #fff;
}
.home_data .header {
    max-height: 100vh;
    margin-bottom: 0px;
    padding: 50px 5% 0px 5%;
    background: #fff;
}
.member h3{
	font-size: 13px;
    font-weight: normal;
    text-align: center;
    color: #3A3A41;
    margin-bottom: 20px;
}
.member img{
	display: block;
    width: 90%;
    height: auto;
    margin: 10px auto;
}
/* 相談 */
.consul {
  background: url(../img/bg.png);
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.consul .header {
	background: #fff;
    max-height: 100vh;
    padding: 70px 0 10px 0;
    text-align: center;
    font-weight: bold;
}
.consul .tag{
	display: flex;
    flex-wrap: wrap;
    margin: 10px 0;
    padding: 10px 5px;
    overflow-y: scroll;
}
.consul .tag p{
	color: #666666;
    border: 1px solid #666666;
    border-radius: 20px;
    padding: 4px 17px;
    font-size: 11px;
    margin: 3px 5px 3px 0;
}
.consul .tag .active{
	background: #20ACE8;
	color:#fff;
	border: 0;

}
.consul .contents{
	background-color: rgba(255,255,255,.5);
	padding-bottom: 10px;
}

.consul .item{
    padding: 0 0 20px 0;
	border-bottom:1px solid #D9D9D9;
	margin: 0 10px;
}

.consul .item .blue,
.fukidasi2 .blue{
	color:#0080DD;
	font-size: 14px;
	font-weight:bold;
	position: absolute;
    top: 14%;
	left: 25%;
    text-align: center;
    width: 60px 
}
.consul .item .white,
.fukidasi2 .white{
	color:#fff;
	font-size: 14px;
	font-weight:bold;
	position: absolute;
    top: 6px;
    right: 13%;
}
.consul .item h2{
	font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
    color: #0080DD;
}
.consul .item .category,
.fukidasi2 .category{
	display:flex;
	background: #0080DD;
    border-radius: 20px;
    padding: 3px;
    width:160px;
    height: 27px;
    position: relative;
}
.consul .item .category .ase,
.fukidasi2 .category .ase{
	background: #fff;
    border-radius: 20px;
    width:90px;
    position: relative;
}
.consul .item .category .ase img,
.fukidasi2 .category .ase img{
	width: 20px;
	margin: 4px 0 0 5px;
}

.consul h3{
	font-weight:bold;
	font-size: 18px;
	margin: 20px;
}
.consul .item p{
	font-size: 14px;
}
.consul .item .red{
	font-weight:bold;
	font-size: 14px;
	color:#EB5757;
	text-align:center;
	margin: 20px;
}
.consul .hashtag{
	margin: 20px 0 100px 30px;
    display: flex;
    flex-wrap: wrap;
}

.consul .hashtag p{
	position: relative;
	padding-right: 20px;
	font-weight:bold;
	font-size: 20px;
	color:#20ACE8;
}
.consul .hashtag p::before{
	position: absolute;
	content: "#";
	color:#20ACE8;
	left:-16px;
}
.consul .hashtag span{
	font-size:12px;
	margin: 0 5px;
	color:#717171;
	font-weight:normal;
}
.consul .toukou{
	position: fixed;
    bottom: 100px;
    right: 10px;
    width: 50px;
    z-index: 10;
	
}
.consul .more{
	margin:40px;
}
.border_top{
	border-top: 1px solid #8E8E8E;
}
/* アカウント登録ページ */
.about_bg {
  	background: url(../img/bg.png) ;
/*  	margin-bottom: 100px;*/
}
.about {
    height: -webkit-fill-available;
    padding: 200px 5% 100px 5%;
    display: flex;
    flex-flow: column;
    position: fixed;
    justify-content: space-around;
}

.about .question{
	margin:0 10px;
	
}

.profile {
/*    min-height: 100vh;*/
    padding: 200px 5% 90px 5%;
}

.profile .category{
    display: flex;
    flex-wrap: wrap;
}
.profile .category label{
    width: calc(50% - 10px);
    border: 1px solid #3A3A41;
    border-radius: 10px;
    margin: 5px;
    padding: 20px 10px;
    text-align: center;
    box-sizing: border-box;
    font-size: 12px;
    color:#3A3A41;
}
.profile input{
    display: none;
}

.profile .category input:checked+label{
	background: #20ACE8;
	border: 1px solid #20ACE8;
    color: #fff;
}

.profile h3{
	font-size: 15px;
    color: #20ACE8;
    font-weight: normal;
    border-bottom: 1px solid #20ACE8;
    margin-bottom: 10px;
    padding-bottom: 7px;
}
.profile .category2{
    display: flex;
    flex-wrap: wrap;
    margin-bottom:20px;
}
.profile .category2 label{
    border: 1px solid #3A3A41;
    border-radius: 20px;
    margin: 5px;
    padding: 6px 16px;
    text-align: center;
    box-sizing: border-box;
    font-size: 12px;
    color:#3A3A41;
}

.profile .category2 input:checked+label{
	background: #20ACE8;
	border: 1px solid #20ACE8;
    color: #fff;
}

.profile .icon_area{
	width: 40%;
    margin: 0 auto;
}

.profile .midashi{
	color:#20ACE8;
	margin: 25px 10px 0 10px;
	font-size: 12px;
}
.profile .text{
	border-bottom: 1px solid #20ACE8;
	padding: 10px;
}
.profile .text img{
	width:20px;
	float: right;
}
.profile .text2{
	font-size: 12px;
	padding: 30px 25px;
	line-height: 20px;
}

.profile .text2 a{
	color:#20ACE8;
}

.sp-about-header{
    position: fixed;
    width: 100%;
    height: 170px;
    top: 0px;
    z-index: 99;
    background: #fff;
    border-radius: 0 0 30px 30px;
    padding: 20px 20px 25px 20px;
    box-sizing: border-box;
}
.sp-about-header img{
	width:100px;
}
.sp-about-header h2{
	color:#20ACE8;
	margin: 20px 0 10px 0;
    font-size: 18px;
    font-weight:normal;
}
.sp-about-header p{
	color:#020064;
	font-size: 13px;
}

.sp-about-footer{
   position: fixed;
   width: 100%;
   bottom: 0px;
   z-index: 99;
   background: #fff;
   border-radius:30px 30px 0 0;
   padding: 15px 20px;
   box-sizing: border-box;
   display:flex;
   justify-content: space-between;
}
.flex-end{
	justify-content: flex-end;
}

.btn_design{
	background: #2070E8;
    width: 40%;
    border-radius: 60px;
    padding: 13px;
    text-align: center;
}
.btn_design a{
	color:#fff;
	font-size: 15px;
	display: block;
	position: relative;
}

.btn_design_l{
    width: 40%;
    border: solid 1px #3A3A41;
    border-radius: 60px;
    padding: 13px;
    text-align: center;
}
.btn_design_l a{
	color:#3A3A41;
	font-size: 15px;
	display: block;
	position: relative;
}

.btn_design_l a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #3A3A41;
    border-right: solid 1px #3A3A41;
    position: absolute;
    left: 10px;
    top: 8px;
    transform: rotate(-135deg);
}

.btn_design_r{
	background: #20ACE8;
    width: 40%;
    border-radius: 60px;
    padding: 13px;
    text-align: center;
}
.btn_design_r a{
	color:#fff;
	font-size: 15px;
	display: block;
	position: relative;
}

.btn_design_r a::before {
  content: '';
    width: 7px;
    height: 7px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    right: 10px;
    top: 8px;
    transform: rotate(45deg);
}


/* タブメニュー */
.tab_menu{
   position: absolute;
   width: 100%;
   top: 50px;
   z-index: 99;
}
.tab_menu ul{
padding:0; /*デフォルトの値をクリア*/
margin: 0; /*デフォルトの値をクリア*/
list-style-type:none; /*デフォルトの値をクリア*/
display:flex; /*ボタンを横並びに*/
justify-content:space-between; /*ボタンを横幅いっぱいに配置*/
}
.tab_menu li{
	width: 50%;
	color:#717171;
	font-size:13px;
	padding-top: 20px;
	text-align:center;
}

.tab_menu .tab-list{
	display:block;
	box-sizing:border-box; /*borderの値を横幅に含める*/
	cursor:pointer; /*オンマウス時にカーソルを指の形に*/
}

.tab-btn{
display:none; /*タブの切り替えを制御するラジオボタンを非表示に*/
}
 
 
#tab-btn1:checked ~ ul #tab-list1,
#tab-btn2:checked ~ ul #tab-list2{
	border-bottom: 5px solid #3A3A41;
    width: 90px;
    margin: 0 auto;
    padding-bottom: 5px;
    color: #3A3A41;
}
.tab-content-wrap{
   position: absolute;
   width: 100%;
   top: 70px;
   z-index: 99;
}
.tab-content{
display:none; /*初期状態を非表示に*/
}
#tab-btn1:checked ~ .tab-content-wrap #tab-content1,
#tab-btn2:checked ~ .tab-content-wrap #tab-content2{
	display: block;/*対応するボタンにチェックが入ったときに表示*/
}

/* 検索窓 */
.search{
  	box-sizing: border-box;
    position: relative;
    border: 2px solid #717171;/*#20ACE8;*/
    display: block;
    padding: 10px 0px 10px 50px;
    border-radius: 30px;
    height: 37px;/*50px;*/
    width: 90%;
    overflow: hidden;
    margin: 10px auto;
    background: #fff;
}
.search input[type="text"]{
  border: none;
  height: 1.0em;/*2.0em;*/
}
.search input[type="text"]:focus {
  outline: 0;
}
.search input[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.3em;
  border: none;
  background: none;
  color: #717171;/*#20ACE8;*/
  position: absolute;
  width: 2.5em;
  height: 2.0em;/*2.5em;*/
  left: 0;
  top: -4px;
  outline : none;
}



/* === モーダル非表示（初期） ============================== */
.modalNoDisp {
  display : none;
}

/* === モーダルバックグランド ============================== */
.modalBg {
  position   : fixed;
  overflow   : hidden;
  top        : 0;
  right      : 0;
  bottom     : 0;
  left       : 0;
  background : radial-gradient(circle at 50% 50%,
                               rgba(0, 0, 0, 0.90),
                               rgba(0, 0, 0, 0.70));
  z-index    : 10;
}

/* === モーダルバックグランド：OPEN時のアニメーション ====== */
.modalBgOpen {
  animation  : bgOpenAnime 0.3s ease;
}
@keyframes bgOpenAnime {                     /* フェードイン */
   0% { opacity: 0 }
 100% { opacity: 1 }
}

/* === モーダルバックグランド：CLOSE時のアニメーション ===== */
.modalBgClose {
  bottom     : 100%;
  animation  : bgCloseAnime 0.3s ease;
}
@keyframes bgCloseAnime {                     /* フェードイン */
   0% { opacity: 1; bottom: 0 }
 100% { opacity: 0; bottom: 0 }
}

/* === モーダルウインド ==================================== */
.modalBg .modalWindow {
                             /* モーダルウインドを中心に表示 */
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 11;
    width: 100%;
    background: #F3F3F3;
    border-radius: 20px 20px 0 0;
    font-size: 16pt;
    text-align: center;

    overflow-y: scroll;
    max-height: 83%;
}

.modalBg .modalWindow .header{
	display: flex;
	margin: 10px 20px;
	color: #393D45;
}

.modalBg .modalWindow .close{
	font-size: 30px;
    text-align: left;
}
.modalBg .modalWindow .midasi{
	width: 100%;
    margin-top: 9px;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
}

.modalBg .modalWindow .box{
    margin: 10px 20px 20px 20px;
}

.modalbox{
	text-align:left;
	margin: 0 20px;
}
.modalbox .btn{
	font-size: 13px;
    color: #fff;
    text-align: center;
    background: #2070E8;
    border-radius: 15px;
    margin: 20px 0;
    padding: 15px;
}

.modalbox .info{
    background: #fff;
    border-radius: 15px;
    margin: 30px 0;
    padding: 20px;
    text-align:left;
}
.modalbox .member_info{
    border-radius: 15px;
    margin: 0;
    padding: 0px 20px 0 0px;
    text-align:left;
}
.modalbox .info .midasi2{
	font-size: 16px;
    color: #20ACE8;
    font-weight:bold;
}
.modalbox .info .flex,
.modalbox .member_info .flex{
	display:flex;
}
.modalbox .info .flex .flexbox1,
.modalbox .member_info .flex .flexbox1{
	width:35%;
}
.modalbox .info .flex .flexbox1 .iconbox,
.modalbox .member_info .flex .flexbox1 .iconbox{
    position: absolute;
    border-radius: 10px;
    padding: 6px;
    background-color: #fff;
    width: 23%;
}
.modalbox .info .flex .flexbox1 .iconbox .bachi,
.modalbox .member_info .flex .flexbox1 .iconbox .bachi{
    position: absolute;
    left: 1px;
    bottom: 1px;
    width: 25px;
}
.modalbox .info .flex .flexbox2,
.modalbox .member_info .flex .flexbox2{
	margin:10px 10px 20px 10px;
	width: 65%;
}
.modalbox .info .catch,
.modalbox .member_info .catch{
	font-size: 12px;
}
.modalbox .info .name {
    font-size: 18px;
    font-weight: bold;
    color: #393D45;
}
.modalbox .member_info .name {
    font-size: 18px;
    font-weight: bold;
    color: #20ACE8;
}
.modalbox .info .btn2,
.modalbox .member_info .btn2{
	font-size: 13px;
    color: #fff;
    text-align: center;
    background: #20ACE8;
    border-radius: 30px;
    margin: 5px 0;
    padding: 8px;
    width: 100%;
}
.modalbox .btn_design2,
.consul .btn_design2 {
    border: 1px solid #3A3A41;
    width: 70%;
    border-radius: 60px;
    padding: 13px;
    text-align: center;
    margin: 0 auto 30px auto;
    font-size: 14px;
    display: block;
}
.modalbox table{
	width: 100%;
	border-spacing: 0;
}
.modalbox th,
.modalbox td{
	position:relative;
	font-size: 14px;
	padding:10px 0;
	padding-left: 15px;
	border-bottom: 1px solid #DBDADA;
	color:#393D45;
	
}
.modalbox .bd_none{
	border-bottom: 0;
}
.modalbox th::before{
	position:absolute;
	content: "";
	width: 0;
	height: 0;
  	border-style: solid;
 	border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #000;
    border-right: 0;
    top: 41%;
    left: -1px;
}



/* === モーダルウインド：OPEN時のアニメーション============= */
.modalBgOpen .modalWindow {
  animation     : modalOpenAnime 0.3s ease;
}
@keyframes modalOpenAnime {                      /* 下→中心 */
   0% { top : 150% }
 100% { top : 50%  }
}

/* === モーダルウインド：CLOSE時のアニメーション============ */
.modalBgClose .modalWindow {
  animation     : modalCloseAnime 0.3s ease;
}
@keyframes modalCloseAnime {                      /* 中心→下 */
   0% { top : 50%  }
 100% { top : 150% }
}



.sliderArea {
  margin: 60px auto 0 auto;
}

.slider_thumb{
    width: 100%;
    margin-bottom:10px;
    background: url(../img/navi.png) no-repeat;
    background-size: 100%;
    border-bottom: 1px solid #3A3A41;
}

.slider_thumb .bd1{
	border-bottom: 5px solid #3A3A41;
    width: 50%;
    margin: 30px 0 0px 30%;
}


.sliderArea.w300 {
  max-width: 300px;
}

.slick-slide {
  margin: 4px 5px 0 5px;
}

.slick-slide .com_img,
.member .com_img{
	height: calc(100vh - 220px);
    overflow-y: scroll;
    width: 100%;
}
.home_data .com_img{
	height: calc(100vh - 100px);
    overflow-y: scroll;
    width: 100%;
}
.slick-slide img {
  width: 90%;
  height: auto;
  margin: 10px auto;
}

.slider_thumb div {
  width: 100%;
  height: auto;
}
.thumb div,
.member{
    position: relative;
}
.thumb .refresh,
.member .refresh{
	position: absolute;
    bottom: 30px;
    right: 20px;
    width: 36px;
    height: auto;
    z-index: 10;
}
