/**
 * #.# STUDIO
 *
 * 
*/
/*基本カラー*/
:root {
/* スタジオ */
  --border-studio: #E07171;
/* ヨガ */
  --border-yoga: #67B5B7;
  --border-yoga-rgba: rgba(103, 181, 183, 0.8);
/* ホットヨガ */
  --border-hotyoga: #FF8746;
  --border-hotyoga-rgba: rgba(255, 135, 70, 0.8);
/* ピラティス */
  --border-pilates: #8D93C8;
  --border-pilates-rgba: rgba(141, 147, 200, 0.8);
/* ボクシング */
  --border-boxing: #EA5550;
  --border-boxing-rgba: rgba(234, 85, 80, 0.8);
/* その他 */
  --border-others: #6FB955;
  --border-others-rgba: rgba(111, 185, 85, 0.8);
}

/*----基本スタイル---*/
/*スクロール時*/
html {
    scroll-behavior: smooth;
    scroll-padding-top: 185px;
}
.page-title-underline::after {
    background: var(--border-studio);
}
.sp-br {
	display: none;
}
/*注意事項*/
.font14-note{
    display: flex;
    font-size: 14px;
}
.font16-note {
    font-size: 16px;
    text-align: center;
}
/*------------- SP版 -------------*/
@media screen and (max-width:960px){
    html {
        scroll-behavior: smooth;
        scroll-padding-top: 70px;
    }
}

@media screen and (max-width:768px){
    .sp-br {
        display: block;
    }
	.font16-note {
    	font-size: 14px;
	}
}

/*--------スタジオプログラム-------*/
.studio-program {
    margin-bottom: 100px;
}
.studio-title-underline {
    margin-bottom: 30px !important;
    padding: 0 0 5px 10px;
    position: relative;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #EBEBEB;
}
.studio-title-underline::after {
    content: "";
    width: 220px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: var(--border-studio);
}
.program-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin: 20px auto;
}
.program-link {
    position: relative;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    padding: 10px;
    border-radius: 25px;
    font-weight: 700;
	color:#fff;
}
.program-link::after {
    border-top: 2.5px solid #fff;
    border-right: 2.5px solid #fff;
	content: '';
    position: absolute;
    right: 20px;
    top: 17px;
    width: 9px;
    height: 9px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.program-link.yoga {
    background: var(--border-yoga);
}
.program-link.pilates {
    background: var(--border-pilates);
}
.program-link.boxing {
    background: var(--border-boxing);
}
.program-link.others {
    background: var(--border-others);
}

/*------------- SP版 -------------*/
@media screen and (max-width:768px){
	.program-list {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 0 5px;
	}
	.program-link{
		margin: 5px auto;
	}
	.studio-title-underline {
		margin-bottom: 10px !important;
		padding: 0 0 0px 5px;
		position: relative;
		font-size: 18px !important;
		font-weight: 700 !important;
		border-bottom: 2px solid #EBEBEB;
	}
	.studio-title-underline::after {
		content: "";
		width: 170px;
		height: 2px;
		position: absolute;
		bottom: -2px;
		left: 0;
		background: var(--border-studio);
	}
}

/*------- 各レッスンCSS -------*/
/*タイトル*/
.explanation-title {
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
    padding-left: 10px;
 }
.explanation-en-title {
    font-size: 14px;
    font-weight: 500;
}
/*説明文*/
.training-description {
    font-size: 16px;
    margin-bottom: 15px;
}
/*レベルタグ*/
.program-level-labels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 10px;
}
.level-label{
    width: 100%;
    padding: 10px;
    margin: 10px auto 0px;
	position: relative;
    line-height: 1.2;
}
.level-jp {
    font-size: 20px;
    font-weight: 600;
}
.level-en {
    font-weight: 400;
}
.level-label.disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}
.level-label.disabled::after {
  content: 'COMING SOON';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  pointer-events: none;
  border-radius: 10px 10px 0 0;
}
/*プログラム詳細*/
.accordion-content {
  display: none;
}

