@charset "utf-8";
/* CSS Document */
body{
	line-height: 1.8;
	text-size-adjust: 100%;
 　　-webkit-text-size-adjust: 100%;/*Chrome,Safari*/
 　　-ms-text-size-adjust: 100%;/*EgdeMobile*/
 　　-moz-text-size-adjust: 100%;/*firefox*/
    font-family: 'myfont-Regular'!important;
    font-size:100%;/*ユーザー設定の文字サイズを正しく反映*/
}
*{
    box-sizing:border-box; /*余白や線を幅や高さに含める*/
}
img{
	max-width: 100%;/*画像が親要素からはみ出すのを防ぐ*/
    height: auto;
}
a {
	text-decoration: none!important;
}
ul {
    list-style: none!important;
    padding: 0;
}
.clear{
	clear: both;
}
/*//////////////フォント//////////////*/
@font-face {
  font-family: 'myfont-Bold';
    src: url('../fonts/NotoSansJP/NotoSansJP-Bold.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSansJP/NotoSansJP-Bold.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSansJP/NotoSansJP-Bold-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Noto-bold {
  font-family: 'myfont-Bold';
}
@font-face {
  font-family: 'myfont-Medium';
    src: url('../fonts/NotoSansJP/NotoSansJP-Medium.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSansJP/NotoSansJP-Medium.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSansJP/NotoSansJP-Medium-ttf.ttf')  format('truetype'); /* Safari, Android, iOS */
}
.font_Noto-m {
  font-family: 'myfont-Medium';
}
@font-face {
  font-family: 'myfont-Regular';
    src: url('../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.eot'); /* IE9 Compat Modes */
    src:url('../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular-ttf.ttf') format('truetype'); /* Safari, Android, iOS */
}
.font_Noto-r {
  font-family: 'myfont-Regular';
}
/*Poppins*/
@font-face {
  font-family: 'myfont-Poppins-ExtraBold';
    src: url('../fonts/Poppins/Poppins-ExtraBold.eot'); /* IE9 Compat Modes */
    src:url('../fonts/Poppins/Poppins-ExtraBold.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype'); /* Safari, Android, iOS */
}
.font_poppins-extrabold{
  font-family: 'myfont-Poppins-ExtraBold';
}
@font-face {
  font-family: 'myfont-Poppins-Bold';
    src: url('../fonts/Poppins/Poppins-Bold.eot'); /* IE9 Compat Modes */
    src:url('../fonts/Poppins/Poppins-Bold.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype'); /* Safari, Android, iOS */
}
.font_poppins-bold{
  font-family: 'myfont-Poppins-Bold';
}
@font-face {
  font-family: 'myfont-Poppins-semiBold';
    src: url('../fonts/Poppins/Poppins-SemiBold.eot'); /* IE9 Compat Modes */
    src:url('../fonts/Poppins/Poppins-SemiBold.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype'); /* Safari, Android, iOS */
}
.font_poppins-semibold{
  font-family: 'myfont-Poppins-semiBold';
}
@font-face {
  font-family: 'myfont-Poppins-medium';
    src: url('../fonts/Poppins/Poppins-Medium.eot'); /* IE9 Compat Modes */
    src:url('../fonts/Poppins/Poppins-Medium.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype'); /* Safari, Android, iOS */
}
.font_poppins-medium{
  font-family: 'myfont-Poppins-medium';
}
@font-face {
  font-family: 'myfont-Poppins-Regular';
    src: url('../fonts/Poppins/Poppins-Regular.eot'); /* IE9 Compat Modes */
    src:url('../fonts/Poppins/Poppins-Regular.woff') format('woff'), /* Modern Browsers */
    url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype'); /* Safari, Android, iOS */
}
.font_poppins-regular{
  font-family: 'myfont-Poppins-Regular';
}
/*//////////////動き//////////////*/
/*下からフェイードインで表示*/
.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1650ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/*//////////////メイン//////////////*/
/*メイン動画*/
.video_wrapper {
    position: relative;
/*    width: 100vw;*/
    height: 100vh;
    overflow: hidden;
}
@media screen and (max-width:767px) {
.video_wrapper {
/*    height: 65vh;*/
}
}
/*動画の上にフィルター*/
.video_wrapper::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
background-image:
   linear-gradient(-90deg, #000000 5%, transparent 20%),
    linear-gradient(#000000 5%, transparent 20%);
  background-size: 4px 4px;
		background-color: rgb(0 0 0 / 20%);
}
@media screen and (max-width:767px) {
.video_wrapper::after {
  background-size: 2px 2px;
}
}
.video_wrapper > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}
/*メイン文字*/
p.main-img_title_Japanese {
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
	text-align: center;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 61px;
}
@media screen and (max-width:991px) {
p.main-img_title_Japanese {
    font-size: 45px;
}
}
@media screen and (max-width:767px) {
p.main-img_title_Japanese {
    font-size: 34px;
}
}
@media screen and (max-width:767px) {
p.main-img_title_Japanese {
    text-align: left;
    top: 48%;
    left: 7%;
    width: 91%;
}
}
@media screen and (max-width:767px) {
p.main-img_title_Japanese span{
    font-size: 25px;
}
}
p.main-img_title_english {
    position: absolute;
    top: 65%;
    left: 0;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
	text-align: center;
    font-family: 'myfont-Poppins-medium';
    color: #fff;
    font-size: 30px;
    letter-spacing: 0.05em;
}
@media screen and (max-width:1440px) {
p.main-img_title_english {
	top: 70%;
}
}
@media screen and (max-width:991px) {
p.main-img_title_english {
    top: 67%;
    font-size: 20px;
}
}
@media screen and (max-width:767px) {
p.main-img_title_english {
    top: 83%;
    left: 8%;
    font-size: 16px;
    text-align: left;
    width: 91%;
}
}
/*////////////////////////Gナビ////////////////////////*/
img.top_logo {
    width: 300px;
    margin-top: -18px;
}
@media screen and (max-width:1650px) {
img.top_logo {
    width: 250px;
}
}
@media screen and (max-width:1440px) {
img.top_logo {
    width: 200px;
}
}
@media screen and (max-width:1320px) {
img.top_logo {
    width: 150px;
}
}
@media screen and (max-width:1285px) {
img.top_logo {
    width: 180px;
}
}
@media screen and (max-width:991px) {
img.top_logo {
    width: 200px;
    margin-top: -5px;
}
}
@media screen and (max-width:767px) {
img.top_logo {
	position: fixed;
    margin-top: -37px;
    width: 200px;
}
}
.header-menu{
    position: absolute;
    z-index: 2;
    width: 94%;
}
@media screen and (max-width:1520px) {
.header-menu{
    width: 92%;
}
}
@media screen and (max-width:1199px) {
.header-menu{
    width: 19%;
}
}
@media screen and (max-width:991px) {
.header-menu{
    width: 29%;
}
}
 /*ロゴとulを横に並べる*/
header.nav{ 
    padding: 30px 0px 0px 55px;
    justify-content: space-between;
}
@media screen and (max-width:1730px) {
header.nav{ 
    padding: 30px 0px 0px 30px;
}
}
@media screen and (max-width:1320px) {
header.nav{ 
    padding: 25px 0px 0px 30px;
}
}
@media screen and (max-width:1199px) {
header.nav{ 
    padding: 15px 0px 0px 15px;
}
}
@media screen and (max-width:991px) {
header.nav{ 
    padding: 0px 0px 0px 15px;
}
}
@media screen and (max-width:767px) {
header.nav{ 
    padding: 53px 0px 0px 10px;
    position: fixed;
    width: 100%;
    background-color: #000;
    height: 61px;
}
}
.g_nav{
    margin-bottom: 0rem;
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 80%;
}
@media screen and (max-width:1440px) {
.g_nav{
    width: 83%;
}
}
@media screen and (max-width:1199px) {
.g_nav{
    display: none;
}
}
/*左側メニュー*/
.g_nav ul.g_nav-menu_left{
    font-family: 'myfont-Poppins-medium';
    font-size: 20px;
}
@media screen and (max-width:1285px) {
.g_nav ul.g_nav-menu_left{
    font-size: 13px;
}
}
@media screen and (max-width:1199px) {
.g_nav ul{
    margin-left: 40px;
}
}
@media screen and (max-width:1024px) {
.g_nav ul{
    display: none;
}
}
/*スタジオ見学・入会申し込みメニュー*/
.g_nav-menu_right {
    margin-bottom: 0rem;
    display: inline-flex;
    align-items: center;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    margin-top: -20px;
}
 .g_nav-menu_right a{
	font-size: 20px;
	text-align: center;
    margin-bottom: 0rem;
    display: table;
    width: 100%;
}
@media screen and (max-width:1630px) {
 .g_nav-menu_right a{
	font-size: 17px;
}
}
@media screen and (max-width:1285px) {
 .g_nav-menu_right a{
	font-size: 15px;
}
}
.g_nav-menu_right a p{
    display: contents;
    vertical-align: middle;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
}
/*ボタンの装飾*/
/*黒背景*/
.g_nav-menu_right_black {
    background-color: #000;
    width: 200px;
    margin-right: 30px;
    border-radius: 30px;
    padding: 10px;
}
@media screen and (max-width:1440px) {
.g_nav-menu_right_black {
    width: 170px;
    margin-right: 15px;
}
}
@media screen and (max-width:1285px) {
.g_nav-menu_right_black {
    width: 150px;
}
}
.g_nav-menu_right_black:hover{
    border: #fff solid 2px;
    background-color: #6e6e6e;
    transition: 0.5s ease-in-out;
}
.g_nav-menu_right_black a{
    color: #fff;
}
.g_nav-menu_right_black a:hover{
    color: #fff;
}

/*スタジオ見学*/
/*背景水色*/
.g_nav-menu_right_blue {
    background-color: #000;
    width: 200px;
    margin-right: 30px;
    border-radius: 30px;
    padding: 10px;
    color: #fff;
}
@media screen and (max-width:1630px) {
.g_nav-menu_right_blue {
	width: 170px;
    margin-right: 15px;
}
}
@media screen and (max-width:1520px) {
.g_nav-menu_right_blue {
	width: 140px;
}
}
.g_nav-menu_right_blue:hover{
   color: #000;
}
.g_nav-menu_right_blue:hover{
    background-color: #37EEEE;
    transition: 0.3s ease-in-out;
    color: #000;
}
 a.g_nav-menu_right_blue{
    color: #fff;
}
a.g_nav-menu_right_blue:hover{
    color: #000;
}


/*SPナビ用*/
.g_nav-menu_right_blue-sp-nav {
    background-color: #37EEEE;
    width: 200px;
    margin-right: 30px;
    border-radius: 30px;
    padding: 10px;
}
@media screen and (max-width:1440px) {
.g_nav-menu_right_blue-sp-nav {
	width: 170px;
    margin-right: 15px;
}
}
@media screen and (max-width:1285px) {
.g_nav-menu_right_blue-sp-nav {
	width: 150px;
}
}
.g_nav-menu_right_blue-sp-nav a p,.g_nav-menu_right_pink-sp-nav a p{
	color: #000!important;
}
 a.g_nav-menu_right_blue-sp-nav{
    color: #000;
}

/*入会申し込み*/
/*背景ピンク*/
.g_nav-menu_right_pink {
    background-color: #FF6795;
    width: 200px;
    border-radius: 30px;
    padding: 10px;
}
.g_nav-menu_right_pink {
    background-color: #000;
    width: 200px;
    border-radius: 30px;
    padding: 10px;
	color: #fff;
}
.g_nav-menu_right_pink:hover{
	color: #000;
}
@media screen and (max-width:1630px) {
.g_nav-menu_right_pink {
	width: 170px;
}
}
@media screen and (max-width:1520px) {
.g_nav-menu_right_pink {
    width: 120px;
}
}
.g_nav-menu_right_pink:hover{
    background-color: #FF6795;
    transition: 0.3s ease-in-out;
}
.g_nav-menu_right_pink a{
    color: #000;
}
.g_nav-menu_right_pink a:hover{
    color: #000;
}

/*SPナビ用*/
.g_nav-menu_right_pink-sp-nav {
    background-color: #FF6795;
    width: 200px;
    border-radius: 30px;
    padding: 10px;
}
@media screen and (max-width:1440px) {
.g_nav-menu_right_pink-sp-nav {
	width: 170px;
}
}
@media screen and (max-width:1285px) {
.g_nav-menu_right_pink-sp-nav {
    width: 150px;
}
}
.g_nav-menu_right_pink-sp-nav:hover{
    background-color: #FF6795;
    transition: 0.3s ease-in-out;
}
.g_nav-menu_right_pink-sp-nav a{
    color: #000;
}
.g_nav-menu_right_pink-sp-nav a:hover{
    color: #000;
}


/*アクティブになったエリア*/
#sp_nav.panelactive{
    position:fixed;
    z-index: 999;
    top: -160px;
	width: 95%;
    height: 100vh;
}
@media screen and (max-width:1440px) {
#sp_nav.panelactive{
    top: -110px;
}
}
@media screen and (max-width:1199px) {
#sp_nav.panelactive{
    width: 97%;
}
}
@media screen and (max-width:767px) {
#sp_nav.panelactive{
    width: 100%;
top: -117px;
}
}
.g_nav.information p {
    padding: 10px 0px;
}
/*Gナビのアコーディンメニュー*/
.g_nav ul.g_nav-menu_left li {
	display: inline-block;
	position: relative;
	font-size: 20px;
    padding: 0px 20px;
}
@media screen and (max-width:1730px) {
.g_nav ul.g_nav-menu_left li {
	padding: 0px 15px;
	font-size: 18px;
}
}
@media screen and (max-width:1440px) {
.g_nav ul.g_nav-menu_left li {
	font-size: 15px;
}
}
.g_nav ul li a{
	color: #fff;
}
.g_nav ul li a:hover {
  color: #37EEEE;
  transition: 0.3s ease-in-out;
}
/*Gナビのアコーディオンメニュー*/
.g_nav ul.g_nav-menu_left li ul.accordion-header_box{
	
opacity: 0;
    position: absolute;
    list-style: none;
    visibility: hidden;
    top: 100%;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 9999;
	display: flex;
	text-align: center;
}
.g_nav ul.g_nav-menu_left li.accordion-header:hover ul.accordion-header_box{
    opacity: 1;
    position: absolute;
    visibility: visible;
    width: 250px!important;
    background: rgb(0 0 0);
    transition: 0.5s ease-in-out;
    padding: 20px 0px 20px;
    font-family: 'myfont-Poppins-Bold';
}
/*Gナビ　STUDIOの各メニュー*/
/*東京*/
.accordion-header_box li:nth-of-type(1) a:hover{
    transition: 0.5s ease-in-out;
    color: #95AEFF;
}
/*大阪*/
.accordion-header_box li:nth-of-type(2) a:hover{
    transition: 0.5s ease-in-out;
    color: #FF6767;
}
/*名古屋*/
.accordion-header_box li:nth-of-type(3) a:hover{
    transition: 0.5s ease-in-out;
    color: #FF8F5D;
}
ul.accordion-header_box li a p {
    vertical-align: sub;
    display:inline-block;
    line-height: 1.5rem;
    margin-bottom: 0rem;
}
ul.accordion-header_box li a p.accordion-header_box_subtitle{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
}
.g_nav ul li:hover {
    cursor: pointer;
}
.g_nav ul li:hover ul li {
  display: block;
}
/*STUDIO 各スタジオ*/
p.accordion-header_box_title {
    font-size: 25px;
}
/*リストのレイアウト設定*/
#sp_nav li{
  list-style: none;
}
.gnav__wrap li a span{
  font-size: 16px;
  font-family: 'myfont-Medium';
}
@media screen and (max-width:767px) {
.gnav__wrap li a span{
  font-size: 13px;
  height: 20px!important;
}
}
@media screen and (max-width:767px) {
.gnav__wrap ul.menu1 li a span{
  font-size: 13px;
  height: 20px!important;
}
}
.gnav__wrap li a p{
  font-size: 16px;
  font-family: 'myfont-Medium';
  margin-bottom: 0rem;
}
@media screen and (max-width:1024px) {
.gnav__wrap li a p{
  font-size: 13px;
}
}
@media screen and (max-width:767px) {
.gnav__wrap li a p{
  margin-bottom: 0.3rem;
}
}
#sp_nav li a:hover{
	color: #FF6795;
	transition: 0.7s ease-in-out;
}
.accordion-header_box ul li{
    padding: 0px 15px;
}
i.far.fa-chevron-circle-right {
    font-weight: 700;
}
img.services_img_nav {
    display: block;
    margin: auto;
    height:50px;
}
@media screen and (max-width:767px) {
img.services_img_nav {
    height: 100px;
    width: 100%;
}
}
/*//////////////////////////////ハンバーガーメニュー//////////////////*/
img.sp_top_logo {
    width: 300px;
}
@media screen and (max-width:1440px) {
img.sp_top_logo {
    width: 200px;
}
}
@media screen and (max-width:1199px) {
img.sp_top_logo {
    width: 180px;
}
}
@media screen and (max-width:991px) {
img.sp_top_logo {
    width: 150px;
}
}
@media screen and (max-width:767px) {
img.sp_top_logo {
    width: 133px;
}
}
img.services_img_spnav {
    display: block;
    margin: auto;
    height: auto;
    width: 100%;
}
@media screen and (max-width:767px) {
img.services_img_spnav {
    height: auto;
    width: 65%;
}
}
/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:9;
    width: 100px;
    height: 100px;
	/*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
	background-color: #000;
}
.circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}
/*ボタン*/
.openbtn1{
    position: fixed;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    top: 15px;
	width: 70px;
    height: 70px;
}
@media screen and (max-width:1730px) {
.openbtn1{
    right: 30px;
}
}
@media screen and (max-width:1650px) {
.openbtn1{
    top: 18px;
}
}
@media screen and (max-width:1440px) {
.openbtn1{
    top: 15px;
}
}
@media screen and (max-width:1199px) {
.openbtn1{
    right: 0px;
}
}
@media screen and (max-width:991px) {
.openbtn1{
    top: 7px;
}
}
@media screen and (max-width:767px) {
.openbtn1{
    right: 7px;
    width: 50px;
    height: 50px;
}
}
.openbtn1:hover{
    transition: .5s;
}
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
	height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 60px;
}
@media screen and (max-width:1440px) {
.openbtn1 span{
    width: 50px;
}
}
@media screen and (max-width:1285px) {
.openbtn1 span{
    width: 45px;
}
}
@media screen and (max-width:991px) {
.openbtn1 span{
    height: 2px;
}
}
@media screen and (max-width:767px) {
.openbtn1 span{
    width: 35px;
}
}
.openbtn1 span:nth-of-type(1) {
  top:21px; 
}
@media screen and (max-width:1199px) {
.openbtn1 span:nth-of-type(1) {
  top:12px; 
}
}
@media screen and (max-width:767px) {
.openbtn1 span:nth-of-type(1) {
  top:17px; 
}
}
.openbtn1 span:nth-of-type(2) {
  top:40px;
}
@media screen and (max-width:1199px) {
.openbtn1 span:nth-of-type(2) {
  top:27px; 
}
}
@media screen and (max-width:767px) {
.openbtn1 span:nth-of-type(2) {
  top:30px; 
}
}
.openbtn1.active span:nth-of-type(1) {
    top: 26px;
    left: 10px;
    transform: translateY(6px) rotate(-30deg);
    width: 80%;
}
@media screen and (max-width:1199px) {
.openbtn1.active span:nth-of-type(1) {
    top: 8px;
    left: 0px;
}
}
@media screen and (max-width:991px) {
.openbtn1.active span:nth-of-type(1) {
    top: 15px;
    width: 70%;
}
}
.openbtn1.active span:nth-of-type(2){
    top: 38px;
    left: 10px;
    transform: translateY(-6px) rotate(30deg);
    width: 80%;
}
@media screen and (max-width:1199px) {
.openbtn1.active span:nth-of-type(2){
	top: 21px;
    left: 0px;
}
}
@media screen and (max-width:991px) {
.openbtn1.active span:nth-of-type(2){
    top: 27px;
    width: 70%;
}
}
/*ナビゲーションの縦スクロール*/
#sp_nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sp_nav.panelactive #sp_nav-list{
     display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#sp_nav{
  opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 9999999;
    top: 0%;
    left:50%;
    transform: translate(-50%,20%);
}
/*背景が出現後にナビゲーションを表示*/
#sp_nav.panelactive {
    opacity:1;
}
/* 背景が出現後にナビゲーション li を表示*/
#sp_nav.panelactive #sp_nav-list{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
padding-bottom: 10px;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@media screen and (max-width:767px) {
.sp_top_logo_box {
    padding: 0px 0px 0px 10px;
}
}
/*リストのレイアウト設定*/
#sp_nav ul.sp_nav_box_text1 li{
	color: #fff;
	letter-spacing: 0.2em;
    padding-bottom: 35px;
}
@media screen and (max-width:1440px) {
#sp_nav ul.sp_nav_box_text1 li{
    padding-bottom: 25px;
}
}
@media screen and (max-width:1199px) {
#sp_nav ul.sp_nav_box_text1 li{
    padding-bottom: 22px;
}
}
@media screen and (max-width:991px) {
#sp_nav ul.sp_nav_box_text1 li{
    padding-bottom: 20px;
}
}
#sp_nav li a{
	color: #fff;

}
@media screen and (max-width:1440px) {
#sp_nav li a{
    font-size: 13px;
}
}
/*内容*/
.sp-nav_wrap {
    display: flex;
    width: 100%;
    margin: auto;
}
@media screen and (max-width:767px) {
.sp-nav_wrap {
    margin-top: 5%;
    flex-direction: column;
}
}
/*左側*/
.sp-nav_wrap_left {
    margin-top: 2%;
    width: 50%;
}
@media screen and (max-width:1199px) {
.sp-nav_wrap_left {
    margin-top: 1%;
}
}
@media screen and (max-width:991px) {
.sp-nav_wrap_left {
    margin-top: 0%;
}
}
@media screen and (max-width:767px) {
.sp-nav_wrap_left {
    width: 100%;
}
}
ul.sp_nav_box {
    margin-top: 1rem;
    margin-bottom: 0rem!important;
}
/*英語テキスト*/
span.sp-nav_wrap_left_e {
    font-family: 'myfont-Poppins-medium';
    font-size: 30px;
    font-weight: 900;
    display: block;
    text-align: center;
}
@media screen and (max-width:1440px) {
span.sp-nav_wrap_left_e {
    font-size: 23px;
}
}
@media screen and (max-width:991px) {
span.sp-nav_wrap_left_e {
    font-size: 18px;
}
}
@media screen and (max-width:767px) {
span.sp-nav_wrap_left_e {
    font-size: 25px;
}
}
/*日本語テキスト*/
span.sp-nav_wrap_left_j{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
	font-size: 15px;
    display: block;
    text-align: center;
}
@media screen and (max-width:1440px) {
span.sp-nav_wrap_left_j{
	font-size: 11px;
}
}
@media screen and (max-width:991px) {
span.sp-nav_wrap_left_j{
	font-size: 11px;
}
}
ul.sp_nav_box_text2 {
    display: flex;
    margin-top: 2%;
    justify-content: center;
}
@media screen and (max-width:767px) {
ul.sp_nav_box_text2 {
    display: none;
}
}
ul.sp_nav_box_text2 li{
    color:#fff;
}
ul.sp_nav_box_text2 li a{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 12px;
}
/*SPのみ表示*/
.g_nav-menu_right.g_nav-menu_right_sp {
    display: none;
}
@media screen and (max-width:767px) {
.g_nav-menu_right.g_nav-menu_right_sp {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}
}
/*右側*/
.sp-nav_wrap_right {
    margin-top: 0%;
	border-left: solid #fff 1px;
    padding-left: 3%;
    width: 44%;
}
@media screen and (max-width:767px) {
.sp-nav_wrap_right {
    width: 100%;
    padding-left: 0%;
	border-left: solid transparent 1px;
}
}
/*上２つのボタン*/
.sp-nav_information_menu {
    border: solid 1px #fff;
    text-align: center;
    padding: 55px 0px;
}
@media screen and (max-width:1440px) {
.sp-nav_information_menu {
    padding: 25px 0px;
}
}
.sp-nav_information_menu.sp-menu_red:hover{
    box-shadow: inset 0 0 0.8em rgba(255, 91, 125, 0.5), 0 0 0.8em rgba(255, 91, 125, 0.5);
    border: #FF5B7D solid 1px;
    transition: 0.5s ease-in-out;
    color: #FF5B7D;
}
.sp-nav_information_menu.sp-menu_blue:hover{
    box-shadow: inset 0 0 0.8em rgba(41, 194, 200, 0.5), 0 0 0.8em rgba(41, 194, 200, 0.5);
    border: #37EEEE solid 1px;
    transition: 0.5s ease-in-out;
    color: #37EEEE;
}
.sp-nav_information_menu.sp-menu_orange:hover{
    box-shadow: inset 0 0 0.8em rgba(255, 209, 157, 0.5), 0 0 0.8em rgba(255, 209, 157, 0.5);
    border: #ffb35d solid 1px;
    transition: 0.5s ease-in-out;
    color: #ffb35d;
}
ul.sp-nav_information {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width:767px) {
ul.sp-nav_information {
	display: none;
}
}
ul.sp-nav_information.sp-nav_information_menu:first-child{
     margin-right: 20px;
}
ul.sp-nav_information a{
     color: #fff;
     width: 32%;
}
.sp-nav_information_menu span{
    display: block;
}
span.sp-nav_information_menu_e {
    font-size: 14px;
    font-family: 'myfont-Poppins-Regular';
    margin-bottom: 10px;
}
@media screen and (max-width:1199px) {
span.sp-nav_information_menu_e {
    font-size: 11px;
    margin-bottom: 0px;
}
}
span.sp-nav_information_menu_j {
    font-family: 'myfont-Medium';
    font-size: 20px;
}
@media screen and (max-width:1199px) {
span.sp-nav_information_menu_j {
    font-size: 18px;
}
}
@media screen and (max-width:991px) {
span.sp-nav_information_menu_j {
    font-size: 14px;
}
}
/*カリキュラム*/
.sp-nav_curriculum {
    margin-top: 55px;
}
@media screen and (max-width:1440px) {
.sp-nav_curriculum {
    margin-top: 40px;
}
}
@media screen and (max-width:767px) {
.sp-nav_curriculum {
    display: none;
}
}
ul.top-curriculum_text {
    padding-left: 1em;
    text-indent: -1em;
    padding-top: 10px;
}
@media screen and (max-width:991px) {
ul.top-curriculum_text li{
    font-size: 13px;
}
}
.sp-nav_curriculum_e{
    font-size: 45px;
	font-family: 'myfont-Poppins-semiBold';
	margin-bottom: 10px;
	color:#fff;
}
@media screen and (max-width:1440px) {
.sp-nav_curriculum_e{
    font-size: 35px;
}
}
@media screen and (max-width:1199px) {
.sp-nav_curriculum_e{
    font-size: 30px;
}
}
@media screen and (max-width:991px) {
.sp-nav_curriculum_e{
    font-size: 28px;
}
}
span.sp-nav_curriculum_j {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    padding-left: 30px;
}
@media screen and (max-width:1440px) {
span.sp-nav_curriculum_j {
    padding-left: 20px;
}
}
@media screen and (max-width:1199px) {
span.sp-nav_curriculum_j {
    font-size: 16px;
}
}
@media screen and (max-width:991px) {
span.sp-nav_curriculum_j {
    font-size: 14px;
}
}
/*カリキュラム 各スタジオ*/
ul.sp-nav_curriculum-wrap {
    display: flex;
    justify-content:space-evenly;
    margin-top: 30px;
}
@media screen and (max-width:991px) {
ul.sp-nav_curriculum-wrap {
    margin-top: 20px;
}
}
@media screen and (max-width:767px) {
ul.sp-nav_curriculum-wrap {
	display: none;
}
}
.curriculum_upload_grop {
    width: 32%;
}
@media screen and (max-width:767px) {
.curriculum_upload_grop {
    width: 100%;
}
}
li.sp-nav_curriculum-wrap_area {
    background-color: #fff;
/*    width: 32%;*/
}
.sp-nav_curriculum-wrap_area_title {
    font-size: 45px;
    font-family: 'myfont-Poppins-Bold';
	text-align: center;
    margin-bottom: 0rem;
    padding-top: 50px;
}
@media screen and (max-width:1650px) {
.sp-nav_curriculum-wrap_area_title {
    font-size: 35px;
}
}
@media screen and (max-width:1440px) {
.sp-nav_curriculum-wrap_area_title {
    padding-top: 35px;
    font-size: 27px;
}
}
@media screen and (max-width:1199px) {
.sp-nav_curriculum-wrap_area_title {
    padding-top: 25px;
}
}
@media screen and (max-width:991px) {
.sp-nav_curriculum-wrap_area_title {
    font-size: 20px;
}
}
@media screen and (max-width:991px) {
.sp-nav_curriculum-wrap_area_title {
    padding-top: 20px;
}
}
.sp-nav_curriculum-wrap_area_subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-top: -5px;
}
@media screen and (max-width:1199px) {
.sp-nav_curriculum-wrap_area_subtitle {
    font-size: 16px;
}
}
@media screen and (max-width:991px) {
.sp-nav_curriculum-wrap_area_subtitle {
    font-size: 14px;
}
}
.lavender{
	color:#95AEFF;
}
.lavender-bg{
	background-color: #95AEFF;
}
.red{
	color:#FF6767;
}
.red-bg{
	background-color: #FF6767;
}
.orange{
	color:#FF8F5D;
}
.orange-bg{
	background-color: #FF8F5D;
}
.sp-nav_curriculum-wrap_area_icon{
	color:#fff;
	text-align: center;
	padding: 10px;
    margin-top: 40px;
}
@media screen and (max-width:1440px) {
.sp-nav_curriculum-wrap_area_icon{
    margin-top: 30px;
    padding: 5px;
}
}
@media screen and (max-width:1199px) {
.sp-nav_curriculum-wrap_area_icon{
    margin-top: 20px;
	padding: 5px;
}
}
@media screen and (max-width:1199px) {
.sp-nav_curriculum-wrap_area_icon{
    margin-top: 10px;
	padding: 0px;
}
}
/*最新情報はこちら　SNS*/
.sp-nav_sns {
    width: 100%;
    height: 180px;
	background: radial-gradient( #23BEC6, #DDFDD6);
  background-size: 200% 140%;
  animation: bggradient 10s ease infinite;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 30px;
}
@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media screen and (max-width:1440px) {
.sp-nav_sns {
    height: 150px;
}
}
@media screen and (max-width:991px) {
.sp-nav_sns {
    height: 120px;
}
}
@media screen and (max-width:767px) {
.sp-nav_sns {
    height: 175px;
}
}
.sp-nav_sns::after{
  content: "FOLLOW ME ! FOLLOW ME ! FOLLOW ME ! FOLLOW ME ";
  position: absolute;
  z-index: 2;
  width: 500%;
  height: 100%;
  top: 70px;
  left: -21px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  font-family: 'myfont-Poppins-ExtraBold';
  font-size: 59px;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width:1440px) {
.sp-nav_sns::after{
    font-size: 47px;
    top: 50px;
}
}
@media screen and (max-width:1199px) {
.sp-nav_sns::after{
    top: 53px;
    font-size: 42px;
}
}
@media screen and (max-width:991px) {
.sp-nav_sns::after{
    top: 45px;
    font-size: 30px;
}
}
@media screen and (max-width:767px) {
.sp-nav_sns::after{
    top: 45px;
    font-size: 52px;
    left: -4px;
    letter-spacing: 0.01em;
}
}
.sp-nav_sns p{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    color: #fff;
    padding-top: 40px;
    letter-spacing: 0.07em;
}
@media screen and (max-width:1440px) {
.sp-nav_sns p{
    font-size: 16px;
    padding-top: 20px;
}
}
@media screen and (max-width:991px) {
.sp-nav_sns p{
    font-size: 13px;
    padding-top: 16px;
}
}
@media screen and (max-width:767px) {
.sp-nav_sns p{
    font-size: 16px;
    padding-top: 35px;
}
}
/*各SNSアイコン*/
.sp-nav_sns_icon {
    text-align: center;
    font-size: 50px;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 23%;
    transform: translate(-23%, -11%);
    -webkit-transform: translate(-23%, -11%);
    -ms-transform: translate(-23%, -11%);
    width: 100%;
}
@media screen and (max-width:991px) {
.sp-nav_sns_icon {
    font-size: 35px;
    top: 45%;
}
}
@media screen and (max-width:767px) {
.sp-nav_sns_icon {
    font-size: 45px;
}
}
.sp-nav_sns_icon i{
    margin: 28px 28px 0px 28px;
}
@media screen and (max-width:1440px) {
.sp-nav_sns_icon i{
    margin: 20px 15px 0px 15px;
}
}
@media screen and (max-width:1199px) {
.sp-nav_sns_icon i{
    margin: 10px 5px 0px 5px;
}
}
@media screen and (max-width:991px) {
.sp-nav_sns_icon i{
    margin: 7px 10px 0px 10px;
}
}
@media screen and (max-width:767px) {
.sp-nav_sns_icon i{
    margin: 0px 3px 0px 3px;
}
}
i.fab.fa-tiktok:hover{
	color:#fd2f55;
    transition: 0.5s ease-in-out;
}
i.fab.fa-instagram:hover{
	color:#9b01f7;
    transition: 0.5s ease-in-out;
}
i.fab.fa-twitter:hover{
	color:#1c96e8;
    transition: 0.5s ease-in-out;
}
i.fab.fa-youtube:hover{
	color:#c4302b;
    transition: 0.5s ease-in-out;
}
i.fab.fa-line:hover{
	color:#00B900;
    transition: 0.5s ease-in-out;
}
/*SPのみ表示*/
ul.sp_nav_box_text2.sp_nav_box_text2_sp {
	display: none;
}
@media screen and (max-width:767px) {
ul.sp_nav_box_text2.sp_nav_box_text2_sp {
    display: flex;
    margin: 50px 0px 80px;
	flex-direction: column;
    align-items: center;
}
ul.sp_nav_box_text2.sp_nav_box_text2_sp li{
    margin-bottom: 15px;
}
}
@media screen and (max-width:767px) {
ul.sp_nav_box_text2.sp_nav_box_text2_sp li a{
	color:#fff;
	display: block;
}
}
.studiotour-btm_pink_link:hover {
  color: #000!important;
  box-shadow: inset 0 0 0.8em rgba(234, 94, 136, 0.8), 0 0 0.8em rgba(234, 94, 136, 0.8);
  background-color: #fbc6d6;
  border: #FF6795 solid 2px;
}
.studiotour-btm_blue_link:hover {
  box-shadow: inset 0 0 0.8em rgba(123, 203, 206, 0.8), 0 0 0.8em rgba(123, 203, 206, 0.8);
  border: #1DDAE1 solid 2px;
  background-color: #8BEAEE;
  color: #000!important;
}
/*///////////////////////////コンテンツ///////////////////////////*/
/*全体背景色*/
.bg-black{
	background-color:#000;
}
/*トップ２枚バナー*/
.top-banner {
    padding: 120px 0px 100px;
}
@media screen and (max-width:1199px) {
.top-banner {
    padding: 80px 0px 50px;
}
}
@media screen and (max-width:767px) {
.top-banner {
    padding: 70px 0px 50px;
}
}
img.banner-nyukai {
    display: block;
    margin: auto;
}
@media screen and (max-width:767px) {
img.banner-nyukai {
    margin-top: 35px;
}
}
.banner-audition-text{
	color: #fff;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	padding-left: 1em;
    text-indent: -1em;
    margin-top: 10px;
	font-weight: 900;
}
@media screen and (max-width:991px) {
.banner-audition-text{
    font-size: 12px;
}
}
@media screen and (max-width:767px) {
.banner-audition-text{
    font-size: 13px;
}
}
@media screen and (max-width:360px) {
.banner-audition-text{
    font-size: 12px;
}
}
/*PR MOVIE*/
.video-grop {
    margin-bottom: 100px;
}
@media screen and (max-width:1366px) {
.video-grop {
    margin-bottom: 70px;
}
}
@media screen and (max-width:767px) {
.video-grop {
    margin-bottom: 30px;
}
}
/*YouTubeサイズ調整*/
.video {
position: relative;
height: 0;
padding: 30px 0 56.25%;
overflow: hidden;
}

.video iframe {
position: absolute;
top: 20px;
left: 0;
width: 100%;
height: 100%;
}
@media (max-width: 767px) {
.video iframe {
    width: 95%;
	left: 11px;
}
}
.video.video-agv {
    margin-top: 50px;
}
@media (max-width: 767px) {
.video.video-agv {
    margin-top: 0px;
}
}
/*ABOUT*/
h2.top-big-title {
    font-size: 200px;
    font-family: 'myfont-Poppins-ExtraBold';
    text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0-1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
    padding-top: 30px;
    color: #000;
    margin-left: -20px;
}
@media screen and (max-width:1366px) {
h2.top-big-title {
    font-size: 150px;
}
}
@media screen and (max-width:1199px) {
h2.top-big-title {
    font-size: 130px;
}
}
@media screen and (max-width:991px) {
h2.top-big-title {
    font-size: 100px;
}
}
@media screen and (max-width:767px) {
h2.top-big-title {
    overflow: hidden;
    font-size: 62px;
    text-align: center;
}
}
@media screen and (max-width:767px) {
h2.top-big-title {
    overflow: hidden;
    font-size: 67px;
	text-align: center;
}
}
.top-about_title{
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}
@media screen and (max-width:991px) {
.top-about_title{
    margin-top: 30px;
}
}
.top-about_title h3{
    font-size: 26px;
    font-weight: 700;
}
@media screen and (max-width:1199px) {
.top-about_title h3{
    font-size: 22px;
}
}
@media screen and (max-width:767px) {
.top-about_title h3{
    font-size: 18px;
}
}
p.top-about_subtitle {
    font-size: 18px;
    margin-top: 40px;
    line-height: 2em;
}
@media screen and (max-width:1199px) {
p.top-about_subtitle {
    font-size: 16px;
    line-height: 1.7em;
}
}
@media screen and (max-width:767px) {
p.top-about_subtitle {
    font-size: 14px;
}
}
p.top-about_text {
    color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.7em;
    text-align: justify;
}
@media screen and (max-width:1366px) {
p.top-about_text {
    font-size: 15px;
}
}
@media screen and (max-width:1199px) {
p.top-about_text {
    font-size: 13px;
    line-height: 1.6em;
}
}
@media screen and (max-width:767px) {
p.top-about_text {
/*    font-size: 14px;*/
    font-size: 2.4vw;
    padding: 0px 17px;
}
}
@media screen and (max-width:480px) {
p.top-about_text {
    font-size: 3vw;
}
}
@media screen and (max-width:425px) {
p.top-about_text {
    font-size: 3.2vw;
}
}
@media screen and (max-width:375px) {
p.top-about_text {
    font-size: 3.5vw;
}
}
@media screen and (max-width:320px) {
p.top-about_text {
    font-size: 4vw;
}
}
.row.top-about_svg-mt {
    margin-top: 100px;
}
@media screen and (max-width:1199px) {
.row.top-about_svg-mt {
    margin-top: 80px;
}
}
@media screen and (max-width:991px) {
.row.top-about_svg-mt {
    margin-top: 50px;
}
}
@media screen and (max-width:767px) {
.row.top-about_svg-mt {
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin-right: -15px;
}
}
/*ネオン部分*/
@media screen and (max-width:1199px) {
svg.about-svg_size {
    width: 160px;
	display: block;
    margin: auto;
}
}
@media screen and (max-width:991px) {
svg.about-svg_size {
    width: 115px;
}
}
@media screen and (max-width:767px) {
svg.about-svg_size {
    width: 150px;
}
}
/*/////////ピンク/////////*/
.about-pink{
  stroke: #F0238F;
  stroke-width:10;
  stroke-linejoin:round;
  fill:#F0238F;
  filter: blur(7px);
  animation:neon 4s infinite alternate;
  text-shadow: 9px 2px 9px #f0238f;
	
/*
  filter: drop-shadow(0px 4px 9px #F0238F);
  transform: translateZ(0);	
*/
	
/*  stroke: #000;*/
/*  stroke-width: 2;*/
/*  fill:#fff;*/
/*
filter: drop-shadow(0 0 8px rgba(240, 35, 143, .0.5));
  will-change: filter 
*/
}

.about-base--pink{
    stroke-width:1px;
    stroke:#F0238F;
    fill:#F0E9FA;
  }
/*/////////ブルー/////////*/
/*1番目*/
.st2.about-blue{
  stroke: #11A5E9;
  stroke-width:10;
  stroke-linejoin:round;
  fill:#11A5E9;
  filter: blur(7px);
  animation:neon 4s infinite alternate;
}
/*2番目*/
.st0.about-blue{
  stroke: #11A5E9;
  stroke-width:5;
  stroke-linejoin:round;
  fill:#11A5E9;
  filter: blur(3px);
  animation:neon 4s infinite alternate;
}
.about-base--blue{
    stroke-width:1px;
    stroke:#11A5E9;
    fill:#fff;
  }
.about-img1{
	width: 500px;
}
@keyframes neon{
    0% {
      opacity: 0.7;
    }
    100% {
      opacity: 1;
    }
  }

.col-12.col-md-2.top-about-grop_item{
    flex: 0 0 20%!important;
    max-width: 20%!important;
}
@media screen and (max-width:767px) {
.col-12.col-md-2.top-about-grop_item{
    flex: 0 0 100%!important;
    max-width: 100%!important;
}
}
/*ネオン部分 SP時の枠と横スクロール*/
@media screen and (max-width:767px) {
.col-12.col-md-2.top-about-grop_item.top-about_svg_sp_width {
    max-width: 275px!important;
    padding-right: 7px;
    padding-left: 7px;
}
}
@media screen and (max-width:767px) {
.top-about_svg_sp {
    border: solid 1px #fff;
    height: 297px;
}
}
@media screen and (max-width:480px) {
.top-about_svg_sp {
    height: 330px;
}
}
@media screen and (max-width:425px) {
.top-about_svg_sp {
    height: 300px;
}
}
@media screen and (max-width:375px) {
.top-about_svg_sp {
    height: 280px;
}
}
/*VIEW MORE ボタン　白黒*/
.view-more_btn_wrap{
    margin-top: 50px;
}
@media screen and (max-width:1199px) {
.view-more_btn_wrap{
    margin-top: 20px;
}
}
@media screen and (max-width:767px) {
.view-more_btn_wrap{
	margin-top: 50px;
}
}
.view-more_btn {
	width: 220px;
	height: 52px;
	color: #000;
	background-color:#fff;
	margin: auto;
	transition: .3s;
    border-radius: 50px;
	font-family: 'myfont-Poppins-semiBold';
    font-size: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media screen and (max-width:991px) {
.view-more_btn {
    width: 200px;
    height: 45px;
}
}
@media screen and (max-width:767px) {
.view-more_btn {
    width: 98%;
    height: 52px;
}
}
.view-more_btn:hover {
  box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 0.8), 0 0 0.8em rgba(255, 255, 255, 0.8);
  border: #fff solid 2px;
  background-color: #E2DDDD;
  color: #000!important;
}
/*三角矢印*/
.fa-angle-right:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #000;
    font-size: 18px;
}
/*//////////INSTRUCTOR//////////*/
h2.top-big-title.top-big-title-mt {
    margin-top: 100px;
}
@media screen and (max-width:1366px) {
h2.top-big-title.top-big-title-mt {
    margin-top: 70px;
}
}
@media screen and (max-width:767px) {
h2.top-big-title.top-big-title-mt {
    overflow: hidden;
    margin-top: 30px;
}
}
@media screen and (max-width:767px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    margin-left: -8px;
    font-size: 90px;
}
}
@media screen and (max-width:480px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    font-size: 76px;
}
}
@media screen and (max-width:425px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    font-size: 68px;
}
}
@media screen and (max-width:415px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    font-size: 66px;
}
}
@media screen and (max-width:375px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    font-size: 60px;
}
}
@media screen and (max-width:360px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    font-size: 58px;
}
}
@media screen and (max-width:320px) {
h2.top-big-title.top-big-title-mt.top-big-title_sp {
    font-size: 51px;
}
}
.instructor_slider {
    position: relative;
}
@media screen and (max-width:767px) {
.instructor_slider {
    margin-top: 30px;
}
}
.js-slider-arrow {
    display: inline-block;
    position: absolute;
    top: calc(38%);
	transition: opacity .3s;
}
.is-slider-prev{
    left: -40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 17px 25px 0;
    border-color: transparent #707070 transparent transparent;
	cursor: pointer;
}
@media screen and (max-width:1024px) {
.is-slider-prev{
	left: -25px;
}
}
@media screen and (max-width:991px) {
.is-slider-prev{
	left: -15px;
}
}
@media screen and (max-width:767px) {
.is-slider-prev{
    display: none!important;
}
}
.is-slider-next {
    right: -40px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 17px;
	border-color: transparent transparent transparent #707070;
	cursor: pointer;
}
@media screen and (max-width:1024px) {
.is-slider-next {
	right: -25px;
}
}
@media screen and (max-width:991px) {
.is-slider-next {
	right: -15px;
}
}
@media screen and (max-width:767px) {
.is-slider-next {
    display: none!important;
}
}
.t-and-c_grop {
    margin-top: 120px;
}
@media screen and (max-width:767px) {
.t-and-c_grop {
    margin-top: 60px;
}
}
.black-bg{
    background-color: #000;
    margin-bottom: 0rem;
}
li.instructor_curriculum-wrap_area {
    background-color: #fff;
	border: solid 1px #000;
}
@media screen and (max-width:767px) {
li.instructor_curriculum-wrap_area {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 15px;
}
}
p.top-curriculum_text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.6em;
    text-align: justify;
}
@media screen and (max-width:991px) {
p.top-curriculum_text {
    line-height: 1.7em;
    font-size: 13px;
}
}
/*画像の上に文字をホバーで表示*/
.instructor_slider_item{
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}
.instructor_slider_item-hover-mask{
    width: 350px;
    height: 440px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
	right: 0;
    background: rgba(0,0,0,.75);
    opacity: 0;
    color: #fff;
    padding: 30px 18px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
@media screen and (max-width:1199px) {
.instructor_slider_item-hover-mask{
    width: 291px;
    height: 370px;
    padding: 13px 8px;
}
}
@media screen and (max-width:991px) {
.instructor_slider_item-hover-mask{
    width: 330px;
    height: 415px;
    padding: 30px 25px;
}
}
@media screen and (max-width:767px) {
.instructor_slider_item-hover-mask{
    display:none;
}
}
.instructor_slider_item-hover-mask:hover {
    opacity: 1;
    transition:all 0.6s ease;
    padding-top: 35px;
}
@media screen and (max-width:767px) {
.instructor_slider_item-hover-mask:hover {
    display:none;
}
}
.instructor_slider_item:hover .instructor_slider_item-hover-mask {
　padding-bottom: 50px;
}
/*ホバーで表示される内容*/
.instructor_slider_name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 0.3em;
}
@media screen and (max-width:1199px) {
.instructor_slider_name {
    font-size: 16px;
    margin-bottom: 0.2rem;
}
}
@media screen and (max-width:767px) {
.instructor_slider_name {
    font-size: 15px!important;
	margin-top: 6px;
    margin-bottom: 0.4rem!important;

}
}
.instructor_slider_name-labels {
    letter-spacing: 0.1em;
}
.instructor_slider_achievement {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-top: 25px;
	margin-bottom: 0.5rem;
}
@media screen and (max-width:1199px) {
.instructor_slider_achievement {
	font-size: 16px;
    margin-top: 18px;
}
}
ul.instructor_slider_achievement_detail {
    font-size: 14px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    padding-left: 1em;
    text-indent: -1em;
    letter-spacing: 0.05em;
    line-height: 1.6em;
}
@media screen and (max-width:1199px) {
ul.instructor_slider_achievement_detail {
    font-size: 12.5px;
}
}
/*他*/
p.instructor_slider_achievement_other {
    text-align: right;
    margin: 5px;
}
/*スタジオの場所*/
.studio-plece {
    position: absolute;
    background-color: rgb(186,186,186,0.8);
    top: 0px;
    right: 0%;
    color: #000;
    text-align: center;
    padding: 10px 30px;
}
.studio-plece p{
    margin-bottom: 0rem;
}
/*sp 表示される内容*/
@media screen and (max-width:767px) {
.slick-slide img.instructor_slider_img{
    width: 315px;
}
}
@media screen and (max-width:360px) {
.slick-slide img.instructor_slider_img{
    width: 300px;
}
}
@media screen and (max-width:320px) {
.slick-slide img.instructor_slider_img{
    width: 275px;
}
}
.instructor_slider_item-hover-mask_sp {
    display: none;
}
@media screen and (max-width:767px) {
.instructor_slider_item-hover-mask_sp {
    display:block;
}
}
@media screen and (max-width:767px) {
article.instructor_slider_item.col-12 {
    position: relative;
    z-index: 1;
    margin-bottom: -21px;
    padding-right: 10px;
    padding-left: 10px;
}
.instructor_slider_item-hover-mask_sp {
    position: absolute;
    z-index: 2;
    background: rgba(0,0,0,.75);
    bottom: 3%;
    width: 95%;
	color: #fff;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    padding: 10px 30px;
	display: flex;
}
}
@media screen and (max-width:767px) {
.instructor_slider_item-hover-mask_sp{
    padding: 20px 15px 20px;
}
}
@media screen and (max-width:767px) {
.instructor_slider_item-hover-mask_sp p{
    margin-bottom: 0rem;
    font-size: 14px;
	line-height: 1.3em;
}
}
@media screen and (max-width:767px) {
#Slider .slide{
    width: 360px;
}
#Slider .slide img{
    max-width: 100%;
    height: auto;
}
}
@media screen and (max-width:767px) {
.slick-list.draggable {
    margin-left: -14%!important;
}
}
@media screen and (max-width:425px) {
.slick-list.draggable {
    margin-left: -16%!important;
}
}
@media screen and (max-width:415px) {
.slick-list.draggable {
    margin-left: -8%!important;
}
}
@media screen and (max-width:375px) {
.slick-list.draggable {
    margin-left: -7%!important;
}
}
@media screen and (max-width:320px) {
.slick-list.draggable {
    margin-left: -3%!important;
}
}
/*スタジオの場所*/
.studio-plece-sp {
    background-color: rgb(186,186,186,0.8);
    top: 0px;
    right: 0%;
    color: #000;
    text-align: center;
    padding: 10px 30px;
}
@media screen and (max-width:767px) {
.studio-plece-sp {
    padding: 10px 25px;
    margin-right: 15px;
}
}
/*//////////TOPICS//////////*/
.t-and-c_grop{
	background-color:#fff;
}
.col-12.col-lg-6.t-and-c_grop {
    padding: 50px 70px;
}
@media screen and (max-width:1199px) {
.col-12.col-lg-6.t-and-c_grop {
    padding: 30px 45px;
}
}
@media screen and (max-width:991px) {
.col-12.col-lg-6.t-and-c_grop {
    padding: 30px 20px;
}
}
@media screen and (max-width:767px) {
.col-12.col-lg-6.t-and-c_grop {
    display: flex;
    flex-direction: column;
}
}
.col-12.col-lg-6.t-and-c_grop:nth-child(1){
    max-width: 49.8%;
    margin-right: 0.2%;
}
@media screen and (max-width:767px) {
.col-12.col-lg-6.t-and-c_grop:nth-child(1){
    max-width: 100%;
    margin-right: 0%;
}
}
.col-12.col-lg-6.t-and-c_grop:nth-child(2){
    max-width: 49.8%;
    margin-left: 0.2%;
}
@media screen and (max-width:767px) {
.col-12.col-lg-6.t-and-c_grop:nth-child(2){
    max-width: 100%;
    margin-top: 20px;
    margin-left: 0%;
}
}
p.link-wp-line a{
	border-bottom: solid 1px #35dcea;
}
p.link-wp-line a:hover{
	color: #35dcea;
}
/*spのみのトップページのコンテンツ*/
i.far.fa-angle-right.arrow-icon-sp {
    display: none;
}
@media screen and (max-width:767px) {
ul.sp-nav_curriculum-wrap.curriculum-wrap_top-contents-sp {
    display: block;
    margin-top: 20px;
}
.sp-nav_curriculum-wrap_area_title.lavender.curriculum-top-con-sp_text,.sp-nav_curriculum-wrap_area_title.red.curriculum-top-con-sp_text,.sp-nav_curriculum-wrap_area_title.orange.curriculum-top-con-sp_text{
    font-size: 40px;
    padding-top: 0px;
}
.curriculum_subtitle.curriculum-top-con-sp_subtext {
    font-size: 20px;
    text-align: left;
}
li.instructor_curriculum-wrap_area div{
	padding: 15px 27px 5px;
}
.sp-nav_curriculum-wrap_area_icon.black-bg.curriculum-top-con-sp_arrow {
    margin-top: 0px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}
i.fas.fa-chevron-down.arrow-icon-pc {
    display: none;
}
i.far.fa-angle-right.arrow-icon-sp {
    display: block;
}
i.far.fa-angle-right.arrow-icon-sp.fa-angle-right:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;

}
.top-studio-img-sp {
    margin-right: -15px!important;
    margin-left: -15px!important;
}
}
@media screen and (max-width:425px) {
.sp-nav_curriculum-wrap_area_title.lavender.curriculum-top-con-sp_text,.sp-nav_curriculum-wrap_area_title.red.curriculum-top-con-sp_text,.sp-nav_curriculum-wrap_area_title.orange.curriculum-top-con-sp_text{
    font-size: 35px;
}
.curriculum_subtitle.curriculum-top-con-sp_subtext {
    font-size: 18px;
    text-align: left;
}
}
.t-and-c_e-black{
	font-size: 50px;
	font-family: 'myfont-Poppins-Bold';
	margin-bottom: 10px;
    color: #000;
}
@media screen and (max-width:1366px) {
.t-and-c_e-black{
	font-size: 40px;
}
}
@media screen and (max-width:991px) {
.t-and-c_e-black{
	font-size: 30px;
}
}
@media screen and (max-width:767px) {
.t-and-c_e-black{
	font-size: 50px;
}
}
@media screen and (max-width:375px) {
.t-and-c_e-black{
    font-size: 40px;
}
}
.t-and-c_j-black{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 23px;
    padding-left: 30px;
    color: #000;
}
@media screen and (max-width:1366px) {
.t-and-c_j-black{
	font-size: 20px;
}
}
@media screen and (max-width:991px) {
.t-and-c_j-black{
    font-size: 16px;
    padding-left: 20px;
}
}
@media screen and (max-width:767px) {
.t-and-c_j-black{
    padding-left: 0px;
    font-size: 20px;
    margin-top: -20px;
}
}
.topics-box-scroll{
    width: 100%;
    height: 350px;
    overflow-y: scroll;
    overflow-x: hidden;
    line-height: 1.4rem;
    margin-top: 33px;
}
@media screen and (max-width:1440px) {
.topics-box-scroll{
    margin-top: 33px;
    height: 275px;
}
}
@media screen and (max-width:1199px) {
.topics-box-scroll{
    height: 260px;
    margin-top: 10px;
}
}
@media screen and (max-width:991px) {
.topics-box-scroll{
    margin-top: 8px;

}
}
@media screen and (max-width:767px) {
.topics-box-scroll{
    margin-top: 20px;
    height: 350px;
}
}

