@charset "UTF-8";
/*----------------------------------------*/
/* CSS Document */
/* studio somcha club */
/* common.css */
/*----------------------------------------*/

a,a:focus{
	text-decoration: none;
	outline:0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 17px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: normal;
	letter-spacing: 0.1em;
}
p {
	letter-spacing: 0.04em;
}

a {
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}
@media(max-width: 767px) {
	body {
		font-size: 16px;
	}
}
.btn {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: normal;
    color: #ffffff;
    background-color: #535e49;
    border: solid 1px #535e49;
    border-radius: 35px;
    letter-spacing: 0.08em;
    line-height: 1;
    font-size: 18px;
    text-align: center;
    min-width: 177px;
    margin: 0;
    padding: 13px 18px;
    transition: 0.3s;
}
.btn:hover {
    color: #535e49;
    background-color: #ffffff;
    opacity: 1;
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-black {
    color: #ffffff;
    background-color: #000000;
    border: solid 1px #ffffff;
}
.btn-black:hover {
    color: #000000;
    background-color: #ffffff;
    border: solid 1px #000000;
}
.btn-order {
    font-size: 16px;
    padding: 10px 30px;
}

.container {
	padding: 0 25px;
	max-width: 100%;
}

.container p{
	margin-top: 20px;
}


@media(max-width: 767px) {
	.container {
		padding: 0 20px;
	}
}

.full-screen {
	height: 100vh;
}
.background-fixed {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
@media(max-width: 767px) {
	.background-fixed {
		background-attachment: scroll;
	}
}

/* フォトスワイプ
-------------------------------------------------- */
.pswp .pswp__zoom-wrap{
	opacity: 0;
	transition: 0.4s;
}
.pswp--animated-in .pswp__zoom-wrap{
	animation-name: anime-fadeIn;
	animation-duration: 0.2s;
	animation-timing-function: ease;
	animation-delay: 0.1s;
	animation-fill-mode:forwards;
	-webkit-transition: none;
	transition: none;
}
@keyframes anime-fadeIn {
	0% {opacity: 0;}
	100% {	opacity: 1;}
}


/*----------------------------------------*/
/*header*/
/*----------------------------------------*/
#wrapper-navbar {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	background-color: #ffffff;
    margin: 0;
	z-index: 1000;
}
#wrapper-navbar .navbar {
    padding: 40px 0;
    margin: 0;
	transition: 0.3s;
}
#wrapper-navbar .navbar .container {
	max-width: 1230px;
	padding: 0 25px;
}
#wrapper-navbar .navbar .header-wrap {
    display: flex;
    align-items: center;
	justify-content: space-between;
	width: 100%;
}

/*ロゴ*/
#wrapper-navbar .navbar .header-wrap .navbar-brand {
    padding: 0;
    margin: 0 15px 0 0;
}
#wrapper-navbar .navbar .header-wrap .navbar-brand img {
	display: block;
	transition: 0.3s;
}
@media(max-width:991px){
	#wrapper-navbar .navbar .header-wrap .navbar-brand img {
		width: 160px;
	}
}

/*ロゴ以外*/
#wrapper-navbar .navbar .header-wrap .nav-wrap {}

/*グローバルナビ*/
#gnav {}
#gnav ul#main-menu {
	display: flex;
	font-size: 16px;
	padding: 0;
    margin: 0 -0.8em 0 0;
}
#gnav ul#main-menu a {
	color: #2a381d;
	font-weight: 700;
	letter-spacing: 0.04em;
}
#gnav ul#main-menu a:hover {
	background-color: transparent;
	text-decoration: none;
	opacity: 0.6;
}
#gnav ul#main-menu a::after {
	content: none;
}
@media(max-width:991px){
	#gnav ul#main-menu {
		font-size: 15px;
	}
}
/*メインメニュー*/
#gnav ul#main-menu > li {
    position: relative;
    display: block;
    line-height: 1.2;
}
#gnav ul#main-menu > li > a {
    display: block;
	padding: 14px 0.8em 10px;
}
@media(max-width:991px){
	#gnav ul#main-menu > li > a {
	    padding: 14px 0.5em 10px;
	}
}
/*ドロップダウン*/
#gnav ul#main-menu ul.sub-menu {
    position: absolute;
    top: 100%;
    display: block;
    font-size: 16px;
    background-color: rgba(255,255,255,0.7);
    border: 0;
    border-radius: 0;
    padding: 8px 9px;
    margin: 0 0 0 0.8em;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-5px);
    transition: 0.3s;
}
#gnav ul#main-menu ul.sub-menu::before {
	position: absolute;
	content: "";
	display: block;
	top: 10px;
	right: auto;
	bottom: 10px;
	left: 10px;
	width: 1px;
	background-color: #2a381d;
}
#gnav ul#main-menu ul.sub-menu > li {
	display: inline-block;
}
#gnav ul#main-menu ul.sub-menu > li + li {
    margin-top: 5px;
}
#gnav ul#main-menu ul.sub-menu > li > a {
    display: inline-block;
	padding: 0 10px;
	margin: 0 0 5px;
    width: auto;
	white-space: nowrap;
	color: #2a381d;
}
@media(min-width:768px){
	#gnav ul#main-menu > li.menu-item-has-children:hover > ul {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}
}
@media(max-width:991px){
	#gnav ul#main-menu ul.sub-menu {
		font-size: 15px;
	}
}

