@charset "UTF-8";
/* CSS Document */
/*-------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
----------------------------------------------------------------------------------------*/

/*--------------------------------------------------
上部固定ヘッダー設定
-----------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  top: -80px;  /*最初は隠しておく*/
  left: 0;
  z-index: 100;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  background-color: #fff;
  height: 70px;
}
.header.is-show {
  top: 0;
}
.header_inr {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 15px 0 15px;
}
/*ヘッダーのロゴ*/
.header_logo {
  width: 26%;
  line-height: 1;
}
/*ヘッダーのCTエリア*/
.header-cta {
  width: 35%;
}

/*--------------------------------------------------
下部固定ヘッダー
-----------------------------------------------------*/
  .footer_fixed {
    height: 70px;
    position: fixed;
    width: 100%;
    bottom: -70px;
    left: 0%;
    z-index: 99;
    display: block;
    background-color:rgba( 255, 255, 255, 0.9);
    box-shadow: 0 3px 6px rgba(#000, 0.16);
}
  .footer_wrap {
    width: 100%;
    padding: 4px 10px;
  }
  .footer_img {
    width: 38vh;
    margin: 0 auto;
  }

/*--------------------------------------------------
ファーストビュー設定
-----------------------------------------------------*/
.main-visual {
  background-image: url("../images/top_image_back.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: auto;
  margin-top: 0px;
  max-width: 2700px;

}
.main-visual-inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.main-visual-inner img {
  vertical-align: top;
}
.main-visual-sp {
  display: none;
}

/*--------------------------------------------------
CTAの設定
-----------------------------------------------------*/
.cta-title {
  background-image: url(../images/cta_titile_bg.jpg);
  background-repeat: no-repeat;
  background-size:cover;
  padding: 2em;
}
.cta_title_img {
  width: 70%;
  margin: 0 auto;
  line-height: 1;
}
.cta_inner {
  padding: 2em 2em;
  background-image: url(../images/cta_bg_item.png),url(../images/cta_bg_item.png),url(../images/cta_bg.jpg);
  background-repeat: no-repeat,no-repeat,repeat;
  background-position: top 0% right -70%, bottom 0% left -40%, center center;
}
.cta_lead-img {
  width: 80%;
}
.cta_lead-img02 {
  width: 60%;
}
.cta_UMBER {
  margin-bottom: 4em;
}
.cta_UMBER_img {
  width: 70%;
  margin: 0 auto;
}
.cta_present {
  background-color: #f3f7f3;
  padding: 1em;
  border: 1px solid #666666;
  position: relative;
  margin-bottom: 3em;
}
.cta_present_lead {
  position: absolute;
  content: "";
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
}
.cta_present_lead_text {
  text-align: center;
  display: inline-block;
  padding: .4em 1em;
  color: #fff;
  background-color: #666666;
  font-size: 2em;
}
.cta_present_title_img {
  width: 70%;
  margin: 3em auto 1em;
}
.cta_present_main_item img{
  margin-bottom: 1em;
}
.cta_btn_main {
  margin-bottom: 1em;
}
.cta_btn_top {
  width: 60%;
margin: 0 auto .5em;
}
.cta_btn {
  width: 90%;
  margin: 0 auto;
}
.cta_text {
  text-align: center;
  font-family: serif;
  font-size: 1.4em;
}
/*ボタンのキラキラアニメーションここから*/
.cta_btn{
  position    :relative;
  overflow    :hidden;
}
.reflection {
  height      :100%;
  width       :30px;
  position    :absolute;
  top         :-180px;
  left        :0;
  background-color: #fff;
opacity     :0;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 3s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 3s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 3s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
  0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
  0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
  0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

/*ボタンのキラキラアニメーションここまで*/



/*--------------------------------------------------
「こんなお悩みはありませんか？」の設定
-----------------------------------------------------*/
.worry {
  background-image: url(../images/worry_bg.jpg); 
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2em;
  margin-top: -10px;
}
.worry_title {
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  position: relative;
}
.worry_title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #666;
  height: 1px;
  width: 30%;
}
.worry_main {
  background-color: #fff;
  border: 1px solid #666666;
  border-radius: 38px;
  box-shadow: 0 3px 6px rgba(0,0,0, 0.16);
  padding: 2em;
  margin-bottom: 2em;
}
.worry_main_list {
  font-size: 1.3em;
  font-family: serif;
  border-bottom: 1px dotted #343434;
  position: relative;
  padding-left: 40px;
  padding-bottom: .5em;
  margin-bottom: 1em;
}
.worry_fz {
  font-size: 1.2em;
}
.worry_main_list::before {
  position: absolute;
  content: "";
  background: url(../images/worry_check.png) no-repeat center center /contain;
  width: 26px;
  height: 29px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.worry_img {
  width: 90%;
  margin: 0 auto;
}
.solution {
  background-image: url(../images/solution_bg.webp);
  background-repeat: no-repeat;
  background-size:cover;
  background-position: center top;
  padding: 2em 2em 5em;
}
.solution_inner {
  padding-top: 360px;
}
.solution_lead {
  width: 80%;
  margin: 0 auto 1em;
}
.solution_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}
.solution_list_item {
  margin: 0 .3em;
}
.solution_text {
  width: 80%;
margin: 0 auto;
}


/*--------------------------------------------------
「スタジオの特徴」設定
-----------------------------------------------------*/
.point {
  background-color: #e4d8d5;
  padding: 6.5em 0 1em;
  position: relative;
  background-image: url(../images/point_bg.jpg);
  background-repeat: repeat;
}
.point_dod{
  position: absolute;
top: .9%;
left: 50%;
transform: translateY(-50%);
width: 6px;
}
.point_title {
  width: 80%;
  margin: 0 auto;
}
.point_item {
  padding: 4em 1em;
  position: relative;
}
.point_item02 {
  background-color: #DAE7DA;
  background-image: url(../images/point02_bg.jpg);
  background-repeat: repeat-y;
  padding: 4em 1em;
  position: relative;
}
.point_head {
  background-color: #666666;
  position: relative;
  border-radius: 30px 30px 0 0 ;
  padding: 2em;
  position: relative;
}
.point_head::after {
  position: absolute;
  content: "";
  background: url(../images/point_title_bg.png) no-repeat center center /contain;
  width: 200px;
  height: 300px;
  top: 0;
  left: 3%;
}
.point_number {
  position: absolute;
  width: 13%;
  top: -5%;
  left: 6%;
}
.point_item_title {
  font-family: serif;
  color: #fff;
  font-size: 2em;
}
.point_attention {
  margin-bottom: 0.5em;
  text-align: center;
}
.point_attention_p {
  display: inline-block;
  padding: .3em .5em;
  color: #343434;
  background-color:rgba( 255, 255, 255, 0.9);
  font-family: serif;
  font-size: 1.6em;
}
.point_main {
  background-color: #fff;
  padding: 4em 2em 3em;
  border: 2px solid #666666;
}
.point_img {
  margin-bottom: 2em;
}
.point_triangle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}

/*--------------------------------------------------
「初めての方でも安心！」の設定
-----------------------------------------------------*/
 .first {
  background-image: url(../images/first_title_bg.jpg);
  background-repeat: repeat-y;
 }
.first_inner {
  padding: 2em;
}
.first_title {
  width: 85%;
  margin: 0 auto 2em; 
}
.first_item {
  background-color: rgba( 255, 255, 255, 0.7 ); 
  border: 2px solid #343434;
  border-radius: 30px;
  padding: 7em 2em 2em;
  position: relative;
  margin-bottom: 7em;
}
.first_item:last-child {
  margin-bottom: 3em;
}
.first_item_title_worry {
  position: absolute;
  width: 65%;
  top: -7%;
  left: 20px;
}
.first_text {
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
}
.first_worry_graph {
  width: 60%;
  margin: 0 auto 2em;
}
.first_worry_photo {
  display: flex;
  justify-content: space-between;
}
.first_worry_photo_item {
  width: 48%;
}
.first_item_title_person {
  position: absolute;
  width: 75%;
  top: -7%;
  left: 20px;
}
.first_person_graph {
  width: 70%;
  margin: 0 auto 1em;
}
.first_person_flex {
  display: flex;
  align-items: center;
  margin-bottom: 2em;
  justify-content: center;
}
.first_person_text_graph img{
  width: 80%;
}
.first_person_text_lead {
 font-size: 2em;
 text-align: center;
 font-family: serif;
}
.first_fz {
  font-size: 1.6em;
}
.first_person_bottom {
  width: 100%;
  margin: 0 auto;
}


/*--------------------------------------------------
「お客様の声」設定
-----------------------------------------------------*/
.voice_title {
  background-image: url(../images/voice_title_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 3em 1em;
}
.voice_title_main {
  padding: 1em;
  background-color: rgba( 255, 255, 255, 0.7 ); 
  border-radius: 30px;
  width: 80%;
  margin: 0 auto;
}
.voice_item_title {
  background-image: url(../images/voice_item_title_bg01.jpg);
  background-size: cover;
  padding: .5em 1em;
  color: #fff;
  font-size: 2.2em;
  font-weight: bold;
}
.voice_item_green {
  background-image: url(../images/voice_item_title_bg02.jpg);
}
.voice_item_wrap {
  background-image: url(../images/voice_bg_photo.jpg);
}
.voice_item_pink {
  background-image: url(../images/voice_bg_pink.jpg);
}
.voice_item_inner {
  padding: 0 2em 4em;
}
.voice_item_main {
  background-color: rgba( 255, 255, 255, 0.8 ); 
  border-bottom: 4px solid #666;
  border-right: 4px solid #666;
  border-left: 4px solid #666;
  padding: 2em;
  border-radius: 0 0 20px 20px;
}
.voice_item_profile {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
}
.voice_item_img {
  width: 40%;
}
.voice_item_head {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding-bottom: .5em;
  border-bottom: 1px dotted #343434;
  font-size: 1.4em;
  margin-left: 1em;
}
.voice_item_name {
  margin-right: 1em;
}
.voice_many {
  background-image: url(../images/voice_second_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3em 1em;
}
.voice_many_title {
  margin-bottom: 3em;
}
.voice_many_title_main {
  padding: 3em;
  background-color: rgba( 255, 255, 255, 0.7 ); 
  border-radius: 30px;
  margin: 0 auto;
  width: 80%;
}


/*--------------------------------------------------
「インストラクター紹介」設定
-----------------------------------------------------*/
.instructor {
  background-color: #666;
  padding: 4em 1em;
}
.instructor_inner {
  background-color: #f3f7f2;
  padding: 2em;
  border: 4px solid #67a26d;
  border-radius: 30px;
}
.instructor_title {
  width: 85%;
  margin: 0 auto 1em;
}
.instructor_text_wrap {
  margin: 0 auto 2em;
  text-align: center;
}
.instructor_text_wrap_sp {
  display: none;
}
.instructor_text {
  background-color: #666;
  padding: .5em 1em;
  font-size: 1.4em;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-bottom: .3em;
}
.instructor_big {
  font-size: 1.2em;
}
.instructor_message {
  width: 80%;
  margin: 0 auto 2em;
}

/* スライダーの設定 */
.swiper .swiper-wrapper{
  transition-timing-function: linear;
}

/*--------------------------------------------------
「体験レッスンのご紹介」設定
-----------------------------------------------------*/
.lesson {
background-image: url(../images/lesson_bg_img.png),url(../images/lesson_bg_img.png),url(../images/lesson_bg.jpg);
background-repeat: no-repeat,no-repeat,repeat;
background-position: top 5% right -200%, bottom 0% right 320%, center center;
}
.lesson_bg {
  width: 100%;
  margin-top: -10px;
}
.lesson_title {
  width: 80%;
  margin: 1em auto 1.5em;
}
.lesson_explanation {
  background-color: #fff;
  border: 2px solid #343434;
  border-radius: 20px;
  padding: 3em 1em 1.5em;
  width: 90%;
  margin: 0 auto 4em;
  position: relative;
}
.lesson_explanation_head {
  position: absolute;
  top: -25px;
  left: 40px;
  background-color: #666;
  color: #fff;
  font-family: serif;
  padding: .3em 1em;
  text-align: center;
  font-size: 1.4em;
}
.lesson_explanation_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lesson_explanation_img {
  width: 23%;
}
.lesson_explanation_text {
  width: 74%;
  font-size: 1.2em;
}
.lesson_item {
  margin-bottom: 4em;
}
.lesson_item_wrap {
  position: relative;
}
.lesson_img {
  width: 80%;
  margin-bottom: 1em;
}
.lesson_img02 {
  width: 80%;
  margin-bottom: 1em;
  margin-left: auto;
}
.lesson_item_head {
  position: absolute;
  top: 120px;
  right: 0;
  margin-right: 2em;
  font-family: serif;
}
.lesson_item_head02 {
  position: absolute;
  top: 120px;
  left: 0;
  margin-left: 2em;
  font-family: serif;
}
.lesson_number {
  color: #67a26d;
  font-size: 80px;
  text-align: right;
  line-height: 1.2;
}
.lesson_number_pink {
  color: #b39088;
  text-align: left;
}
.lesson_item_title {
  display: inline-block;
}
.lesson_item_title_p {
  color: #fff;
  padding: .3em 1em;
  background-color: #67a26d;
  text-align: center;
  font-size: 2em;
}
.lesson_item_title_pink {
  background-color: #b39088;
}
.lesson_item_text {
  margin: 0 auto;
  margin-left: 120px;
}
.lesson_item_p {
  padding-left: 35px;
  position: relative;
}
.lesson_item_p::before {
  content: "";
  position: absolute;
  background: url(../images/lesson_yaji_green.png) no-repeat center center /contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 23px;
  height: 16px;
}
.lesson_item_pink {
  padding-left: 35px;
  position: relative;
}
.lesson_item_pink::before {
  content: "";
  position: absolute;
  background: url(../images/lesson_yaji_pink.png) no-repeat center center /contain;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 23px;
  height: 16px;
}

/*--------------------------------------------------
「入会後も楽しいクラスが充実」設定
-----------------------------------------------------*/
.class {
  background-image: url(../images/class_top_bg.webp), url(../images/class_bg.webp);
  background-repeat: no-repeat, repeat;
  background-position: top center, center;
  background-size: 130%, 100%;
}
.class_inner {
  padding: 2em;
}
.class_title {
  width: 70%;
  margin: 4em auto 1.5em;
}
.class_main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.class_item {
  width: 48%;
  margin-bottom: 2.5em;
}
.class_item_img {
  position: relative;
}
.class_item_title {
  background-color: rgba( 255, 255, 255, 0.95 ); 
  border: 1px solid #343434;
  border-radius: 20px;
  padding: 1em;
  text-align: center;
  z-index: 10;
  position: relative;
  width: 80%;
  margin: -40px auto 0;
  font-size: 1.4em;
  font-family: serif;
  line-height: 1.2;
}
.class_kids {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.class_kids_img {
width: 50%;
}
.class_kids_main {
  width: 48%;
}
.class_kids_head {
  width: 90%;
  margin: 0 auto 1em;
}

/*--------------------------------------------------
「圧倒的な通いやすさと環境！」設定
-----------------------------------------------------*/
.comparison {
  background-image: url(../images/comparison_bg.jpg);
}
.comparison_inner {
  padding: 2em 2em 4em ;
}
.comparison_title {
  width: 90%;
  margin: 0 auto 1em;
}
.comparison_table {
  width: 95%;
  margin: 0 auto;
}
.comparison_small {
  text-align: right;
  font-size: 1em;
}

/*--------------------------------------------------
「体験レッスンの流れ」設定
-----------------------------------------------------*/
.experience_title img{
  vertical-align:top;
}
.experience_item {
  background-color: #f3f7f2;
  padding-top: 0em;
}
.experience_item:first-child {
  padding-top: 2em;
}
.experience_item_inner {
  padding: 7em 2em 3em;
}
.experience_item_main {
  position: relative;
  margin-bottom: 2em;
}
.experience_item_img {
  width: 93%;
  margin-left: auto;
}
.experience_item_head {
  position: absolute;
  top: -32%;
  left: 2%;
  width: 11%;
}
.experience_item_text {
  width: 93%;
  margin-left: auto;
}
.experience_triangle {
  margin-top: -5px;
}
.experience_triangle img{
 vertical-align: top;
}
.experience_item02 {
  background-color: #fff;
}

/*--------------------------------------------------
「こんな人におすすめのスタジオです」設定
-----------------------------------------------------*/
.recommend {
  background-image: url(../images/recommend_title_bg.jpg);
  background-repeat: repeat;
}
.recommend_title {
width: 90%;
margin: 2em auto 1em;
}
.recommend_main {
  background-image: url(../images/recommend_bg.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.recommend_inner {
  padding: 20em 2em 4em;
}
.recommend_item {
  width: 90%;
}
.recommend_item02 {
  width: 90%;
  margin-left: auto;
}

/*--------------------------------------------------
「アクセス」設定
-----------------------------------------------------*/
.access {
  background-color: #9ac19e;
}
.access_inner {
  padding: 2em;
}
.access_wrap {
  padding: 2em;
  background-color: #fff;
  border-radius: 30px;
}
.access_title {
  width: 80%;
  margin: 0 auto 1em;
}
.access_main {
  margin-bottom: 3em;
}
.access_item {
  display: flex;
  align-items: center;
  margin-bottom: .5em;
}
.access_item_head {
  margin-right: 20px;
}
.access_item_text {
  font-size: 1.2em;
}
.access_address {
  width: 16%;
}
.access_train {
width: 41%;
}  
.access_time {
  width: 48%;
}
.access_map {
  margin-bottom: 6em;
}
.access_map iframe {
  border:0;
}
.access_movie {
  margin-bottom: 2em;
}
.access_movie_lead {
  width: 60%;
  margin: 0 auto 1em;
}
.access_movie_main {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.access_movie_main iframe {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------
「よくあるご質問」設定
-----------------------------------------------------*/
.faq {
  background-image: url(../images/faq_bg.jpg);
}
.faq_inner {
  padding: 4em 2em;
}
.faq_wrap {
  padding: 2em;
  background-color: #f3f7f2;
  border: 2px solid #67a26d;
  border-radius: 30px;
}
.faq_title {
  width: 80%;
  margin: 0 auto 1em;
}
.qa_items {
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
.qa_item {
  margin: 12px 0 1.5em;
}
.qa_box {
  border: 1px solid #666666;
  background: #fff;
  font-size: 1.1em;
  position: relative;
}
.qa_box_q {
  background: #666666;
  color: #fff;
  padding: 15px 40px 15px 50px;
  position: relative;
}
.qa_box_q::before {
  content: "Q";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.qa_icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.qa_icon.is-open .qa_box_bar2 {
  transform: rotate(90deg);
}
.qa_box_bar1 {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}
.qa_box_bar2 {
  position: absolute;
  width: 2px;
  height: 14px;
  background: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}
.qa_box_a {
  padding: 16px 30px 16px 55px;
  position: relative;
  font-weight: normal;
  line-height: 1.5;
  display: none;
}
.qa_box_a::before {
  position: absolute;
  content: "A";
  top: 16px;
  left: 20px;
  color: #67a26d;
}
.qa_item.open .qa_box_a {
  display: block;
}

/*--------------------------------------------------
「メッセージ」設定
-----------------------------------------------------*/
.message_title {
  padding: 1.5em 2em 0;
  width: 90%;
  margin: 0 auto;
}
.message_wrap {
  margin-top: -30px;
  background-image: url(../images/message_logo.png) ,url(../images/message_bg.jpg);
  background-repeat: no-repeat;
  background-size: 23%, cover;
  background-position: center left -7% ,center center;
  padding: 7em 2em;
}
.message_text {
  color: #fff;
  font-weight: bold;
  width: 82%;;
  margin-left: auto;
  line-height: 2;
}

/*--------------------------------------------------
「ポールダンスがこんなに楽しいなんて！」設定
-----------------------------------------------------*/
.pole_dance {
  background-image: url(../images/pole_dance_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 4em 2em 28em;
}
.pole_dance_message {
  width: 80%;
  margin: 0 auto;
}


/*--------------------------------------------------
プライバシーポリシー
-----------------------------------------------------*/
.privacy {
  font-size: 1.6em; /*=16px*/
}
.privacy-inner {
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
  padding: 3em;
}
.law-title {
  font-size: 2em;
  text-align: center;
  margin-bottom: 1em;
}
.privacy-subtitle {
  font-size: 1.6em;
  padding-left: 1em;
  border-bottom: 1px dotted #B39088;
  border-left: 8px solid #B39088;
  margin-top: 1em;
  margin-bottom: 0.5em;
  text-align-last: left;
  font-family: sans-serif;
}
.indent_1 {
  margin-left: 1em;
}
.indent_2 {
  margin-left: 2em;
}


/*--------------------------------------------------
フッター部分
-----------------------------------------------------*/
.footer {
  background-color: #9AC19E;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #343434;
}
.footer a {
  color: #343434;
}
.footer a:hover {
  opacity: .7;
}
.footer p {
  margin-top: 1em;
}
