body {
  font-size: 16px;
  font-family: 'Maru Folk Regular';
  line-height: 1.4;
  color: #2a3139;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
  -moz-osx-font-smoothing: grayscale;
}

b, strong {
	font-family: '丸フォーク B';
}

.site {
	padding-top: 86px;
}

br.sp {
	display: none;
}

.footnote {
	font-size: 12px;
	text-align: right;
}

.two-column .box .footnote {
	text-align: center;
}

@media screen and (max-width: 768px) {
	body {
	  font-size: 14px;
	}

	.site {
    	padding-top: 42px;
	}
	
	br.sp {
		display: inline;
	}

	.footnote {
    	margin-bottom: 10px;
		font-size: 10px;
		text-align: right !important;
	}
}


/************************ Common Header ************************/
#main-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	border-bottom: 1px solid #ccc;
	z-index: 100;
}

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 970px;
	margin: 8px auto;
}

.site-logo {
  width: 140px;
}

.site-logo a:hover {
  opacity: 0.7;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.site-logo img {
  width: 100%;
}

.main-nav.pc-menu {
	display: flex;
}

.main-nav.sp-menu {
	display: none;
}

.main-nav li {
	position: relative;
}

.main-nav > li {
	margin-left: 10px;
}

.main-nav > li:first-child {
	margin-left: 0;
}

.main-nav li.has-child span {
	display: inline-block;
	padding: 16px 20px;
}

.main-nav li a {
	display: block;
	padding: 16px 20px;
	text-decoration: none;
	color: #2a3139;
}

.main-nav li i.fa-angle-down {
	padding-left: 6px;
}

.main-nav li:hover,
.main-nav li a:hover,
.header-sub li a:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
	cursor: pointer;
}

.main-nav li a:after {
    content: '';
	position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgb(199, 178, 131);
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.main-nav li a:hover:after {
	-webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.main-nav li.has-child > a:hover:after {
	display: none;
}

.main-nav li .sub-menu {
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}

.main-nav .sub-menu {
	position: absolute;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	-webkit-box-shadow: 3px 5px 5px 0 rgba(0,0,0,.26);
	box-shadow: 3px 5px 5px 0 rgba(0,0,0,.26);
}

.main-nav li > .sub-menu {
	top: 50px;
	left: 0;
	background: rgb(226, 216, 191);
}

.main-nav .sub-menu li {
	width: 220px;
	border-top: 1px solid rgba(128, 104, 43, 0.3);
}

.main-nav .sub-menu.show {
	opacity: 1;
	visibility: visible;
}

.main-nav li small {
	font-size: 90%;
}

.header-sub {
	list-style: none;
}

.header-sub li a {
	display: block;
	padding: 8px 12px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	text-align: center;
	min-width: 150px;
}

.header-sub li:first-child a {
	background-color: rgb(226, 216, 191);
}

.header-sub li:last-child a {
	background-color: rgb(199, 178, 131);
}

.header-sub li a i {
	padding-right: 4px;
}


.tel-modal {
	display: none;
}

.tel-modal-overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 120%;
	z-index: 100;
    background: rgba(0, 0, 0, 0.7);
}

.tel-modal-content {
	position: fixed;
    width: 80%;
    max-width: 460px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 4px;
    padding: 24px 30px;
	z-index: 110;
}

.tel-modal-buttons {
    display: flex;
    justify-content: space-between;
	margin-top: 20px;
}

.tel-modal-buttons a {
	width: 49%;
	padding: 11px;
	background: rgb(226, 216, 191);
    text-align: center;
    text-decoration: none;
    color: #000;
    border-radius: 4px;
}

.tel-modal-buttons a:last-child {
	background: rgb(199, 178, 131);
}

@media screen and (max-width: 768px) {
	.site-header {
		width: 100%;
		margin: 0;
	}
	
	.site-logo { 
		width: 80px;
		margin: 6px 0 0 10px;
	}
	
	.header-sub {
		display: none;
	}

	.site-navigation {
		display: none;
		position: fixed;
		top: 48px;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: scroll;
	}
	
	.main-nav.pc-menu {
		display: none;
	}

	.site-navigation.open,
	.main-nav.sp-menu {
		display: block;
	}
	
	.main-nav li,
	.main-nav li a {
		width: 100% !important;
		color: #333;
	}

	.main-nav > li {
    margin-left: 0;
		background: rgb(226, 216, 191);
		border-top: 1px solid #815d1f;
		font-weight: bold;
	}

	.main-nav > li:first-child {
		border-top: 0;
	}

	.sub-menu {
		opacity: 1 !important;
		visibility: visible !important;
		display: block !important;
		position: unset !important;
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
		font-weight: normal;
	}
	
	.main-nav li.has-child {
    padding: 0 !important;
		font-weight: bold;
	}
	
	.main-nav li.has-child span {
		display: block;
    padding: 16px 20px;
	}
	
	.main-nav li .sub-menu li.has-child span {
    padding: 16px 40px;
	}
	
	.main-nav > li > .sub-menu li > .sub-menu li:first-child {
    border-top: 1px solid #2C5FA3;
	}
	
	.main-nav li > .sub-menu {
    background: #fff;
	}
	
	.main-nav li > .sub-menu li {
    padding-left: 20px;
	}
	
	.main-nav li a i {
		padding-right: 5px;
	}
	
	.menu-trigger,
	.menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	
	.menu-trigger {
		position: relative;
		width: 44px;
		height: 44px;
	}
	
	.menu-trigger span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #333;
		border-radius: 4px;
	}
	
	.menu-trigger span:nth-of-type(1) {
		top: 10px;
	}
	
	.menu-trigger span:nth-of-type(2) {
		top: 20px;
	}
	
	.menu-trigger span:nth-of-type(3) {
		bottom: 9px;
	}
	
	.menu-trigger span {
		left: 8px;
		width: 27px;
	}
	
	.menu-trigger span::before {
		position: absolute;
		top: 0;
		left: -8px;
		content: '';
		width: 4px;
		height: 4px;
		background-color: #333;
		border-radius: 4px;
	}
	
	.menu-trigger.active span {
		left: 0;
		width: 80%;
	}
	
	.menu-trigger.active span::before {
		content: none;
	}
	
	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(12px) rotate(-45deg);
		transform: translateY(12px) rotate(-45deg);
	}
	
	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	
	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	}
}


