/**
 * #.# PERSONAL TRAINING　パーソナルトレーニング
 *
 *
 */

/*基本カラー #05C3C3*/

/* -------------------- パーソナルトレーニングとは -------------------- */
.about-personal {
   margin:20px auto 70px auto;
}
.explanation-title {
   border-left: 6px solid #05C3C3;
   line-height: 1em;
   font-weight: 800;
   margin-bottom: 40px;
   font-size: 24px;
   padding-left: 10px;
}
.explanation-en-title {
   font-size: 14px;
   font-weight: 500;
}
.explanation-box {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
}
.explanation-box img {
    width: 45%;
	object-fit: cover;
}
/* -------------------- 1000px以下 -------------------- */
@media screen and (max-width:959px){
	.explanation-title {
		border-left: 4px solid #05C3C3;
		line-height: 1em;
		font-weight: 800;
		margin-bottom: 20px;
		font-size: 18px;
		padding-left: 10px;
	}
	.explanation-en-title {
		font-size: 12px;
		font-weight: 500;
	}
	.explanation-box {
		gap: 25px;
	}
}
@media screen and (max-width:768px){
	.explanation-box {
		display: flex	;
		flex-direction: column;
		gap: 15px;
	}
	.explanation-box img {
		width: 100%;
		object-fit: cover;
	}
}

/* -------------------- RHINOが選ばれる理由 -------------------- */
.reasons-wrapper {
    background: #F5F5F5;
    padding: 60px 0;
    margin: 100px auto;
}
.reasons-container {
    max-width: 960px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.reasons-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.highlight-number {
    font-size: 34px;
    font-weight: 700;
}
.sp-br{
	display: none;
}
.highlight-reason {
    font-size: 30px;
    font-weight: 700;
}
.reason-item {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}
.reasons-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px auto;
    text-align: center;
}
.reason-number {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #05C3C3;
    position: relative;
}
.reason-number::after {
    content: "";
    display: block;
    width: 20px;
    height: 4px;
    background-color: #05C3C3;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.reason-title {
    font-size: 17px;
    font-weight: 700;
    padding: 10px 0px;
    white-space: nowrap;
}
.reason-item img {
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.reason-item:nth-child(1) img {
    object-position: 80%;
}
.reason-description {
    font-size: 15px;
    padding: 10px 0px;
}
/* -------------------- 1000px以下 -------------------- */
@media screen and (max-width:959px){
	.reason-title {
		height: 70px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.reason-item {
		padding: 15px;
	}
	.sp-br{
		display: block;
	}
	.pc-br{
		display: none;
	}
}
@media screen and (max-width:768px){
	.reasons-title {
		font-size: 18px;
		font-weight: 600;
	}
	.highlight-number {
		font-size: 26px;
		font-weight: 700;
	}
	.highlight-reason {
		font-size: 24px;
		font-weight: 700;
	}
	.reason-number {
		font-size: 30px;
		font-weight: 800;
		margin-bottom: 10px;
	}
	.reason-number::after {
		height: 3px;
	}
	.reason-title {
        font-size: 16px;
		height: auto;
		padding-bottom: 0px;
    }
	.reason-item {
        border: none;
        padding: 15px;
        background: none;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
	.reason-item p:nth-child(1) { order: 1; } 
	.reason-item p:nth-child(2) { order: 3; }
	.reason-item img { order: 2; } 
	.reason-item p:nth-child(4) { order: 4; }
	.reasons-list {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.reason-item {
		border: none;
		padding: 15px;
		background: none;
		margin: 0 auto;
	}    
	.reason-item img {
        width: 270px;
        height: 270px;
    }
	.reason-description {
		font-size: auto;
		padding: 10px 0px;
	}
	.sp-br{
		display: none;
	}
	.pc-br{
		display: block;
	}
}

/* -------------------- RHINOの強み -------------------- */
.strengths-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}
.strength-item {
    display: flex;
    gap: 20px;
    flex: 1;
    flex-direction: row;
}
.pc-none {
	display: none;
}
.strength-item:nth-of-type(odd) {
    display: flex;
    gap: 20px;
    flex-direction: row;
    margin: 30px auto;
}
.strength-item:nth-of-type(even) {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
    margin: 30px auto;
}
.strength-item div {
    flex: 1;
}
.strength-item-number {
    font-size: 40px;
    font-weight: 800;
    color: #05C3C3;
    padding-right: 10px;
}
.strength-item-title {
    font-size: 20px;
    font-weight: 700;
}
.marker-yellow {
    font-weight: 600;
}
/* -------------------- 1000px以下 -------------------- */
@media screen and (max-width:768px){
	.strengths-title {
		text-align: center;
		font-size: 24px;
		font-weight: 600;
	}
	.pc-none {
		display: block;
	}
	.sp-none {
		display: none;
	}
	.strength-item {
		gap: 5px !important;
		flex-direction: column !important;
	}
	.strength-item div:nth-child(2) { order: 3; } 
	.strength-item div:nth-child(3) { order: 2; }
	.strength-item h4 { order: 1; } 
	.strength-item-number {
		font-size: 30px;
	}
	.strength-item-title {
		font-size: 18px;
	}
	.strengths-title {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
    }
	.highlight-reason {
		font-size: 26px;
		font-weight: 700;
	}
}

/* -------------------- トレーナー紹介 -------------------- */
.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: 240px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #05C3C3;
}
.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;
	background: #05C3C3;
}
@media screen and (max-width:768px){
	.trainer-title-underline {
		margin-bottom: 0px !important;
		font-size: 20px !important;
	}
	.trainer-title-underline::after {
		width: 220px;
	}
	.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: #05C3C3;
	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: #05C3C3;
}
.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-personal {
    background: #05C3C3;
    border-right: 3px solid #00a9a9;
    border-bottom: 3px solid #00a9a9;
	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 #05C3C3;
		border-right: 5px solid #05C3C3;
	}
	.slide-dots-blue li.slick-active {
    	background-color: #05C3C3;
	}
	.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%);
	}
}

