/**
 * #.# 店舗一覧ページ
 *
 * location"s"
 */
/*基本カラー*/
:root {
    --border-gym: #17C1B0;  /* 基本カラー */
    --border-light: #17A7C1; /*ライト*/
    --border-personal: #05C3C3;/* パーソナル */
    --border-studio: #E07171; /* スタジオ */
    --border-golf: #339544; /* ゴルフ */
    --border-vip: #C58A00; /* VIP */
}
/*フォントカラー*/
.color-gym-plan {
    color:var(--border-gym);
}
.color-light-plan {
    color:var(--border-light);
}
.color-personal-plan {
    color:var(--border-personal);
}
.color-studio-plan {
    color:var(--border-studio);
}
.color-golf-plan {
    color:var(--border-golf);
}
.color-vip-plan {
    color:var(--border-vip);
}
/*背景色*/
.bg-gym-color {
    background: var(--border-gym);
}
.bg-light-color {
    background: var(--border-light);
}
.bg-personal-color {
    background: var(--border-personal);
}
.bg-studio-color {
    background: var(--border-studio);
}
.bg-golf-color {
    background: var(--border-golf);
}
.bg-vip-color {
    background: var(--border-vip);
}

.page-main {
	margin: 70px 0 0 !important;
}

/* ---------- 地域タイトル ---------- */
.locations-parent-title{
	margin-bottom: 30px !important;
	padding: 0 0 5px 15px;
	position: relative;
	font-size: 30px !important;
	font-weight: 700 !important;
	color: #17C1B0;
}
.locations-parent-title::after {
	content: "";
	width: 5px;
	height: 46px;
	position: absolute;
	left: 0;
	background: #17C1B0;
}
.locations-area-title {
	margin-bottom: 30px !important;
	padding: 0 0 5px 10px;
	position: relative;
	font-size: 22px !important;
	font-weight: 700 !important;
	border-bottom: 2px solid #EBEBEB;
}

/* ---------- 店舗リスト ---------- */
.locations-list {
	width: 100%;
	margin-bottom: 70px;
	display: grid;
	grid-template-columns: repeat(auto-fill, 290px);
	gap: 40px;	
}
.locations-list > li {
	width: 290px;
	height: fit-content;
	position:relative;
}

.locations-list-thumbnail > img {
	width: 100%;
	height: 210px;
	object-fit: cover;
}

.locations-list-name {
	margin: 5px;
	font-size: 18px;
	font-weight: 500;
}

.locations-list-address,
.locations-list-tel {
	margin-left: 14px;
	font-size: 14px;
}

.locations-list-address::before {
	content: "";
	width: 15px;
	height: 15px;
	margin-right: 5px;
	display: inline-block;;
	background: url("../images/icon-small-house.png") no-repeat;
	background-size: contain;
}

.locations-list-tel::before {
	content: "";
	width: 15px;
	height: 15px;
	margin-right: 5px;
	display: inline-block;;
	background: url("../images/icon-small-phone.png") no-repeat;
	background-size: contain;
}
.location-content-info {
    width: 90px;
    height: 90px;
    position: absolute;
    top: -20px;
    right: -25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFCE2D;
    border-radius: 50%;
    text-align: center;
    font-weight: 500;
    line-height: 19px;
    z-index: 1;
	font-size:13px;
}

@media screen and (max-width:959px){
	.locations-list {
		justify-content: center;
	}
}

