@charset "utf-8";

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* スクロールフェードイン_共有（下からの基本） */
.scroll {
    content: '';
    opacity: 0;
    /* ここから下の設定はそれぞれの要素で上書き可 */
    /* 出す方向、スピードをそれぞれの要素で設定 */
    transform: translate(0px, 50px);
    transition: all 500ms;
}

.scroll.scrollin {
    opacity: 1;
    transform: translate(0,0);
}
/* スクロールフェードイン_共有（下からの基本）終了 */

/* スクロールフェードイン_footer */
.scroll_footer {
    content: '';
    opacity: 0;
    transform: translate(0px, 50px);
    transition: all 500ms;
}

.scroll_footer.scrollin {
    opacity: 1;
    transform: translate(0,0);
}
/* スクロールフェードイン_footer 終了 */

/* ナビゲーションfixドロップシャドウ */

.scroll_nav {
    z-index: 10;
    position: fixed;
    height: 100px;
    padding: 10px 20px;
    border-bottom: 1px solid #87153300;

}

.scroll_nav.scroll_ds {
    height: 70px;
    padding: 5px 15px;
    border-bottom: 1px solid rgb(135, 21, 52);
    background-color: #ffffffee;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
}

/* ナビゲーションfixドロップシャドウ終了 */

/* 体験フォームボタン　スクロール */

.scroll_contact_btn_f {
    content: '';
    opacity: 0;
    transform: translate(100px, 0px);
    transition: all 1000ms ease-in-out;
}
.scroll_contact_btn_f.scroll_btn {
    opacity: 1;
    transform: translate(0,0);
    transition: all 1000ms ease-in-out;
    transition-delay: 300ms;
}

/* 体験フォームボタン　スクロール終了 */

.main {
    font-size: 1.0rem;
    width: 100%;
    font-family: 'M PLUS 1', sans-serif;
    /* height: 100vh; */
    /* background-color: #999; */
    /* overflow: hidden; */

    background-image: url(top_back_illust.png);
    background-repeat: no-repeat;
    background-size: 70vw auto;
    background-position: right top;
    background-attachment: fixed;

    z-index: -2;
}

.main_top_fullheight {
    height: 100%;
}

.main_top_contents {
    height: 40vh;
}

.head_nav {
    display: flex;
    width: 100%;
    align-items: center;
    font-weight: 300;
    /* background-color: #ddd; */

    transition: 1s;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.nav_links {
    flex: 1;
    text-align: right;
    font-size: 0.8rem;
    animation-name: fadeRight;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.nav_links ul li {
    display: inline-block;
    list-style: none;
    padding: 0 0.6rem;
}

#an_lobo_mark_top {
    width: auto;
    height: 60px;
    margin-right: 0.5rem;
}

#an_lobo_text_top {
    width: auto;
    height: 24px;
    margin-right: 1rem;
}

.logo_area_text {
    font-size: 0.75em;
    font-weight: 700;
    color: #3f3535;
}

/* nav_linksのhover設定 */
.nav_links ul a {
    position: relative;
    text-decoration: none;
    color: #3f3535;
    transition: all 0.4s;
}

.nav_links ul a::before,
.nav_links ul a::after {
    content:'';
    position: absolute;
    bottom: -15px;
    display: block;
    width: 20%;
    height: 3px;
    background-color: #871534;
    opacity: 0;
    left: 40%;
    /* right: 40%; */
    transition: 0.4s;
}

.nav_links ul a:hover {
    color: #871534;
}

.nav_links ul a:hover::before,
.nav_links ul a:hover::after {
    bottom: -10px;
    opacity: 1;
}

/* nav_linksのhover設定終了 */

.nav_links_page {
    color: #871534;
}

/* 体験フォームボタン */

.contact_btn_follow_area {
    z-index: 9;
    /* ↑ scroll_navが10のため */
    position: fixed;
    display: block;
    width: 100%;
    top: 70px;
    text-align: right;
}

.contact_btn_follow {
    display: flex;
    display: inline-block;
    text-decoration: none;

}

.contact_btn_follow_img {
    position: absolute;
    padding-top: 0.3rem;
    right: 16.25rem;
    /* 文字の増減で右からの距離を変更（トウシューズ） */
}

.contact_btn_follow_img_change {
    position: relative;
    width: 84px;
    height: auto;

}

.contact_btn_follow_img_change img {
    position: absolute;
    width: 100%;
    transition: all 1000ms;
}

.contact_btn_follow_txt_back {
    /* background-color: #871534; */
    /* background-image: linear-gradient(90deg,rgba(135, 21, 51, 0.5) 0%,rgba(135, 21, 51, 1) 100%),url(contact_btn_follow.png); */
    background-image: url(contact_btn_follow.png);
    background-color: #871534;
    background-blend-mode : color-burn;
    background-size: 100%;
    background-position: center;
    border-bottom-left-radius: 1rem;

    transition: all 1000ms;

}

.contact_btn_follow_txt {
    z-index: 1;
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    padding: 0.6rem 1rem 0.3rem 3.5rem;

    transition: all 1000ms;
}

.contact_btn_follow_txt_catch {
    z-index: 1;
    color: #871534;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 1rem;
    margin-top: 0rem;
    margin-bottom: 0.2rem;
    padding: 0.1rem 0.3rem;
    background-color: #FFF;
    text-align: center;

    transition: all 1000ms;
}

/* 体験フォームボタン　ロールオーバー */

.contact_btn_follow:hover .contact_btn_follow_txt_back {
    background-color:#ffeef3;
    background-blend-mode : multiply;
    background-size: 120%;
    background-position: right;
    box-shadow: 0 0 3px 3px #871534;

    transition: all 1000ms;
}

.contact_btn_follow:hover .contact_btn_follow_txt {
    color: #871534;
    text-shadow: -1px -1px 0px #FFF,-1px 1px 0px #FFF,1px -1px 0px #FFF,1px 1px 0px #FFF;
    transition: all 1000ms;
}