/*----------------------------------------*/
/*スマホヘッダー*/
/*----------------------------------------*/
#hamburger {
	display: none;
}
.gnav-wrap .sp-gnav-brand {
	display: none;
}
.gnav-wrap ul.sp-sns {
	display: none;
}
@media(max-width: 767px) {
	body.fixed {
		overflow: hidden;
		position: fixed;
		width: 100%;
		height: 100%;
	}

	#wrapper-navbar .navbar {
		padding: 20px 0;
	}
	#wrapper-navbar .navbar .header-wrap {
		align-items: flex-start;
	}
	/*ロゴ*/
	#wrapper-navbar .navbar .header-wrap .navbar-brand img {
		width: 150px;
	}
	
	/*ハンバーガーボタン*/
	#hamburger {
		display: block;
		position: relative;
		width: 50px;
		height: 50px;
		cursor: pointer;
		z-index: 1000;
		overflow: hidden;
	}
	#hamburger span {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transform-origin: center;
		display: block;
		width: 40px;
		height: 2px;
		background-color: #000000;
		transition: 0.3s;
	}
	#hamburger span::before,
	#hamburger span::after {
		content: "";
		position: absolute;
		left: 50%;
		transform: translate(-50%,-50%);
		transform-origin: center;
		width: 40px;
		height: 2px;
		background-color: #000000;
		transition: 0.3s;
	}
	#hamburger span::before {
		top: calc(50% - 14px);
	}
	#hamburger span::after {
		top: calc(50% + 14px);
	}
	/*open*/
	#hamburger.open span {
		transform: translate(-50%,-50%) rotate(45deg);
		background-color: #ffffff;
	}
	#hamburger.open span::before {
		top: 50%;
		transform: translate(-50%,-50%) rotate(90deg);
		background-color: #ffffff;
	}
	#hamburger.open span::after {
		top: 50%;
		transform: translate(-50%,-50%) rotate(90deg);
		opacity: 0;
		background-color: #ffffff;
	}
	
	.gnav-wrap {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		padding: 80px 0;
		background-color: #2a381d;
		visibility: hidden;
		opacity: 0;
		transition: 0.3s;
		z-index: 900;
		overflow-y: scroll;
		filter: blur(5px);
	}
	.gnav-wrap.open {
		visibility: visible;
		opacity: 1;
		filter: blur(0);
	}
	.gnav-wrap .sp-gnav-brand {
		position: absolute;
		top: 20px;
		left: 25px;
		display: inline-block;
		padding: 0;
		margin-right: 1rem;
		font-size: 1.25rem;
		line-height: inherit;
		white-space: nowrap;
	}
	.gnav-wrap .sp-gnav-brand img {
		display: block;
	    width: 150px;
	}
	
	#gnav {
		width: 100%;
		padding: 50px 35px 35px;
	}
	#gnav ul#main-menu {
		display: block;
		text-align: left;
		width: 100%;
		font-size: 30px;
	}
	#gnav ul#main-menu a::after {
		content: none;
	}
	#gnav ul#main-menu li {
		border-bottom: solid 1px #ffffff;
	}
	#gnav ul#main-menu li a {
		padding: 20px 30px;
		width: 100%;
		color: #ffffff;
		font-size: 30px;
	}
	#gnav ul#main-menu > li.menu-item-has-children > a {
		position: relative;
	}
	#gnav ul#main-menu > li.menu-item-has-children > a::after {
		position: absolute;
		top: 50%;
		right: 15px;
		transform: translateY(-50%);
		content: "";
		display: block;
		border-top: solid 13px #ffffff;
		border-right: solid 8px transparent;
		border-bottom: solid 0 #ffffff;
		border-left: solid 8px transparent;
		width: 15px;
		transition: 0.3s;
	}
	
	#gnav ul#main-menu ul.sub-menu {
		display: block;
		max-height: 0;
		position: relative;
		background-color: transparent;
		margin: 0;
    	padding: 0;
		float: none;
	}
	#gnav ul#main-menu ul.sub-menu::before {
		content: none;
	}
	#gnav ul#main-menu ul.sub-menu.show {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	    max-height: 500px;
	}
	#gnav ul#main-menu ul.sub-menu > li {
		border-top: solid 1px #ffffff;
		border-bottom: 0;
		width: 100%;
	}
	#gnav ul#main-menu ul.sub-menu > li + li {
		margin-top: 0;
	}
	#gnav ul#main-menu ul.sub-menu > li > a {
		padding: 20px 30px 20px 50px;
	    margin: 0;
		width: 100%;
		color: #ffffff;
	}

	.gnav-wrap ul.sp-sns {
		display: flex;
		margin: 0 -15px;
		padding: 0;
	}
	.gnav-wrap ul.sp-sns > li {
		display: inline-block;
		padding: 0 15px;
	}
	.gnav-wrap ul.sp-sns > li a {
		position: relative;
		display: block;
		width: 65px;
		height: 65px;
		background-color: #ffffff;
		border-radius: 65px;
		color: #022222;
	}
	.gnav-wrap ul.sp-sns > li a i {
		position: absolute;
		display: block;
		font-size: 35px;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
}


/*ヘッダー固定時*/
#wrapper-navbar.is-fixed .navbar {
    padding: 15px 0;
}
#wrapper-navbar.is-fixed .navbar .header-wrap .navbar-brand img {
	width: 120px;
}



/*共通 フッターレッスン体験・入会・お問い合わせ*/
#foot-contact {
	padding: 60px 0;
}
#foot-contact p {
    text-align: center;
    font-size: 21px;
    letter-spacing: -0.02em;
    color: #535e49;
	margin: 0 0 35px;
}
#foot-contact .btn-wrap {
	text-align: center;
}
#foot-contact .btn-wrap .btn {}

/*----------------------------------------*/
/*パンくず　トップへ戻る*/
/*----------------------------------------*/
#breadcrumb-totop {
    padding: 10px 0;
    background-color: #535e49;
}
#breadcrumb-totop .container {
    max-width: 1130px;
}
#breadcrumb-totop .row {
	align-items: center;
}
#breadcrumb-totop .col-md-1 {
	text-align: right
}
#breadcrumb-totop .to-top {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
}
#breadcrumb-totop .to-top::before,
#breadcrumb-totop .to-top::after {
    position: absolute;
    content: "";
	top: 7px;
	left: 50%;
	transform: translateX(-50%);
	transform-origin: top;
    display: inline-block;
    width: 1px;
	height: 12px;
	background-color: #ffffff;
}
#breadcrumb-totop .to-top::before {
	transform: translateX(-50%) rotate(35deg);
}
#breadcrumb-totop .to-top::after {
	transform: translateX(-50%) rotate(-35deg);
}