/* ---------- インフォメーション ---------- */
.locations-info {
	width: 100%;
	padding: 50px;
	position: relative;
	background: #E1F7F5;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
}
.locations-info::before {
	content: "";
	width: 80px;
	height: calc(tan(60deg) * 40px / 2);
	position: absolute;
	top: -34px;
	left: calc(50% - 40px);
	background: #E1F7F5;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

@media screen and (max-width:959px){
	.locations-info {
		padding: 30px;
		font-size: 18px;
	}
}

/**
 * #.# 店舗個別ページ
 *
 * location
 */

.page-single-location {
	margin-top: 0 !important;
}

/* ---------- 店舗トップ ---------- */
.location-image {
	width: 100%;
	padding: 20px 0;
	background: #fff;
}

.location-title-en {
    margin: 10px auto;
	font-size: 70px;
	font-weight: 500;
	text-align: center;
	color: #17C1B0;
	/*-webkit-text-stroke: 2px #666;*/
}

.location-title-jp {
	margin-top: -10px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 20px;
	/*font-weight: bold;*/
	color: #222;
}

@media screen and (max-width:1000px){
	.location-title-en {
		line-height: 1.2;
        font-size: 50px;
	}

	.location-title-jp {
		margin-bottom: 20px;
	}
}

/* ---------- 非公開 COMMING SOON ---------- */
.location-private {
    padding:50px;
	background:#f5f5f5;
}

.location-private-title {
    margin-bottom: 30px;
    font-size: 50px;
    font-family: "DIN Condensed", "DIN-Condensed";
    line-height: 1.1;
    color: #17C1B0;
    text-align: center;
}

@media screen and (max-width:768px){
	.location-private {
		padding: 20px;
	}
    .location-private-title {
        font-size: 40px;
    }
}
/* リンク 中央寄せアンダーライン */
.location-link-underline {
    width: 100%;
    margin: 30px 0;
    padding-bottom: 8px;
    position: relative;
    display: block;
    text-align: center;
}
.location-link-underline::after {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 15px);
    display: block;
    background: #17C1B0;
}

/* ---------- 店舗写真スライド ---------- */
.location-slide-wrapper {
	width: 974px;
	margin: 0 auto;
}
.location-slide {
	max-width: 100%;
	margin: 0 auto 5px;
	padding: 0;
	position: relative;
}
.location-slide img,
.location-slide-nav img{
	width: 100%;
}
.location-slide-nav {
	max-width: 100%;
	margin: 0 auto;
}
.location-slide-nav li {
	margin: 5px;
}
.location-slide-nav .slick-current {
	opacity: 0.5;
}
.location-slide-nav div div div {
	cursor: pointer;
}

.slick-slide {
	padding: 7px;
}

@media screen and (max-width:1000px){
	.location-slide-wrapper {
		width: 90%;
	}
}

@media screen and (max-width:768px){
	.location-slide-wrapper {
		width: 100%;
	}
}

/* ---------- 店舗からのお知らせ ---------- */
.location-info {
	margin-top: 40px;
	padding: 30px 30px;
	background: #E1F7F5;
	border-radius: 30px;
}

@media screen and (max-width:768px){
	.location-info {
		margin-top: 20px;
		padding: 14px;
		border-radius: 14px;
	}
}

/* ---------- 店舗情報 ---------- */
.location-about {
	padding: 40px 0;
	background: #E1F7F5;
}
.location-about-contents {
	display: grid;
	grid-template-columns: repeat(auto-fit, 470px);
	justify-content: space-between;
}
.location-about-text {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}
.location-about iframe {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}
.location-tag {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.location-about-contents dl {
	display: flex;
	flex-wrap: wrap;
}
.location-about-contents dl dt,
.location-about-contents dl dd {
	margin-bottom: 7px;
}
.location-about-contents dl dt {
	width: 28%;
	padding: 10px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #17c1b0;
	color: #fff;
}
.location-about-contents dl dd {
	width: 72%;
	padding: 10px 0 10px 10px;
	background: #fff;
}

.location-about-contents dl dd a {
	color: #222;
}

@media screen and (max-width:1000px){
	.location-about {
		padding: 20px 0 40px;
	}
	.location-about-contents {
		display: flex;
		flex-direction: column;
	}
	.location-about-text {
		order:2;
	}
	.location-map {
		order: 3;
	}
	.location-tag {
		order: 1;
	}

	.location-about-contents dl {
		width: 100%;
		margin-bottom: 20px;
	}
	.location-about-contents dl dt,
	.location-about-contents dl dd {
		width: 100%;
	}
	.location-about-contents dl dt {
		margin-bottom: 0;
	}
	.location-about-contents dl dd {
		padding: 10px 0 10px 20px;
	}
	.location-about-hour li {
		max-width: 340px;
		justify-content: space-between;
		gap: 10px;
	}
}

/* ---------- Googleマップ ---------- */
.location-map {
	width: 100%;
}
.location-map iframe {
	width: 100%;
	height: 275px;
	margin-bottom: 10px;
}

/* ---------- タグ ---------- */
.location-tag {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 0 7px;
}
.location-tag li {
	height: fit-content;
    padding: 3px 10px 4px;
    border-radius: 7px;
    background: #17c1b0;
    color: #fff;
    font-size: 14px;
}
.location-tag li a {
    color: #fff;
	text-decoration: underline;
}
.location-tag li a:hover {
    opacity: 0.8;
}

@media screen and (max-width:1000px){
	.location-tag {
		margin-bottom: 20px;
		gap: 7px;
		order: 1;
	}
}

/* ---------- 駐車場ポップアップ ---------- */
.location-popup-parking {
	display: none;
}
.location-popup-scrollwrap {
	width: 95%;
	margin: 0 auto;
	background: #fff;
}
.location-popup-parking-content {
	width: 100%;
	padding: 30px 0;
	display: flex;
	justify-content: space-around;
	overflow-y: auto;
}
.location-popup-parking-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
}
.location-popup-parking-text p span {
	font-size: 16px;
	color: red;
}