.contact_btn_follow:hover .contact_btn_follow_txt_catch {
    z-index: 1;
    color: #FFF;
    background-color: #871534;
    text-shadow: none;

    transition: all 1000ms;
}

.contact_btn_follow:hover .contact_btn_follow_img_change img:nth-of-type(2){
    opacity: 0;

    transition: all 1000ms;
}

/* 体験フォームボタン　ロールオーバー終了 */

/* 体験フォームボタン + アクセス + twitter */

.contact_btn_follow_area_circleBtn {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-end;
    font-size: 0.8rem;
    font-weight: 700;
    
    top: 0.5rem;
    right: -2rem;

}

.twitter_btn {
    position: absolute;
    display: block;
    display: flex;
    width: 5rem;
    height: 5rem;

    line-height: 3.75rem;
    /* padding-right: 1.25rem; */
    /* ↑ padding-rightではsafari上で円の方がずれる */

    text-decoration: none;
    color: #FFF;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;

    border-radius: 50%;
    justify-content: center;
    align-items: flex-end;

    top: 0rem;
    background-color: #0f1419;
    opacity: 0.7;
    transition: all 500ms;

}

.instagram_btn {
    position: absolute;
    display: block;
    display: flex;
    width: 5rem;
    height: 5rem;

    line-height: 3.75rem;
    /* padding-right: 1.25rem; */
    /* ↑ padding-rightではsafari上で円の方がずれる */

    text-decoration: none;
    color: #FFF;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;

    border-radius: 50%;
    justify-content: center;
    align-items: flex-end;

    top: 5.25rem;
    background-color: #e1306c;
    opacity: 0.7;
    transition: all 500ms;

}

.map_link {
    position: absolute;
    display: block;
    display: flex;
    width: 5rem;
    height: 5rem;

    line-height: 3.75rem;
    /* padding-right: 1.25rem; */
    /* ↑ padding-rightではsafari上で円の方がずれる */
    
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
    -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;

    border-radius: 50%;
    justify-content: center;
    align-items: flex-end;

    top: 10.5rem;
    /* background-color: #871534; */
    opacity: 0.7;
    transition: all 500ms;

}

.price_table_btn {
    /* position: absolute; */
    display: none;
    /* display: flex;
    width: 5rem;
    height: 5rem;

    line-height: 3.75rem;
    
    text-decoration: none;
    color: #FFF;
    cursor: pointer;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;

    border-radius: 50%;
    justify-content: center;
    align-items: flex-end;

    top: 10.5rem;
    background-color: #158744;
    opacity: 0.7;
    transition: all 500ms; */
}

.twitter_btn:hover,.map_link:hover,.instagram_btn:hover {
    opacity: 1;
    transform: scale(1.1) translate(-0.5rem,0);
    transition: all 500ms;
}

/* 体験フォームボタン + アクセス + twitter終了 */

/* 体験フォームボタン終了 */


/* トップページ写真エリア */
.top_area {
    width: 100%;
    padding: 20px 0 0 0;
    /* background-color: #ddd; */
}

.photo_area_slider {
    width: 100%;
    height: 30vh;
    overflow: hidden;
}

.ph_top_slick_img img {
    display: block;
    width: 100%;
    object-fit: cover;
    height: 30vh;
    min-height: 100px;
    max-height: 1000px;
}
/* トップページ写真エリア 終了 */

/* コンテンツ写真エリア */
.contents_top_area {
    width: 100%;
    margin-top: 20px;
}

.photo_area_contents_slider {
    width: 100%;
    height: 20vw;
    overflow: hidden;
}

.ph_contents_slick_img img {
    width: 100%;
    height: 20vw;
    object-fit: cover;
}
/* コンテンツ写真エリア 終了 */

@keyframes fadezoom {
    0% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1.15); /* 拡大率 */
    }
}

.add-animation {
    animation: fadezoom 8s 0s forwards;
}

.catch_dilay1 {
    animation-name: fadeRight;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.catch_dilay2 {
    animation-name: fadeRight;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.catch_dilay3 {
    animation-name: fadeRight;
    animation-duration: 2.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}


/* scrollアニメ */

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:relative;
	left:50%;
    top: 2.5rem;
	/* bottom:10px; */
    /*全体の高さ*/
	height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
    color: #3f3535;;
	font-size: 0.7rem;
    font-weight: 300;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #3f3535;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}

/* scrollアニメ終了 */


/* classエリア */

/* 透明から表示 */
@keyframes transparent {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
/* 透明から表示　終了 */

.class_title_area {
    padding-top: 120px;
    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.class_title_text p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
    padding-top: 3rem;
    padding-bottom: 1.75rem;
}

.class_title_text span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2.5em;
    letter-spacing: 0.2em;
    color: #871534;
}
.class_title_text span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1rem;
    width: 3rem;
    height: 6px;
    border-radius: 3px;
    background-color:#871534;
}

/* classエリア */
.class_text_area {
    position: relative;
    /* height: 100vh; */
    margin: 3rem 0 3rem 0;

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
    /* transition: all 1s; */
}

.lesson_btn_area {
    display: flex;
    gap: 0 5rem;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-bottom: 3rem;
}

.lesson_btn_area_responsive {
    display: none;
}

.class_lesson_text {
    display: flex;
    flex-direction: column;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    color: #FFF;
    justify-content: center;
}

.class_lt_color_jr {
    background-color: #ffb7ca;
}

.class_lt_color_ad {
    background-color: #fcbbf2;
}

.class_lt_color_pr {
    background-color: #ffbeae;
}

.class_lesson_text_responsive {
    display: none;
}

.class_lesson_text p {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.class_lesson_text p::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -1rem;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color:#fff;
}

.class_lesson_text span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1rem;
}

.class_lesson_text:hover {
    border-radius: 25%;
    color: #ffb7ca;
    background-color: #871534;
    transition: 0.4s;
}




/* テーブルエリア */
.lesson_change_area {
    width: 100%;
}

.lesson_table_area {
    display: flex;
    padding: 0 5vw;
    gap:0 3rem;
}

