@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
}

/*-----基本-----*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  background-color: #2B2B2B;
  font-family: "Rajdhani", sans-serif;
  color: #FAFAFA;
}
h2 {
  font-size: 3.2rem;
  font-weight: bold;
  opacity: 0.7;
  margin-bottom: 4rem;
}
h3 {
  font-size: 2rem;
  font-weight: bold;
}
p {
  font-size: 1.6rem;
  line-height: 1.5;
}
.inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 80px;
}
a {
  color: inherit;
}
a:hover {
  cursor: pointer;
}
.center {
  text-align: center;
}
/*-----ヘッダーロゴ-----*/
.header_logo {
  cursor: pointer;
}

/*-----１か月無料ボタン-----*/

.button {
  display: inline-block;
  width: 50%;
  text-align: center;
  text-decoration: none;
  line-height: 30px;
  outline: none;
  color: #fafafa;
  background: linear-gradient(to right,#7f1184,#FB4D8A);
  background-position: 0% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
	border-radius: 9999px;	
}
.button:hover {
  color: #fafafa;
  background-position: 100% 51%;
}


/*-----ナビゲーション-----*/
nav li a {
  color: #FAFAFA;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  padding-top: 40px;
  vertical-align: bottom;
}
.desktop_nav {
  display: none;
}
/*-----ハンバーガーメニュー-----*/
.hamburger_logo {
  padding: 20px 8px 0 0;
  width: 30px;
  height: 30px;
  position: relative;
}
.hamburger_menu {
  position: fixed;
  top: 40px;
  right: 20px;
  z-index: 100;
}
#menu_toggle {
  display: none;
}
.menu_btn {
  cursor: pointer;
}
#menu_toggle:checked ~ .menu_btn .menu-icon {
  opacity: 0;
}
#menu_toggle:checked ~ .menu_btn .close-icon {
  opacity: 1;
}
.drawer_menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.8);
  transition: top 0.3s ease-in-out;
  border-bottom-left-radius: 9999px;
  border-bottom-right-radius: 9999px;
  text-align: center;
}
#menu_toggle:checked ~ .drawer_menu {
  top: 0;
}
.drawer_menu ul {
  padding: 50px 0 20px 0;
  text-align: center;
}
.drawer_menu ul li {
  margin-bottom: 4rem;
}
.drawer_menu ul li a {
  color: #FAFAFA;
  font-size: 2rem;
}

#s_ja,#s_ja2{
		font-size: 1.4rem;
	}
.drawer_menu ul li a:hover {
  color: #ff1493;
  transition: color 0.3s ease;
}
/* -----SVGアイコン▲-----*/
.svg_icon_container {
  text-align: center;
  margin-top: auto;
}
.svg_icon {
  width: 40px;
  height: 40px;
  fill: #fafafa;
  cursor: pointer;
}
.svg_icon:hover {
  fill: #ff1493;
}
/*-----レコードぐるぐる-----*/
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.rotate_box {
  animation: rotateAnimation 5s linear infinite;
}
.chatting {
  height: 18.75rem;
}
/*-----フッター-----*/
footer {
  background-color: #0F0F0F;
    position: relative;
    height: auto;
}
.footer_logo img {
  width: 20%;
  height: auto;
}
/*フッター　会社概要などのリスト*/
#footer_lists {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-bottom: 1.6rem;
}
#footer_lists h3 {
  color: #C7C7C7;
  margin-bottom: 2rem;
}
#footer_lists li {
  margin: 2rem 0;
}
#footer_lists li a {
  color: #fafafa;
  font-size: 1.4rem;
  letter-spacing: .03em;
}
#footer_lists li a:hover {
  color: #ff1493;
  transition: color 0.5s ease;
}
/*フッター　小さい文字のリスト*/
.footer_inner_index{
	 width: 90%;
  margin: 0 auto;
  padding: 40px 0 20px;
}