@media screen and (max-width:1000px){
	.location-popup-scrollwrap {
		max-height: 60vh;
		overflow-y: auto;
	}
	.location-popup-parking-content {
		padding: 10px 0;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		overflow-y: auto;
	}
	.location-popup-parking-content img {
		width: 90%;
		max-width: 350px;
		height: 90%;
		max-height: 350px;
	}
	.location-popup-parking-text {
		gap: 20px;
	}
}

/* ---------- お問い合わせ ---------- */
.location-contact {
	margin-top: 30px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	gap: 5%;
}
.location-contact li {
	width: 30%;
}
.location-contact li a {
	width: 100%;
	padding: 5px 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	background: #fff;
	border-radius: 5px;
	color: #222;
	position: relative;
    box-shadow: 0px 3px 6px #00000029;
}
.location-contact li a::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	background: linear-gradient(315deg, #17c1b0 18px, transparent 0);
	border-radius: 5px;
}

@media screen and (max-width:1000px){
	.location-contact {
		margin-top: 20px;
	}
	.location-contact li {
		width: 30%;
		margin-bottom: 10px;
	}
	.location-contact li a {
		padding: 5px 10px 5px 5px;
		gap: 0;
	}
	.location-contact li a span {
		width: inherit;
		text-align: center;
	}
}

@media screen and (max-width:768px){
	.location-contact {
		flex-direction: column;
	}
	.location-contact li {
		width: 100%;
	}
}

/* ---------- フロアマップ ---------- */
.location-floormap,.location-floormap-vertical {
	padding: 40px 0;
	background: #F5F5F5;
}
.location-floormap h2 ,.location-floormap-vertical h2{
    margin: 20px auto 0px;
	font-size: 60px;
	font-weight: 500;
	text-align: center;
	color: #17C1B0;
	/*-webkit-text-stroke: 1px #fff;*/
	/*text-shadow: 0px 0px 3rem #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 3px #fff, 0px 0px 8px #fff;*/
}
.location-floormap-name {
	margin-bottom: 30px;
	text-align: center;
	color: #222;
}

/* ---------- フロアマップ 画像 ---------- */
.location-floormap-image {
	margin-bottom: 20px;
	display: flex;
	justify-content: center;
	gap: 2%;
}
.location-floormap-image img {
	width: 49%;
	height: auto;
}

.location-floormap-vertical .location-floormap-image {
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: center;    /* 中央寄せ */
}

.location-floormap-vertical .location-floormap-image img {
    width: 100%;
}

.location-floormap .location-floormap-image {
    display: flex;
    flex-direction: row; /* 横並び */
    justify-content: center;
}

@media screen and (max-width:768px){
	.location-floormap-image {
		flex-direction: column!important;
		align-items: center;
		gap: 7px;
	}
	.location-floormap-image img {
		width: 100%;
		height: auto;
	}

    .location-floormap h2, .location-floormap-vertical h2 {
        font-size:50px
    }
}

/* ---------- マシン紹介 ---------- */
.machine-link {
    margin: 50px auto 70px;
}
.machine-link a {
	display: block;
}
.machine-link img {
    border-radius: 8px;
	width: 100%;
}

@media screen and (max-width:768px){
	.machine-link {
		margin: 35px auto 10px;
		padding: 0;
	}
}


/* ---------- メーカー製マシン ---------- */
.location-lineup-maker-sp {
	display: none;
}

.location-lineup-maker-pc {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px 2%;
}