/************************ Top Main Image ************************/
.top-main-image {
    position: relative;
}

.top-main-image h1 {
	z-index: 10;
    position: absolute;
    top: 50%;
	width: 100%;
	margin-top: -70px;
	font-size: 50px;
	text-align: center;
	color: #fff;
}

.top-main-image h1 span {
	display: inline-block;
}

.top-main-image:after {
    position: absolute;
	content: "";
    background: radial-gradient(rgb(186, 158, 103) 40%, transparent 0), radial-gradient(rgb(186, 158, 103) 40%, transparent 0);
    background-size: 3.5px 3.5px;
    top: 0;
	bottom: 0;
    left: 0;
	right: 0;
}

.top-main-image video {
	display: block;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.top-main-image:after {
		background: rgba(186, 158, 103,0.3);
	}

	.top-main-image h1 {
		margin-top: -50px;
		font-size: 24px;
	}
}


/************************ Other Main Image ************************/
.main-image {
	min-width: 970px;
	padding: 230px 0;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 0 30px;
	background-attachment: fixed;
    text-align: center;
	font-size: 45px;
	font-weight: normal;
	color: #fff;
}

.main-image span {
	display: block;
	margin-top: 10px;
	font-size: 35px;
}

.main-image.about {
	background-image: url('img/studioInfo_top.jpg');
}

.main-image.healthcare {
	background-image: url('img/benefit_top.jpg');
}

.main-image.beautycare {
	background-image: url('img/beauty-top.jpg');
}

.main-image.maternitycare {
	background-image: url('img/matani-top.jpg');
}

.main-image.rehabilitation {
	background-image: url('img/riha-top.jpg');
}

.main-image.danceperformance {
	background-image: url('img/dance-top.jpg');
}

.main-image.lesson {
	background-image: url('/wp-content/uploads/2026/06/lesson_private-scaled.jpeg');
}

.main-image.lesson.pair {
	background-image: url('/wp-content/uploads/2026/06/health_slide-scaled.jpeg');
}

.main-image.studio {
	background-image: url('img/studioInfo_top.jpg');
}

@media screen and (max-width: 768px) {
	.main-image {
		min-width: unset;
		padding: 188px 0;
	}
	
	.main-image {
		font-size: 30px;
	}
	
	.main-image span {
		margin-top: 0;
		font-size: 18px;
	}
}

@media screen and (max-width: 460px) {
	.main-image {
		padding: 68px 0;
	}
}


/************************ Basic Layout ************************/
.section-wrapper {
  display: block;
  padding: 40px 0 60px;
}

.section-wrapper.emph {
  background: rgb(250, 249, 244);
}

.section-content {
  width: 970px;
  margin: 0 auto;
}