.topics-box_line {
    border-top: solid 1px #707070;
}
.topics-box {
    font-size: 16px;
    letter-spacing: 0.08rem;
    width: 100%;
    cursor: pointer;
    transition-duration: 0.2s;
    border-bottom: solid 1px #707070;
}
@media screen and (max-width:1199px) {
.topics-box {
    font-size: 13px;
    padding: 25px 0% 25px;
}
}
@media screen and (max-width:991px) {
.topics-box {
    padding: 15px 0% 15px;
    font-size: 11px;
}
}
@media screen and (max-width:767px) {
.topics-box {
    padding: 0px;
}
}
.topics-box_line {
    padding: 30px 15px 0px;
}
@media screen and (max-width:1199px) {
.topics-box_line {
    padding: 15px 0px 15px;
}
}
@media screen and (max-width:991px) {
.topics-box_line {
    flex-direction: column;
    font-size: 13px;
}
}
.topics-day {
    font-family: 'myfont-Bold';
    margin-right: 30px;
}
@media screen and (max-width:1199px) {
.topics-day {
    margin-right: 15px;
    font-size: 13px;
}
}
@media screen and (max-width:991px) {
.topics-day {
    margin: 0px;
}
}
p.topics-text-box {
    line-height: 2;
    font-size: 14px;
    display: block;
    margin-bottom: 0px;
    width: 100%;
}
@media screen and (max-width:1199px) {
p.topics-text-box {
    line-height: 1.7;
    font-size: 14px;
}
}
@media screen and (max-width:767px) {
p.topics-text-box {
    width: 90%;
    margin-top: 10px;
}
}
/*アコーディオンメニュー*/
.qa__head {
  position: relative;
  text-align: left;
  color: black;
  cursor: pointer;
  width: 100%;
  align-items: center;
}
@media screen and (max-width:1199px) {
.qa__head {
    align-items: flex-start;
    align-items: flex-start;flex-direction: column;
  padding: 0px;
}
}
@media screen and (max-width:991px) {
.qa__head {
  padding: 0px;
}
}
.qa__head:after {
  content: "";
  border-top: 1px solid black;
  border-left: 1px solid black;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(-135deg) translateY(9px);
  position: absolute;
  right: 20px;
  top: 50%;
  transition: transform .4s;
}
.qa__body {
  position: relative;
  color: black;
  border: transparent;
  padding: 0 10px;
  line-height: 0;
  opacity: 0;
}
@media screen and (max-width:1199px) {
.qa__body {
	padding: 0px;
}
}
@media screen and (max-width:767px) {
.qa__body {
    margin: -10px;
}
}
.qa__body p{
  opacity: 0;
}
.qa__body.is-open {
    line-height: 0.5em;
    opacity: 1;
    margin: 25px 0px 35px;
    font-size: 13px;
    text-align: justify;
}
.qa__body.is-open span{
  line-height: 1.5;
}
.qa__body.is-open p{
  opacity: 1;
}
@media screen and (max-width:991px) {
.qa__body.is-open {
    padding: 0px;
}
}
@media screen and (max-width:767px) {
.qa__body.is-open {
    width: 100%;
    margin-left: 1px;
}
}
.qa__head.is-open::after {
  transform: rotate(45deg) translateY(-10px);

}
.qa__item:not(:first-child) {
  margin-top: 16px;
}
/*//////////curriculum//////////*/
.curriculum_subtitle {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 700;
    font-size: 23px;
    text-align: center;
    margin-top: -5px;
}
@media screen and (max-width:1366px) {
.curriculum_subtitle {
	font-size: 20px;
}
}
@media screen and (max-width:991px) {
.curriculum_subtitle {
	font-size: 15px;
}
}
/*//////////STUDIO//////////*/
.top-studio-img {
    margin-top: 40px;
}
.top-studio-name {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 900;
    font-size: 23px;
    color: #fff;
    margin-top: 23px;
}
@media screen and (max-width:1199px) {
.top-studio-name {
	font-size: 20px;
}
}
@media screen and (max-width:767px) {
.top-studio-name {
    margin-top: 10px;
    font-weight: 500;
}
}
.top-studio-place {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    text-align: justify;
    color: #fff;
    margin-bottom: 0.3rem;
    font-weight: 100;
}
@media screen and (max-width:1199px) {
.top-studio-place {
	font-size: 13px;
}
}
@media screen and (max-width:991px) {
.top-studio-place {
    font-size: 10.7px;
}
}
@media screen and (max-width:767px) {
.top-studio-place {
    font-size: 15px;
}
.top-studio-place:nth-of-type(3){
    margin-bottom: 20px;
}
}
img.top-studio-img {
    display: block;
    margin: auto;
    margin-top: 35px;
}
@media screen and (max-width:991px) {
img.top-studio-img {
    margin-top: 15px;
}
}
@media screen and (max-width:767px) {
img.top-studio-img {
    margin-top: 25px;
}
}
/*スタジオ見学バナー*/
.top-studio-img_banner {
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    margin-top: 100px;
}
@media screen and (max-width:767px) {
.top-studio-img_banner {
    margin-top: 50px;
}
}
/*//////////NEWS　　WP//////////*/
.col-lg-3.col-md-6.col-sm-6.col-6.top-wp-news-with {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
}
@media screen and (max-width:767px) {
.col-lg-3.col-md-6.col-sm-6.col-6.top-wp-news-with {
    padding-right: 5px;
    padding-left: 5px;
}
}
/*画像サイズ調整*/
.top-wp-top_news-img{
    width: 250px!important;
    display: block!important;
    margin: auto!important;
    height: 180px;
    object-fit: cover;
}
@media screen and (max-width:1199px) {
.top-wp-top_news-img{
    width: 225px!important;
    height: 162px;
}
}
@media screen and (max-width:991px) {
.top-wp-top_news-img{
    width: 342px!important;
	height: 259px;
}
}
@media screen and (max-width:767px) {
.top-wp-top_news-img{
    width: 100%!important;
	height: 186px;
}
}
@media screen and (max-width:576px) {
.top-wp-top_news-img{
	height: 186px;
}
}
@media screen and (max-width:480px) {
.top-wp-top_news-img{
	height: 165px;
}
}
@media screen and (max-width:425px) {
.top-wp-top_news-img{
	height: 145px;
}
}
@media screen and (max-width:415px) {
.top-wp-top_news-img{
	height: 142px;
}
}
@media screen and (max-width:375px) {
.top-wp-top_news-img{
    height: 127px;
}
}
@media screen and (max-width:360px) {
.top-wp-top_news-img{
    height: 122px;
}
}
@media screen and (max-width:320px) {
.top-wp-top_news-img{
    height: 108px;
}
}
figure.top-wp-category-list {
    display: block;
    margin: auto;
    margin-top: 35px;
}
@media screen and (max-width:991px) {
figure.top-wp-category-list {
    margin-top: 15px;
}
}
.top-wp-news-category {
    width: 96%!important;
    margin: auto;
    margin-top: 10px;
}
@media screen and (max-width:1199px) {
.top-wp-news-category {
    width: 93%!important;
}
}
@media screen and (max-width:767px) {
.top-wp-news-category {
    width: 100%!important;
    margin-top: 5px;
}
}
span.wp-news-category-tag {
    padding: 0px 5px;
	font-size: 13px;
    border: 1px solid;
    display: inline-block;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
@media screen and (max-width:767px) {
span.wp-news-category-tag {
    font-size: 11px;
    padding: 0px 5px;
}
}
.wp-news-title {
    color: #fff;
    font-size: 20px;
}
@media screen and (max-width:1199px) {
.wp-news-title {
    font-size: 16px;
}
}
@media screen and (max-width:767px) {
.wp-news-title {
    font-size: 13px;
}
}
.top-wp-news-title {
    color: #fff;
    font-size: 15px;
}
@media screen and (max-width:767px) {
.top-wp-news-title {
    font-size: 13px;
}
}
.wp-news-day{
    color: #9A9A9A;
    font-size: 14px;
    margin-bottom: 0rem;
}
@media screen and (max-width:767px) {
.wp-news-day{
    font-size: 13px;
}
}

/*//////////GALLERY//////////*/
.slider-gallery-beside .slick-slide {
	width: 330px;
 	 height: auto;
	position: relative;
	overflow: hidden;
    margin: 0 10px;
}
.slider-gallery-beside .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
 	 object-fit: cover;
    margin-top: 35px;
}
.row.btn-2-mt {
    margin-top: 150px;
}
@media screen and (max-width:1199px) {
.row.btn-2-mt {
    margin-top: 100px;
}
}