.location-machine-pc {
	width: 100%;
	padding: 30px 50px;
	display: flex;
	justify-content: space-between;
	gap: 60px;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
    border-radius: 0 38px;
    box-shadow: 0px 3px 6px #00000029;
}
.location-machine-pc::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	bottom: 0;
	background: linear-gradient(315deg, #4d4d4d 40px, transparent 0);
    border-radius: 0 38px;
}
.location-machine-pc .location-machine-text {
	font-size: 14px;
}
.location-machine-pc h3 {
	margin-bottom: 14px;
	font-size: 46px;
	font-weight: 400;
	line-height: 46px;
}

.location-machine-pc-half {
	width: 49% !important;
	min-height: 270px;
}

.location-machine-text {
	padding-top: 14px;
}
.machine-click-btn{
	margin-top:10px;
	text-align:right;
	position: relative;
	padding-right:15px;
	font-weight:500;
}

.machine-click-btn::after{
	content: "";
	margin: auto;
	position: absolute;
	top: 0;
	bottom: -3px;
	right: -3px;
	width: 8px;
	height: 8px;
	border-top: 2px solid ;     
	border-right: 2px solid ;   
	transform: rotate(45deg);   
}

@media screen and (max-width:1000px){
	.location-lineup-maker-pc {
		display: none;
	}
	.location-lineup-maker-sp {
		display: block;
	}

	.location-machine-sp {
		width: 100%;
	}

	.location-machine-sp-title {
		min-height: 60px;
		padding: 14px 40px 10px 10px;
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 0 20px;
		align-items: center;
		position: relative;
		font-size: 23px
	}
	.location-machine-sp-title::after {
		content: "";
		width: 15px;
		height: 15px;
		position: absolute;
		right: 15px;
		display: inline-block;
		vertical-align: middle;
		color: #9c9c9c;
		line-height: 1;
		border: 0.1em solid currentColor;
		border-left: 0;
		border-bottom: 0;
		transform: translateY(-25%) rotate(135deg);
	}
	.location-lineup-freeweight .location-machine-sp-title::after {
		color: #fff;
	}
	.location-machine-sp-title span {
		font-size: 14px;
	}

	.location-machine-sp-text {
		padding: 10px 20px 40px;
		display: none;
	}
	.location-popup-sp-select {
		width: 200px;
		margin: 20px auto;
		padding: 12px 12px 12px 35px;
		position: relative;
		display: block;
		border-radius: 22px;
		background: #17C1B0;
		font-size: 14px;
		color: #fff;
		cursor: pointer;
	}
	.location-popup-sp-select::after {
		content: "";
		width: 10px;
		height: 10px;
		position: absolute;
		right: 15px;
		display: inline-block;
		vertical-align: middle;
		color: #fff;
		line-height: 1;
		border: 0.1em solid currentColor;
		border-left: 0;
		border-bottom: 0;
		transform: translateY(10%) rotate(135deg);
	}
	.location-machine-sp-text img {
		width: 100%;
	}
}

/* -------------------- マシンポップアップ -------------------- */
.location-popup-lineup {
	display: none;
}
.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 {
	width: 960px;
	height: fit-content;
	margin: auto;
	padding-bottom: 40px;
	position: fixed;
	inset: 0;
	transition: transform .5s;
	background: #d6d6d6;
	z-index: 10000;
}

@media screen and (max-width:1000px){
	.location-popup-slide-wrapper {
		width: 700px;
		max-height: 90%;
	}
}

@media screen and (max-width:768px){
	.location-popup-slide-wrapper {
		width: 100%;
		left: 0;
	}
}


/* -------------------- ポップアップ閉じるボタン -------------------- */
.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);
}

/* -------------------- マシンポップアップスライド設定 -------------------- */
.location-popup-item {
	overflow-y: auto;
}
.location-popup-slide-wrapper h3 {
	margin-bottom: 20px;
	text-align: center;
	font-size: 46px;
	font-weight: 400;
}
.location-popup-slide-wrapper h3 span {
	display: block;
	font-size: 14px;
}

.location-popup-slide-wrapper .slick-next {
	right: 275px;
}
.location-popup-slide-wrapper .slick-prev {
	left: 275px;
}

.location-popup-slide {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
}
.location-popup-slide img {
	width: 100%;
	transform: scale(.8);
	transition: transform .5s;
}
.location-popup-slide .slick-center img {
	transform: scale(1);
}