.lesson_jr_table_area_left {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    /* width: 55vw; */
}

/* クラス別背景 */
.jr_division {
    display: flex;
    flex-direction: row;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #ffb7ca;
}

.ad_division {
    display: flex;
    flex-direction: row;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #fcbbf2;
}

.pr_division {
    display: flex;
    flex-direction: row;
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: #ffbeae;
}
/* クラス別背景 終了 */

.jr_img {
    flex: 1;
    width: 250px;
    height: 250px;
    border-radius: 0.5rem;
    overflow: hidden;
    /* background-color: #3f3535; */
}

.jr_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jr_img_private {
    flex: 1;
    width: 300px;
    min-height: 350px;
    border-radius: 0.5rem;
    overflow: hidden;
    /* background-color: #3f3535; */
}

.jr_img_private img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lesson_jr_text {
    flex: 2;
    font-size: 0.9rem;
    padding: 0 0 0 1rem;
}
.lesson_jr_text p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #871534;
}
.lesson_jr_text span {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #871534;
    margin: 0.75rem 0;
    line-height: 1.2rem;
}
.lesson_jr_text span li {
    margin-left: 1.25rem;
}
.lesson_text_note {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #871534;
    margin: 0.15rem 0 0.75rem 0;
    line-height: 1rem;
}

/* スケジュール表 */


.schedule {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 100%;
    margin-top: 1.5rem;
    /* gap: 0.5rem; */
}

.schedule_table {
    /* width: 100%; */
    white-space: nowrap;
    border-collapse: collapse;    
}

.schedule_table td {
    padding-bottom: 0.2rem;
    align-items: center;
}

.schedule_title {
    position: relative;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 2.5rem;
    color: #871534;
}

.schedule_title::after {
    content: '';
    position: absolute;
    left: 5rem;
    bottom: 0.5rem;
    /* width: 10px; */
    /* transform: translateX(50%); */
	border-bottom: solid 1px #871534;
    
    animation-name: line_anim;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count:infinite;
    animation-direction: alternate;
    animation-delay: 0s;
}

.schedule_day {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 50%;
}

.schedule_time {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 0.75em;
    padding-left: 0.5rem;
    color: #000;
}

.schedule_time span {
    display: inline;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1rem;
    color: #000;
}

.day_week {
    background-color: rgb(130, 230, 120);
}
.day_sat {
    background-color: rgb(0, 183, 255);
}
.day_sun {
    background-color: rgb(255, 0, 43);
}

@keyframes line_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 40%;
	}
}

/* スケジュール表 終了 */


.lesson_jr_table_area_right {
    /* position: relative; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* width: 35vw; */
    /* background-color: #3f3535; */
}

/* 料金表sticky設定 */
.lesson_jr_table_area_right_fix {
    position: sticky;
    position: -webkit-sticky;
    top: 75px;
    text-align: center;
}

.lesson_jr_table_area_right p {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    padding: 0.3rem 0.6rem;
    border-radius: 0.3rem;
    background-color: #00000088;
}

.title_width {
    width: 18.5rem;
}

.lesson_start_price {
    margin-bottom: 2rem;
    padding: 0 auto;
}

.price_big {
    font-size: 3rem;
    font-weight: 700;
    color: #871534;
    padding-bottom: 2rem;
}

.price_min {
    font-size: 0.8rem;
    font-weight: 400;
}

.price_table {
    margin-top: 0.5rem;
    /* margin-right: 3vw; */
    white-space: nowrap;
    border: 1px solid #ffffff00;
    /* width: 30vw; */
    width: 100%;
}

.price_table th span {
    display: inline-block;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    white-space: nowrap;
    font-size: 0.8rem;
    line-height: 0.9rem;
}
/* ↓ safari表示エラー ↑こちらに変更 */
/* .price_table th:first-child {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    white-space: nowrap;
} */

.price_table tbody {
    opacity: 0.85;
}

.price_table th {
    width: 3rem;
    background-color: #871534;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem;
    text-align: center;
    align-items: center;
}

.tb_day {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1rem;
    padding: 0.5rem;
    background-color: #fff;
}

.td_day_border {
    border-left: 2px solid #871534;
}

.tb_price {
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: #871534;
    padding: 0.5rem;
    background-color: #ffb7ca;
}
.tb_yen {
    font-size: 0.8rem;
    font-weight: 400;
    color: #000;
}

.price_note {
    font-size: 0.7rem;
    font-weight: 400;
    text-align: start;
    color: #000;
    line-height: 0.8rem;
    width: 100%;
    /* padding-right: 5vw; */
}
.price_note ul {
    padding-left: 1.25rem;
}

/* コース別 */

.class_text_area .lesson_change_area {
    display: none;
}

.class_text_area .lesson_change_area.active {
    display: block;
}

.class_text_area .class_lesson_text.active {
    display: flex;
    flex-direction: column;
    width: 14rem;
    height: 14rem;
    border-radius: 25%;
    color: #ffb7ca;
    background-color: #871534;
    justify-content: center;

}

.class_text_area .class_lesson_text.active p {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.class_text_area .class_lesson_text.active p::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -1rem;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color:#fff;
}

.class_text_area .class_lesson_text.active span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1rem;
}

/* コース別終了 */




/* 振替レッスンエリア */
.sub_lesson_area {
    position: relative;
    width: 100%;
    padding: 0 5vw;
}

.sub_lesson_text_area {
    width: 100%;
    padding: 0 3rem 3rem 3rem;
    background-color: #ffb7ca66;
    border-radius: 1rem;

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.sub_lesson_title p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
    padding-top: 3rem;
    padding-bottom: 1.75rem;
}

.sub_lesson_title span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2.5em;
    letter-spacing: 0.2em;
    color: #871534;
}
.sub_lesson_title span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1rem;
    width: 3rem;
    height: 6px;
    border-radius: 3px;
    background-color:#871534;
}

.sub_lesson_read {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: #871534;
    margin-top: 1.5rem;
}

.sub_lesson_text {
    text-align: left;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}