/*//////////APPLICATION and CONTACT US//////////*/
.padding_no {
    padding-right: 0px!important;
    padding-left: 0px!important;
}
/*ホバーで背景画像拡大とカラーフィルターをかける*/
.banners {
  display: flex; 
}
.banner {
  width: 100%;
  height: 300px;
}
.banners.banner.banner-content {
  color: white;
}
/*左側　ブルー*/
.bg-zoom_l{
  position: relative;
  overflow: hidden;
  background: #1C8FCD;
  height: 324px;
}
.bg-zoom_l:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../img/application-bg.png) no-repeat center center; 
  transition: all .8s ease;
  background-size: cover;
}
.bg-zoom_l:hover:after {
  opacity: .3;
  transform: scale(1.05);
}
.bg-zoom_l .bg-zoom-content {
    z-index: 1;
    position: absolute;
    transform: translate(43%, 108%);
}
@media screen and (max-width:1440px) {
.bg-zoom_l .bg-zoom-content {
    transform: translate(20%, 73%);
}
}
/*右側　オレンジ*/
.bg-zoom_r{
  position: relative;
  overflow: hidden;
  background: #E67956;
  height: 324px;
}
.bg-zoom_r:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../img/contactus-bg.png) no-repeat center center; 
  transition: all .8s ease;
  background-size: cover;
}
@media screen and (max-width:1440px) {
.bg-zoom_r,.bg-zoom_l{
    height:270px;
}
}
@media screen and (max-width:1199px) {
.bg-zoom_r,.bg-zoom_l{
    height:215px;
}
}
@media screen and (max-width:991px) {
.bg-zoom_r,.bg-zoom_l{
    height:180px;
}
}
@media screen and (max-width:767px) {
.bg-zoom_r,.bg-zoom_l{
    height: 165px;
}
}
.bg-zoom_r:hover:after {
  opacity: .3;
  transform: scale(1.05);
}

