/*
Theme Name: clinic_theme
*/
@charset "utf-8";

/*-----------------------------------
テーマ用CSS設定　自由入力
-----------------------------------*/

/* ----------------------------------------------------------------------
 * Base
-----------------------------------------------------------------------*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {scroll-behavior: smooth;}
body {
	width: 100%;
	background: #FFF;
	background: url(http://mjc-sapporo.com/wp-content/uploads/2025/06/bg-marble.jpg);
	background-size: cover;
	background-position: center;
	/*background-attachment: fixed;*/
	font-family: YakuHanMPs, "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 2;
	position: relative;
}
body:after {
	content: "";
	display: block;
	width: 100vw;
	height: 100vh;
	background: url(http://mjc-sapporo.com/wp-content/uploads/2025/06/bg-marble.jpg);
	background-size: cover;
	background-position: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
/***段落************/
p {margin-bottom: 10px;}
p:last-of-type {margin-bottom: 0;}
/***見出し**********/
h1, h2, h3, h4, h5, h6 {
	font-family: YakuHanMPs, "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
	color: #28230F;
	line-height: 1.5;
	/*margin-bottom: 20px;*/
}
.ttl-hidden {font-size: 0;}
/***画像**********/
.pic {
	display: block;
	width: 100%;
	height: auto;
}
/***リンク**********/
a {
	text-decoration: none;
	color: inherit;
	transition : 0.6s;
}
a:hover {opacity: 0.8;}
/***画像**********/
.pic img {
	display: block;
	width: 100%;
}
/***テーブル**********/
table {
	border-collapse: collapse;
	width: 100%;
	font-size: inherit;
}
th,td {
	font-weight: normal;
	text-align: left;
}


/* ----------------------------------------------------------------------
 * テーブル
-----------------------------------------------------------------------*/
table {
	border-collapse: collapse;
	width: 100%;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	color: #666;
	margin: 20px 0;
	font-size: inherit;
}
th,td {
	font-size: 14px;
	border: solid 1px #AAA;
	padding: 5px 10px;
}
th {
	background: #f5f0f0;
	font-weight: bold;
}
td {background: rgba(255,255,255,0.5);}
@media screen and (max-width: 500px) {
	th,td {
		font-size: 0.8rem;
		padding: 8px 4px;
	}
}


/* ----------------------------------------------------------------------
 * 汎用パーツ
-----------------------------------------------------------------------*/
.memo {
	display: block;
	font-size: 11px;
	color: #666;
	margin-top: 5px;
}
/*こめじるし*/
.kome {
	padding-left: 15px;
	position: relative;
}
.kome:before {
	content: "※";
	position: absolute;
	left: 0;
}


/* ----------------------------------------------------------------------
 * header
-----------------------------------------------------------------------*/
header {
	width: 100%;
	height: 70px;
	padding: 0 50px 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/*position: fixed;*/
	top: 0;
	left: 0;
	z-index: 999999;
}
header .inner {
	display: flex;
	align-items: center;
}
/***ロゴ***/
header .logo {
	display: block;
	z-index: 99999;
}
header .logo .pic {width: 165px;}


/* ----------------------------------------------------------------------
 * ハンバーガーメニュー
-----------------------------------------------------------------------*/
nav li {list-style: none;}
.hamburger-menu .menu-list {
	width: 100%;
	height: 100%;
	background: #FFF;
	position: fixed;
	top: -100%;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: 99999;
}
.toggle-btn {
	width: 70px;
	height: 70px;
	background: #643E1C;
	border-radius: 0 0 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 10px;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
}
.toggle-btn .line{
	width: 30px;
	height: 30px;
	position: relative;
}
.toggle-btn span {
	display: block;
	width: 100%;
	height: 0.5px;
	background: #FFF;
	transition: all 0.5s;
	position: absolute;
	right: 0;
}
.toggle-btn.open {background: #FFF;}
.toggle-btn.open span {background: #5F3C1E;}
.toggle-btn span:nth-child(1) { top: 0; }
.toggle-btn span:nth-child(2) { top: 14px; }
.toggle-btn span:nth-child(3) { bottom: 0; }
/*open:btn*/
.toggle-btn.open span:nth-child(1) {
  -webkit-transform: translateY(1px) rotate(-315deg);
  transform: translateY(14px) rotate(-315deg);
}
.toggle-btn.open span:nth-child(2) { opacity: 0; }
.toggle-btn.open span:nth-child(3) {
  -webkit-transform: translateY(-15px) rotate(315deg);
  transform: translateY(-15px) rotate(315deg);
}
/*open:navi*/
.menu-list.open {top: 0;}
/***メニュー***/
.menu-list {display: flex;}
.menu-list .left-block {
	width: 50%;
	background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url(http://mjc-sapporo.com/wp-content/uploads/2025/06/img-top.jpg);
	background-size: cover;
	background-position: -100px center;
	position: relative;
}
.menu-list .left-block .rsv-area {
	text-align: center;
	line-height: 1.5;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.menu-list .rsv-area .ttl {
	font-size: 2.5rem;
	color: #FFF;
}
.menu-list .rsv-area .text {
	color: #FFF;
	font-weight: bold;
	margin-top: 20px;
}
.menu-list .rsv-area .link {
	display: block;
	width: 360px;
	background: #B2975B;
	font-size: 1.5rem;
	font-weight: bold;
	color: #FFF;
    text-align: center;
    border-radius: 10px;
    padding: 20px 0;
    margin: 0 auto;
	margin-top: 20px;
	line-height: 1;
}
.menu-list .rsv-area .link span {
	display: block;
    font-size: 14px;
    margin-bottom: 10px;
}
.global-nav li {
	width: 100%;
	margin-bottom: 20px;
}
.global-nav li a {
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	/*border-left: solid 1px #643E1C;*/
	padding: 5px 0;
	/*padding-left: 20px;*/
}
.global-nav li span {
	display: block;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	font-size: 9px;
	color: #B2975B;
	margin-bottom: 5px;
}
.menu-list .menu-area {
	flex: 1;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 30px 30px 30px;
}
.menu-list .menu-area .logo-area {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}
.menu-list .menu-area .sns-lins {justify-content: center;}
.menu-list .menu-area .btn-sns {
	color: #5F3C1E;
	border: solid 1px #5F3C1E;
	margin: 0 5px;
}
/***ロゴ***/
.menu-list .logo .pic {
	max-width: 200px;
}


/* ----------------------------------------------------------------------
 * footer
-----------------------------------------------------------------------*/
.footer {
	/*background: #ECECEC;*/
	/*padding: 50px 10% 10px 10%;*/
	padding: 0 10% 10px 10%;
	margin-top: 50px;
}
/***アクセス/クリニック概要***/
.ftr-info {
	display: flex;
	line-height: 1.5;
}
/**アクセス**/
.ftr-info  .access-map {
	width: 50%;
    background: #FFF;
    padding: 30px;
    border-radius: 0 50px 0 0;
	box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
}
.ftr-info .wlk-time {
	display: flex;
	align-items: center;
	letter-spacing: 0;
	margin-bottom: 5px;
}
.ftr-info .wlk-time .station {
	display: flex;
	align-items: center;
}
.ftr-info .wlk-time .st {
	display: flex;
	align-items: center;
}
.ftr-info .wlk-time .st:before {
	content: "\f239";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	display: block;
	width: 30px;
	height: 30px;
	font-size: 18px;
	color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #5F3C1E;
	border-radius: 5px;
	margin-right: 5px;
}
.ftr-info .wlk-time:last-of-type {margin-bottom: 0;}
.ftr-info .access .st,
.ftr-info .access .time {
	font-size: 18px;
	font-weight: bold;
	color: #5F3C1E;
}
.ftr-info .access .st {margin-right: 5px;}
.ftr-info .access .time .tm {
	display: inline-block;
	border-bottom: solid 1px #5F3C1E;
	margin-left: 5px;
}
.ftr-info .access .min {
	font-size: 23px;
	margin: 0 3px;
}
.ftr-info .map iframe {
	width: 100%;
	border-radius: 15px;
}
.ftr-info .info {
	flex: 1;
	text-align: center;
}
.ftr-info .info .info-inner {
	/*text-align: left;*/
	display: inline-block;
	position: sticky;
	top: 50px;
}
/**クリニック概要**/
.ftr-info .logo {margin-bottom: 40px;/*60px;*/}
.ftr-info .logo .pic {
	max-width: 230px;
	margin-top: 20px;
	margin: 20px auto 0 auto;
}
.ftr-info .clinic-name {font-size: 18px;}
.ftr-info .clinic-data .block {margin-bottom: 10px;}
/**SNSリンク**/
.sns-lins {
	display: flex;
	justify-content: center;
}
.sns-lins .btn-sns {
	margin-right: 10px;
}
/***copyright***/
.copyright {
	text-align: center;
	margin-top: 50px;
	font-size: 12px;
}


/* ----------------------------------------------------------------------
 * パンくずリスト
-----------------------------------------------------------------------*/
ul.breadcrumb {
	display: flex;
	list-style: none;
	font-size: 12px;
	color: #888;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
}
ul.breadcrumb li {margin-right: 10px;}
ul.breadcrumb li:after {
	content: ">";
	margin-left: 10px;
}
ul.breadcrumb li:last-child:after { display: none; }


/* ----------------------------------------------------------------------
 * SNSリンクボタン
-----------------------------------------------------------------------*/
.btn-sns {
	width: 50px;
	height: 50px;
	font-size: 30px;
	color: #5F3C1E;
	/*color: #B2975B;*/
	border: solid 1px #5F3C1E;
	/*border: solid 1px #B2975B;*/
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn-sns.onlabel {
	position: relative;
}
.btn-sns.onlabel .icon {
	width: calc(24px *1.1);
    height: calc(31px *1.1);
	position: absolute;
	top: 50.5%;
	left: 50.5%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}
.btn-sns.onlabel .icon.dr {
	background: url(./svg/insta-dr.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.btn-sns.onlabel .icon.mjc {
	background: url(./svg/insta-mjc.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}


/* ----------------------------------------------------------------------
 * スクロール追従ボタン
-----------------------------------------------------------------------*/
.fixd-btns {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
}
.fixd-btns .btn {
	display: block;
	width: 180px;
	padding: 10px; 0;
	/*background: #B2975B;*/
	background: #4A6D7C;
	color: #FFF;
	/*writing-mode: vertical-rl;*/
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 1px;
}
.fixd-btns .btn i {
	font-size: 30px;
	margin-right: 5px;
}
.fixd-btns .label {
	font-size: 20px;
}
.fixd-btns .label span {
	display: block;
	font-size: 10px;
	margin-top: 5px;
}


/* ----------------------------------------------------------------------
 * Layout
-----------------------------------------------------------------------*/
.section {margin-top: 50px;}
.section:first-child{margin-top: 0;}
.container {padding: 0 10%;}
.container .inner,
.footer .inner {
	padding: 0 20px;
	padding-top: 30px;
}
.container.bg-flwidth .inner {padding: 50px 0;}
.inner-block {margin-top: 30px;}


/* ----------------------------------------------------------------------
 * 見出し
-----------------------------------------------------------------------*/
.ttl-topcontent {
	font-size: 2.5em;
	font-weight: 400;
	line-height: 1;
}
.ttl-topcontent span {
	display: block;
	font-size: 18px;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	color: #B2975B;
	font-weight: bold;
	margin-left: 4px;
	margin-bottom: 10px;
}


/* ----------------------------------------------------------------------
 * アコーディオン
-----------------------------------------------------------------------*/
.acd .label {
	background: #CCC;
	cursor: pointer;
	position: relative;
	padding: 20px;
}
.acd .contents {
  display: none;
}
.acd .label:before{/* 閉じている時 */
	content: "\2b";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.acd .label.active:before{
	content: "\f068";
}


/* ----------------------------------------------------------------------
 * コンセプト
-----------------------------------------------------------------------*/
#top-concept .ttl {
	height: 300px;
	/*font-size: 2.8rem;*/
	font-size: 1.5rem;
	line-height: 1.7;
	letter-spacing: 5px;
	font-weight: 500;
	color: #643E1C;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 10%;
}
#top-concept .ttl .sub {
	display: block;
	font-size: 1.1rem;
	font-weight: normal;
	color: initial;
	line-height: 1.8;
	margin-top: 5px;
	margin-left: 3px;
}
#top-concept .contents {
	width: 100%;
	height: 50%;
	min-height: 400px;
	background: url(http://mjc-sapporo.com/wp-content/uploads/2025/06/img-top.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
}
#top-concept {/*padding-bottom: 100px;*/}
#top-concept .contents .text {
	width: 45%;
	background: rgba(255,255,255,0.95);
	color: #000;
	padding: 30px;
	position: absolute;
	left: 10%;
	/*top: 100px;*/
	top: 50%;
}


/* ----------------------------------------------------------------------
 * ご挨拶
-----------------------------------------------------------------------*/
.flex-prof {display: flex;}
.flex-prof .pic {
	flex: 1;
	margin-right: 5%;
}
.flex-prof .pic img {border-radius: 20px;}
.dr-data {width: 50%;}
/***氏名***/
.dr-name {line-height: 1.5;}
.dr-name .posision {
	font-weight: bold;
	color: #5F3C1E;
}
.dr-name .name {
	font-size: 2.5em;
	font-weight: bold;
}
.dr-name .kana {
	font-size: initial;
	font-weight: initial;
	color: #666;
	margin-left: 10px;
}
/***経歴***/
.dr-data .career {
	list-style: none;
	font-size: 14px;
	line-height: 1.5;
	margin-top: 20px;
}
.dr-data .career li {
	display: flex;
	margin-bottom: 10px;
}
.dr-data .career .year {
	width: 60px;
	color: #5F3C1E;
	font-weight: bold;
	border-right: solid 1px #5F3C1E;
	margin-right: 10px;
}
.dr-data .career .text {flex: 1;}


/* ----------------------------------------------------------------------
 * 症例
-----------------------------------------------------------------------*/
#top-case.section {
	background: #FFF;
}
.container-case {padding-left: 10%;}
.container-case .inner {padding: 50px 0;}
#top-case .flex-case {
	display: flex;
	align-items: center;
}
#top-case .ttl-case {width: 15%;}
/***swiper***/
.swiper-case {
	flex: 1;
	overflow: hidden;
	padding-right: 5%;
}
.swiper-case a {
	display: block;
	width: 100%;
	height: auto;
}
.swiper-case img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}
/***ComingSoon***/
#top-case .case-comingsoon {
	width: 25%;
	height: auto;
}



/* ----------------------------------------------------------------------
 * ご予約お問い合わせ
-----------------------------------------------------------------------*/
#top-contact.section {
	background: #ECECEC;
	margin-top: 0;
}
.flex-cntct {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-cntct .ttl {
	width: 50%;
	position: relative;
}
.flex-cntct .ttl:before {
	content: "";
	display: block;
	width: calc(1996px * 0.22);
	height: calc(231px * 0.22);
	background: url(http://mjc-sapporo.com/wp-content/uploads/2025/06/bg-rsv.png);
	background-size: contain;
	background-repeat: no-repeat;
	/*position: absolute;
	top: 0;
	left: 0;
	z-index: 0;*/
}
.ttl-cntct {
	font-size: 2.3rem;
	color: #5F3C1E;
	padding-left: 20px;
	margin-top: -15px;
	position: relative;
	z-index: 1;
}
.ttl-cntct:before {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 15px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.cntct-link {
	text-align: center;
	z-index: 3;
}
.cntct-link .text {
	line-height: 1.5;
	font-size: 18px;
	margin-bottom: 20px;
}
/***予約リンクボタン***/
.btn-contact {
	display: block;
	width: 360px;
	line-height: 1;
	background: #5F3C1E;
	color: #FFF;
	font-size: 1.5rem;
	text-align: center;
	border-radius: 10px;
	padding: 20px 0;
	margin: 0 auto;
}
.btn-contact .sub {
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
}



/* ----------------------------------------------------------------------
 * 施術一覧
-----------------------------------------------------------------------*/
/***部位マップ***/
.top-fecemap {
	height: 500px;
	max-width: 2000px;
	background: url(http://mjc-sapporo.com/wp-content/uploads/2025/06/bg-face-map.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
	margin-top: 30px;
	position: relative;
}
.fm-link {
	list-style: none;
	position: absolute;
	left: 700px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
@media screen and (max-width: 1600px) {
	.top-fecemap {
		background-position: -200px;
	}
}
/***アコーディオン***/
.acd-treatment {margin-bottom: 20px;}
.acd-treatment:last-of-type {margin-bottom: 0;}
.acd-treatment .label {
	background: initial;
	display: flex;
	align-items: center;
	border-bottom: solid 1px #5F3C1E;
	padding: 0;
	padding-bottom: 5px;
}
.acd-treatment .label .main {
	width: 300px;
	background: #5F3C1E;
	color: #FFF;
	font-size: 1.8rem;
	text-align: center;
	border-radius: 10px;
	margin-right: 15px;
}
.acd-treatment .label:before {
	content: "\f0d7";
	font-size: 33px;
	color: #5F3C1E;
	width: 55px;
    height: 55px;
	background: #ECECEC;
	border-radius: 99px;
	display: flex;
	align-items: center;
	justify-content: center;
	right: 0;
}
.acd-treatment .label.active:before {content: "\f0d8";}
.acd-treatment .contents {
	background: rgba(255,255,255,0.7);
	padding: 20px;
	margin-top: 5px;
}
.acd-treatment .treatment-data {
	display: flex;
	margin-bottom: 15px;
}
.acd-treatment .treatment-data:last-of-type {margin-bottom: 0;}
.acd-treatment .treatment-data .ttl {
	width: 155px;
	display: flex;
	align-items: center;
	border-right: solid 1px #AAA;
	padding-left: 15px;
	margin-right: 20px;
	position: relative;
}
.acd-treatment .treatment-data .ttl:before {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 8px;
	color: #B2975B;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.acd-treatment .treatment-data .text {
	flex: 1;
}
/***その他の施術***/
#top-treatment .other-trtmnt ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
}
#top-treatment .other-trtmnt li {
	width: calc( (100% - 40px) / 4);
	color: #643E1C;
	border: solid 1px #643E1C;
	border-radius: 5px 0 0 0;
	margin: 5px;
}
#top-treatment .other-trtmnt li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 1.2rem;
	line-height: 1.5;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px;
	padding-right: 35px;
	position: relative;
}
#top-treatment .other-trtmnt li a:after {
	content: "\f0da";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #643E1C;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
#top-treatment .other-trtmnt .link-area {
	border-top: dotted 1px #666;
	text-align: right;
	padding-top: 20px;
	margin-top: 20px;
}
#top-treatment .other-trtmnt .link-area a {
	background: #643E1C;
	color: #FFF;
	padding: 5px 20px;
}
#top-treatment .other-trtmnt .link-area a:after {
	content: "\f0da";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	margin-left: 10px;
}


/* ----------------------------------------------------------------------
 * 料金一覧
-----------------------------------------------------------------------*/
/***リンク***/
.price-toc {
	display: flex;
	flex-wrap: wrap;
}
.price-toc a {
	display: block;
	width: calc( (100% - 40px) / 4);
	font-size: 1.5rem;
	background: #FFF;
	color: #5F3C1E;
	border: solid 1px #5F3C1E;
	border-radius: 5px;
	text-align: center;
	margin: 5px
}
/***注釈***/
.memo-price {font-size: 1.1rem;}
.memo-price .kome {padding-left: 20px;}
/***料金表***/
.wrap-pricelists {
	background: rgba(255,255,255,0.7);
	padding: 30px;
}
.price-list {margin-bottom: 30px;}
.price-list:last-of-type {margin-bottom: 0;}
.ttl-price {
	font-size: 1.8rem;
	font-weight: 500;
	border-bottom: solid 1px #5F3C1E;
	padding-bottom: 10px;
	padding-left: 25px;
	position: relative;
}
.ttl-price:before {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
	color: #B2975B;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.price-list .wrap-jump {
	text-align: right;
	margin-top: 15px;
}
.price-list .jump {
	display: inline-block;
	font-size: 14px;
	color: #5F3C1E;
	border: solid 1px #5F3C1E;
	border-radius: 5px;
	padding: 5px 15px;
}
.price-list .jump:after {
	content: "\f0d8";
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	margin-left: 5px;
}
/***テーブル：リセット***/
table.tbl-pricelist {
	font-family: inherit;
	color: inherit;
}
.tbl-pricelist th,
.tbl-pricelist td {border: initial;}
.tbl-pricelist th {background: initial;}
/***テーブル***/
.tbl-pricelist {margin-top: 5px;}
.tbl-pricelist th,
.tbl-pricelist td {
	font-size: 18px;
	border-bottom: solid 1px #AAA;
	padding: 15px 5px;
}
.tbl-pricelist th {width: 50%;}


/* ----------------------------------------------------------------------
 * 404
-----------------------------------------------------------------------*/
.nf-404 {
	width: 45%;
	min-width: 280px;
	padding: 50px 0;
	margin: 0 auto;
}


/* ----------------------------------------------------------------------
 * アニメーション
-----------------------------------------------------------------------*/
.anime-p1 {opacity: 0;}
.anime-p1.on {
	transition: 1.5s;
	opacity: 1;
}
.pages .anime-p1 {opacity: initial;}


/* ----------------------------------------------------------------------
 * Coming soon
----------------------------------------------------------------------*/
.comingsoon {position: relative;}
.comingsoon:after {
	content: "Coming soon...";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: inherit;
	border-radius: inherit;
	opacity: 0.8;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
}
a.comingsoon:hover {opacity: initial;}


/* ----------------------------------------------------------------------
 * 通常ページ
----------------------------------------------------------------------*/
.pages header {position: absolute;}
/***ページタイトル***/
.page-ttl-area {
	height: 250px;
	background: rgba(255,255,255,0.5);
	display: flex;
	align-items: center;
	padding: 0 10%;
	padding-top: 70px;
}
.page-ttl {font-size: 2.5rem;}
.page-ttl .sub {
	font-size: 1.3rem;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	font-weight: normal;
	color: #5F3C1E;
}
/***メインエリア***/
.pages main {
	padding: 0 10%;
	margin-top: 25px;
}
@media screen and (max-width: 834px) {
	.page-ttl {font-size: 2rem;}
	.page-ttl .sub {font-size: 1rem;}
}
@media screen and (max-width: 500px) {
	.page-ttl-area {height: 200px;}
}


/* ----------------------------------------------------------------------
 * 通常ページ：サイドバー有（施術）
----------------------------------------------------------------------*/
.flexbox-sidenav {
	display: flex;
	margin-top: 50px;
}
.flexbox-sidenav .main-content {flex: 1;}
/***s施術一覧****/
#l-sidenavi {
	width: 25%;
	border-right: solid 1px #AAA;
	padding-right: 20px;
	margin-right: 50px;
}
#l-sidenavi ul {
	list-style: none;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
}
#l-sidenavi li {margin-bottom: 5px;}
#l-sidenavi li a {
	padding-left: 15px;
	position: relative;
}
#l-sidenavi li a:before {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #5F3C1E;
	font-size: 8px;
	position: absolute;
	left: 0;
	top: 5px;
}
#l-sidenavi .ttl {
	font-size: 1.3em;
	font-weight: bold;
	color: #5F3C1E;
	margin-top: 30px;
	margin-bottom: 5px;
}
#l-sidenavi .side_widget:first-of-type .ttl {margin-top: 0;}
#l-sidenavi .ttl:before {
	content: "■";
	margin-right: 5px;
}
@media screen and (max-width: 1100px) {
	/***ページタイトル***/
	.page-ttl-area {padding: 70px 20px 0 20px;}
	/***サイドバー非表示***/
	#l-sidenavi {display: none;}
	.main-content {width: 100%;}
	/***コンテンツ余白調整***/
	.pages main {padding: 0 20px;}
}
@media screen and (max-width: 834px) {
	.flexbox-sidenav {margin-top: 40px;}
}