.footer_inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
.footer_nav {
  border-top: 1px solid rgba(250, 250, 250, 0.5);
  padding-top: 1.6rem;
}
.footer_nav ul {
  display: flex;
  flex-direction: column;
}
.footer_nav li {
  margin-bottom: 1rem;
}
.footer_nav li a {
  text-align: left;
  color: #fafafa;
  font-size: 12px;
  opacity: 0.7;
}
.footer_nav li a:hover{
  opacity: 1;
  transition: color 1s ease;
}
.footer_nav a small {
  color: #fafafa;
  font-size: 1.3rem;
}
small {
  display: block;
  text-align: center;
  margin: 1rem;
}

 #footer_icons {
    display: flex;
    justify-content: space-between;
	 width: 13rem;
	 margin: 3rem 0;
  }

  #footer_icons img {
    width: 20px;
    
  }

/*-----タイピングテキスト-----*/
.typing_text {
  opacity: 1;
  visibility: visible;
}
.typing_text {
  visibility: hidden;
}
.typing_text.animated {
  visibility: visible;
}
/*-----フェードイン-----*/
.fade_in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade_in.show {
  opacity: 1;
  transform: translateY(0);
}
h2.fade_in.show {
  opacity: 0.7;
  transform: translateY(0);
}

/*-----DLボタン画像-----*/
#DL{
	position: relative;
	background-color: #2b2b2b;
	z-index: 2;
}

#DL .inner {
  display: flex;
  justify-content: space-around;
  text-align: center;
	padding: 0 0 3rem;
}
#DL img {
  width: 80%;
  vertical-align: middle;
}
#DL img a {
  display: block;
  transition: all .3s ease-in-out;
  transform: translateY(0);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .1);
}
#DL img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 10px rgba(255, 20, 147, .2);
}
/*-----利用規約-----*/
#terms h2 {
  font-size: 3.2rem;
  opacity: 1;
  margin-bottom: 2.4rem;
}
/*-----登録＆ログイン ページ-----*/
#login h2, #download h2{
  margin: 4.2rem auto;
}
/* -----登録0r セクション -----*/
.divider {
  display: flex;
  align-items: center;
  margin: 4.8rem auto;
}
.divider span {
  flex-grow: 1;
}
.divider::before, .divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ccc;
}
.divider span {
  margin-left: 10px;
  margin-right: 10px;
}
/*-----登録＆ログインの幅-----*/
.registar_wrapper {
  display: flex;
  justify-content: center;
  box-sizing: content-box;
}
.register {
  text-align: center;
  width: 324px;
  padding: 0 20px;
}
/* -----登録ソーシャルボタン----- */
.social_buttons {
  width: 324px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.social-btn {
  inline-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 9999px;
  border: none;
  vertical-align: middle;
}
.social_buttons p {
  width: 70%;
  display: inline;
  letter-spacing: .1em;
  font-weight: 550;
}
/*-----登録Googleボタン-----*/
.gsi-material-button {
  -webkit-user-select: none;
  -webkit-appearance: none;
}
.gsi-material-button-icon {
  height: 20px;
  width: 20px;
  padding: 9px;
  transition: all 0.2s;
}
/* -----登録ソーシャルボタン下のスキマ----- */
button:hover {
  cursor: pointer;
  outline: 3px solid #ff1493;
}
/* -----登録「こちら」のアンダーライン----- */
.login-link {
  margin-bottom: 5rem;
}

.login-link p{
	font-size: 1.3rem;
}
.login-link a {
  color: #fafafa;
  text-decoration: underline;
}
.login-link a:hover {
  color: #ff1493;
}
/*-----FAQ アコーディオン-----*/
#FAQ_index{
	z-index: 2;
	background-color: #2b2b2b;
}

#FAQ_index .inner{
	padding-bottom: 4rem;
}

   .faq_inner {
    width: 90%;
         margin: 0 auto;
	 padding-bottom: 4rem; 
  }