/* 透明から表示 */
@keyframes transparent {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
}
/* 透明から表示　終了 */





/* contactエリア */
.contact {
    display: flex;
    width: 100%;
    min-height: 50vh;
    gap: 0 3rem;
    margin-top: 5rem;
    margin-bottom: 3rem;
    padding: 0 3rem;
    align-items: center;
    font-weight: 300;
}

.contact_short {
    display: flex;
    width: 60vw;
    min-height: 70vh;
    margin: 3rem auto;
    padding: 0 3rem;
    align-items: center;
    font-weight: 300;
}

.contact_area {
    /* スクロール */
    flex: 1;
    /* background-color: rgb(234, 0, 255); */
    transform: translate(0px, 50px);
    transition: all 1500ms;
}

.contact_area p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
    padding-bottom: 1.5rem;
    /* border-bottom: 3px dotted rgba(255, 255, 255, 0.4); */
}

.contact_area span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    /* margin-bottom: 0.25em; */
    letter-spacing: 0.2em;
    color: #871534;
    /* opacity: 0.6; */
}
.contact_area span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1rem;
    width: 3rem;
    height: 6px;
    border-radius: 3px;
    background-color:#871534;
}

.contact_btn_area {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

.contact_btn_block {
    flex: 1;
}

/* コンタクトボタン */
.contact_btn {
    position: relative;
    min-width: 85%;
    height: 5vh;
}

.contact_btn a {
    text-decoration: none;
    display: block;
}

.contact_btn a {
    position: relative;
    display: flex;
    padding: 20px 25px 20px 60px;
    justify-content: center;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    background: #ffb7ca;
    border-radius: 1rem;
    transition: 0.6s ease-in-out;
}
.contact_btn a::before {
    content: "";
    width: 30px;
    height: 90%;
    position: absolute;
    background: #FFF;
    left: 18px;
    top: -1px;
    clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0);
}
.contact_btn a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    position: absolute;
    left: 24px;
    top: 7%;
    font-size: 1.2rem;
    color: #871534;
}

.contact_btn a:hover {
    transform: translateY(-8px);
    background: #871534;
}

/* コンタクトボタン終了 */

/* コンタクトボタン form */
.contact_btn_form {
    position: relative;
    min-width: 85%;
    height: 5vh;
}

.contact_btn_form a {
    text-decoration: none;
    display: block;
}

.contact_btn_form a {
    position: relative;
    display: flex;
    padding: 20px 25px 20px 60px;
    justify-content: center;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    background: #ffb7ca;
    border-radius: 1rem;
    transition: 0.6s ease-in-out;
}
.contact_btn_form a::before {
    content: "";
    width: 30px;
    height: 90%;
    position: absolute;
    background: #FFF;
    left: 18px;
    top: -1px;
    clip-path: polygon(100% 0%, 100% 100%, 50% 75%, 0 100%, 0 0);
}
.contact_btn_form a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    position: absolute;
    left: 24px;
    top: 7%;
    font-size: 1.2rem;
    color: #871534;
}

.contact_btn_form a:hover {
    transform: translateY(-8px);
    background: #871534;
}

/* コンタクトボタン　form 終了 */

.contact_text {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    text-align: left;
    /* background-color: #871534; */
    font-size: 1rem;
    font-weight: 400;
    margin-top: 4.75rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
    line-height: 1.75rem;
}
/* contactエリア 終了 */


/* プライバシーポリシー */

.privacy_policy_area {
    width: 100%;
    /* min-height: 90vh; */
    display: flex;
    margin: 3rem 0;
    justify-content: center;

}

.privacy_policy_text {
    display: block;
    width: 80%;
    text-align: left;
    /* line-height: 2rem; */
}

.privacy_policy_text li {
    margin-bottom: 1rem;
}

/* プライバシーポリシー終了 */


/* トライアル */

.trial_read_area {
    width: 100%;
    display: flex;
    margin: 3rem 0;
    justify-content: center;
}

.trial_read_text {
    width: 70%;
    text-align: left;
    font-size: 1rem;
}

.trial_read_text p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #871534;
    text-align: center;
}

.trial_read_text_middle {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #871534;
    text-align: center;
}

/* ご入会の流れ */

.flow_area {
    position: relative;
    width: 100%;
    padding: 0 5vw;
}

.flow_text_area {
    width: 100%;
    padding: 0 3rem 3rem 3rem;
    background-color: #ffb7ca66;

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.flow_title p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
    padding-top: 3rem;
    padding-bottom: 1.75rem;
}

.flow_title span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2.5em;
    letter-spacing: 0.2em;
    color: #871534;
}
.flow_title span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1rem;
    width: 3rem;
    height: 6px;
    border-radius: 3px;
    background-color:#871534;
}

.flow_step {
    display: flex;
    position: relative;
    width: 100%;
    background-color: #ffffff;
    margin-top: 2rem;
    border-radius: 2rem;
    /* justify-content: flex-start; */
}

.flow_step::after {
    content: '';
    position: absolute;
    left: 5.5rem;
    top: 3rem;
    /* width: 10px; */
    /* transform: translateX(50%); */
    border-left: dotted 3px #00000066;
    
    animation-name: line_anim_flow;
    animation-fill-mode: forwards;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: initial;
    animation-direction: normal;
    animation-delay: 0s;
}


@keyframes line_anim_flow {
	0%{
		height: 0%;
	}
	100%{
		height: 100%;
	}
}


.flow_step_title {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 3rem;
    padding-left: 2rem;
    color: #87153455;
    mix-blend-mode: multiply;

}
.flow_step_number {
    font-size: 10rem;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    line-height: 7rem;
    color: #87153455;
    mix-blend-mode: multiply;
}

.flow_step_text {
    flex: 1;
    padding: 2rem 5rem 1rem 2rem;
}

.flow_step_text p {
    font-size: 1.75rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #871534;
}