#breadcrumb {
    padding: 0;
}
#breadcrumb ul {
    display: block;
    margin: 0;
    padding: 0;
}
#breadcrumb ul li {
    display: inline-block;
	padding: 0 5px 0 0;
}
#breadcrumb ul li + li {
	position: relative;
	padding-left: 15px;
}
#breadcrumb ul li + li::before,
#breadcrumb ul li + li::after {
    position: absolute;
    content: "";
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	transform-origin: right;
    display: inline-block;
    width: 8px;
	height: 1px;
	background-color: #ffffff;
}
#breadcrumb ul li + li::before {
	transform: translateX(-50%) rotate(25deg);
}
#breadcrumb ul li + li::after {
	transform: translateX(-50%) rotate(-25deg);
}
#breadcrumb ul li span,
#breadcrumb ul li a {
	display: inline-block;
	color: #ffffff;
}

/*----------------------------------------*/
/*フッター*/
/*----------------------------------------*/
#footer {
    background-color: #022222;
    color: #fff;
    font-size: 14px;
    padding: 50px 0 15px;
}
#footer .foot-info {
    display: flex;
    justify-content: center;
    margin: 0 -20px;
}
#footer .foot-info .logo-wrap {
    padding: 0 20px;
}
#footer .foot-info .logo-wrap a {
	display: block;
    margin: 0 25px 0 0;
}
#footer .foot-info .logo-wrap a img {
	display: block;
}
#footer .foot-info .addr-wrap {
    padding: 0 20px;
}
#footer .foot-info .addr-wrap .addr {
	line-height: 1.4;
	margin: 10px 0 15px;
	letter-spacing: 0.06em;
}
#footer .foot-info .addr-wrap .addr p {
	margin-bottom: 0.5em;
}
#footer .foot-info .addr-wrap ul.sns {
	display: flex;
	margin: 0 -9px;
	padding: 0;
}
#footer .foot-info .addr-wrap ul.sns > li {
	display: inline-block;
    padding: 0 9px;
}
#footer .foot-info .addr-wrap ul.sns > li a {
	position: relative;
    display: block;
    width: 39px;
    height: 39px;
    background-color: #ffffff;
    border-radius: 39px;
	color: #022222;
}
#footer .foot-info .addr-wrap ul.sns > li a i {
	position: absolute;
	display: block;
	font-size: 25px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
@media(max-width: 767px) {
	#footer {
		padding-bottom: 25px;
	}
	#footer .foot-info {
		display: block;
		margin-bottom: 40px;
	}
	#footer .foot-info .logo-wrap a img {
	    width: 245px;
	}
	#footer .foot-info .addr-wrap .addr {
		margin: 25px 0 20px;
		font-size: 15px;
	}
	#footer .foot-info .addr-wrap .addr .yomi {
		font-size: 13px;
	}
	#footer .foot-info .addr-wrap ul.sns {
		margin: 0 -11px;
	}
	#footer .foot-info .addr-wrap ul.sns > li {
		padding: 0 11px;
	}
	#footer .foot-info .addr-wrap ul.sns > li a {
		width: 50px;
		height: 50px;
	}
}

#footer .foot-nav {
	font-size: 12px;
	line-height: 13px;
    padding: 20px 0 15px;
}
#footer .foot-nav ul {
    display: flex;
    justify-content: flex-end;
	margin: 0 -20px;
	padding: 0;
}
#footer .foot-nav ul > li {
	display: inline-block;
	padding: 0 20px;
}
#footer .foot-nav ul > li + li {
	border-left: solid 1px #ffffff;
}
#footer .foot-nav ul > li a {
	color: #ffffff;
	letter-spacing: 0.1em;
}
@media(max-width: 767px) {
	#footer .foot-nav {
		font-size: 13px;
	}
	#footer .foot-nav ul {
		justify-content: flex-start;
		margin: 0 -12px;
	}
	#footer .foot-nav ul > li {
		padding: 0 12px;
	}
	#footer .foot-nav ul > li + li {
		border-left: 0;
	}
}

#footer .copyright {
	font-size: 12px;
	text-align: right;
}
#footer .copyright .copy {
	margin: 0;
}
@media(max-width: 767px) {
	#footer .copyright {
		margin-top: 15px;
		text-align: left;
	}
}

/*コンテンツ*/
.wrapper {
	padding: 165px 0 0;
}
@media(max-width:991px){
	.wrapper {
		padding: 149px 0 0;
	}
}
@media(max-width: 767px) {
	.wrapper {
		padding: 105px 0 0;
	}
}

/*----------------------------------------*/
/*下層ページ共通*/
/*----------------------------------------*/

/*ページヘッダー*/
.common-wrapper #page-header {
	background-size: cover;
	background-position: center;
	background-color: #535e49;
}
.common-wrapper #page-header .container {
	display: flex;
}
.common-wrapper #page-header .page-title {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	height: 193px;
	flex-basis: 100%;
	font-size: 31px;
	font-weight: 700;
	line-height: 1.5;
	color: #ffffff;
	margin: 0;
	padding: 30px 0;
}
@media(max-width: 767px) {
	.common-wrapper #page-header .page-title {
		font-size: 27px;
	}
}

/*導入文*/
.lower-wrapper #lower-intro {
	position: relative;
	padding: 100px 0 105px;
	background-color: #efefef;
	overflow: hidden;
}
.lower-wrapper #lower-intro > .bgimage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.lower-wrapper #lower-intro .container {
	position: relative;
	max-width: 700px;
}
.lower-wrapper #lower-intro .sec-title {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 20px 0 45px;
    text-align: center;
    color: #535e49;
}
.lower-wrapper #lower-intro .sub-title {
	font-size: 26px;
	font-weight: 500;
	line-height: 1.65;
	letter-spacing: 0;
	margin-bottom: 80px;
	text-align: center;
    color: #535e49;
}
.lower-wrapper #lower-intro .text {
	line-height: 2.1;
	font-size: 17px;
	font-weight: 500;
    color: #535e49;
}
.lower-wrapper #lower-intro .container > :last-child {
	margin-bottom: 0;
}
@media(max-width: 767px) {
	.lower-wrapper #lower-intro {
		padding: 50px 0 45px;
	}
	.lower-wrapper #lower-intro.title-none {
	    padding: 17vw 0;
	}
	.lower-wrapper #lower-intro > .bgimage {
		height: 100%;
		max-height: 100vw;
	}
	.lower-wrapper #lower-intro .sub-title {
		margin-bottom: 50px;
	}
	.lower-wrapper #lower-intro .text {
		font-size: 16px;
	}
}