/* -------------------- 料金表 -------------------- */
.personal-plan-wrap{
	display: flex;
	flex-direction: column;
    gap: 50px;
}

/*タイトル*/
.personal-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;
}
.personal-title-underline::after {
    content: "";
    width: 320px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #05C3C3;
}

/*サブタイトル*/
.plan-overview {
	font-size: 18px;
    font-weight: 600;
    border-left: 4px solid #05C3C3;
    padding: 5px 10px;
    margin-bottom: 10px;
}

/*プラン料金*/
.usage-fees {
	width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.usage-fees-price {
    border: 1px solid #e5e5e5;
    padding: 15px;
}
.plan-sub-title {
    color: #05C3C3;
    font-size: 20px;
    font-weight: 700;
}
.personal-fees-price {
    font-weight: 800;
    font-size: 28px;
	text-align: right;
}
.table-note {
    font-size: 16px;
    font-weight: normal;
}
/*基本料金*/
.normal-price {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e8e8e8;
}
.normal-price dl:nth-child(1) {
	display: flex;
	align-items: center;
	border-right: dashed 1px #e5e5e5;
    flex-direction: column;
}
.font-price {
    font-weight: 800;
    font-size: 24px;
    text-align: center;
    padding: 10px 0;
}

/*プラン詳細*/
.membership-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
	border: 1px solid #E8E8E8;
}
.membership-table dl {
	display: flex;
	align-items: center;
	border-right: dashed 1px #e5e5e5;
    flex-direction: column;
}
.membership-table dl:nth-child(1) {
    grid-column: 1 / -1;
	border-right: none;
}
.membership-table dl:nth-child(4),
.membership-table dl:nth-child(7) {
	border-right: none;
}
.membership-table dl:last-of-type {
	display: flex;
	align-items: center;
    border-bottom: none !important;
}
.table-header {
    font-weight: 500;
    width: 100%;
    background: #F7F7F7;
    padding: 10px 0;
    text-align: center;
}
.table-data {
    text-align: center;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
	flex-direction: column;
}
.sp-br02{
	display: none;
}

/*入会日料金*/
.entry-fee-section {
    border: 1px solid #e5e5e5;
    width: 100%;
    margin: 10px auto;
}
.entry-fee-section th {
    border: 1px solid #e5e5e5;
    text-align: center;
    padding: 10px 0;
    background: #f9f9f9;
    font-weight: 600;
	vertical-align: middle;
}
.entry-fee-section td {
    padding: 10px 0;
    text-align: center;
    border: 1px solid #e5e5e5;
	vertical-align: middle;
}