.section-content .sub-text {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

.section-content .sub-text:last-child {
  margin-bottom: 0;
}

.section-content .sub-text span {
  color: red;
}

.section-footer {
	margin-top: 40px;
  text-align: center;
}

.section-footer p {
	margin-bottom: 40px;
}

.section-footer p a {
	color: rgb(128, 104, 43);
    text-decoration: underline;
}

.section-footer p a:hover {
    color: rgba(128, 104, 43, 0.7);
}

.section-title {
  text-align: center;
  color: rgb(128, 104, 43);
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 40px;
	line-height: 1.4 !important;
}

.section-title span {
  display: block;
  font-size: 16px;
  padding-top: 10px;
}

.section-title span:after {
  content: '';
  display: block;
  margin: 10px auto 0;
  width: 50px;
  height: 2px;
  background: rgb(128, 104, 43);
}

.section-title-sub {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: normal;
  color: #2c5fa3;
}

.section-title-sub:before,
.section-title-sub:after {
  content: '';
  width: 20px;
  height: 1px;
  display: inline-block;
  margin: 8px 10px;
  background: #2c5fa3;
}

@media screen and (max-width: 768px) {
	.section-content {
		width: 100%;
	}
	
	.section-wrapper {
    padding: 40px 16px 60px;
	}
}


/************************ Flex Box ************************/
.flex-box {
  display: flex;
  margin-bottom: 40px;
  list-style: none;
  justify-content: space-between;
}

.flex-box:last-child {
  margin-bottom: 0;
}

.flex-box li {
  width: 170px;
  margin-bottom: 30px;
  text-align: center;
}

.flex-box.staff li {
  margin: 0 10px 30px;
}

.flex-box a {
  color: #4d5968;
  text-decoration: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.flex-box a:hover {
  color: #009cff;
}

.flex-box a:hover img {
  transform: scale(1.1);
}

.flex-box .img-wrapper {
  margin-bottom: 6px;
  overflow: hidden;
}

.flex-box img {
  display: block;
  width: 100%;
  transition-duration: .3s;
}

.flex-box.two-column {
  align-items: center;
  text-align: center;
}

.flex-box.two-column:first-of-type {
  margin-bottom: 40px;
}

.flex-box.two-column .box {
  width: 50%;
}

.flex-box.two-column .box img,
.flex-box.two-column .box .footnote {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.flex-box.two-column .box p {
  text-align: center;
}

@media screen and (max-width: 768px) {
	.flex-box {
		flex-wrap: wrap;
	}
	
	.flex-box li {
		width: 48%;
	}
	
	.flex-box.two-column .box {
    width: 100%;
	}
	
	.flex-box.two-column .box:first-child {
    margin-bottom: 40px;
	}
}


/************************ ABOUT ************************/
.flex-box.about {
  line-height: 2;
}

.flex-box.about .emph {
  color: rgb(128, 104, 43);
}


/************************ BENEFIT (TOP PAGE) ************************/
.flex-box.benefit li {
	width: 19.6%;
}

.flex-box.benefit .img-wrapper {
    margin-bottom: 0;
    height: 180px;
    position: relative;
}

.flex-box.benefit img {
    margin-top: -50%;
    position: absolute;
    top: 50%;
}

@media screen and (max-width: 768px) {
	.flex-box.benefit li {
		width: 100%;
	}
}


/************************ LESSON (TOP PAGE) ************************/
.flex-box.lesson {
	justify-content: center;
}

.flex-box.lesson li {
	width: 38%;
	margin-right: 10px;
}

.flex-box.lesson li:last-child {
	margin-right: 0;
}

.flex-box.lesson .img-wrapper {
	position: relative;
}

.flex-box.lesson img {
	filter: brightness(0.7);
}

.flex-box.lesson p {
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	color: #fff;
	font-size: 18px;
}

.flex-box.lesson span {
	display: block;
	padding-top: 6px;
	font-size: 13px;
}

@media screen and (max-width: 768px) {
	.flex-box.lesson li {
		width: 100%;
	}
}


/************************ STAFF (TOP PAGE) ************************/
.flex-box.staff img {
	padding-bottom: 10px;
}

.pc-view {
	display: flex;
}

.sp-view {
	display: none;
}

@media screen and (max-width: 768px) {
	.flex-box.staff li {
		width: 210px;
	}
	
	.pc-view {
		display: none;
	}
	
	.sp-view {
		display: block;
	}
}

/************************ STAFF (CLINIC INFO) ************************/
.flex-box.profile {
  margin: 40px 0;
}


/************************ SPECIAL TREATMENT ?? ************************/
.flex-box.special-treatment {
  max-width: 718px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
}


/************************ REVIEW ************************/
.section-wrapper.review .flex-box {
	justify-content: center;
	margin: 70px 0;
  line-height: 1.8;
}

.section-wrapper.review .flex-box .box:first-child {
  width: 26%;
	margin-right: 40px;
}

.section-wrapper.review .flex-box .box:last-child {
	background-image: url(img/quotation_open.png), url(img/quotation_close.png);
	background-position: left top, right bottom;
	background-repeat: no-repeat, no-repeat;
	background-size: 38px;
	padding: 20px 50px;
	font-size: 14px;
	text-align: left;
}

.review .name {
	margin: 10px 0 20px;
	font-weight: bold;
	color: rgb(128, 104, 43);
}

.review .name span {
	display: block;
	font-size: 20px;
}

@media screen and (max-width: 768px) {
	.section-wrapper.review .flex-box {
    margin: 0;
	}
	
	.section-wrapper.review .flex-box:first-of-type {
    margin-bottom: 30px;
	}
	
	.section-wrapper.review .flex-box .box:first-child {
		width: 100%;
		margin: 0;
	}
	
	.section-wrapper.review .flex-box .box:first-child img {
		max-width: 200px;
	}
	
	.section-wrapper.review .flex-box .box:last-child {
		background-image: url(img/quotation_close.png);
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 38px;
		padding: 46px 0 0;
		font-size: 12px;
	}
}


/************************ FAQ TAB ************************/
.faq .flex-box {
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto 40px;
}

.faq .flex-box.one-line {
	margin-bottom: 0;
}

.faq .flex-box li {
	width: 24%;
	margin: 7px 4px;
}

.faq .flex-box li a {
	display: block;
	padding: 12px 0;
	border: 1px solid rgb(226, 216, 191);
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	font-size: 14px;
	color: #2a3139;
}

.faq .flex-box li a:hover,
.faq .flex-box li a.active,
.faq .flex-box li a.active:hover {
	background-color: rgb(226, 216, 191);
}

@media screen and (max-width: 768px) {
	.faq .flex-box {
		justify-content: space-between;
	}
	
	.faq .flex-box li {
		width: 48%;
		margin: 7px 0;
	}
}


/************************ FAQ List ************************/
.faq-list {
  margin-bottom: 40px;
  padding: 8px 24px;
  background: rgb(250, 249, 244);
	line-height: 1.8;
}

.faq-list dt {
  font-size: 15px;
	font-weight: bold;
  margin-bottom: 10px;
  color: rgb(128, 104, 43);
	padding-left: 36px;
	position: relative;
}

.faq-list dt:before {
	position: absolute;
	left: 0;
  content: 'Q';
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background-color: rgb(128, 104, 43);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 13px;
  color: #fff;
}

.faq-list dd {
  font-size: 14px;
	padding-left: 36px;
	position: relative;
}

.faq-list dd:before {
  position: absolute;
	left: 0;
  content: 'A';
  width: 24px;
  height: 24px;
  margin-right: 12px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  color: rgb(128, 104, 43);
}

.faq-list dd a {
	color: rgb(128, 104, 43);
    text-decoration: underline;
}

.faq-list dd a:hover {
    color: rgba(128, 104, 43, 0.7);
}


/************************ PAIN TAB ************************/
.problem .flex-box {
	margin-bottom: 10px;
}

.problem .flex-box li {
	width: 24%;
}

.problem .flex-box li a {
	display: block;
	padding: 12px 0;
	border: 1px solid #707070;
	-webkit-transition-duration: .2s;
	transition-duration: .2s;
	font-size: 14px;
}

.problem .flex-box li a:hover {
	background-color: #6D9CD9;
	color: #fff;
}

.problem .flex-box li a.active {
	background-color: #6D9CD9;
	color: #fff;
	font-weight: bold;
}

.problem .flex-box li a.active:hover {
	background-color: #6D9CD9;
	color: #fff;
	font-weight: bold;
}

.problem table {
	width: 100%;
}

.problem table tr {
	background-color: rgba(213, 223, 237, 0.4);
}

.problem table tbody tr:nth-child(odd) {
	background-color: rgba(213, 223, 237);
}

.problem table th {
	text-align: left;
	color: #6D9CD9;
}

.problem table th,
.problem table td {
	padding: 11px 20px;
}

.problem .pc-img {
	max-width: 600px;
	margin: 0 auto 40px;
}

.problem .sp-img {
	margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
	.problem .flex-box li {
    width: 48%;
    margin-bottom: 15px;
	}
}

.pc-img {
	display: block;
	width: 100%;
}

.sp-img {
	display: none;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.pc-img {
		display: none !important;
	}
	
	.sp-img {
		display: block;
	}
}


/************************ LESSON ************************/
.section-wrapper.lesson {
	padding: 30px 0;
}

.tab-content img {
	display: block;
}

.flex-box.lesson-tabs div {
	width: 49%;
}

.flex-box.lesson-tabs a {
	display: block;
	padding: 12px;
	border: 1px solid rgb(226, 216, 191);
	text-align: center;
	color: #2a3139;
}

.flex-box.lesson-tabs a:hover,
.flex-box.lesson-tabs a.active {
	background: rgb(226, 216, 191);
}

table.business-hours {
	margin: 20px auto 0;
	text-align: left;
}

table.business-hours td:first-child {
	width: 100px;
}

@media screen and (max-width: 768px) {
	.flex-box.lesson-tabs div {
		width: 100%;
		margin: 0 10px 10px;
	}
	
	.flex-box.lesson-tabs div:last-child {
		margin-bottom: 0;
	}
}


/************************ Menu Section ************************/
.section-wrapper.menu {
	text-align: center;
	line-height: 1.6;
}

.section-wrapper.menu small {
	font-size: 12px;
}


/************************ Price Section ************************/
.flex-box.price {
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 20px;
	background: #fff;
	color: rgb(67, 111, 105);
	font-size: 14px;
}

.flex-box.price ul {
	width: 50%;
	padding: 10px 10px 30px;
	list-style: none;
}

.flex-box.price ul li {
	width: 100%;
    padding: 13px 4px;
	margin-bottom: 0;
    border-bottom: 1px solid #ccc;
	text-align: left;
}

.flex-box.price ul li:first-child {
	min-height: 68px;
}

.flex-box.price ul li dl {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-box.price ul li:first-child dl {
	align-items: start;
}

.flex-box.price ul li dl dd {
	text-align: right;
}

.flex-box.price ul li h3 {
	font-size: 18px;
	font-family: 'Maru Folk Bold';
	font-weight: bold;
}

.flex-box.price ul li h3 small {
	font-size: 14px;
}

.flex-box.price ul li .catch {
	font-size: 12px;
}

.flex-box.price ul li span {
	color: red;
}

.flex-box.price ul li strong {
	font-family: 'Maru Folk Bold';
	font-weight: bold;
}

.flex-box.price .accordion {
	width: 100%;
	display: block;
	margin: 0 20px 30px;
}

.flex-box.price .accordion .more {
	text-align: center;
}

.flex-box.price .accordion .more a:before {
	font-family: 'Font Awesome 5 Free';
	padding-right: 8px;
}

.flex-box.price .accordion .more a.open:before {
	content: '\f077';
}

.flex-box.price .accordion .more a.close:before {
	content: '\f078';
}

.price-campaign {
	margin-bottom: 40px;
	text-align: center;
	color: rgb(67, 111, 105);
}

.price-campaign h3 {
	margin-bottom: 20px;
	font-size: 18px;
}

.price-campaign p:nth-child(3) {
	font-size: 16px;
    font-family: 'Maru Folk Bold';
    font-weight: bold;
    margin: 11px 11px 4px;
	text-decoration: underline;
}

.price-campaign p:nth-child(3) span {
	color: red;
}

.price-campaign p:last-child {
	display: inline-block;
    text-align: left;
	font-size: 15px;
}

@media screen and (max-width: 768px) {
	.flex-box.price ul {
		width: 100%;
	}

	.flex-box.price ul:first-child {
		padding-bottom: 10px;
	}

	.flex-box.price ul li:first-child {
		min-height: unset;
	}
	
	.flex-box.price ul li .catch {
		margin-bottom: 10px;
	}

	.flex-box.price ul li:first-child dl {
		display: block;
	}

	.flex-box.price ul li:first-child dl dd br {
		display: none;
	}

	.flex-box.price ul li h3 small {
		font-size: 13px;
	}
}


/************************ Schedule Section ************************/
.flex-box.schedule {
	margin-bottom: 20px;
}

.flex-box.schedule dl {
	width: 33.28%;
	border: 1px solid rgb(199, 178, 131);
}

.flex-box.schedule dl dt {
	background: rgb(199, 178, 131);
	font-size: 20px;
	color: #fff;
}

.flex-box.schedule dl dd {
    padding: 8px;
}

@media screen and (max-width: 768px) {
	.flex-box.schedule dl {
		width: 100%;
	}
}


/************************ Explanation Section ************************/
.section-wrapper.explanation {
	line-height: 2;
}

.explanation .lesson-catch {
	margin: 20px 0;
	font-size: 19px;
	color: #815D1F;
	line-height: 1.8;
	text-align: center;
}

.explanation h3 {
	font-size: 36px;
	color: #815D1F;
	text-align: center;
}

.explanation h4 {
	font-size: 20px;
	color: #815D1F;
	text-align: center;
}

.explanation.before-after img {
	display: block;
	width: 100%;
	max-width: 600px;
	margin: 0 auto 20px;
}

.explanation.chiro .section-content {
	max-width: 800px;
	text-align: left;
}

.explanation.chiro img,
.explanation.flow img {
	display: block;
	width: 100%;
	max-width: 800px;
	margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
	.explanation h3 {
		font-size: 22px;
	}

	.explanation h4 {
		font-size: 16px;
	}
}


/************************ EFFECT ************************/
.flex-box.effect dl {
	text-align: center;
	width: 30%;
}

.flex-box.effect dt {
	font-size: 22px;
	color: #815D1F;
}

.flex-box.effect dd {
	margin-top: 6px;
}

@media screen and (max-width: 768px) {
	.flex-box.effect dl {
		width: 100%;
		margin-bottom: 40px;
	}
	.flex-box.effect dl:last-child {
		margin-bottom: 0;
	}
}


/************************ Common Footer ************************/
.site-footer {
  padding: 20px;
  font-size: 14px;
  text-align: center;
	line-height: 1.8;
}

.site-footer span {
  display: inline-block;
  padding-left: 5px;
}

.sp-footer {
	display: none;
}

#go-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	display: block;
	width: 48px;
	height: 48px;
	background: rgb(199, 178, 131);
	color: #fff;
	line-height: 50px;
	text-align: center;
	font-size: 32px;
	border-radius: 50%;
	-webkit-box-shadow: 0 2px 5px rgba(0,0,0,.26);
	box-shadow: 0 2px 5px rgba(0,0,0,.26);
}

@media screen and (max-width: 768px) {
	.site-footer {
		padding-bottom: 80px;
	}
	
	.sp-footer {
		display: flex;
		position: fixed;
		bottom: 0;
		width: 100%;
		border-top: 3px solid rgb(128, 104, 43);
		background-color: #fff;
		list-style: none;
		justify-content: space-evenly;
		z-index: 99;
	}
	
	.sp-footer li a {
		padding: 10px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: bold;
	}
	
	.sp-footer li a i {
		padding-right: 5px;
	}
	
	#go-to-top {
    bottom: 54px;
    right: 10px;
	}
}


/************************ Button ************************/
.link-button {
	display: inline-block;
  border-radius: 2px;
  font-size: 14px;
  font-weight: bold;
  color: #fff !important;
  text-align: center;
  padding: 8px 28px;
  background: rgb(193, 171, 115);
	text-decoration: none;
	border: 0;
}

.link-button:hover {
	-webkit-transition: all .5s;
	transition: all .5s;
  opacity: 0.7;
}

.link-button.submit {
	font-family: 'Maru Folk Regular' !important;
  font-size: 16px;
}


/************************ Strength ************************/
.strength dl {
	margin-bottom: 30px;
	font-size: 18px;
}

.strength dt {
	margin-bottom: 4px;
	color: rgb(128, 104, 43);
}

@media screen and (max-width: 768px) {
	.strength dl {
		font-size: 14px;
	}
	.strength dt {
		font-size: 16px;
	}
}


/************************ Lesson List ************************/
.lesson-list {
	max-width: 700px;
	margin: 30px auto 0;
	text-align: left;
}

.lesson-list dd {
	margin-bottom: 30px;
}

.lesson-list dd:last-child {
	margin-bottom: 0;
}


/************************ Profile Carousel ************************/
.swiper-container {
	padding-bottom: 50px;
}

.swiper-slide {
	text-align: center;
}

.swiper-slide img {
	display: block;
	margin: 0 auto;
}

.sp-view .swiper-slide img {
	margin: 0 auto 10px;
}

.swiper-pagination-bullet-active {
	background: rgb(128, 104, 43);
}

.swiper-container .fas {
	font-size: 40px;
	position: absolute;
	top: 30%;
	color: #aaa;
	z-index: 100;
}

.swiper-container .fas.fa-chevron-left {
	left: -2px;
}

.swiper-container .fas.fa-chevron-right {
	right: -2px;
}


/************************ Menu Carousel ************************/
.menu.swiper-container {
	padding-bottom: 0;
}

.menu .swiper-pagination-bullet-active {
	background: #fff;
}

.menu .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 64px;
}

.menu.swiper-container .fas {
	font-size: 46px;
	top: 50%;
	margin-top: -23px;
}

.menu.swiper-container .fas.fa-chevron-left {
	left: 10px;
}

.menu.swiper-container .fas.fa-chevron-right {
	right: 10px;
}

@media screen and (max-width: 768px) {
	.menu.swiper-container .fas {
		font-size: 30px;
		margin-top: -15px;
	}
	
	.menu.swiper-container .fas.fa-chevron-left {
		left: 5px;
	}

	.menu.swiper-container .fas.fa-chevron-right {
		right: 5px;
	}
}


/************************ Flow Section ************************/
.flex-box.flow {
	align-items: center;
	justify-content: start;
}

.flex-box.flow .img {
	max-width: 30%;
	margin-right: 30px;
}

.flex-box.flow .description {
	text-align: left;
}

.flex-box.flow .description-title {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
}

@media screen and (max-width: 768px) {
	.flex-box.flow .img {
    width: 100%;
    margin-right: 0;
		margin-bottom: 20px;
	}
	
	.flex-box.flow .img img {
		max-width: 400px;
		margin: 0 auto;
	}
}


/************************ Staff Profile ************************/
.flex-box.profile {
	justify-content: start;
}

.flex-box.profile .img {
	width: 25%;
	margin-right: 50px;
}

.flex-box.profile .description {
	width: 70%;
	border-bottom: 1px solid rgb(128, 104, 43);
	font-size: 14px;
	text-align: left;
	line-height: 1.6;
}

.flex-box.profile:last-child .description {
	border-bottom: 0;
}

.flex-box.profile .description .name {
	font-size: 24px;
	color: rgb(128, 104, 43);
	margin: 0;
	padding: 12px;
	padding-left: 0px;
}

.flex-box.profile .description .certificates {
	margin-bottom: 24px;
}

.flex-box.profile .description .education dd {
	margin-bottom: 20px;
}

.flex-box.profile .description ul {
	list-style: none;
}

.flex-box.profile .description ul li {
	width: auto;
	margin-bottom: 0;
	text-align: left;
}

.flex-box.profile .description .more {
	padding: 20px 0 40px;
}

.flex-box.profile .description .more a:before {
	font-family: 'Font Awesome 5 Free';
	padding-right: 8px;
}

.flex-box.profile .description .more a.open:before {
	content: '\f077';
}

.flex-box.profile .description .more a.close:before {
	content: '\f078';
}

@media screen and (max-width: 768px) {
	.flex-box.profile .img {
    width: 100%;
    margin-right: 0;
	}
	
	.flex-box.profile .img img {
		max-width: 250px;
    margin: 0 auto;
	}
	
	.flex-box.profile .description {
    width: 100%;
	}
}


/************************ Access ************************/
.access .google-view {
	margin-bottom: 30px;
}

.address {
	margin-left: 20px;
  text-align: left;
	line-height: 2;
}

.address dt {
  margin-bottom: 30px;
  font-weight: bold;
  color: rgb(128, 104, 43);
}

.address dd {
  margin-bottom: 40px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
	.address {
		margin-left: 0;
	}
	.address dd:last-child {
		margin-bottom: 0;
	}
}


/************************ Introduction & Link ************************/
.flex-box.two-column.intro {
	align-items: start;
}

.flex-box.two-column.intro .box img {
	max-width: unset;
}

.intro-detail {
	margin-left: 20px;
  text-align: left;
	line-height: 2;
}

.intro-detail dt {
  margin-bottom: 15px;
  font-weight: bold;
  color: rgb(128, 104, 43);
}

.intro-detail dd {
  margin-bottom: 25px;
  font-size: 14px;
}

.intro-detail dd:last-child {
	margin-bottom: 0;
}

.intro-detail dd a,
.links a {
	color: rgb(128, 104, 43);
	text-decoration: underline;
}

.intro-detail dd a:hover,
.links a:hover {
	color: rgba(128, 104, 43, 0.7);
}

.links {
	display: inline-block;
	font-size: 14px;
	list-style: none;
}

@media screen and (max-width: 768px) {
	.intro-detail {
		margin-left: 0;
	}
}


/************************ Contact Form ************************/
.contact-form {
	display: table;
	width: 100%;
	margin-bottom: 40px;
	border-top: 1px dotted #ccc;
}

.form-row {
	display: table-row;
}

.form-title,
.form-input {
	display: table-cell;
	padding: 20px 0 20px 20px;
	border-bottom: 1px dotted #ccc;
	text-align: left;
}

.form-title {
	width: 30%;
	font-size: 16px;
	vertical-align: top;
	color: #436f69;
}

.form-title span {
	padding-left: 10px;
	font-size: 13px;
	color: red;
}

.form-input input,
.form-input textarea {
	padding: 14px 20px;
	border: 1px solid #eceef1;
	border-radius: 90px;
	background-color: #fff;
	font-family: initial;
	font-size: 16px;
	color: #2a3139;
	outline: none;
	resize: none;
}

.form-input.full-width input,
.form-input.full-width textarea {
	width: 100%;
}

.form-input textarea {
	display: block;
	border-radius: 30px;
}

.form-input input::placeholder,
.form-input textarea::placeholder {
	font-family: 'Maru Folk Regular';
	color: #90959f;
}

.mw_wp_form .error {
	padding: 6px 0 0 22px;
}

@media screen and (max-width: 768px) {
	.contact-form,
	.form-row,
	.form-title,
	.form-input,
	.form-input input[type="text"] {
		display: block;
		width: 100%;
	}
	.form-title {
		padding-left: 16px;
		font-weight: bold;
    border-bottom: 0;
    padding-bottom: 0;
	}
	.form-input {
		padding: 10px 0 20px;
	}
	.mwform-radio-field input {
    margin-left: 18px;
	}
	.mw_wp_form_confirm .form-input {
		padding-left: 16px;
	}
}


/************************ Blog Area ************************/
.section-wrapper.blog .section-content {
	overflow: hidden;
}

.section-wrapper.blog .section-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 26px;
}