.lower-wrapper .full-width-img-wrap {
	margin: 0;
	padding: 0;
}
.lower-wrapper .full-width-img-wrap img{
	display: block;
	width: 100%;
	height: auto;
}

/*----------------------------------------*/
/*ABOUT STUDIO SOMCHA CLUB*/
/*----------------------------------------*/
#about-page #page-header {
	background-image: url("../img/about/about-mv.jpg");
}
@media(max-width: 767px) {
	#about-page #page-header {
		background-image: url("../img/about/about-mv-sp.jpg");
	}
}

#about-page #policy {
	position: relative;
    background-color: #b99569;
    padding: 100px 0 130px;
}
#about-page #policy::before {
    position: absolute;
    content: "";
    border-top: solid 387px #af8654;
    border-left: solid 100vw transparent;
    top: 0;
}
#about-page #policy::after {
    position: absolute;
    content: "";
    border-bottom: solid 387px #af8654;
    border-right: solid 100vw transparent;
    bottom: 0;
}
#about-page #policy .container {
	position: relative;
	max-width: 700px;
	z-index: 1;
}
#about-page #policy .sec-title {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 15px 0 60px;
    text-align: center;
    color: #ffffff;
}
#about-page #policy .text {
	line-height: 2.1;
	font-size: 17px;
	font-weight: 500;
    color: #ffffff;
}
@media(max-width: 767px) {
	#about-page #policy {
	    padding: 50px 0 40px;
	}
	#about-page #policy .sec-title {
		margin: 15px 0 40px;
	}
	#about-page #policy::before {
		border-top: solid 303px #af8654;
	}
	#about-page #policy::after {
		border-bottom: solid 303px #af8654;
	}
	#about-page #policy .text {
		font-size: 16px;
	}
}

/*ACCESS*/
#about-page #lower-access {
    padding: 80px 0 60px;
    margin: 0;
    color: #ffffff;
    background-color: #2a381d;
}
#about-page #lower-access .container {
    max-width: 965px;
}
#about-page #lower-access .title-wrap {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 80px;
}
#about-page #lower-access .sec-title {
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.14em;
    margin: 15px 0 60px;
    text-align: center;
    color: #ffffff;
}
#about-page #lower-access .text {
	line-height: 1.7;
	font-size: 15px;
	font-weight: 200;
	text-align: center;
    color: #ffffff;
}
@media(max-width: 767px) {
	#about-page #lower-access {
		padding: 40px 0;
	}
	#about-page #lower-access .title-wrap {
		padding: 0 30px 0 90px;
		margin-bottom: 40px;
	}
	#about-page #lower-access .sec-title {
		margin: 15px 0 40px;
	}
	#about-page #lower-access .text {
		font-size: 16px;
	}
}
/*スケジュール表*/
#about-page #lower-access .schedule {
    margin-bottom: 60px;
}
#about-page #lower-access .schedule img {
    display: block;
	margin: 0 auto;
}



/*----------------------------------------*/
/*INSTRUCTORS*/
/*----------------------------------------*/
#instructors-page #page-header {
	background-image: url("../img/instructor/instructors-mv_v5.jpg");
}
@media(max-width: 767px) {
	#instructors-page #page-header {
		background-image: url("../img/instructor/instructors-mv_sp_v4.jpg");
	}
}
/*インストラクタープロフィール*/
#instructors-page #profile {
    background-color: #020202;
    background-image: url(../img/instructor/profile-bg.png);
    background-position: top;
    background-repeat: repeat-x;
    padding: 230px 0 120px;
	color: #ffffff;
}
#instructors-page #profile .container {
    max-width: 820px;
}
#instructors-page #profile dl.profile-wrap {
    display: flex;
    flex-wrap: wrap;
}
#instructors-page #profile dl.profile-wrap + dl.profile-wrap {
	margin-top: 80px;
}
#instructors-page #profile dl.profile-wrap > dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 706px;
	margin: 0 auto 35px;
}
#instructors-page #profile dl.profile-wrap > dt .img-wrap {
	flex-basis: calc(44% - 22px);
}
#instructors-page #profile dl.profile-wrap > dt .img-wrap img {
	display: block;
	border-radius: 750px;
	max-width: 290px;
	margin: 0 auto;
}
#instructors-page #profile dl.profile-wrap > dt .text-wrap {
	flex-basis: calc(56% - 22px);
	text-align: center;
}
#instructors-page #profile dl.profile-wrap > dt .text-wrap .name {
	font-size: 46px;
    letter-spacing: 0.04em;
	font-weight: 500;
    margin: 0 0 15px;
}
#instructors-page #profile dl.profile-wrap > dt .text-wrap .name .yomi {
	display: inline-block;
	font-size: 20px;
	vertical-align: middle;
}
#instructors-page #profile dl.profile-wrap > dt .text-wrap p {
	font-size: 17px;
	font-weight: 300;
}
#instructors-page #profile dl.profile-wrap > dd {
    font-size: 15px;
    line-height: 1.6;
    color: #999b95;
}
#instructors-page #profile dl.profile-wrap > dd p {
    margin-bottom: 30px;
}
#instructors-page #profile dl.profile-wrap > dd ul {
    padding: 0;
	margin: 0;
}
#instructors-page #profile dl.profile-wrap > dd ul > li {
    display: block;
    padding: 0 0 0 1em;
    margin: 0 0 4px;
    text-indent: -1em;
}
@media(max-width: 767px) {
	#instructors-page #profile {
		background-image: url("../img/instructor/profile-bg-sp.png");
		background-size: 375px;
		padding: 200px 0 30px;
	}
	#instructors-page #profile dl.profile-wrap > dt {
		display: block;
	}
	#instructors-page #profile dl.profile-wrap > dt .img-wrap img {
		max-width: 262px;
	}
	#instructors-page #profile dl.profile-wrap > dt .text-wrap {
		margin: 40px 0 0;
	}
	#instructors-page #profile dl.profile-wrap > dt .text-wrap .name {
		font-size: 40px;
	}
	#instructors-page #profile dl.profile-wrap > dt .text-wrap p {
		font-size: 15px;
	}
}