.location-popup-slide .slick-next::after,
.location-popup-slide .slick-prev::after {
  width: 26px;
  height: 26px;
  border-top: 5px solid #17C1B0;
  border-right: 5px solid #17C1B0;
}

.location-popup-image-name {
	text-align: center;
}

.location-popup-nav {
	width: 50%;
	margin: 20px auto 0;
}
.location-popup-nav img {
	width: 100%;
}
.location-popup-nav .slick-current img {
	border: 3px solid #17c1b0;
}

@media screen and (max-width:1000px){
	.location-popup-slide-wrapper h3 {
		margin-bottom: 10px;
		font-size: 30px;
	}
	.location-popup-slide-wrapper h3 span {
		margin-top: -4px;
	}

	.location-popup-slide-wrapper .slick-next {
		right: 26px;
	}
	.location-popup-slide-wrapper .slick-prev {
		left: 26px;
	}
	.location-popup-slide {
		width: 90%;
		max-width: 450px;
	}
	.location-popup-slide img {
		transform: scale(1);
	}

	.location-popup-nav {
		width: 80%;
		max-width: 450px;
	}
}

/* ---------- RHINOオリジナルマシン ---------- */
.machine-maker-rhino {
	margin-top: 40px;
	padding: 14px 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 40px;
	background: #FFF;
}

@media screen and (max-width:768px){
	.machine-maker-rhino {
		padding: 10px 5px 10px 10px;
		gap: 10px;
	}
	.machine-maker-rhino img {
		width: 10%;
		min-width: 45px;
	}
	.machine-maker-rhino p {
		font-size: 12px;
	}
}

/* ---------- 設備一覧 ---------- */
.location-facilities {
	padding: 40px 0 40px;
	background: #FFF;
}
.location-facilities-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 120px));
	justify-content: space-between;
}
.location-facilities-list li {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.location-facilities-list li img {
	width: 90px;
	height: 90px;
	margin: 0 auto;
}
.location-facilities-list li p {
	text-align: center;
	font-size: 14px;
	line-height: 14px;
}
.location-facilities-list li p span {
	margin-top: 3px;
	display: inline-block;
	font-size: 12px;
}

@media screen and (max-width:1000px){
	.location-facilities-list {
		grid-template-columns: repeat(auto-fit, minmax(60px, 100px));
	}
}

@media screen and (max-width:768px){
	.location-facilities-list {
		grid-template-columns: repeat(auto-fit, minmax(60px, 100px));
		justify-content: space-around;
	}
}

/* -------------------- 所属トレーナー -------------------- */
.location-trainers {
	padding: 40px 0;
	background: #E1F7F5;
}
.location-trainers h3 {
	margin-bottom: 30px;
	text-align: center;
}
.location-trainers-click{
	margin-top: 30px;
	text-align:center;
}
.location-trainers > ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
	justify-content: flex-start;
	gap: 50px;
}

.location-trainers-card {
	width: 270px;
	margin: 0 auto;
	padding: 10px;
	position: relative;
	display: flex;
	flex-direction: column;
	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;
}

.location-trainers-link {
	width: 150px;
	height: 30px;
	margin: 0 auto;
	position: absolute;
	top: 221px;
	right: 17px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	border-radius: 10px;
	background: #17C1B0;
	font-size: 12px;
	color: #fff;
}

/* ---------- トレーナーポップアップ ---------- */
.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; /* スクロール設定 */
	}
}
/* ---------- 名前 役職 ---------- */
.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: #17C1B0;
	border-radius: 7px;
}

/* トレーナーコメント */
.trainer-comment {
	line-height: 1.6rem;
	letter-spacing: 0.1rem;
}

/* トレーナー大会経験 */
.trainer-tournament  {
	background:#f3f3f3;
	padding:20px;
	margin-top:10px;
}

/* 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;
	}

}

/* 所属トレーナー スライド設定 */

.location-trainers-slide .slick-next::after,
.location-trainers-slide .slick-prev::after {
	width: 26px;
	height: 26px;
	border-top: 5px solid #17C1B0;
	border-right: 5px solid #17C1B0;
}

.location-trainers > ul {
	width: 100%;
	display: block;
}
.location-trainers > ul li.slick-slide {
	margin: 0 50px;
}