/*チケット料金*/
.free-ticket-table {
    width: 100%;
    border: 1px solid #e5e5e5;
    margin: 10px auto;
}
.free-ticket-table th {
    padding: 10px 0;
    text-align: center;
    border: 1px solid #e5e5e5;
    background: #f9f9f9;
    font-weight: 600;
}
.free-ticket-table td {
    text-align: center;
    padding: 10px 0;
    border: 1px solid #e5e5e5;
}

/*注意書き*/
.warning-01{
	position: relative;
}
.warning-01::after {
	content: "※1";
	position: absolute;
	font-size: 10px;
	right: -15px;
}
.font14-note{
    display: flex;
    font-size: 14px;
}

@media screen and (max-width:768px){
	.personal-title-underline {
		margin-bottom: 15px !important;
		font-size: 20px !important;
	}
	.personal-title-underline::after {
		width: 290px;
	}
	.membership-table,
	.free-ticket-table {
		margin: 0px auto 10px auto;
		width: 95%;
		font-size: 14px;
	}
	.plan-sub-title {
	    font-size: 16px;
	}
	.personal-fees-price {
		font-size: 20px;
	}
	.table-note {
		font-size: 12px;
	}
	.membership-table dl,
	.free-ticket-table dl {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	.table-header {
		font-weight: 500 !important;
		width: 100% !important;
		background: #F7F7F7 !important;
		padding: 15px 10px !important;
		text-align: center !important;
	}
	.font-price {
		font-weight: 800;
		font-size: 20px;
	}
	.table-data {
		margin: 0 auto;
		padding: 15px 0px;
		text-align: center;
	}              
	.sp-br02{
		display: block;
	}
	.table-subnote {
		font-size: 12px;
		color: #666;
		font-weight: normal;
		padding-left: 5px;
	}
	.ticket-subtitle {
		border-left: 3px solid #05C3C3;
		font-weight: 600;
		margin-top: 20px;
		font-size: 16px;
		padding-left: 10px;
	}
}
@media screen and (max-width:515px){
	.personal-fees-price {
    	display: flex;
    	flex-direction: column;
	}
	.membership-table {
    	grid-template-columns: repeat(2, 1fr);
	}
	.entry-fee-section td:nth-child(1) {
    	writing-mode: vertical-rl;
	    padding: 10px 5px;
	}
	.entry-fee-subheading th {
    	font-size: 11px;
	}
	.entry-fee-subheading th {
    	font-size: 11px;
	}
}

/* ---------------- 当日の流れ -----------------*/
.flow-section {
    margin: 100px auto;
}
.flow-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;
}
.flow-title-underline::after {
    content: "";
    width: 130px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #05C3C3;
}
.flow-step {
	position: relative;
}
.flow-step::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: 30px solid #05C3C3;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    z-index: 1;
}
.flow-step:nth-child(6):after {
	display: none;
}
.flow-step:nth-of-type(odd) {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 30px;
	margin: 20px auto;
}
.flow-step:nth-of-type(even) {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
	margin: 20px auto;
}
.flow-step div{
    flex: 1;
}
p.flow-step-number {
    color: #05C3C3;
    font-size: 40px;
    font-weight: 800;
}
.flow-step-title {
    color: #05C3C3;
    font-size: 22px;
    font-weight: 800;
}
.flow-step-description {
    margin: 10px auto;
}
.flow-step-link {
    background: #05C3C3;
    color: #fff;
    font-weight: 600;
    margin: 10px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 15px 0px;
    border-radius: 10px;
}
.join-now-link {
    background: #05C3C3;
    color: #fff;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 700;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    align-items: center;
}
.join-now-link img {
    margin-left: 10px;
}
/* 1000px以下 */
@media screen and (max-width:768px){
	.flow-step {
		gap: 10px !important;
		flex-direction: column !important;
	}
	.flow-step div:nth-child(1) { order: 1; }
	.flow-step div:nth-child(3) { order: 2; }
	.flow-step div:nth-child(2) { order: 3; }
	.flow-step-description {
		margin-bottom: 20px !important;
		margin-top: 0px !important;
	}
	.flow-step-number {
		color: #05C3C3;
		font-size: 30px;
		font-weight: 800;
	}
	.flow-step-title {
		color: #05C3C3;
		font-size: 18px;
		font-weight: 800;
	}
	.join-now-link {
		font-size: 20px;
		padding: 10px 0;
	}
}