/*----------------------------------------*/
/*INSTRUCTORS*/
/*----------------------------------------*/
#studio-lesson-page {}
/*ページタイトル*/
#studio-lesson-page #page-header {
	background-image: url("../img/studio_lesson/studio-lesson-mv_v3.jpg");
}
#studio-lesson-page #page-header .page-title {
	font-size: 28px;
}
@media(max-width: 767px) {
	#studio-lesson-page #page-header {
		background-image: url("../img/studio_lesson/studio-lesson-mv-sp_v3.jpg");
	}
}
/*導入文*/
#studio-lesson-page #lower-intro {
	padding: 80px 0 30px;
}
#studio-lesson-page #lower-intro .container {
    max-width: 1200px;
}
#studio-lesson-page #lower-intro .container .row {
    margin-left: -25px;
    margin-right: -25px;
}
#studio-lesson-page #lower-intro .container .row > * {
    padding-left: 25px;
    padding-right: 25px;
}
@media(max-width:991px){
	#studio-lesson-page #lower-intro .container {
		max-width: 605px;
	}
}
@media(max-width: 767px) {
	#studio-lesson-page #lower-intro {
		padding: 40px 0 10px;
	}
}
/*画像*/
#studio-lesson-page #lower-intro .img-wrap {
    margin: 0 0 40px;
}
/*テキスト*/
#studio-lesson-page #lower-intro .text-wrap {
    margin: 0 0 40px;
}
#studio-lesson-page #lower-intro .text-wrap h2 {
    font-size: 24px;
    color: #535e49;
    font-weight: 700;
    margin: 0 0 20px;
}
#studio-lesson-page #lower-intro .text-wrap .text {
    line-height: 2;
	margin-bottom: 1.3em;
}
#studio-lesson-page #lower-intro .text-wrap .text:last-child {
    margin-bottom: 0;
}

/*テキスト*/
#studio-lesson-page #night_and_day {}
#studio-lesson-page #night_and_day > .row {
	padding: 0;
	margin: 0;
}
#studio-lesson-page #night_and_day > .row > * {
	padding: 0;
	margin: 0;
}

#studio-lesson-page #night_and_day .night_and_day-wrap {
	padding: 68px 0 50px;
	margin: 0;
	color: #ffffff;
	height: 100%;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .container {
	padding: 0 68px;
	max-width: 638px;
}
@media(max-width: 767px) {
	#studio-lesson-page #night_and_day .night_and_day-wrap{
		padding: 50px 0 50px;
	}
	#studio-lesson-page #night_and_day .night_and_day-wrap .container {
		padding: 0 20px;
	}
}
/*タイトル*/
#studio-lesson-page #night_and_day .night_and_day-wrap .title-wrap {
	position: relative;
	display: flex;
	border: solid 2px #ffffff;
	width: 100%;
	margin: 0 0 50px;
	padding: 0;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .title-wrap::after {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-50%,-50%);
	content: "";
	display: block;
	width: 104px;
	height: 104px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .title-wrap h2 {
	display: flex;
	align-items: center;
    justify-content: center;
	text-align: center;
	font-size: 24px;
	letter-spacing: 0.14em;
	line-height: 1.9;
	font-weight: 700;
	min-height: 225px;
	padding: 20px 45px;
	margin: 0;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .text {
	line-height: 1.75;
	margin: 0 0 1.75em;
	min-height: 145px;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .table-img {
	margin: 50px 0 0;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .table-img img {
	margin: 0 0 5px;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .table-img p {
	text-align: right;
}
@media(max-width: 767px) {
	#studio-lesson-page #night_and_day .night_and_day-wrap .title-wrap {
		min-height: 187px;
		margin: 0 0 30px;
	}
	#studio-lesson-page #night_and_day .night_and_day-wrap .title-wrap::after {
		top: -20px;
		left: -15px;
		width: 67px;
		height: 67px;
		transform: none;
	}
	#studio-lesson-page #night_and_day .night_and_day-wrap .title-wrap h2 {
		font-size: 18px;
	    padding: 40px 20px;
	}
	#studio-lesson-page #night_and_day .night_and_day-wrap .text {
		line-height: 2;
	}
	#studio-lesson-page #night_and_day .night_and_day-wrap .table-img p {
		font-size: 15px;
	}
}

/* price-table */
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap {
	margin: 50px 0 0;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap p {
	text-align: right;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table {
	margin: 0 0 5px;
	text-align: center;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table tbody {}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table tr {}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table th,
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table td {
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	font-weight: 400;
	border: solid 2px #ffffff;
	padding: 10px;
}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table th {}
#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table td {}
@media(max-width: 767px) {
	#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap {
		font-size: min(calc((100vw - 40px) * 0.04), 20px);
	}
	#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table th,
	#studio-lesson-page #night_and_day .night_and_day-wrap .price-table-wrap table.price-table td {
		padding: 0.3em;
	}
}

/*デイタイムレッスン固有*/
#studio-lesson-page #night_and_day .day-wrap {
	background-color: #af8654;
}
#studio-lesson-page #night_and_day .day-wrap .title-wrap::after {
	background-image: url("../img/studio_lesson/day-ico.png");
}
/*ナイトレッスン固有*/
#studio-lesson-page #night_and_day .night-wrap {
	background-color: #2a381d;
}
#studio-lesson-page #night_and_day .night-wrap .title-wrap::after {
	background-image: url("../img/studio_lesson/night-ico.png");
}

/*ナイトレッスンスケジュールとクラスの選び方*/
#studio-lesson-page #schedule-class {
    padding: 80px 0 60px;
    margin: 0;
    color: #ffffff;
    background-color: #2a381d;
}
#studio-lesson-page #schedule-class .container {
    max-width: 965px;
}