.section-wrapper.blog a {
	color: rgb(100, 100, 100);
	-webkit-transition-duration: .2s;
    transition-duration: .2s;
}

.section-wrapper.blog a:hover {
	color: #c7b183;
}

.section-wrapper.blog.list a h2,
.section-wrapper.blog .flex-box h3 {
	font-weight: normal;
}

.section-wrapper.blog .flex-box {
	justify-content: start;
	margin-bottom: 15px;
}

.section-wrapper.blog .flex-box div:first-child {
	min-width: 200px;
}

.section-wrapper.blog .flex-box time {
	font-size: 14px;
}

.section-wrapper.blog .category {
	display: inline-block;
	width: 96px;
	margin: 0 10px;
	padding: 3px 10px;
	background: rgb(128, 104, 43);
	color: #fff;
	font-size: 12px;
	text-align: center;
}

.section-wrapper.blog .entry-header {
	margin-bottom: 40px;
}

.entry-content {
	margin-bottom: 60px;
}

.blog-content {
	float: left;
	width: 660px;
}

.blog .blog-content h2.section-title {
	text-align: center;
	font-size: 22px;
}

.blog-sidebar {
	width: 280px;
	margin-left: 690px;
}

.blog-sidebar-content {
	margin-bottom: 40px;
	background-color: rgb(247, 242, 231);
}