@media screen and (max-width:1000px){
	.location-trainers > ul {
		grid-template-columns: repeat(auto-fit, 270px);
		justify-content: center;
		gap: 50px;
	}
}


/**
 * #.# スライド設定
 *
 * コメント
 */

/* ---------- スライド矢印 ---------- */
.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: 26px;
  height: 26px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
}

/* next */
.slick-next {
  right: 26px;
}
.slick-next::after {
  right: 4px;
  transform: rotate(45deg);
}
/* prev */
.slick-prev {
  left: 26px;
}
.slick-prev::after {
  left: 4px;
  transform: rotate(-135deg);
}

.location-slide .slick-next,
.location-slide .slick-prev {
	transform: translate(0, 0%);
}

@media screen and (max-width:768px){
	.slick-next::after,
	.slick-prev::after {
	  width: 20px;
	  height: 20px;
	}
	.slick-next {
	  right: 10px;
	}
	.slick-prev {
	  left: 10px;
	}
	.slick-next::after {
	  right: 2px;
	}
}

/* ---------- スライド レイアウトシフト対策 ---------- */
/* 店舗写真 */
.location-slide:not(.slick-initialized),
.location-slide-nav:not(.slick-initialized) {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
	overflow: hidden;
}

/* ---------- 料金表 ---------- */
.location-price {
    margin: 40px auto;
    max-width: 960px;
	width: 100%;
}
.location-price h2 {
    margin: 20px auto 0px;
    font-size: 60px;
    font-weight: 500;
    text-align: center;
    color: #17C1B0;
}
.location-floormap-name {
    margin-bottom: 30px;
    text-align: center;
    color: #222;
}
.price-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
dl.price-table__item {
    display: flex;
	width: 100%;
    margin: 0 auto;
    flex-direction: row;
    gap: 10px;
}
dt.price-table__head {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 600;
    justify-content: center;
    color: #fff;
	width: 275px;
	flex-shrink: 0;
	gap: 5px;
}
p.price-table__label {
    font-size: 14px;
    position: relative;
    display: inline-block;
}
p.price-table__label::before {
    content: "";
    border: 1px solid;
    position: absolute;
    width: 1px;
    height: 15px;
    transform: translateY(-50%) rotate(-30deg);
    top: 50%;
    left: -10px;
}
p.price-table__label::after {
    content: "";
    border: 1px solid;
    position: absolute;
    width: 1px;
    height: 15px;
    transform: translateY(-50%) rotate(30deg);
    top: 50%;
    right: -10px;
}
p.price-table__plan {
    font-size: 24px;
}
p.price-table__feature {
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}
dd.price-table__body {
    border: 1px solid #eee;
    display: flex;
    align-items: flex-start;
    padding: 20px 50px;
    flex-direction: column;
	flex: 1; 
}
p.price-table__price {
    display: flex;
    align-items: baseline;
	gap: 5px;
}
.price_wrap {
    display: flex;
    align-items: baseline;
}
p.price-table__price {
    font-size: 50px;
    font-family: 'din-condensed', sans-serif;
	line-height: 1.2;
}
span.price-table__yen {
    font-size: 30px;
}
span.price-table__unit {
    font-size: 20px;
    font-weight: 600;
}
.price-table__tax {
    color: #000;
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
}
p.price-table__note {
    display: flex;
    flex-direction: row;
    font-size: 13px;
}

@media screen and (max-width:960px){
	.location-price {
		width: 90%;
	}
	p.price-table__plan {
		font-size: 22px;
	}
	p.price-table__label {
		font-size: 13px;
	}
	p.price-table__label::before,
	p.price-table__label::after {
		height: 12px;
		top: 57%;
	}
	dt.price-table__head {
		padding: 10px 0;
		width: 250px;
		gap: 3px;
	}
	dd.price-table__body {
		padding: 10px 30px;
	}
	p.price-table__price {
		font-size: 45px;
	}
	.price-table__tax {
		font-size: 15px;
	}
	p.price-table__note {
		font-size: 12px;
	}
}
@media screen and (max-width:768px){
	dl.price-table__item {
		flex-direction: column;
		gap: 5px;
	}
	dt.price-table__head {
		width: 100%;
	}
    dd.price-table__body {
        align-items: center;
        gap: 10px;
    }
	.price_wrap {
		flex-direction: column;
	}
}