#studio-lesson-page #schedule-class .title-wrap {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 80px;
}
#studio-lesson-page #schedule-class .title-wrap h2 {
    position: relative;
    display: inline;
    padding: 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.14em;
}
#studio-lesson-page #schedule-class .title-wrap h2::before {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    content: "";
    display: block;
    width: 54px;
    height: 55px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../img/studio_lesson/moon-ico.png);
}
@media(max-width: 767px) {
	#studio-lesson-page #schedule-class {
		padding: 40px 0;
	}
	#studio-lesson-page #schedule-class .title-wrap {
		padding: 0 30px 0 90px;
		margin-bottom: 40px;
	}
	#studio-lesson-page #schedule-class .title-wrap h2 {
		font-size: 18px;
		line-height: 1.85;
	}
	#studio-lesson-page #schedule-class .title-wrap h2::before {
		width: 68px;
		height: 68px;
		left: -90px;
	}
}
/*スケジュール表*/
#studio-lesson-page #schedule-class .schedule {
    margin-bottom: 60px;
}
#studio-lesson-page #schedule-class .schedule img {
    display: block;
	margin: 0 auto;
}
/*クラス*/
#studio-lesson-page #schedule-class .class {
    display: block;
	margin: 0 0 60px;
	letter-spacing: 0.04em;
}
#studio-lesson-page #schedule-class .class dl {
	display: flex;
	align-items: baseline;
	margin: 0 0 30px;
}
#studio-lesson-page #schedule-class .class dl dt {
    flex-basis: 166px;
    display: inline-block;
    text-align: center;
    background-color: #ffffff;
    color: #535e49;
    flex-grow: 0;
    flex-shrink: 0;
    font-weight: 500;
    line-height: 18px;
    padding: 5px;
	margin: 0 45px;
}
#studio-lesson-page #schedule-class .class dl dd {
	flex-basis: 100%;
	flex-grow: 1;
	flex-shrink: 1;
	font-weight: 500;
	line-height: 1.6em;
	margin: 0;
}
@media(max-width: 767px) {
	#studio-lesson-page #schedule-class .class dl {
		display: block;
		margin: 0 0 40px;
	}
	#studio-lesson-page #schedule-class .class dl dt {
		margin: 0 0 20px;
		width: 100%;
		font-size: 17px;
	}
	#studio-lesson-page #schedule-class .class dl dd {
		width: 100%;
		line-height: 2;
	}
}

#studio-lesson-page #schedule-class .levelup {
	border: solid 2px #ffffff;
	max-width: 447px;
	margin: 0 auto 0;
	padding: 15px;
	text-align: center;
	line-height: 1.85em;
}
#studio-lesson-page #schedule-class .levelup p:last-child {
	margin-bottom: 0;
}
@media(max-width: 767px) {
	#studio-lesson-page #schedule-class .levelup {
		display: flex;
		align-items: center;
		padding: 25px;
		text-align: left;
	}
	#studio-lesson-page #schedule-class .levelup p br {
		display: none;
	}
}

/*----------------------------------------*/
/*Gallery*/
/*----------------------------------------*/
#gallery-page {}
/*ページタイトル*/
#gallery-page #page-header {
	background-image: url("../img/gallery/gallery-mv_v2.jpg");
}

@media(max-width: 767px) {
	#gallery-page #page-header {
		background-image: url("../img/gallery/gallery-mv_sp_v2.jpg");
	}
}


#gallery-page #page-header .page-title {
	font-size: 28px;
}

#gallery-page #lower-intro {
	background-color: #ffffff;
}

#gallery-page #gallery {
	background-color: #2a381d;
	padding: 70px 0;
}
#gallery-page #gallery .container {
	 max-width: 1110px;
}
#gallery-page #gallery .img-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -6px;
}
#gallery-page #gallery .img-row .img-wrap {
	padding: 0 6px 12px;
	flex-basis: 33.3%;
	max-width: 33.3%;
}
#gallery-page #gallery .img-row .img-wrap > a {
	margin: 0;
	padding: 0;
	display: block;
}
#gallery-page #gallery .img-row .img-wrap > a img {
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
}
@media(max-width: 767px) {
	#gallery-page #gallery .img-row .img-wrap {
		flex-basis: 50%;
		max-width: 50%;
	}
}
@media(max-width:575px){
	#gallery-page #gallery .img-row .img-wrap {
		flex-basis: 100%;
		max-width: 100%;
	}
}

/*ページネーション*/
#gallery-page #gallery #pagination-wrap {
	text-align: center;
    padding: 50px 0 0;
}
#gallery-page #gallery #pagination-wrap .container {
	max-width: 920px;
}
#gallery-page #gallery #pagination-wrap nav {
	display: inline-block;
}
#gallery-page #gallery #pagination-wrap .pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin: 0 -3px;
    padding: 0;
    font-size: 12px;
}
#gallery-page #gallery #pagination-wrap .pagination > li {
    display: block;
    margin: 0;
    padding: 0 3px 6px;
}
#gallery-page #gallery #pagination-wrap .pagination > li > .page-link {
	display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5px;
    color: #2a381d;
    background-color: #ffffff;
    border: solid 1px #ffffff;
	letter-spacing: 0.1em;
	line-height: 1;
	width: 28px;
	height: 28px;
	border-radius: 0;
}
#gallery-page #gallery #pagination-wrap .pagination > li > .page-link:hover {
    color: #ffffff;
    background-color: #2a381d;
	opacity: 1;
}
#gallery-page #gallery #pagination-wrap .pagination > li > .page-link.current {
    color: #ffffff;
    background-color: #2a381d;
	text-decoration: none;
    opacity: 1;
}

/*----------------------------------------*/
/*その他のページ*/
/*----------------------------------------*/
#other-page {}
/*ページタイトル*/
#other-page #page-header {
	background-image: url("../img/about/about-mv.jpg");
}
#other-page #page-header .page-title {
    font-size: 31px;
}
@media(max-width: 767px) {
	#other-page #page-header {
		background-image: url("../img/about/about-mv-sp.jpg");
	}
}