.accordion-content.active {
	display: block;
    background: #f7f7f7;
    padding: 25px;
}
.studio-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.has-thumbnail {
    display: grid;
	background: #fff;
    grid-template-columns: 1fr 2fr;
}
.nothas-thumbnail {
	background: #fff;
	position: relative;
}
.studio-list .thumbnail img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumbnail {
    position: relative;
}
.program-description h3 {
    font-size: 18px;
    font-weight: 700;
}
.has-thumbnail .program-description {
	padding: 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nothas-thumbnail .program-description {
	padding: 45px 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.has-thumbnail .trial-ok,
.has-thumbnail .member-only {
    position: absolute;
    top: 5px;
    right: 5px;
    display: flex;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 7px;
    align-items: center;
    gap: 2px;
	font-weight: 600;
}
.nothas-thumbnail .trial-ok,
.nothas-thumbnail .member-only {
    position: absolute;
    top: 18px;
    left: 30px;
    display: flex;
    padding: 3px 8px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 7px;
    align-items: center;
    gap: 2px;
}
.trial-ok img,
.member-only img {
    width: 15px !important;
    height: 15px !important;
}
.tag {
    font-size: 14px;
    font-weight: 600;
	margin-top: -15px;
}
.tag span{
	white-space: nowrap;
	margin-right: 4px;
}
.program-about{
	font-size: 14px;
}
.lesson-info-wrap{
	display: flex;
	gap: 15px;
	font-weight: 500;
    font-size: 14px;
}
.lesson-info {
    color: #fff;
    padding: 3px 20px 4px;
    margin-right: 15px;
    font-size: 13px;
    font-weight: 600;
}
.level .active {
	color: #FFD700;
    font-size: 16px;
}
.level .inactive {
	color: #FFD700;
    font-size: 16px;
}
.program-note {
    text-align: center;
	margin: 10px auto;
}
/*持ち物*/
.items-title {
    font-weight: 600;
}
.required-items {
    display: flex;
    gap: 10px;
    margin: 10px 0px 20px;
    flex-wrap: wrap;
}
.studio-item {
    width: 80px;
	aspect-ratio: 1;
    border-radius: 8px;
    color:#fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 5px;
}
.item-name {
    line-height: 1.2;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}
.studio-item img{
    width: 80%;
    margin-bottom: -5px;
}
.rental-star {
    position: relative;
}
.rental-star::after{
    content: "★";
    color: #FFCE2D;
    position: absolute;
    top: 0px;
    left: 5px;
    font-size: 16px;
}
.item-rental{
	padding-left: 10px;
    font-size: 12px;
	font-weight: 500;
}
.item-rental span {
    font-size: 14px;
    color: #FFCE2D;
}

/*------------- SP版 -------------*/
@media screen and (max-width:768px){
	.explanation-en-title {
		font-size: 12px;
		font-weight: 500;
	}
	.training-description {
		font-size: 14px;
	}
	.level-label {
	    line-height: 1;
	}
	.level-jp {
    	font-size: 16px;
	}
	.level-en {
    	font-size: 10px;
	}
	.items-title {
		font-size: 14px;
	}
	.item-rental {
    	font-size: 11px;
	}
	.required-items {
        gap: 5px;
    }
	.item-name {
    	font-size: 10px;
	}
	.accordion-content.active {
		padding: 10px;
	}
	ul.studio-list {
	    display: grid;
    	grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	li.has-thumbnail {
	    display: flex;
    	flex-direction: column;
	}
	.studio-list .thumbnail img {
	    height: 150px;
	}
	.has-thumbnail .program-description {
    	padding: 15px;
	}
	.nothas-thumbnail .program-description {
    	padding: 40px 15px 15px;
	}
	.program-description h3 {
    	font-size: 16px;
	}
	.tag {
    	font-size: 12px;
	}
	.program-about {
    	font-size: 13px;
	}
	.lesson-info-wrap {
    	display: flex;
	    gap: 6px;
    	font-weight: 500;
    	font-size: 14px;
    	flex-direction: column;
	}
	.lesson-info {
    	padding: 2px 7px 3px;
    	margin-right: 12px;
		font-size: 12px;
	}
	.level .active,.level .inactive {
    	font-size: 15px;
	}
	.time {
	    display: flex;
	    font-size: 13px;
    	align-items: center;
	}
	.has-thumbnail .trial-ok, .has-thumbnail .member-only{
    	font-size: 10px;
    	gap: 2px;
	}
	.nothas-thumbnail .trial-ok, .nothas-thumbnail .member-only {
    	font-size: 10px;
    	gap: 2px;
		left: 15px;
		top: 10px;
	}
	.trial-ok img, .member-only img {
	    width: 12px !important;
    	height: 12px !important;
	}
	.level-label.disabled::after {
		font-size: 12px;
	}
}

@media screen and (max-width:500px){
	ul.studio-list {
	    display: grid;
    	grid-template-columns: repeat(1, 1fr);
		gap: 15px;
	}
	.accordion-content.active {
        padding: 15px;
    }
	.program-level-labels {
	    gap: 5px;
	}
	.studio-item {
    	width: 60px;
	}
	.item-name {
        font-size: 7px;
    }
	.rental-star::after {
	    font-size: 10px;
	}    
	.studio-list .thumbnail img {
        height: 100%;
    }
}
/*横に2列並んでいるver
@media screen and (max-width:500px){
	.program-level-labels {
	    gap: 5px;
	}
	.level-label {
    	padding: 6px;
	}
	.studio-list .thumbnail img {
    	height: 100px;
	}
    .has-thumbnail .trial-ok, .has-thumbnail .member-only {
        font-size: 6px;
        gap: 0px;
    	border-radius: 4px;
    	padding: 2px 4px;
    }
	.nothas-thumbnail .trial-ok, .nothas-thumbnail .member-only {
        font-size: 6px;
        gap: 0px;
        left: 7px;
        top: 7px;
    	border-radius: 4px;
    	padding: 2px 4px;
    }
	.trial-ok img, .member-only img {
        width: 7px !important;
        height: 7px !important;
    }
    .has-thumbnail .program-description {
        padding: 7px;
	    gap: 5px;
    }
	.nothas-thumbnail .program-description {
        padding: 25px 7px 7px;
	    gap: 5px;
    }
    .program-description h3 {
        font-size: 12px;
    }
	.tag {
        font-size: 8px;
		margin-top: -5px;
    }
	.program-about {
        font-size: 9px;
    }
	.lesson-info-wrap {
        gap: 4px;
    }
    .lesson-info {
        padding: 2px 4px;
        margin-right: 9px;
        font-size: 7px;
    }
	.level .active, .level .inactive {
        font-size: 10px;
    }    
	.time {
        font-size: 9px;
    }
	.explanation-title {
    	font-size: 16px;
	}
    .explanation-en-title {
        font-size: 10px;
    }
	.explanation-title.yoga {
    	border-left: 4px solid var(--border-yoga);
	}
	.explanation-title.pilates {
    	border-left: 4px solid var(--border-pilates);
	}
	.explanation-title.boxing {
    	border-left: 4px solid var(--border-boxing);
	}
	.explanation-title.others {
    	border-left: 4px solid var(--border-others);
	}
    .level-jp {
        font-size: 14px;
    }
	.items-title {
        font-size: 13px;
    }
	.child-cat-title {
    	padding: 2px 8px !important;
    	font-size: 15px !important;
	}
	.studio-item img {
    	margin-bottom: -4px;
	}
    .item-name {
        font-size: 9px;
    }
}
*/
/*ヨガ*/
.yoga-session {
    margin: 80px 0px;
}
.explanation-title.yoga {
    border-left: 5px solid var(--border-yoga);
}
.level-label.yoga {
    background: #D0EEEF;
	color: var(--border-yoga);
	border-radius: 10px 10px 0 0;
}
.level-label.yoga.active {
    background: var(--border-yoga);
    color: #fff;
	border-radius: 10px 10px 0 0;
}
.level-label.yoga.disabled::after {
  background: var(--border-yoga-rgba);
}
.trial-ok.yoga {
    color: #fff;
    background: var(--border-yoga);
}
.member-only.yoga {
    background: #DDF1F2;
    color: var(--border-yoga);
}
.tag.yoga {
	color: var(--border-yoga);
}
.lesson-info.yoga{
	color: var(--border-yoga);
    background: #D0EEEF;
}
.studio-item.yoga {
    background: var(--border-yoga);
}

/*ホットヨガ*/
.level-label.hotyoga {
    background: #FFDFBC;
	color: var(--border-hotyoga);
	border-radius: 10px 10px 0 0;
}
.level-label.hotyoga.active {
    background: var(--border-hotyoga);
    color: #fff;
	border-radius: 10px 10px 0 0;
}
.level-label.hotyoga.disabled::after {
  background: var(--border-hotyoga-rgba);
}
.trial-ok.hotyoga {
    color: #fff;
    background: var(--border-hotyoga);
}
.member-only.hotyoga {
    background: #FFDFBC;
    color: var(--border-hotyoga);
}
.tag.hotyoga {
	color: var(--border-hotyoga);
}
.lesson-info.hotyoga{
	color: var(--border-hotyoga);
    background: #FFDFBC;
}
.studio-item.hotyoga {
    background: var(--border-hotyoga);
}

/*ピラティス*/
.pilates-session {
    margin: 80px 0px;
}
.explanation-title.pilates {
    border-left: 5px solid var(--border-pilates);
}
.level-label.pilates {
    background: #F3F4FF;
	color: var(--border-pilates);
	border-radius: 10px 10px 0 0;
}
.level-label.pilates.active {
    background: var(--border-pilates);
    color: #fff;
	border-radius: 10px 10px 0 0;
}
.level-label.pilates.disabled::after {
  background: var(--border-pilates-rgba);
}
.trial-ok.pilates {
    color: #fff;
    background: var(--border-pilates);
}
.member-only.pilates {
    background: #EAECFF;
    color: var(--border-pilates);
}
.tag.pilates {
	color: var(--border-pilates);
}
.lesson-info.pilates{
	color: var(--border-pilates);
    background: #F3F4FF;
}
.studio-item.pilates {
    background: var(--border-pilates);
}

/*ボクシング*/
.boxing-session {
    margin: 80px 0px;
}
.explanation-title.boxing {
    border-left: 5px solid var(--border-boxing);
}
.level-label.boxing {
    background: #FFE8E8;
	color: var(--border-boxing);
	border-radius: 10px 10px 0 0;
}
.level-label.boxing.active {
    background: var(--border-boxing);
    color: #fff;
	border-radius: 10px 10px 0 0;
}
.level-label.boxing.disabled::after {
  background: var(--border-boxing-rgba);
}
.trial-ok.boxing {
    color: #fff;
    background: var(--border-boxing);
}
.member-only.boxing {
    background: #FFF4F4;
    color: var(--border-boxing);
}
.tag.boxing {
	color: var(--border-boxing);
}
.lesson-info.boxing{
    background: #FFE8E8;
	color: var(--border-boxing);
}
.studio-item.boxing {
    background: var(--border-boxing);
}

/*その他レッスン*/
.others-session {
    margin: 80px 0px;
}
.explanation-title.others {
    border-left: 5px solid var(--border-others);
}
.level-label.others {
    background: #DBF6D1;
	color: var(--border-others);
	border-radius: 10px 10px 0 0;
}
.level-label.others.active {
    background: var(--border-others);
    color: #fff;
	border-radius: 10px 10px 0 0;
}
.level-label.others.disabled::after {
  background: var(--border-others-rgba);
}
.child-cat-title:first-child {
    margin: 10px auto;
}
.child-cat-title {
    border-left: 3px solid var(--border-others);
    padding: 3px 10px;
    font-size: 18px;
    font-weight: 600;
    margin: 30px auto 10px;
}
.trial-ok.others {
    color: #fff;
    background: var(--border-others);
}
.member-only.others {
    background: #DBF6D1;
    color: var(--border-others);
}
.tag.others {
	color: var(--border-others);
}
.lesson-info.others{
    background: #DBF6D1;
	color: var(--border-others);
}
.studio-item.others {
    background: var(--border-others);
}

/* -------------------- トレーナー紹介 -------------------- */
.trainer-title-underline {
    margin-bottom: 30px !important;
    padding: 0 0 5px 10px;
    position: relative;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #EBEBEB;
}
.trainer-title-underline::after {
    content: "";
    width: 220px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #E07171;
}
.trainer-section {
    margin: 100px auto;
}
.location-trainers > ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	justify-content: flex-start;
	gap: 50px;
}
.location-trainers-card {
	width: 270px;
	margin: 0 auto;
	padding: 10px;
	position: relative;
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 10px;
    box-shadow: 0px 3px 6px #00000029;
}
.location-trainers-thumbnail > img {
	width: 246px;
	height: 246px;
	margin: 0 auto;
	border-radius: 8px;
}
.location-trainers-card p {
	margin-top: 10px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}
.location-trainers-card p span {
	display: block;
	font-size: 20px;
}
.trainer-categories {
	position: absolute;
	bottom: 90px;
	right: 20px;
}
.trainer-category {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px !important;
    margin: 3px;
    font-weight: 700 !important;
}
@media screen and (max-width:768px){
	.trainer-title-underline {
		margin-bottom: 0px !important;
		font-size: 18px !important;
	}
	.trainer-title-underline::after {
		width: 180px;
	}
	.location-trainers > ul {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
		justify-content: flex-start;
		gap: 50px;
	}
	.location-trainers {
		padding: 40px 0;
		overflow: hidden;
	}
	.location-trainers-card {
		width: 270px;
		margin: 0 auto;
		padding: 10px;
		position: relative;
		display: flex;
		align-items: center;
		background: #fff;
		border-radius: 10px;
	    box-shadow: 0px 3px 6px #00000029;
	}
	.location-trainers-thumbnail > img {
		width: 246px;
		height: 246px;
		margin: 0 auto;
		border-radius: 8px;
	}
	.location-trainers-card p {
		margin-top: 10px;
		text-align: center;
		font-size: 16px;
		font-weight: 500;
	}
	.location-trainers-card p span {
		display: block;
		font-size: 16px;
	}
}
/* ---------- トレーナーポップアップ ---------- */
.location-popup-trainer {
	display: none;
}
.location-popup-scrollwrap {
	width: 95%;
	margin: 0 auto;
	background: #fff;
}
.location-popup-trainer-content {
	width: 100%;
	padding: 30px 0;
	display: flex;
	justify-content: space-around;
	overflow-y: auto;
}
.location-popup-bg {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	background: #222;
	opacity: 0.7;
	transition: transform .5s;
	z-index: 9999;
}
.location-popup-slide-wrapper {
	max-width: 100%;
	min-height: 400px;
	padding: 30px;
	background: #FFF;
	border-radius: 20px;
	border: 2px solid #ECECEC;
	box-shadow: 0px 3px 6px #00000029;
	width: 960px;
	height: fit-content;
	margin: auto;
	position: fixed;
	inset: 0;
	transition: transform .5s;
	z-index: 10000;
}
@media screen and (max-width:1000px){
	.location-popup-scrollwrap {
		max-height: 60vh;
		overflow-y: auto;
	}
	.location-popup-trainer-content {
		padding: 10px 0;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		overflow-y: auto;
	}
	.location-popup-trainer-content img {
		width: 90%;
		max-width: 350px;
		height: 90%;
		max-height: 350px;
	}
	.location-popup-trainer-text {
		gap: 20px;
	}
	.location-popup-slide-wrapper {
		max-width: 100%;
		max-height: 90%;
		overflow: scroll; /* スクロール設定 */
	}
}
/* -------------------- ポップアップ閉じるボタン -------------------- */
.location-popup-close {
	width: 45px;
	height: 45px;
	margin-right: 0;
	margin-left: auto;
	position: relative;
}
.location-popup-close::before,
.location-popup-close::after {
	content: "";
	width: 2px;
	height: 28px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: #222;
}
.location-popup-close::before {
	transform: translate(-50%,-50%) rotate(45deg);
}
.location-popup-close::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}
/* ---------- 名前 役職 ---------- */
.trainer-title {
	margin-bottom: 20px;
	padding: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 3px #999 solid;
}
.trainer-title > h3 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0 20px;
	font-size: 24px;
	font-weight: 500;
}
.trainer-title > h3 > span {
    display: inline-block;
}
@media screen and (max-width:428px){
	.trainer-position {
		font-size: 12px;
	}
}
/* ---------- プロフィール本文 ---------- */
.trainer-content {
	display: flex;
	justify-content: flex-start;
	gap: 20px;
	position: relative;
}
/* サムネイル */
.trainer-content > img {
	width: 100%;
	max-width: 285px;
	height: auto;
	max-height: 285px;
	margin: 0 auto;
	object-fit: cover;
}
/* プロフィールテキスト */
.trainer-about {
	max-width: 650px;
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
	letter-spacing: 0.1rem;
}
/* タグ */
.trainer-tag {
	max-width: 400px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.trainer-tag li {
	max-width: 350px;
	padding: 3px 10px 4px;
	font-size: 12px;
	color: #FFF;
	background: #E07171;
	border-radius: 7px;
}
/* トレーナーコメント */
.trainer-comment {
	line-height: 1.6rem;
	letter-spacing: 0.1rem;
}

/* トレーナー大会経験 */
.tournament-title{
	margin-bottom: 10px ;
	padding: 0 0 0 5px;
	position: relative;
	font-weight: 500 ;
	border-bottom: 2px solid #EBEBEB;
}
.tournament-title::after {
	content: "";
	width: 82px;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	background: #E07171;
}
.trainer-tournament  {
	background:#fBFBFB;
	border:1px solid #EFEFEF;
	padding:10px 15px 20px 15px;
	margin-top:10px;
}
@media screen and (max-width:768px){
	.tournament-title::after {
		width: 75px;
	}
}
/* SNSリンク */
.trainer-sns {
	margin: 10px 10px 0 0;
	display: flex;
	gap: 14px;
	position: absolute;
	top: 0;
	right: 0;
}
/* 在籍店舗へのリンク */
.trainer-location-link {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
.trainer-location-link > li > a {
	margin: 0 auto;
	font-weight: 500;
}

/* -------------------- 1000px以下 -------------------- */
@media screen and (max-width:959px){
	/* -------------------- トレーナーリスト -------------------- */
	.trainer-title {
		flex-wrap: wrap;
	}
	.trainer-content {
		width: 100%;
		margin: 0 auto;
		flex-direction: column;
	}

	.trainer-image {
		margin: 0 auto;
	}
	.trainer-about {
		width: 100%;
		max-width: initial;
	}
	.trainer-sns {
		margin: 0;
		justify-content: end;
		gap: 15px;
		position: static;
	}
}
@media screen and (max-width:768px){
	/* ---------- 名前 役職 ---------- */
	.trainer-title > h3 {
		gap: 0 10px;
	}

	.trainer-content {
		gap: 10px;
	}
	/* トレーナー大会経験 */
	.trainer-tournament  {
		padding:10px;
	}
}
@media screen and (max-width:428px){
	/* ---------- 名前 役職 ---------- */
	.trainer-title > h3 {
		margin-bottom: 0;
		font-size: 16px;
	}

	.trainer-location-link {
		margin-top: 0;
	}
}
/* トレーナーリンク */
.button-studio {
    background: #E07171;
    border-right: 3px solid #D65D6D;
    border-bottom: 3px solid #D65D6D;
	width: fit-content;
    height: fit-content;
    padding: 8px 35px;
    position: relative;
    display: block;
    color: #FFF;
    border-radius: 30px;
    box-shadow: 3px 4px 5px rgba(144, 144, 144, .5);
}
.trainer-link-btn {
    margin: 40px auto;
}
@media screen and (max-width:768px){
	.trainer-link-btn {
		margin: 0px auto;
	}
}
/* 所属トレーナー スライド設定 */
@media screen and (max-width:768px){
	.location-trainers-slide .slick-next::after,
	.location-trainers-slide .slick-prev::after {
		width: 26px;
		height: 26px;
		border-top: 5px solid #E07171;
		border-right: 5px solid #E07171;
	}
	.slide-dots-blue li.slick-active {
    	background-color: #E07171;
	}
	.location-trainers > ul li.slick-slide {
		margin: 0 50px;
	}
	.location-trainers > ul {
		grid-template-columns: repeat(auto-fit, 270px);
		justify-content: center;
		gap: 50px;
	}
	.slick-list { 
		overflow: visible !important; 
	}
	/* ---------- スライド矢印 ---------- */
	.slick-arrow {
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		padding: 0;
		width: 20px;
		color: transparent;
		transition: opacity 0.5s;
		z-index: 1;
	}
	.slick-arrow:hover {
		opacity: 0.7;
	}
	
	.slick-next::before,
	.slick-next::after,
	.slick-prev::before,
	.slick-prev::after {
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  margin: auto;
	  content: "";
	  vertical-align: middle;
	}
	.slick-next::after,
	.slick-prev::after {
		width: 20px;
		height: 20px;
	  border-top: 5px solid #fff;
	  border-right: 5px solid #fff;
	}
	/* next */
	.slick-next {
	  right: -10px;
	}
	.slick-next::after {
	  right: 0px;
	  transform: rotate(45deg);
	}
	/* prev */
	.slick-prev {
	  left: -10px;
	}
	.slick-prev::after {
	  left: 0px;
	  transform: rotate(-135deg);
	}
	.location-slide .slick-next,
	.location-slide .slick-prev {
		transform: translate(0, 0%);
	}
}

/* -------------------- 料金表 -------------------- */
.price-title-underline {
    margin-bottom: 30px !important;
    padding: 0 0 5px 10px;
    position: relative;
    font-size: 22px !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #EBEBEB;
}
.price-title-underline::after {
    content: "";
    width: 320px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #E07171;
}
.ticket-title {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 50px auto 20px auto;
}
.membership-table,
.free-ticket-table {
    margin: 0 auto 10px auto;
    width: 100%;
    font-size: 18px;
	border: 1px solid #E8E8E8;
	margin-top: 10px;
}
.membership-table dl {
	display: flex;
	align-items: center;
    border-bottom: dashed 1px #e5e5e5;
}
.membership-table dl:last-of-type {
	display: flex;
	align-items: center;
    border-bottom: none !important;
}
.free-ticket-table dl {
	display: flex;
	align-items: center;
}
.membership-table .table-header{
	font-weight: 600;
    width: 30%;
    background: #F7F7F7;
    padding: 15px 0px 15px 40px;
}
.free-ticket-table .table-header {
	font-weight: 600;
    width: 30%;
    background: #F7F7F7;
    padding: 15px 0px;
	text-align: center;
}
.table-data {
	margin: 0 auto;
    text-align: center;
    line-height: 1.2;
    font-size: 16px;
    font-weight: 500;
}
.sp-br02{
	display: none;
}
.font-price {
	font-weight: 700;
	font-size: 24px;
}
.price-option-value {
    font-size: 12px;
    padding-top: 0px;
    font-weight: 400;
    padding-top: 3px;
}
.table-note {
    font-size: 16px;
    font-weight: normal;
}
.table-subnote {
    font-size: 14px;
    color: #666;
    font-weight: normal;
    padding-left: 20px;
}
.warning-01{
	position: relative;
}
.warning-01::after {
	content: "※";
	position: absolute;
	font-size: 10px;
}

@media screen and (max-width:768px){
	.price-title-underline {
		margin-bottom: 0px !important;
		font-size: 18px !important;
	}
	.price-title-underline::after {
		width: 260px;
	}
	.ticket-title {
		font-size: 18px;
		margin: 35px auto 10px auto;
	}
	.membership-table,
	.free-ticket-table {
		margin: 10px auto 10px auto;
		width: 100%;
		font-size: 14px;
	}
	.membership-table dl,
	.free-ticket-table dl {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		border-bottom: none;
	}
	.table-header {
		width: 100% !important;
		background: #F7F7F7 !important;
		padding: 15px 10px !important;
		text-align: center !important;
		font-size: 16px;
	}
	.font-price {
		font-weight: 800;
		font-size: 20px;
	}
	.table-data {
		margin: 0 auto;
		padding: 15px 0px;
		text-align: center;
	}              
	.sp-br02{
		display: block;
	}
	.table-note {
		font-size: 14px;
	}
	.table-subnote {
		font-size: 12px;
		color: #666;
		font-weight: normal;
		padding-left: 5px;
	}
}

/*リンク*/
.link-wrap{
    margin:100px 0px;
}
.link-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}
.go-sutdio-link {
    display: grid;
    grid-template-columns: repeat(auto-fill, 313px);
    gap: 10px;
    margin: 20px auto;
}
.go-sutdio-link img {
    width: 30px;
}
.go-sutdio-link a {
    display: flex;
    align-items: center;
    color: #fff;
    line-height: 1.2em;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
    justify-content: space-evenly;
	height: 55px;
}
.schedule-link {
    background: #E07171;
}
.join-link {
    background: #F9C80E;
}
.trial-link {
    background: #2CA4A0;
}
@media screen and (max-width:768px){
	.link-title {
		font-size: 16px;
		font-weight: 700;
		text-align: center;
	}
	.go-sutdio-link {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 20px;			
		justify-content: center;
		align-items: stretch;
	}
	.go-sutdio-link a {
		display: grid;
		align-items: center;
		color: #fff;
		grid-template-columns: auto 1fr;
		line-height: 1.2em;
		font-weight: 500;
		padding: 10px;
		border-radius: 8px;
		box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);
		height: 55px;
		justify-content: space-around;
	}
	.go-sutdio-link img {
		width: 30px;
		margin-left: 20px;
	}
	.go-sutdio-link p {
		text-align: center;
	}
}