/* ----------------------------------------------------------------------
 * addQuickTag
----------------------------------------------------------------------*/
/***見出し(大)：一覧画面***/
.aqt-ttl-h3 {
	font-size: 2rem;
	padding-bottom: 10px;
	margin-top: 50px;
	margin-bottom: 30px;
	position: relative;
}
.aqt-ttl-h3:before {
	content: "";
	width: 100px;
	height: 5px;
	background: #5F3C1E;
	position: absolute;
	bottom: 0;
	left: 0;
}
/***見出し(大)***/
.aqt-ttl-normal-h3 {
	font-size: 2rem;
	color: #5F3C1E;
	border-left: solid 7px #5F3C1E;
	padding-left: 10px;
	margin-top: 50px;
	margin-bottom: 30px;
}
.aqt-ttl-normal-h3:first-child {margin-top: 0;}
/***見出し(中)***/
.aqt-ttl-h4 {
	font-size: 1.5rem;
	color: #5F3C1E;
	padding-left: 30px;
	margin-top: 30px;
	margin-bottom: 15px;
	position: relative;
}
.aqt-ttl-h4:before {
	content: "―";
	position: absolute;
	left: 0;
}
/***見出し(小)***/
.aqt-ttl-h5 {
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	font-size: 1.2rem;
	color: #5F3C1E;
	margin-top: 30px;
	margin-bottom: 15px;
}
/***ボタン：リンク***/
.aqt-ttl-link {
	display: inline-block;
	width: calc( (100% - 40px) / 4);
	font-size: 1.5rem;
	background: #5F3C1E;
	color: #FFF;
	text-align: center;
	border-radius: 7px;
	margin: 5px;
}
/***料金表関連***/
/*目次*/
.aqt-pricetoc {
	display: flex;
	flex-wrap: wrap;
}
.aqt-pricetoc a {
	display: block;
	width: calc( (100% - 40px) / 4);
	font-size: 1.5rem;
	background: #FFF;
	color: #5F3C1E;
	border: solid 1px #5F3C1E;
	border-radius: 5px;
	text-align: center;
	margin: 5px
}
/*料金表*/
.aqt-price-list {
	background: rgba(255,255,255,0.7);
	padding: 30px;
	margin-top: 30px;
}
.aqt-price-list:last-of-type {margin-bottom: 0;}
.ttl-price {
	font-size: 1.8rem;
	font-weight: 500;
	border-bottom: solid 1px #5F3C1E;
	padding-bottom: 10px;
	padding-left: 25px;
	position: relative;
}
.ttl-price:before {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 10px;
	color: #B2975B;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.aqt-price-list .wrap-jump {
	text-align: right;
	margin-top: 15px;
}
.aqt-price-list .jump {
	display: inline-block;
	font-size: 14px;
	color: #5F3C1E;
	border: solid 1px #5F3C1E;
	border-radius: 5px;
	padding: 5px 15px;
}
.aqt-price-list .jump:after {
	content: "\f0d8";
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
	margin-left: 5px;
}
/*テーブル：リセット*/
table.aqt-tbl-pricelist {
	font-family: inherit;
	color: inherit;
}
.aqt-tbl-pricelist th,
.aqt-tbl-pricelist td {border: initial;}
.aqt-tbl-pricelist th {background: initial;}
/*テーブル*/
.aqt-tbl-pricelist {margin-top: 5px;}
.aqt-tbl-pricelist th,
.aqt-tbl-pricelist td {
	font-size: 18px;
	border-bottom: solid 1px #AAA;
	padding: 15px 5px;
}
.aqt-tbl-pricelist th {
	width: 50%;
	text-align: left;
}
.aqt-tbl-pricelist td {text-align: center;}
/***リスト***/
.aqt-points-list {
	background: rgba(255,255,255,0.65);
    padding: 20px;
	margin: 10px 0;
}
.aqt-points-list .ttl {
	/*width: 95px;*/
	display: inline-block;
	background: #5F3C1E;
	color: #FFF;
	font-weight: bold;
	text-align: center;
	padding: 0 10px;
	margin-bottom: 15px;
}
.aqt-points-list ul {
	list-style: none;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
    font-weight: bold;
	padding-left: 0;
}
.aqt-points-list li {
    line-height: 1.5;
    color: #666;
    padding-left: 30px;
    margin: 0;
	margin-bottom: 15px;
	position: relative;
}
.aqt-points-list li:last-of-type {margin-bottom: 0;}
.aqt-points-list li:before {
	content: "\f00c";
	font-size: 15px;
	top: 1px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #5F3C1E;
    position: absolute;
	top: 1px;
    left: 10px;
}
/***リスト***/
.aqt-list {
	background: rgba(255,255,255,0.65);
    padding: 25px 20px;
	margin: 10px 0;
}
.aqt-list ul {
	list-style: none;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	line-height: 1.5;
}
.aqt-list li {
	color: #666;
	border-bottom: dotted 1px #5F3C1E;
	padding: 10px 0;
	padding-left: 15px;
	margin-bottom: 10px;
	position: relative;
}
.aqt-list li:last-of-type {margin-bottom: 0;} 
.aqt-list li:before {
	content: "\f111";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #5F3C1E;
    font-size: 8px;
    position: absolute;
    left: 0;
    top: 16px;
}
/***リンク（複数）***/
.aqt-link-btns {
	background: rgba(255,255,255,0.65);
	padding: 20px;
	margin: 10px 0;
}
.aqt-link-btns .ttl {
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
.aqt-btn_2clm {
	display: flex;
	flex-wrap: wrap;
}
.link_2clm.center { justify-content: center; }
.aqt-btn_2clm a.link_btn,
.aqt-btn_single a.link_btn {
	width: calc( ( 100% - 20px ) / 2 );
	background: #5F3C1E;
	color: #FFF;
	font-weight: bold;
    border-radius: 5px;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 30px 5px 20px;
    margin: 5px;
	position: relative;
}
.aqt-btn_2clm a.link_btn:after,
.aqt-btn_single a.link_btn:after {
	content: "\f0da";
    font-family: 'Font Awesome 5 Free';
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
/***リンク（1つのみ）***/
.aqt-btn_single {
	display: flex;
	justify-content: center;
}
/***背景付きテキスト***/
.apt-info {
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	font-weight: bold;
	color: #666;
	background: rgba(255,255,255,0.65);
	padding: 20px;
	margin: 10px 0;
}
/***リスト-番号(番号変更可)***/
.aqt-free-list {
	background: rgba(255,255,255,0.65);
    padding: 25px 20px;
	margin: 10px 0;
}
.aqt-free-list ul {
	list-style: none;
	font-family: "Noto Sans JP", "Segoe UI", Helvetica, 游ゴシック体, YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", メイリオ, Meiryo;
	line-height: 1.5;
}
.aqt-free-list li {
	color: #666;
	border-bottom: dotted 1px #5F3C1E;
	padding: 10px 0;
	padding-left: 15px;
	margin-bottom: 10px;
	position: relative;
}
.aqt-free-list li:last-of-type {margin-bottom: 0;} 
.aqt-free-list li .head {
	display: inline-block;
	color: #5F3C1E;
	margin-right: 5px;
}
/***エディタ調整用***/
body#tinymce {
	box-sizing: border-box;
	overflow-wrap: break-word;
	caret-color: red;
	padding: 20px !important;
	margin: 0;
}
@media screen and (max-width: 834px) {
	/***見出し***/
	.aqt-ttl-h3 {
		font-size: 1.7rem;
		margin-top: 40px;
	}
	/***見出し(施術)***/
	.aqt-ttl-normal-h3 {
		font-size: 1.5rem;
		margin-top: 40px;
	}
	.aqt-ttl-h4 {font-size: 1.3rem}
	/***リンク***/
	.aqt-ttl-link {
		width: calc((100% - 20px) / 2);
		font-size: 1.2rem;
	}
}
@media screen and (max-width: 500px) {
	/***リンク***/
	.aqt-btn_2clm,
	.aqt-btn_single {display: block;}
	.aqt-btn_2clm a.link_btn,
	.aqt-btn_single a.link_btn {
		width: 100%;
		margin-bottom: 10px;
	}
	.aqt-btn_2clm a.link_btn:last-of-type,
	.aqt-btn_single a.link_btn:last-of-type {margin-bottom: 0;}
	/***料金表***/
	.aqt-price-list {padding: 15px;}
	.aqt-tbl-pricelist th,
	.aqt-tbl-pricelist td {
		font-size: 0.9rem;
        padding: 10px 2px;
	}
	.aqt-price-list .jump {
		font-size: 13px;
        padding: 0px 15px;
	}
}


/* ----------------------------------------------------------------------
 * 改行
-----------------------------------------------------------------------*/
.br-500 {display: none;}


/* ----------------------------------------------------------------------
 * *ブレイクポイント
-----------------------------------------------------------------------*/
@media screen and (max-width: 1100px) {
	body {font-size: 14px;}
	/***Layout***/
	.container {padding: 0 20px;}
	/***footer***/
	.footer {padding: 0 20px 10px 20px;}
	/***コンセプト***/
	#top-concept .ttl {padding: 0 20px;}
	#top-concept .contents .text {left: 20px;}
}
@media screen and (max-width: 834px){
	body:after {
		background: url(http://mjc-sapporo.com/wp-content/uploads/2025/06/bg-marble.jpg);
		background-size: cover;
		background-position: center;
	}
	.container .inner,
	.footer .inner {
		padding: 0;
		padding-top: 30px;
	}
	.footer {margin-bottom: 53px;}
	/***スクロール追従ボタン***/
	.fixd-btns {
		width: 100%;
		left: 0;
		bottom: 0;
	}
	.fixd-btns .btn {
		width: 50%;
		margin-left: 0;
	}
	.fixd-btns .btn {border: solid 1px #FFF;}
	.fixd-btns .btn-access {border-left: none;}
	.fixd-btns .label {font-size: 16px;}
	.fixd-btns .btn i {font-size: 28px;}
	/***コンセプト***/
	#top-concept .ttl {
		letter-spacing: 3px;
		padding: 0 20px;
	}
	#top-concept .contets {/*margin-bottom: 65%;*/}
	#top-concept .contents .text {
		width: calc( 100% - 40px);
		/*top: 65%;*/
		top: 95%;
		left: 20px;
	}
	/***ご挨拶***/
	.flex-prof {display: block;}
	.flex-prof .pic {
		margin: 0;
		position: relative;
	}
	.flex-prof .pic:after {
		content: "";
        display: block;
        width: 100%;
        height: 50%;
        position: absolute;
        bottom: 0;
        left: 0;
        background: linear-gradient(0deg, #FFF 5%, transparent);
        z-index: 1;
	}
	.flex-prof .dr-data {
		width: 100%;
		padding: 0 20px;
		margin-top: -10%;
		position: relative;
		z-index: 1;
	}
	/***症例***/
	.container-case {padding: 0 20px;}
	#top-case .flex-case {display: block;}
	#top-case .case-comingsoon {
		width: 100%;
		height: auto;
		margin: 0 auto;
		margin-top: 20px;
	}
	#top-case .ttl-case {width: auto;}
	.swiper-case {margin-top: 30px;}
	/***ご予約/お問い合わせ***/
	.flex-cntct {display: block;}
	.flex-cntct .ttl {width: 100%;}
	.ttl-cntct:before {display: none;}
	.ttl-cntct {
		text-align: center;
		padding: 0;
		margin-bottom: 30px;
	}
	.flex-cntct .ttl:before {margin: 0 auto;}
	/***施術一覧***/
	.acd-treatment .label {display: block;}
	.acd-treatment .label .sub {display: none;}
	.acd-treatment .label .main {
		width: 100%;
		border-radius: 5px;
		margin-right: 0;
		margin-bottom: 5px;
	}
	.acd-treatment .label:before {
		font-size: 25px;
		width: 39px;
		height: 39px;
		right: 15px;
		top: 30px;
	}
	.acd-treatment .treatment-data {display: block;}
	.acd-treatment .treatment-data .ttl {
		width: 100%;
		border-right: none;
		border-bottom: solid 1px #AAA;
		padding-bottom: 5px;
        margin-bottom: 5px;
	}
	#top-treatment .other-trtmnt li {width: calc((100% - 20px) / 2);}
	/***料金一覧***/
	.price-toc a {
		width: calc((100% - 20px) / 2);
		font-size: 1.2rem;
	}
	.tbl-pricelist th {width: 70%;}
	/***footer***/
	.ftr-info {display: block;}
	.ftr-info .access-map {
		width: 100%;
		margin-top: 50px;
	}
}
@media screen and (max-width: 768px){
	/***ハンバーガーメニュー***/
	.menu-list .left-block {display: none;}
	.menu-list .menu-area {width: 100%;}
}
@media screen and (max-width: 500px){
	/***改行***/
	.br-500 {display: block;}
	/***見出し***/
	.ttl-topcontent {font-size: 2.1rem;}
	/***ハンバーガーメニュー***/
	.global-nav li {margin-bottom: 10px;}
	/***コンセプト***/
	#top-concept .ttl {
		/*font-size: 2.1rem;
		line-height: 1.3;*/
		font-size: 1.1rem;
	}
	#top-concept .ttl .sub {
		font-size: 1rem;
		line-height: 1.5;
		margin-left: 0;
		margin-top: 20px;
	}
	/***ご挨拶***/ 
	.flex-prof .dr-data {padding: 0;}
	.dr-name .name {font-size: 2.3rem;}
	/***ご予約/お問い合わせ***/
	.ttl-cntct {font-size: 2rem;}
	.flex-cntct .ttl:before {
		width: calc(1996px * 0.15);
		height: calc(231px * 0.15);
		max-width: 300px;
	}
	.btn-contact {width: 100%;}
	/***施術一覧***/
	.acd-treatment .label .main {font-size: 1.3rem;}
	.acd-treatment .label:before {
		font-size: 20px;
        width: 25px;
        height: 25px;
        right: 10px;
        top: 21px;
	}
	#top-treatment .other-trtmnt li {
		width: 100%;
		margin: 5px 0;
	}
	#top-treatment .other-trtmnt .link-area a {padding: 5px 15px;}
	/***料金一覧***/
	.wrap-pricelists {padding: 15px;}
	.ttl-price {font-size: 1.3rem;}
	.tbl-pricelist th,
	.tbl-pricelist td {
		font-size: 0.75rem;
		padding: 10px 2px;
	}
	.tbl-pricelist td {text-align: center;}
	.price-list .jump {
		font-size: 13px;
		padding: 0px 15px;
	}
	/***footer***/
	.ftr-info .logo .pic {max-width: 190px;}
	.ftr-info .access-map {padding: 20px;}
	.footer .inner {padding-top: 20px;}
	
	.ftr-info .access .st,
	.ftr-info .access .time {font-size: 16px;}
	.ftr-info .access .min {font-size: 20px;}
	.ftr-info .wlk-time {display: block;}
	.ftr-info .wlk-time .time {margin-left: 35px;}
	.ftr-info .wlk-time {margin-bottom: 15px;}
	.ftr-info .wlk-time:before {
		width: 25px;
		height: 25px;
		font-size: 14px;
	}
}