/*スタジオ紹介の時表示しているもの*/
/*
.bg-zoom_r .bg-zoom-content {
    z-index: 1;
    position: absolute;
    transform: translate(17%, 108%);
}
@media screen and (max-width:1440px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
    transform: translate(20%, 73%);
}
}
@media screen and (max-width:1199px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(18%, 67%);
}
}
@media screen and (max-width:375px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(18%, 45%);
}
}
@media screen and (max-width:1024px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
    transform: translate(15%, 67%);
}
}
@media screen and (max-width:991px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
    transform: translate(12%, 60%);
}
}
@media screen and (max-width:480px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(15%, 50%);
}
}
@media screen and (max-width:375px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(10%, 45%);
}
}
@media screen and (max-width:320px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(6%, 45%);
}
}
*/
/*スタジオ見学に戻す時、こちらを表示で上記コードは非表示*/

.bg-zoom_r .bg-zoom-content {
    z-index: 1;
    position: absolute;
    transform: translate(43%, 108%);
}
@media screen and (max-width:1440px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
    transform: translate(20%, 73%);
}
}
@media screen and (max-width:1199px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(18%, 67%);
}
}
@media screen and (max-width:375px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(18%, 45%);
}
}
@media screen and (max-width:1024px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
    transform: translate(15%, 67%);
}
}
@media screen and (max-width:991px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
    transform: translate(12%, 60%);
}
}
@media screen and (max-width:480px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(15%, 50%);
}
}
@media screen and (max-width:375px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(10%, 45%);
}
}
@media screen and (max-width:320px) {
.bg-zoom_l .bg-zoom-content,.bg-zoom_r .bg-zoom-content {
	transform: translate(6%, 45%);
}
}
/*テキスト*/
.top_con_subtitle_x{
    font-family: 'myfont-Medium';
    font-size: 20px;
	color: #fff;
    margin-bottom: 0.5rem;
}
@media screen and (max-width:1199px) {
.top_con_subtitle_x{
    font-size: 16px;
}
}
@media screen and (max-width:767px) {
.top_con_subtitle_x{
    font-size: 15px;
}
}
h2.top_con_title_x{
	font-family: 'myfont-Poppins-Bold';
	font-size: 50px;
	color: #fff;
}
@media screen and (max-width:1440px) {
h2.top_con_title_x{
    font-size: 55px;
}
}
@media screen and (max-width:1199px) {
h2.top_con_title_x{
    font-size: 35px;
}
}
@media screen and (max-width:991px) {
h2.top_con_title_x{
    font-size: 30px;
}
}
@media screen and (max-width:767px) {
h2.top_con_title_x{
    font-size: 38px;
}
}
/*botton ＞*/
.arrow_box {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 83%;
    transform: translate(-47%, -43%);
}
@media screen and (max-width:1199px) {
.arrow_box {
	left: 79%;
    top: 44%;
}
}
@media screen and (max-width:767px) {
.arrow_box {
    top: 47%;
}
}
@media screen and (max-width:375px) {
.arrow_box {
    top: 47%;
}
}
.arrow{
    position: relative;
    display: inline-block;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
}
.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}
.top_con4_icon::after {
    left: 25px;
    width: 40px;
    height: 40px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (max-width:1199px) {
.top_con4_icon::after {
    width: 30px;
    height: 30px;
}
}
@media screen and (max-width:1024px) {
.top_con4_icon::after {
    left: 16px;
}
}
@media screen and (max-width:991px) {
.top_con4_icon::after {
    width: 20px;
    height: 20px;
}
}
@media screen and (max-width:767px) {
.top_con4_icon::after {
    left: 10px;
    width: 25px;
    height: 25px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
}
@media screen and (max-width:320px) {
.top_con4_icon::after {
    left: 20px;
}
}
.view-more_btn-pagging_btm {
    margin-bottom: 80px;
}
/*//////////FOLLOW ME !//////////*/
.top-follow-me {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  gap: 1rem;
  font-size: 3rem;
    color: #fff;
    width: 100%;
    height: 380px;
	background: radial-gradient( #21BEC9, #DDFDD6);
  background-size: 200% 140%;
  animation: bggradient 10s ease infinite;
  position: relative;
  z-index: 1;
}
@keyframes bggradient{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media screen and (max-width:14406px) {
.top-follow-me {
    height: 330px;
}
}
@media screen and (max-width:1199px) {
.top-follow-me {
    height: 220px;
}
}
@media screen and (max-width:991px) {
.top-follow-me {
    height: 170px;
}
}
@media screen and (max-width:767px) {
.top-follow-me {
    height: 227px;
}
}
.top-follow-me-inner {
  padding-top: 60px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  font-family: 'myfont-Poppins-ExtraBold';
  font-size: 120px;
  letter-spacing: 0.05em;
  animation: marquee 250s linear infinite;
  text-shadow: 0 0 7px #ffffff;
}
@media screen and (max-width:1440px) {
.top-follow-me-inner {
  font-size: 85px;
}
}
@media screen and (max-width:1199px) {
.top-follow-me-inner {
  font-size: 55px;
}
}
@media screen and (max-width:991px) {
.top-follow-me-inner {
    font-size: 50px;
    padding-top: 43px;
}
}
@media screen and (max-width:767px) {
.top-follow-me-inner {
    font-size: 63px;
    padding-top: 40px;
}
}
@keyframes marquee {
  0%   { translate: 0; }
  100% { translate: calc(-100% - 1rem); }
}
.top-follow-me_sns_icon {
    text-align: center;
    font-size: 80px;
    position: absolute;
    z-index: 3;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #000;
}
@media screen and (max-width:1199px) {
.top-follow-me_sns_icon {
  font-size: 65px;
}
}
@media screen and (max-width:991px) {
.top-follow-me_sns_icon {
  font-size: 50px;
}
}
@media screen and (max-width:767px) {
.top-follow-me_sns_icon {
    font-size: 74px;
    top: 60%;
}
}
.top-follow-me_sns_icon i {
    padding: 35px;
}
@media screen and (max-width:991px) {
.top-follow-me_sns_icon i {
    padding: 25px;
}
}
@media screen and (max-width:767px) {
.top-follow-me_sns_icon i {
    padding: 25px 5px;
    font-size: 55px;
}
}
@media screen and (max-width:375px) {
.top-follow-me_sns_icon i {
    padding: 25px 5px;
    font-size: 40px;
}
}
/*コピーライト*/
.copy-right_text{
	color:#fff;
	text-align:center;
    margin-bottom: 0rem;
    padding: 30px 0px;
}
@media screen and (max-width:991px) {
.copy-right_text{
	font-size: 13px;
}
}
@media screen and (max-width:767px) {
.copy-right_text{
	
    padding: 20px 0px;
}
}
svg {
  overflow: visible;
}
/*第2期生オーディション*/
.wkc-japan-second-audition-grop {
    background: rgb(237 254 255 / 34%);
    padding: 20px;
    line-height: 1.7em;
    margin: -30px 0px 100px;
}
@media screen and (max-width:767px) {
.wkc-japan-second-audition-grop {
    padding: 20px 10px;
    margin: -30px 0px 50px;
}
}
.second-audition-title{
	font-size: 22px;
    font-weight: bold;
}
@media screen and (max-width:1199px) {
.second-audition-title{
	font-size: 17px!important;
}
}
@media screen and (max-width:767px) {
.second-audition-title{
    font-size: 14px;
}
}
.second-audition-title span{
    border-bottom: solid;
    padding-bottom: 5px;
}
.second-audition-campaign {
    font-size: 17px;
    font-weight: 300;
    font-weight: 400;
}
@media screen and (max-width:767px) {
.second-audition-campaign {
    font-size: 13px;
}
}
p.kaso-from-text.kaso-from-text-tuika {
    text-align: center;
    margin-top: 100px;
}
@media screen and (max-width:767px) {
p.kaso-from-text.kaso-from-text-tuika {
    margin-top: 50px;
}
}
p.kaso-from-text.kaso-from-text-tuika span{
    font-size: 22px;
}
@media screen and (max-width:767px) {
p.kaso-from-text.kaso-from-text-tuika span{
    font-size: 17px;
}
}
.wkc-japan-toppage-nwes {
    background: rgb(237 254 255 / 34%);
    padding: 20px;
    color: #fff;
}
a.wp-link-a {
    color: #37EEEE;
}
.campaign-text{
    color: #fbfc16;
}
/*トップページバナーオーディション*/
.audition-banner-grop {
    text-align: center;
    margin-bottom: 80px;
}
@media screen and (max-width:767px) {
.audition-banner-grop {
    margin-bottom: 30px;

}
}