#other-page #other-wrap {
    background-color: #2a381d;
    color: #ffffff;
    padding: 120px 0;
}
#other-page #other-wrap .container {
    max-width: 700px;
}
#other-page #other-wrap h2 {
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 70px;
    letter-spacing: 0.14em;
}
#other-page #other-wrap h3 {
	font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.9em;
}
#other-page #other-wrap h4 {
	font-size: 16px;
    font-weight: 700;
    margin-bottom: 1.9em;
}
#other-page #other-wrap h5 {
	font-size: 15px;
    font-weight: 700;
    margin-bottom: 1.9em;
}
#other-page #other-wrap h6 {
	font-size: 14px;
    font-weight: 700;
    margin-bottom: 1.9em;
}
#other-page #other-wrap .wp-block-image {
    margin-bottom: 1.9em;
}
#other-page #other-wrap p {
    font-weight: 500;
    font-size: 15px;
	line-height: 2.4;
    letter-spacing: 0.04em;
    margin: 0 0 2.4em;
}
@media(max-width: 767px) {
	#single-page #main-contents main {
		max-width: 100%;
	}
	#single-page #main-contents main article {
	    margin-bottom: 100px;
	}
}


@media(max-width: 767px) {
	#other-page #other-wrap {
	    padding: 50px 0;
	}
	#other-page #other-wrap h2 {
		margin: 0 0 40px;
	}
}


/*----------------------------------------*/
/* STUDIO RENTAL */
/*----------------------------------------*/

#studio-rental-page {}
@media(min-width:768px){
	#studio-rental-page {
		padding-bottom: 100px;
		border-bottom: solid 1px #535e49;
	}
}

/* #studio-rental-page #page-header */
#studio-rental-page #page-header {
	background-image: url("../img/studio_rental/mv-img_v2.jpg");
}
@media(max-width: 767px) {
	#studio-rental-page #page-header {
		background-image: url("../img/studio_rental/mv-img_v2.jpg");
	}
}

/* #studio-rental-page .page-body */
#studio-rental-page .page-body {
	position: relative;
}
#studio-rental-page .page-body .container {
	max-width: 856px;
}
#studio-rental-page .page-body::before {
    position: absolute;
    content: "";
    border-top: solid min(1280px, 100vw) #2a381d;
    border-right: solid min(416px, 32vw) transparent;
    top: 0;
    left: 0;
    z-index: -1;
}
@media(max-width: 767px) {
	#studio-rental-page .page-body::before {
		border-top: solid 139px #2a381d;
		border-right: solid 85px transparent;
	}
}

/* #studio-rental-page #lower-intro */
#studio-rental-page #lower-intro {
	background-color: transparent;
}
#studio-rental-page #lower-intro .sec-title {
	line-height: 1.75;
}
@media(max-width: 767px) {
	#studio-rental-page #lower-intro .sec-title {
		line-height: 1.5;
	}
}

/* #studio-rental-page #interior-view */
#studio-rental-page #interior-view {
	margin-bottom: 40px;
}
#studio-rental-page #rental-slick {
	position: relative;
}
#studio-rental-page #rental-slick .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 100px;
    z-index: 1;
}
#studio-rental-page #rental-slick .slick-arrow::before,
#studio-rental-page #rental-slick .slick-arrow::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: #FFFFFF;
}
#studio-rental-page #rental-slick .slick-prev {
	left: 30px
}
#studio-rental-page #rental-slick .slick-prev::before,
#studio-rental-page #rental-slick .slick-prev::after {
	left: 10px;
	transform-origin: left;
}
#studio-rental-page #rental-slick .slick-prev::before {
	transform: rotate(-60deg);
}
#studio-rental-page #rental-slick .slick-prev::after {
	transform: rotate(60deg);
}
#studio-rental-page #rental-slick .slick-next {
	right: 30px;
}
#studio-rental-page #rental-slick .slick-next::before,
#studio-rental-page #rental-slick .slick-next::after {
	right: 10px;
	transform-origin: right;
}
#studio-rental-page #rental-slick .slick-next::before {
	transform: rotate(-60deg);
}
#studio-rental-page #rental-slick .slick-next::after {
	transform: rotate(60deg);
}
#studio-rental-page #rental-slick figure.img {
	position: relative;
}
#studio-rental-page #rental-slick figure.img img {}
#studio-rental-page #rental-slick figure.img figcaption {
    position: absolute;
    right: 22px;
    bottom: 20px;
    display: inline-block;
    background-color: #2a381d;
    padding: 7px 17px;
    color: #FFFFFF;
    font-size: 31px;
    line-height: 1;
    border-radius: 4px;
}
#studio-rental-page #interior-view .text-wrap p {
    color: #2a381d;
    font-weight: 500;
    line-height: 2.1;
}
#studio-rental-page #interior-view .text-wrap p .red {
	color: #ff0b0b;
}
@media (max-width: 767px) {
	#studio-rental-page #rental-slick .slick-arrow {
		width: 20px;
		height: 50px;
	}
	#studio-rental-page #rental-slick .slick-arrow::before,
	#studio-rental-page #rental-slick .slick-arrow::after {
		width: 20px;
	}
	#studio-rental-page #rental-slick .slick-prev {
		left: 5px;
	}
	#studio-rental-page #rental-slick .slick-prev::before,
	#studio-rental-page #rental-slick .slick-prev::after {
		left: 5px;
	}
	#studio-rental-page #rental-slick .slick-next {
		right: 5px;
	}
	#studio-rental-page #rental-slick .slick-next::before,
	#studio-rental-page #rental-slick .slick-next::after {
		right: 5px;
	}
	#studio-rental-page #rental-slick figure.img figcaption {
		right: 10px;
		bottom: 10px;
		font-size: 18px;
		padding: 5px 10px;
	}
}

/* #studio-rental-page #price-sec */
#studio-rental-page #price-sec {}
#studio-rental-page #price-sec .price-box {
	padding: 8%;
	color: #FFFFFF;;
	background-color: #af8654;
}
#studio-rental-page #price-sec h2 {
    font-size: 28px;
    text-align: center;
}
/* price-table */
#studio-rental-page #price-sec .price-table-wrap {
	margin: 50px 0 0;
}
#studio-rental-page #price-sec .price-table-wrap p {
	text-align: right;
	margin-bottom: 0;
}
#studio-rental-page #price-sec .price-table-wrap table.price-table {
	margin: 0 0 5px;
	text-align: center;
}
#studio-rental-page #price-sec .price-table-wrap table.price-table tbody {}
#studio-rental-page #price-sec .price-table-wrap table.price-table tr {}
#studio-rental-page #price-sec .price-table-wrap table.price-table th,
#studio-rental-page #price-sec .price-table-wrap table.price-table td {
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	font-weight: 400;
	border: solid 2px #ffffff;
	padding: 10px;
}
#studio-rental-page #price-sec .price-table-wrap table.price-table th {}
#studio-rental-page #price-sec .price-table-wrap table.price-table td {}
@media(max-width: 767px) {
	#studio-rental-page #price-sec h2 {
		font-size: 24px;
	}
	#studio-rental-page #price-sec .container {
		padding: 0;
	}
	#studio-rental-page #price-sec .price-box {
		padding: 40px 20px;
	}
	#studio-rental-page #price-sec .price-table-wrap {
		font-size: min(calc((100vw - 40px) * 0.04), 20px);
		margin-top: 30px;
	}
	#studio-rental-page #price-sec .price-table-wrap table.price-table th,
	#studio-rental-page #price-sec .price-table-wrap table.price-table td {
		padding: 0.3em;
	}
}