.accordion_007 {
  padding-bottom: 2rem;
}
.accordion_007 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border: 1px solid #ff1493;
  font-size: 1.4rem;
  color: #fafafa;
  cursor: pointer;
}
.accordion_007 summary::-webkit-details-marker {
  display: none;
}
.accordion_007 summary::before, .accordion_007 summary::after {
  width: 3px;
  height: .9em;
  border-radius: 5px;
  background-color: #ff1493;
  content: '';
}
.accordion_007 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}
.accordion_007 summary::after {
  transition: rotate .3s;
}
.accordion_007[open] summary::after {
  rotate: 90deg;
}
.accordion_007 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin-top: 20px;
  padding: .8em 1.2em;
  border: 2px solid #ff1493;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.6rem;
  color: #ff1493;
  transition: transform .5s, opacity .5s;
  line-height: 1.5em;
}
.accordion_007[open] p {
  transform: none;
  opacity: 1;
}
.accordion_007 p::before, .accordion_007 p::after {
  position: absolute;
  top: -15px;
  left: 1.2em;
  width: 30px;
  height: 15px;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: '';
}
.accordion_007 p::before {
  background-color: #ff1493;
}
.accordion_007 p::after {
  top: -12px;
  background-color: #fafafa;
}
/*こちら*/
.accordion_007 a:link {
  color: #ff1493;
  text-decoration: underline;
}
.accordion_007 a:visited {
  color: #2B2B2B;
}
.accordion_007 a:hover {
  opacity: 0.5;
}

/* 数字がカウントアップされるローディング画面 */
#loading {
	color: #ff1493;
	width: 100%;
	height: 100%;
	background:#323232;
	text-align:center;
	z-index: 999;
	position: fixed;
}

#loading_text {
	color: #ff1493;
	width: 100%;
	top: 50%;
	left: 50%;
	z-index: 999;
	position: absolute;
	transform: translate(-50%, -50%);
}


/*-----------------------------------デスクトップ用------------------------------------------*/
@media screen and (min-width: 768px) {
  /*-----基本デスクトップ-----*/
  h2 {
    font-size: 12rem;
  }
  .inner {
    width: 70%;
  }
	
	.header_inner{
		padding: 0;
	}
  .desktop_nav {
    display: block;
  }
  .desktop_nav ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
	
/*-----ボタン　デスクトップ-----*/
 .button {
    width: 20%;
    font-size: 1.5rem;
	 line-height:3.5;
  }

  .desktop_nav li {
    padding: 20px;
  }
  
  .desktop_nav a {
	 font-size: 1.6rem;
    text-decoration: none;
    color: #fafafa;
    font-weight: bold;
    letter-spacing: .03em;
  }	
	
	#d_ja,#d_ja2{
		font-size: 1.4rem;
	}

  .desktop_nav a:hover {
    color: #ff1493;
    transition: color 0.3s ease;
  }
  /*-----ヘッダーのロゴ画像たちを1.5倍-----*/
  .header_logo {
    width: 165px;
	 
  }
  .header_logo img {
    object-fit: cover;
    width: 110px;
    height: 64px
  }
    .hamburger_logo {
	   display: none;
  }

  /*-----フッター　デスクトップ-----*/

.footer_inner_index{
	 width: 70%;
}
	
  .footer_inner {
    width: 70%;
    margin: 0 auto;
    padding: 20px 0;
  }
  .footer_logo img {
    width: 110px;
    align-items: center;
  }
  #footer_lists {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 8rem;
  }
  .footer_nav {
    margin-top: 5rem;
  }
  .footer_nav ul {
    justify-content: center;
    flex-direction: row;
    gap: 3.2rem;
  }
  .footer_nav ul li {
    display: inline-block;
  }
  .footer_nav ul li a {
    transition: color 0.3s ease;
  }
	
	#footer_icons{
		margin: 0;
	}
	
	#footer_icons img{
	  margin-top:3.2rem;
		opacity: 0.7;
	}	
	
	#footer_icons a img:hover{
  opacity: 1;
  transition: color 1s ease;
}

  /*-----利用規約 デスクトップ-----*/
  #terms .inner {
    width: 50%;
  }
  #terms p {
    margin-bottom: 2.4rem;
  }
  /*-----FAQ　デスクトップ-----*/
 
  #FAQ_index {
      
   padding-top: 12rem;
  }
    
     .faq_inner {
    width: 50%; 
  }
  .accordion_007 {
    padding-bottom: 3.2rem;
  }
  .accordion_007 summary {
    padding: 2em 2em;
      font-size: 1.6rem;
  }
  /*DLボタン　デスクトップ*/
  #DL {
    display: none;
  }
  .last_button {
    margin: 0;
  }
  /*-----登録デスクトップ-----*/
  #login h2, #download h2{
    font-size: 4.8rem;
  }

}