.blog-sidebar ul {
	list-style: none;
}

.blog-sidebar-title {
	padding: 12px 10px;
	background-color: rgb(199, 178, 131);
	font-size: 18px;
}

.category-list li {
	border-top: 1px solid rgb(199, 178, 131);
}

.category-list li a {
	display: block;
	padding: 12px 10px;
}

.tag-list {
	padding: 0 0 10px 10px;
}

.tag-list li {
	display: inline-block;
	margin: 10px 4px 0 0;
}

.tag-list a {
	padding: 2px 4px;
	background: rgba(199, 177, 131, 0.4);
	font-size: 12px;
	border-radius: 4px;
}

.blog-sidebar a,
.pagination a {
  color: #4d5968;
  text-decoration: none;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.blog-sidebar a:hover,
.pagination a:hover {
  color: #009cff;
}

@media screen and (max-width: 768px) {
	.section-wrapper.blog .flex-box {
		margin-bottom: 20px;
	}
	.section-wrapper.blog .flex-box div {
		width: 100%;
	}
	.section-wrapper.blog .flex-box div:first-child {
		margin-bottom: 3px;
	}
	.blog-content {
		width: 100%;
		float: none;
		margin-bottom: 60px;
	}
	.blog-sidebar {
		width: 100%;
		margin-left: 0;
	}
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    font-size: 13px;
}

.pagination span,
.pagination a {
    display: block;
    width: auto;
    margin: 4px;
    padding: 8px;
    border: 1px solid rgba(213, 223, 237, 0.3);
    background-color: rgb(226, 216, 191);
    text-decoration: none;
    text-align: center;
    line-height: 16px;
		color: #4d5968;
}

.pagination .pager {
    width: 32px;
}

.pagination .current  {
    border-color: rgb(199, 177, 131);
    background-color: rgb(199, 177, 131);
    color: #4d5968;
}

.pagination a.prev {
    margin-right: 16px;
}

.pagination a.next {
    margin-left: 16px;
}

/************************ Corona ************************/
.corona {
	background: #f7f6e2;
	color: #293f52;
	border-radius: 20px;
	padding: 20px 10px;
	text-align: center;
    line-height: 2;
}
.pc-img .corona,
.corona.pc-img {
	font-size: 18px;
}
.corona h2 {
	margin-bottom: 20px;
	font-family: "丸フォーク B";
}
.corona b {
	color: #f21f67;
	border: 1px dotted #f21f67;
	font-family: "丸フォーク B";
}