.flow_step_text span {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.flow_contact_btn {
    display: block;
    height: 12vh;
}

.flow_contact_btn_responsive {
    display: none;
}

.flow_contact_btn_responsive_s {
    display: none;
}

.flow_step_text_pre_title {
    font-weight: 500;
    color: #871534;
}

.flow_step_text_pre ul {
    margin-left: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ご入会の流れ　終了 */

/* トライアル終了 */

/* about us エリア */

.about_read_area {
    width: 100%;
    display: flex;
    margin: 3rem 0;
    justify-content: center;
}

.about_read_text {
    width: 70%;
    text-align: left;
    font-size: 1rem;
    line-height: 2rem;
}

.about_read_text p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #871534;
    text-align: center;
}

.about_read_text_middle {
    display: block;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #871534;
    text-align: center;
}

/* プロフィール */
.profile_area {
    display: flex;
    width: 100%;
    min-height: 50vw;
    padding: 0 10vw 0 10vw;
    background-color: #ffb7ca66;

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.profile_contents_area {
    /* position: relative; */
    display: flex;
}

.profile_title {
    /* position: absolute; */
    z-index: 1;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: 60%;
    padding: 1.5rem 0.5rem;
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 0.75rem;

    /* margin-left: -6rem; */
    left: 0;
    /* left: 1rem; */
    /* border-bottom-left-radius: 3rem; */
    /* border-bottom-right-radius: 3rem; */
    text-align: center;
    white-space: nowrap;
    background: -moz-linear-gradient(to bottom,#87153466,#ffb7ca66 30%,#ffb7ca00); 
    background: -webkit-linear-gradient(to bottom,#87153466,#ffb7ca66 30%,#ffb7ca00); 
    background: linear-gradient(to bottom,#87153499,#ffb7cadd 30%,#ffb7ca00); 
}

.profile_title span {
    display: inline-block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0rem;
    padding: 0.75rem 0.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #FFF;
    border-radius: 1rem;
    background-color: #871534;
}

.profile_img {
    flex-grow: 2;
    flex-shrink: 1.75;
    /* position: relative; */
    /* left: 2rem; */
    width: 100%;
    /* min-height: 50vw; */
    height: 60%;
    overflow: hidden;
}

.profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile_text_area {
    flex-grow: 1;
    flex-shrink: 2;
    display: flex;
    flex-direction: column;
    padding: 2rem 0 0 0;
    justify-content: center;
}

.profile_text_area p {
    position: relative;
    margin-left: 2rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 900;
    color: #871534;
}

@keyframes line_anim_profile {
	0%{
		width: 0%;
	}
	100%{
		width: 105%;
	}
}

.profile_text_area p::after {
    content: '';
    position: absolute;
    left: -2rem;
    bottom: -0.1rem;
	border-bottom: dotted 2px #871534;
    
    animation-name: line_anim_profile;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-delay: 0s;
}

.profile_text {
    padding: 0.5rem 0 2rem 3rem;
    line-height: 1.75rem;
}

/* map_contactエリア */
.map_contact {
    display: flex;
    width: 100%;
    min-height: 100%;
    gap: 0 3rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0 3rem;
    align-items: center;
    font-weight: 300;

    /* background-color: rgb(234, 0, 255); */
}

.map_contact_area {
    display: flex;
    /* スクロール */
    flex: 1;
    flex-direction: column;
    transform: translate(0px, 50px);
    transition: all 1500ms;

    /* background-color: rgb(20, 0, 255); */
}

.map_contact_area p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
    padding-bottom: 1.5rem;
    /* border-bottom: 3px dotted rgba(255, 255, 255, 0.4); */
}

.map_contact_area span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    /* margin-bottom: 0.25em; */
    letter-spacing: 0.2em;
    color: #871534;
    /* opacity: 0.6; */
}
.map_contact_area span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1rem;
    width: 3rem;
    height: 6px;
    border-radius: 3px;
    background-color:#871534;
}

.map_contact_btn_area {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
    align-items: center;
}

/* about us エリア 終了 */

/* performance エリア */

@keyframes fadeRightLong {
    from {
        opacity: 0;
        transform: translateX(700px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeLeftLong {
    from {
        opacity: 0;
        transform: translateX(-300px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

.performance_area {
    position: relative;
    width: 100%;
    margin: 3rem 0 0rem 0;

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.performance_area img:hover {
    transform: scale(1.1,1.1);
    transition: 0.4s;
}

/* 発表会切り替えボタン　上 */

.performance_btn_area {
    display: flex;
    gap: 0 5rem;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-bottom: 3rem;
}

.performance_btn_area_responsive {
    display: none;
}

.performance_btn_text {
    display: flex;
    flex-direction: column;
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    color: #FFF;
    justify-content: center;
}

.performance_new_color {
    background-color: #ffb7ca;
}

.performance_old_color {
    background-color: #fcbbf2;
}

.performance_btn_text_responsive {
    display: none;
}

.performance_btn_text p {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.performance_btn_text p::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -1rem;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color:#fff;
}

.performance_btn_text span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1rem;
}

.performance_btn_text:hover {
    border-radius: 25%;
    color: #ffb7ca;
    background-color: #871534;
    transition: 0.4s;
}

/* 発表会切り替えボタン　上　終了 */

/* 発表会切り替えボタン　下 */

.performance_btn_bottom_area {
    display: flex;
    gap: 0 5rem;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    margin-bottom: 3rem;
}

.performance_btn_bottom_area_responsive {
    display: none;
}

.performance_btn_bottom_text {
    display: flex;
    flex-direction: column;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    color: #FFF;
    justify-content: center;
}

.performance_new_color {
    background-color: #ffb7ca;
}

.performance_old_color {
    background-color: #fcbbf2;
}

.performance_btn_bottom_text_responsive {
    display: none;
}

.performance_btn_bottom_text p {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.performance_btn_bottom_text p::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -1rem;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color:#fff;
}

.performance_btn_bottom_text span {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.1rem;
}

.performance_btn_bottom_text:hover {
    border-radius: 25%;
    color: #ffb7ca;
    background-color: #871534;
    transition: 0.4s;
}

/* 発表会切り替えボタン　下　終了 */


/* performance ページ別 */

.performance_area .performance_change_area {
    display: none;
}

.performance_area .performance_change_area.active {
    display: block;
    width: 100%;
    padding-top: 8rem;
    overflow: hidden;
}

.performance_btn_area .performance_btn_text.active {
    display: flex;
    flex-direction: column;
    width: 14rem;
    height: 14rem;
    border-radius: 25%;
    color: #ffb7ca;
    background-color: #871534;
    justify-content: center;

}

.performance_btn_area .performance_btn_text.active p {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.performance_btn_area .performance_btn_text.active p::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -1rem;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color:#fff;
}

.performance_btn_area .performance_btn_text.active span {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.1rem;
}

.performance_btn_bottom_area .performance_btn_bottom_text.active {
    display: flex;
    flex-direction: column;
    width: 9rem;
    height: 9rem;
    border-radius: 25%;
    color: #ffb7ca;
    background-color: #871534;
    justify-content: center;

}

.performance_btn_bottom_area .performance_btn_bottom_text.active p {
    position: relative;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.performance_btn_bottom_area .performance_btn_bottom_text.active p::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: -1rem;
    width: 2rem;
    height: 4px;
    border-radius: 2px;
    background-color:#fff;
}

.performance_btn_bottom_area .performance_btn_bottom_text.active span {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.1rem;
}

/* performance ページ別 */

/* performanceエリア　大枠　終了 */

/* performance_unit 右スタート */

.performance_unit_right {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ffb7ca99;
    margin: 2rem 0rem 10rem 10rem;
    padding: 1rem 2rem 1rem 0;
    /* width: 100%; */
    /* height: 20vh; */

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.performance_photo_large_right {
    position: relative;
    width: 35vw;
    /* スクロール */
    transform: translate(-300px, 0px);
    transition: all 1500ms;

}

.performance_photo_large_right img {
    position: absolute;
    width: 35vw;
    height: auto;
    left: -2rem;
    top: -9.5rem;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;

    /* animation-name: fadeLeftLong;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1; */
}

.performance_photo_small_right {
    display: flex;
    position: relative;
    /* スクロール */
    transform: translate(700px, 0px);
    transition: all 1500ms;
    
}

.performance_title_right {
    z-index: 0;
    position: absolute;
    padding-left: 0.5rem;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #871534;
    top: -4.75rem;
    line-height: 1.75rem;
    white-space: nowrap;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;    

    /* animation-name: fadeBottom;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1; */
}

.performance_photo_small_right img {
    max-width: 22vw;
    height: auto;
    border-radius: 0.3rem;
    margin: 0 0.5rem;
    object-fit: cover;
    transition: 0.4s;

    /* animation-name: fadeRightLong;
    animation-duration: 1.5s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1; */
}

/* performance_unit 左スタート */

.performance_unit_left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    background-color: #ffb7ca99;
    margin: 2rem 10rem 10rem 0rem;
    padding: 1rem 0rem 1rem 2rem;
    /* width: 100%; */

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.performance_unit_left_sub {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: flex-end; */
    background-color: #ffb7ca99;
    margin: 0rem 10rem 0rem 0rem;
    padding: 1rem 0rem 3rem 2rem;
    /* width: 100%; */

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.performance_unit_left_subSecond {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: flex-end; */
    background-color: #ffb7ca99;
    margin: 0rem 10rem 10rem 0rem;
    padding: 1rem 0rem 1rem 2rem;
    /* width: 100%; */

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.performance_photo_large_left {
    position: relative;
    width: 35vw;
    /* スクロール */
    transform: translate(300px, 0px);
    transition: all 1500ms;

}

.performance_photo_large_left img {
    position: absolute;
    width: 35vw;
    height: auto;
    left: 2rem;
    top: -9.5rem;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;

}

.performance_photo_small_left {
    display: flex;
    position: relative;
    /* スクロール */
    transform: translate(-700px, 0px);
    transition: all 1500ms;
}

.performance_photo_small_left_s {
    display: flex;
    position: relative;
    /* スクロール */
    transform: translate(-700px, 0px);
    transition: all 1500ms;
}

.performance_title_left {
    z-index: 0;
    position: absolute;
    padding-left: 0.5rem;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #871534;
    right: 0.5rem;
    top: -4.75rem;
    white-space: nowrap;
    line-height: 1.75rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;    
}

.performance_photo_small_left img {
    max-width: 22vw;
    height: 100%;
    border-radius: 0.3rem;
    margin: 0 0.5rem;
    object-fit: cover;
    transition: 0.4s;
}

.performance_photo_small_left_s img {
    max-width: 22vw;
    max-height: 14vw;
    border-radius: 0.3rem;
    margin: 0 0.5rem;
    object-fit: cover;
    transition: 0.4s;
}

.performance_title_date {
    font-family: 'M PLUS 1', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
}

.performance_title_date_sub {
    font-family: 'M PLUS 1', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #999;
}


/* performance　最新舞台 */

.performance_unit_newPerformance {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #ffb7ca99;
    margin: 0rem 5rem 5rem 5rem;
    padding: 3rem 2rem 3rem 2rem;
    gap: 1rem 1rem;
    /* width: 100%; */

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.performance_title_newPerformance {
    z-index: 0;
    position: absolute;
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #871534;
    left: 0rem;
    top: -4.5rem;
    white-space: nowrap;
    line-height: 2rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;    
}

.performance_read_newPerformance {
    z-index: 0;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    color: #66380a;
    white-space: nowrap;
    line-height: 3rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;    
}

.performance_photo_newPerformance_container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.performance_photo_newPerformance_container_column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.performance_photo_newPerformance_big {
    display: flex;
    width: 55vw;
    overflow: hidden;
    border-radius: 0.3rem;
    margin: 0 0.5rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;
}

.performance_photo_newPerformance_large {
    display: flex;
    width: 45vw;
    overflow: hidden;
    border-radius: 0.3rem;
    margin: 0 0.5rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;
}

.performance_photo_newPerformance_middle2 {
    display: flex;
    flex-direction: column;
    width: 35vw;
    overflow: hidden;
    border-radius: 0.3rem;
    margin: 0 0.5rem;
    gap: 1rem;
    transition: 0.4s;


    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;
}

.performance_photo_newPerformance_middle3 {
    /* display: flex; */
    width: 25vw;
    overflow: hidden;
    border-radius: 0.3rem;
    margin: 0 0.5rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;
}

.performance_photo_newPerformance_small {
    width: 20vw;
    overflow: hidden;
    border-radius: 0.3rem;
    margin: 0 0.5rem;

    /* スクロール */
    transform: translate(0px, 20px);
    transition: all 1500ms;
}

.performance_photo_newPerformance_big img {
    width: 100%;
    max-height: 60vh;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;
}

.performance_photo_newPerformance_large img {
    width: 100%;
    max-height: 50vh;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;
}

.performance_photo_newPerformance_middle2 img {
    width: 100%;
    max-height: 50vh;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;
}

.performance_photo_newPerformance_middle3 img {
    width: 100%;
    max-height: 50vh;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;
}

.performance_photo_newPerformance_small img {
    width: 100%;
    max-height: 50vh;
    border-radius: 0.3rem;
    object-fit: cover;
    transition: 0.4s;
}


/* performance　最新舞台　終了 */


/* performance エリア終了 */

/* faq エリア */

.faq_area {
    width: 100%;
    flex-direction: column;
    margin: 3rem 0;

    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.faq_text_area {
    display: block;
    width: 70%;
    margin: 0 auto;

}

.faq_title_text {
    margin-bottom: 1.5rem;
    padding-bottom: 0.25rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #871534;
    border-bottom: 2px dotted #ffb7ca;
}

.faq_text_middle {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #871534;
}

.faq_text_middle i {
    font-size: 1.6rem;
    color: #ffb7ca;
}

.faq_text {
    text-align: left;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 2rem;
    margin-bottom: 3rem;
}

/* faq エリア 終了 */

/* history エリア */

.history_area {
    width: 100%;
    display: flex;
    margin: 3rem 0;
    justify-content: center;
}

.history_timeline_area {
	position: relative;
	margin: 0rem 10rem;
	padding-bottom: 2rem;
}
.history_timeline_area:before {
	position: absolute;
	top: 0;
	left: 0rem;
	width: 1px;
	height: 100%;
	content: '';
	background: #e1306c;
}
.history_timeline_container {
	margin: 0 0 5rem 2rem;
}
.history_timeline_year {
	font-family: serif;
	font-size: 6rem;
	font-weight: bold;
	position: relative;
	margin-top: 2rem;
	letter-spacing: -0.15rem;
	color: rgba(233,30,99,0.3);
}
.history_timeline_year:before {
	position: absolute;
	top: 50%;
	left: -2.25rem;
	width: 10px;
	height: 10px;
	content: '';
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	border: 3px solid #e1306c;
	background: #fff;
}
.history_timeline_event {
	display: flex;
    flex-direction: row;
    margin-top: 1rem;
    padding: 0;
    align-items: center;
}
.history_timeline_date {
    min-width: 3.5rem;
	font-size: 1.75rem;
	font-weight: bold;
	margin: 0 1rem 0 0;
    padding: 0 0;
    text-align: right;
    white-space: nowrap;
	color: #871534;
}
.history_timeline_date span {
	font-size: 1.2rem;
    vertical-align: 0.1rem;
}
.history_timeline_event_detail {
	font-size: 1.1rem;
	line-height: 1.5rem;
	margin: 0 0;
    padding: 0;
	padding-left: 1rem;
	border-left: 1px solid #871534;
}

/* history エリア終了 */


/* 問い合わせ */

/* .contact_area {
    display: flex;
    width: 100vw;
    padding: 0 10vw;
    font-size: 0.8em;
    justify-content: center;
    background-color: #3f3535;
} */

.contact_title_area {
    padding-top: 120px;
    width: 100%;
    text-align: center;
    animation-name: transparent;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.contact_title_text p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.25em;
    padding-top: 3rem;
    padding-bottom: 1.75rem;
}

.contact_title_text span {
    position: relative;
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2.5em;
    letter-spacing: 0.2em;
    color: #871534;
}
.contact_title_text span::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -1rem;
    width: 3rem;
    height: 6px;
    border-radius: 3px;
    background-color:#871534;
}

.contact_title_text_read {
    display: inline-block;
    max-width: 80%;
    text-align: left;
    font-size: 1.1rem;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

    /* contact.php 文章中のhover設定 */
    .contact_title_text_read a {
        position: relative;
        font-weight: 600;
        text-decoration: none;
        color: #871534;
        transition: all 0.2s;
    }

    /* .contact_title_text_read a::before,
    .contact_title_text_read a::after {
        content:'';
        position: absolute;
        bottom: -5px;
        display: block;
        width: 100%;
        height: 1px;
        background-color: #871534;
        opacity: 0;
        left: 0%;
        transition: 0.4s;
    } */

    .contact_title_text_read a:hover {
        color: #ffb7ca;
    }

    /* .contact_title_text_read a:hover::before,
    .contact_title_text_read a:hover::after {
        bottom: -1px;
        opacity: 1;
    } */

    /* 文章中のhover設定終了 */

/* /////問い合わせフォーム設定///// */

.contact_form_area {
    display: flex;
    width: 100%;
    justify-content: center;
    /* background-color: #3d3d3d; */
}

.contactForm {
    display: flex;
    flex-direction: column;
    width: 60%;
    font-size: 0.9rem;
    justify-content: center;
    margin-bottom: 3rem;
    /* background-color: #871534; */
}

.formFormat {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid #ffb7ca;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    background-color: #ffb7ca99;
    opacity: 1;
    color: #000000;
}

.contactFormText {
    color: #000;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.contactFormTextInputItem {
    display: flex;
    font-size: 0.9rem;
    font-weight: 500;
    color: #871534;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}

.contactFormTextInput {
    display: block;
    color: #000;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 1.5rem;
    /* margin-bottom: 1rem; */
}

.contactFormTextInputEnd {
    display: block;
    color: #000;
    font-weight: 300;
    font-size: 1.5rem;
    line-height: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.formButton {
    font-size: 1.25rem;
    position: relative;
    display: block;
    color: #ffffff;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
    background: -webkit-linear-gradient(
        0deg,
        #871534,
        #ffffff,
        #868686,
        #3d3d3d);
    background: -webkit-linear-gradient(
        left,
        #871534,
        #ffffff,
        #868686,
        #3d3d3d);
    background: linear-gradient(
        90deg,
        #871534,
        #871534,
        #ffffff,
        #ffb7ca);
    background-position: 1% 50%;
    background-size: 320% 320%;
    border: 1px solid #fff;
    border-radius: 1rem;
}

.formConfirm {
    width: 40%;
    height: 4rem;
    margin: 0 auto;
}

.formBack {
    width: 35%;
    height: 80px;
    margin: 2rem 5% 0 9.5%;
    display: inline-block;
}

.formSend {
    width: 35%;
    height: 80px;
    margin: 2rem 9.5% 0 5%;
    display: inline-block;

}

.formButton:hover {
    background-position: 99% 50%;
    color: #871534;
    border: 1px solid transparent;
    /* cursor: pointer; */
}

.form_any {
    font-size: 0.5rem;
    padding: 0.2rem 0.2rem;
    border-radius: 0.2rem;
    /* border: 1px solid #fff; */
    background-color: #ffb7ca;
    opacity: none;
    color: #868686;
}

.form_required {
    font-size: 0.5rem;
    padding: 0.2rem 0.2rem;
    border-radius: 0.2rem;
    /* border: 1px solid #000; */
    background-color: #871534;
    opacity: none;
    color: #fff;
}

/* /////問い合わせフォーム設定　終了///// */

/* 問い合わせ終了 */


/* footerエリア */
.footer {
    display: flex;
    background-color: #3f3535;
    color: white;
    width: 100%;
    height: 30vh;
    padding: 10px 20px;
    align-items: center;
    font-weight: 300;
}

.footer_right {
    flex: 1;
    /* background-color: aquamarine; */
    text-align: right;
}

.footer_links {
    flex: 1;
    text-align: right;
    font-size: 0.8rem;
    animation-name: fadeRight;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

.footer_links ul li {
    display: inline-block;
    list-style: none;
    padding: 0 0.6rem;
}

/* footer_linksのhover設定 */
.footer_links ul a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s;
}

.footer_links ul a::before,
.footer_links ul a::after {
    content:'';
    position: absolute;
    bottom: -15px;
    display: block;
    width: 20%;
    height: 3px;
    background-color: #ffb7ca;
    opacity: 0;
    left: 40%;
    /* right: 40%; */
    transition: 0.4s;
}

.footer_links ul a:hover {
    color: #ffb7ca;
}

.footer_links ul a:hover::before,
.footer_links ul a:hover::after {
    bottom: -10px;
    opacity: 1;
}

/* nav_linksのhover設定終了 */

.footer_links_page {
    color: #ffb7ca;
}

.address {
    padding: 1rem 0.6rem;
    font-size: 0.8rem;
    /* background-color: blue; */
}

.address_s {
    display: flex;
    justify-content: flex-end;
    text-align: left;
    /* background-color: bisque; */
}

.footer_copyright {
    display: flex;
    background-color: #3f3535;
    color: white;
    width: 100%;
    /* height: 20vh; */
    padding-bottom: 2rem;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 300;
}
/* footerエリア終了 */

/* 地図 */
.top_map_area {
    /* flex: 1; */
    box-shadow: 2px 2px 5px #871534;
    width: 100%;
    height: 60vh;
    /* background-color: aqua; */
    /* スクロール */
    /* transform: translate(0px, 50px);
    transition: all 1500ms; */
}

/* オーバーレイ */
#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(#871533db, #ffb7cadc);
    display: none;
    z-index: 100;
}

/* モーダルウィンドウ */
#modalWindow {
    width: 80%;
    height: auto;
    position: fixed;
    /* border: 2px solid #D04255; */
    /* box-shadow: 2px 2px 5px #871534; */
    /* background-color: #FFF; */
    display: none;
    z-index: 101;
}

.modalWindow_price_table {
    display: none;
}

.modalWindow_price_table.active {
    display: none;
}

.address_modal {
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
}

/* PAGETOP ボタン */

.pageTop_btn_area {
    position: fixed;
    display: inline-block;
    right: 2rem;
    bottom: 1rem;
}

.pageTop_btn_area a {
    display: block;
}

.pageTop {
    display: flex;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    color: #a0a0a0;
    letter-spacing: 0.1rem;
    align-items: center;
    cursor: pointer;

    transform: rotate(90deg) translate(0px, 0px);
    transform-origin: 100% 100%;
    transition: all 0.3s ease-in;
}

.triangle {
    display: inline-block;
    width: 0px;
    height: 0px;
    margin-right: 0.5rem;
    border-right: 0.5rem solid #a0a0a0;
    border-top: 0.35rem solid transparent;
    border-bottom: 0.35rem solid transparent;
    transition: all 0.3s ease-in;
}

.pageTop:hover {
    transform: rotate(90deg) translate(-5px, 0px);
    color: #871534;
}

.pageTop:hover .triangle {
    border-right: 0.5rem solid #871534;
    transition: all 0.3s ease-in;
}

/* PAGE TOPボタン　スクロール */

.scroll_pageTop_btn_f {
    content: '';
    opacity: 0;
    transform: translate(100px, 0px);
    transition: all 1000ms ease-in-out;
}
.scroll_pageTop_btn_f.scroll_btn {
    opacity: 1;
    transform: translate(0,0);
    transition: all 1000ms ease-in-out;
    transition-delay: 300ms;
}

/* PAGE TOPボタン　スクロール終了 */