#studio-rental-page + #foot-contact {
	background-color: #FFFFFF;
}


/*----------------------------------------*/
/* MEMBER IN */
/*----------------------------------------*/

#member-in-page {
	border-bottom: solid 1px #535e49;
	padding-bottom: 100px;
}

/* #member-in-page #page-header */
#member-in-page #page-header {
	background-image: url("../img/studio_rental/mv-img_v2.jpg");
}
@media(max-width: 767px) {
	#member-in-page #page-header {
		background-image: url("../img/studio_rental/mv-img_v2.jpg");
	}
}

/* #member-in-page .page-body */
#member-in-page .page-body {
	position: relative;
	color: #2a381d;
}
#member-in-page .page-body::before {
    position: absolute;
    content: "";
    border-top: solid min(1280px, 100vw) #2a381d;
    border-right: solid min(416px, 32vw) transparent;
    top: 0;
    left: 0;
    z-index: -1;
}
#member-in-page .page-body .container {
	max-width: 856px;
}
@media(max-width: 767px) {
	#member-in-page .page-body::before {
		border-top: solid 139px #2a381d;
		border-right: solid 85px transparent;
	}
	#member-in-page .page-body .container {
		max-width: 515px;
	}
}

/* #studio-rental-page #lower-intro */
#member-in-page #lower-intro {
	background-color: transparent;
}
#member-in-page #lower-intro .sec-title {
	line-height: 1.75;
}
@media(max-width: 767px) {
	#member-in-page #lower-intro .sec-title {
		line-height: 1.5;
	}
}

/* #member-in-page #step-sec */
#member-in-page #step-sec {}
#member-in-page #step-sec .doted {
	border-top: 2px dotted #2a381d;
}
#member-in-page #step-sec .step-dl {}
#member-in-page #step-sec .step-dl > dl {
}
#member-in-page #step-sec .step-dl > dl > * {
}
#member-in-page #step-sec .step-dl > dl > dt {
	font-size: 19px;
}
#member-in-page #step-sec .step-dl figure.img-circular {
	border-radius: 500px;
	overflow: hidden;
}
#member-in-page #step-sec .step-dl > dl > dd {
	margin: 0;
}
#member-in-page #step-sec .step-dl > dl > dd > .text-wrap {
	width: 100%;
}
#member-in-page #step-sec .step-dl h2.step-title {
    margin-bottom: 30px;
}
#member-in-page #step-sec .step-dl h2.step-title > dl {
    display: flex;
    align-items: flex-start;
	margin: 0;
}
#member-in-page #step-sec .step-dl h2.step-title > dl > dt {
    display: flex;
    align-items: center;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.04em;
    margin-right: 1em;
}
#member-in-page #step-sec .step-dl h2.step-title > dl > dt .num {
    font-size: 38px;
    margin-left: 0.125em;
    transform: scaleY(1.2);
}
#member-in-page #step-sec .step-dl h2.step-title > dl > dd {
    line-height: 1.75;
    letter-spacing: 0.04em;
    font-size: 25px;
    font-weight: 900;
    margin: 0;
    padding: 1px 0;
}
#member-in-page #step-sec .step-dl p {
    line-height: 2.1;
    margin: 0 -1em 0 0;
}
#member-in-page #step-sec .step02-dl {
    line-height: 2.1;
    margin: 35px 0;
}
#member-in-page #step-sec .step02-dl > dl {
	display: flex;
	margin: 0;
}
#member-in-page #step-sec .step02-dl > dl > dt {
    flex-basis: 10em;
    flex-shrink: 0;
    flex-grow: 0;
	font-weight: 500;
	margin: 0;
}
#member-in-page #step-sec .step02-dl > dl > dd {
	font-weight: 500;
	margin: 0;
}
#member-in-page #step-sec .step-dl .step-card {
	margin: 25px 0;
	text-align: center;
}
@media(max-width: 767px) {
	#member-in-page #step-sec .step-dl figure.img-circular {
		max-width: 275px;
    	margin: 0 auto 20px;
	}
	#member-in-page #step-sec .step-dl p {
		margin: 0;
	}
	#member-in-page #step-sec .step-dl > dl + dl {
		margin-top: 75px;
		border-top: 2px dotted #2a381d;
		padding-top: 75px;
	}
}
@media(max-width: 575px) {
	#member-in-page #step-sec .step02-dl > dl {
		display: block;
	}
	#member-in-page #step-sec .step02-dl > dl > dt {
		font-weight: 700;
	}
	#member-in-page #step-sec .step-dl h2.step-title > dl {
		display: block;
	}
}
@media(min-width: 768px) {
	#member-in-page #step-sec .step-dl > dl {
		display: flex;
		margin: 0 -30px 80px;
	}
	#member-in-page #step-sec .step-dl > dl > * {
		padding: 0 30px;
	}
	#member-in-page #step-sec .step-dl > dl > dt {
		flex-basis: 39%;
		max-width: 39%;
	}
	#member-in-page #step-sec .step-dl > dl > dd {
		display: flex;
		align-items: center;
		flex-basis: 61%;
		max-width: 61%;
	}
	#member-in-page #step-sec .step-dl > dl.step02 > dd > .text-wrap {
		margin-top: 60px;
	}
}

/* #member-in-page + #foot-contact */
#member-in-page + #foot-contact {
	background-color: #FFFFFF;
}