@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name:		pc.scss
Note:			インデックス用SCSSファイル


New Creation:	2018/03/13.
Last Change:	2018/03/20.


Created By		Kosuke Inoue

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

0.	共通使用変数定義
1.	ブラウザデフォルトスタイルリセット
2.	HTMLタグ
3.	container
4.	共通部分
5.	header
6.	content
7.	main
9.	footer
10.	original

------------------------------------------------------------------------
----------------------------------------------------------------------*/
@font-face {
  src: url(fonts/YakuHanJP/YakuHanJP-Regular.woff2) format("woff2"), url(fonts/YakuHanJP/YakuHanJP-Regular.woff) format("woff"), url(fonts/YakuHanJP/YakuHanJP-Regular.eot);
  font-family: 'YakuHanJP';
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url(fonts/YakuHanJP/YakuHanJP-Bold.woff2) format("woff2"), url(fonts/YakuHanJP/YakuHanJP-Bold.woff) format("woff"), url(fonts/YakuHanJP/YakuHanJP-Bold.eot);
  font-family: 'YakuHanJP';
  font-weight: 700;
  font-style: normal;
}
/*----------------------------------------------------------------------
1.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
dl,
form,
fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

html {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font: 100%;
  font-size: inherit;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

caption,
th {
  text-align: left;
  font-weight: normal;
}

th,
td {
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

iframe {
  border: 0;
}

header,
footer,
article,
section,
aside,
nav,
figure,
figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

input[type="search"] {
  box-sizing: content-box;
  -webkit-appearance: none;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*----------------------------------------------------------------------
2.	HTMLタグ
----------------------------------------------------------------------*/
html {
  color: #505767;
}

body {
  font-feature-settings: 'pkna' 1;
}

a {
  color: #6d9dcf;
}

object {
  -moz-transition: opacity 0.1s linear;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
object.is-inactive {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
object.is-active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

/*----------------------------------------------------------------------
3.	container
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
4.	共通部分
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
5.	#header
----------------------------------------------------------------------*/
.h-navi {
  height: 59px;
  background: url(../img/navi_bg.gif) left top repeat-x;
}
.h-navi-list {
  *zoom: 1;
  margin: 0 auto;
  width: 1001px;
}
.h-navi-list:after {
  content: "";
  display: table;
  clear: both;
}
.h-navi-item {
  float: left;
}
.h-navi-item.is-active a,
.h-navi-item.is-active a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.h-navi a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.h-navi a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.h-navi.headroom--not-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
.h-navi .case.is-active {
  background: url(../img/navi_case_a.png) left top no-repeat;
}
.h-navi .mechanism.is-active {
  background: url(../img/navi_mechanism_a.png) left top no-repeat;
}
.h-navi .strength.is-active {
  background: url(../img/navi_strength_a.png) left top no-repeat;
}
.h-navi .reason.is-active {
  background: url(../img/navi_reason_a.png) left top no-repeat;
}
.h-navi .voice.is-active {
  background: url(../img/navi_voice_a.png) left top no-repeat;
}
.h-navi .price.is-active {
  background: url(../img/navi_price_a.png) left top no-repeat;
}
.h-navi .qa.is-active {
  background: url(../img/navi_qa_a.png) left top no-repeat;
}
.h-navi .clinic.is-active {
  background: url(../img/navi_clinic_a.png) left top no-repeat;
}

.h-text {
  text-align: right;
}
.h-text .inner-text {
  display: none;
}

.h-clinic-logo {
  width: 100%;
  height: 100%;
}
.h-clinic-logo-wrapper {
  display: inline-block;
  margin-right: 200px;
}

.h-mainvisual {
  position: relative;
  width: 100%;
  height: 595px;
  background-image: url(../img/header_mainvisual_bg.jpg);
  background-repeat: repeat-x;
}
.h-mainvisual-pic img {
  position: absolute;
  top: 0;
  right: 50%;
  z-index: 1;
  margin-right: -749px;
}

.h-cv {
  position: absolute;
  bottom: 38px;
  left: 50%;
  z-index: 1;
  width: 420px;
}
.h-cv-limit {
  position: relative;
  margin-bottom: 10px;
  width: 403px;
  height: 37px;
  background: url(../img/header_cv_limit_bg.png) left top no-repeat;
}
.h-cv-limit-text {
  position: absolute;
  top: -10px;
  right: 41px;
  width: 50px;
  text-align: center;
  line-height: 1.3448275862;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 42px;
  font-weight: bold;
  color: #ea3480;
}
.h-cv-button a {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 6px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 2px 6px;
  box-shadow: rgba(0, 0, 0, 0.3) 0 2px 6px;
}
.h-cv-button a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.h-cv-button img {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.h-cv-caution {
  display: block;
  margin-top: 5px;
  text-align: right;
}

/*----------------------------------------------------------------------
6.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
7.	#main
----------------------------------------------------------------------*/
.m-contents-title {
  text-align: center;
}

.m-lead-wrapper {
  position: relative;
  z-index: 2;
  height: 464px;
  background: url(../img/lead_pic_bg.gif) left top repeat-x;
  text-align: center;
}
.m-lead-pic {
  position: relative;
  margin: 0 auto;
  width: 1001px;
}
.m-lead-pic img {
  position: absolute;
  top: 0;
  left: -230px;
}
.m-lead-text {
  z-index: 0;
  margin-top: -60px;
  background: url(../img/lead_text_bg.png) center top no-repeat;
  text-align: center;
}

/*----------------------------------------------------------------------
　症例
----------------------------------------------------------------------*/
.m-case {
  background: url(../img/case_bg.png) center top no-repeat, url(../img/case_bg2.png) left top repeat-x;
}
.m-case > * {
  position: relative;
  z-index: 2;
}
.m-case-wrapper {
  margin: 0 auto;
  padding: 160px 0 0;
  width: 1050px;
  height: 1101px;
}
.m-case-text {
  position: absolute;
  top: -40px;
  left: 440px;
  text-align: center;
}
.m-case-pic {
  position: relative;
  float: left;
  margin: 8px 0 10px;
  width: 521px;
  height: 232px;
}
.m-case-pic:nth-child(even) {
  margin-left: 8px;
}
.m-case-pic:nth-child(1), .m-case-pic:nth-child(2) {
  height: 287px;
}
.m-case-pic img {
  position: absolute;
  bottom: 0;
  left: 0;
}
.m-case .note {
  clear: both;
  padding-top: 25px;
  line-height: 1.5;
  font-size: 8px;
  color: #515868;
}
.m-case .note em {
  font-weight: bold;
}
.m-case .m-anchor {
  clear: both;
  padding-top: 50px;
}

/*----------------------------------------------------------------------
　原因と解決法
----------------------------------------------------------------------*/
.m-mechanism {
  *zoom: 1;
  clear: both;
  background: url(../img/mechanism_bg.png) center top no-repeat;
}
.m-mechanism:after {
  content: "";
  display: table;
  clear: both;
}
.m-mechanism > * {
  position: relative;
  z-index: 2;
}
.m-mechanism-title {
  margin-bottom: 45px;
  background: url(../img/contents_title_bg2.png) left top repeat-x;
}
.m-mechanism-inner {
  position: relative;
  margin: 0 auto;
  width: 1001px;
  height: 1934px;
}
.m-mechanism .type-list {
  margin-bottom: 72px;
}
.m-mechanism .type-item {
  display: inline-block;
  margin-right: 28px;
}
.m-mechanism .type-item:last-child {
  margin-right: 0;
}
.m-mechanism .treatment {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
  text-align: center;
}
.m-mechanism .treatment-arrow {
  position: absolute;
  top: -110px;
  z-index: -1;
}
.m-mechanism .treatment-arrow.pic1 {
  left: 144px;
}
.m-mechanism .treatment-arrow.pic2 {
  left: 302px;
}
.m-mechanism .treatment-arrow.pic3 {
  left: 561px;
}
.m-mechanism .treatment-arrow.pic4 {
  left: 450px;
}
.m-mechanism .treatment-arrow.pic5 {
  left: 818px;
}
.m-mechanism .treatment-list {
  position: relative;
  margin-bottom: 30px;
  margin-left: -8px;
}
.m-mechanism .treatment-item {
  display: inline-block;
}
.m-mechanism .treatment-item:first-child {
  margin-right: 10px;
}
.m-mechanism .treatment-item-pic {
  position: absolute;
}
.m-mechanism .treatment-item-pic.pic1 {
  top: 182px;
  left: 8px;
}
.m-mechanism .treatment-item-pic.pic2 {
  top: 106px;
  left: 567px;
}
.m-mechanism .fat-reason {
  margin-left: -56px;
}
.m-mechanism .m-anchor {
  position: absolute;
  bottom: 125px;
  left: 296px;
}

/*----------------------------------------------------------------------
　当院のこだわり
----------------------------------------------------------------------*/
.m-strength {
  position: relative;
}
.m-strength > * {
  position: relative;
  z-index: 2;
}
.m-strength-wrapper {
  background: url(../img/strength_bg.png) center top no-repeat;
  background-size: cover;
}
.m-strength-title {
  margin-bottom: 65px;
  background: url(../img/contents_title_bg2.png) left top repeat-x;
}
.m-strength-inner {
  position: relative;
  margin: 0 auto;
  width: 1001px;
  height: 966px;
}
.m-strength-pic {
  position: absolute;
}
.m-strength .pic1 {
  top: 0;
  left: -115px;
}
.m-strength .pic2 {
  top: 110px;
  left: 315px;
}
.m-strength .pic3 {
  top: 220px;
  right: -42px;
}
.m-strength .m-anchor {
  position: absolute;
  bottom: 125px;
  left: 340px;
}
.m-strength.is-fixed::before {
  position: fixed;
  top: 73px;
}

/*----------------------------------------------------------------------
　選ばれる理由
----------------------------------------------------------------------*/
.m-reason {
  position: relative;
  background: url(../img/reason_bg.png) center top no-repeat;
}
.m-reason > * {
  position: relative;
  z-index: 2;
}
.m-reason-title {
  margin-bottom: 80px;
  background: url(../img/contents_title_bg2.png) left top repeat-x;
}
.m-reason-inner {
  position: relative;
  margin: 0 auto;
  width: 1001px;
  height: 1330px;
}
.m-reason-pic {
  position: absolute;
}
.m-reason .pic1 {
  top: 0;
  left: 0;
}
.m-reason .pic2 {
  top: 200px;
  right: 0;
}
.m-reason .pic3 {
  top: 396px;
  left: 0;
}
.m-reason .pic4 {
  top: 625px;
  right: 0;
}
.m-reason .pic5 {
  top: 820px;
  left: 0;
}
.m-reason .m-anchor {
  position: absolute;
  bottom: 125px;
  left: 310px;
}
.m-reason.is-fixed::before {
  position: fixed;
  top: 73px;
}

/*----------------------------------------------------------------------
　体験談
----------------------------------------------------------------------*/
.m-voice {
  position: relative;
  background: url(../img/voice_bg.png) center top 143px no-repeat, url(../img/voice_bg2.png) left top 143px repeat-x;
}
.m-voice > * {
  position: relative;
  z-index: 2;
}
.m-voice-title {
  margin-bottom: 150px;
  background: url(../img/contents_title_bg.gif) left top repeat-x;
}
.m-voice-inner {
  margin: 0 auto;
  padding-bottom: 115px;
  width: 1001px;
}
.m-voice .m-scrollpanel {
  overflow: hidden;
  height: 680px;
}
.m-voice-item {
  position: relative;
  padding: 25px 18px 25px 0;
  min-height: 145px;
  border-bottom: 1px solid #cdcdcd;
}
.m-voice-item:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.3);
}
.m-voice-item > .item-inner {
  position: relative;
  padding-left: 232px;
}
.m-voice-item-title {
  position: relative;
  margin-bottom: 34px;
  font-size: 1.8em;
}
.m-voice-item-title::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -15px;
  left: -47px;
  width: 116px;
  height: 40px;
  background: url(../img/voice_title_bg.png) left top no-repeat;
}
.m-voice-item .age {
  position: absolute;
  top: 15px;
  left: 0;
  z-index: 10;
  margin-top: 126px;
  width: 125px;
}
.m-voice-item .age::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 23px;
  left: 40px;
  width: 136px;
  height: 126px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.m-voice-item .age::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 202px;
  height: 80px;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.m-voice-item-details {
  background: url(../img/voice_details_bg.gif) left bottom;
  text-align: justify;
  line-height: 2.4285714286;
  font-size: 1.4em;
}
.m-voice-item:nth-child(8n + 1) .age::before {
  background-image: url(../img/voice_item_bg1.png);
}
.m-voice-item:nth-child(8n + 2) .age::before {
  background-image: url(../img/voice_item_bg2.png);
}
.m-voice-item:nth-child(8n + 3) .age::before {
  background-image: url(../img/voice_item_bg3.png);
}
.m-voice-item:nth-child(8n + 4) .age::before {
  background-image: url(../img/voice_item_bg4.png);
}
.m-voice-item:nth-child(8n + 5) .age::before {
  background-image: url(../img/voice_item_bg5.png);
}
.m-voice-item:nth-child(8n + 6) .age::before {
  background-image: url(../img/voice_item_bg6.png);
}
.m-voice-item:nth-child(8n + 7) .age::before {
  background-image: url(../img/voice_item_bg7.png);
}
.m-voice-item:nth-child(8n + 8) .age::before {
  background-image: url(../img/voice_item_bg8.png);
}
.m-voice-item .age25::after {
  background-image: url(../img/voice_item_age25.png);
}
.m-voice-item .age34::after {
  background-image: url(../img/voice_item_age34.png);
}
.m-voice-item .age33::after {
  background-image: url(../img/voice_item_age33.png);
}
.m-voice-item .age40::after {
  background-image: url(../img/voice_item_age40.png);
}
.m-voice-item .age30::after {
  background-image: url(../img/voice_item_age30.png);
}
.m-voice-item .age46::after {
  background-image: url(../img/voice_item_age46.png);
}
.m-voice-item .age44::after {
  background-image: url(../img/voice_item_age44.png);
}
.m-voice-item .age47::after {
  background-image: url(../img/voice_item_age47.png);
}
.m-voice-item .age29::after {
  background-image: url(../img/voice_item_age29.png);
}
.m-voice-item .age22::after {
  background-image: url(../img/voice_item_age22.png);
}
.m-voice-item .age28::after {
  background-image: url(../img/voice_item_age28.png);
}
.m-voice .jspScrollable {
  outline: none;
}
.m-voice .jspContainer {
  -moz-box-shadow: inset -1px 0 0 1px #c2c2c2;
  -webkit-box-shadow: inset -1px 0 0 1px #c2c2c2;
  box-shadow: inset -1px 0 0 1px #c2c2c2;
  position: relative;
}
.m-voice .jspPane {
  position: absolute;
  width: 890px;
}
.m-voice .jspVerticalBar {
  -moz-box-shadow: inset 0 0 0 1px #c2c2c2;
  -webkit-box-shadow: inset 0 0 0 1px #c2c2c2;
  box-shadow: inset 0 0 0 1px #c2c2c2;
  position: absolute;
  top: 0;
  right: 0;
  width: 17px;
  height: 100%;
  background: #fff;
}
.m-voice .jspCap {
  padding-top: 3px;
}
.m-voice .jspTrack {
  margin: 0 3px;
}
.m-voice .jspDrag {
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  position: relative;
  background: #c2c2c2;
  cursor: pointer;
}

.m-mark-list {
  padding-bottom: 7px;
  border-bottom: 1px solid #aeaeae;
  text-align: right;
}
.m-mark-item {
  display: inline-block;
  margin-left: 12px;
}
.m-mark-item .m-mark-title,
.m-mark-item .m-mark-details {
  display: inline-block;
  vertical-align: middle;
}
.m-mark-item .m-mark-title {
  font-size: 1.2em;
}
.m-mark-item .m-mark-details {
  margin-left: 5px;
  font-size: 1.3em;
  color: #fdbc79;
}

/*----------------------------------------------------------------------
　料金
----------------------------------------------------------------------*/
.m-price {
  padding-bottom: 120px;
  background: url(../img/qa_bg.png) center top 143px no-repeat, url(../img/qa_bg2.png) left top 143px repeat-x;
  background-size: cover, cover;
}
.m-price-title {
  margin-bottom: 120px;
  background: url(../img/contents_title_bg.gif) left top repeat-x;
}
.m-price-inner {
  *zoom: 1;
  position: relative;
  margin: 0 auto;
  width: 1001px;
}
.m-price-inner:after {
  content: "";
  display: table;
  clear: both;
}
.m-price .price-table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}
.m-price .price-table thead {
  background-color: #515868;
}
.m-price .price-table thead tr th,
.m-price .price-table thead tr td {
  height: 69px;
  font-family: "Gothic MB101 DemiBold", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.m-price .price-table thead tr th:last-child,
.m-price .price-table thead tr td:last-child {
  border-right: none;
}
.m-price .price-table thead tr th span,
.m-price .price-table thead tr td span {
  font-size: 12px;
}
.m-price .price-table thead tr th.treatment,
.m-price .price-table thead tr td.treatment {
  width: 277px;
}
.m-price .price-table thead tr th.contains,
.m-price .price-table thead tr td.contains {
  width: 520px;
}
.m-price .price-table tbody {
  color: #626977;
  background-color: rgba(255, 255, 255, 0.7);
}
.m-price .price-table tbody tr th,
.m-price .price-table tbody tr td {
  height: 62px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
}
.m-price .price-table tbody tr th:last-child,
.m-price .price-table tbody tr td:last-child {
  border-right: none;
}
.m-price .price-table tbody tr th.accent,
.m-price .price-table tbody tr td.accent {
  color: #6a6dae;
}
.m-price .price-table tbody tr th.treatment,
.m-price .price-table tbody tr td.treatment {
  width: 277px;
  font-size: 15px;
  text-align: left;
  padding: 0 20px;
}
.m-price .price-table tbody tr th.contains,
.m-price .price-table tbody tr td.contains {
  width: 520px;
  font-size: 12px;
  padding: 0 29px;
}
.m-price .price-table tbody tr th.contains .contains__list,
.m-price .price-table tbody tr td.contains .contains__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.m-price .price-table tbody tr th.contains .contains__list__item,
.m-price .price-table tbody tr td.contains .contains__list__item {
  display: flex;
  justify-content: space-between;
  width: 200px;
  text-align: left;
}
.m-price .price-table tbody tr th.contains .contains__list__item:not(:nth-child(-n+2)),
.m-price .price-table tbody tr td.contains .contains__list__item:not(:nth-child(-n+2)) {
  margin-top: 4px;
}
.m-price .price-table tbody tr th.contains .contains__list__item .item__headline:before,
.m-price .price-table tbody tr td.contains .contains__list__item .item__headline:before {
  display: inline-block;
  content: '●';
  margin-right: 5px;
}
.m-price .price-table tbody tr th.price,
.m-price .price-table tbody tr td.price {
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 17px;
}
.m-price .price-table tbody tr th.price .normal,
.m-price .price-table tbody tr td.price .normal {
  display: block;
  margin-bottom: 10px;
}
.m-price .price-table tbody tr th.price .tax,
.m-price .price-table tbody tr td.price .tax {
  display: block;
  font-size: 10px;
  color: #7e838f;
}
.m-price .price-table tbody tr:first-child th,
.m-price .price-table tbody tr:first-child td {
  height: 37px;
}
.m-price .price-table tbody tr:first-child th.price,
.m-price .price-table tbody tr:first-child td.price {
  padding-top: 0;
}
.m-price .price-cap {
  margin: 10px 0 64px;
  text-align: right;
  font-size: 12px;
}
.m-price-tab-list {
  display: flex;
  justify-content: space-between;
}
.m-price-tab-item.transportation.is-active {
  background-image: url(../img/price_tab_item_transportation_a.png);
}
.m-price-tab-item.anesthesia.is-active {
  background-image: url(../img/price_tab_item_anesthesia_a.png);
}
.m-price-tab-item.care.is-active {
  background-image: url(../img/price_tab_item_care_a.png);
}
.m-price-tab-item.loan.is-active {
  background-image: url(../img/price_tab_item_loan_a.png);
}
.m-price-tab-item.is-active {
  border-bottom: 0;
}
.m-price-tab-item.is-active img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.m-price-tab-item:last-child {
  margin-right: 0;
}
.m-price-contents {
  position: relative;
}
.m-price-item {
  -moz-transition: opacity 0.25s linear;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #f9f8f8;
  line-height: 1.8571428571;
  font-size: 14px;
  color: #626977;
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.25);
}
.m-price-item.is-active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  position: static;
}
.m-price-item-text {
  line-height: 1.8571428571;
  font-size: 14px;
  color: #626977;
}
.m-price-item.loan {
  background-image: url(../img/price_loan_bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 50px 0 15px;
}
.m-price-item.loan .m-price-item-text {
  margin-bottom: 20px;
  padding: 0 35px;
}
.m-price-item.loan .loan-item {
  display: list-item;
  padding: 5px 50px 5px 55px;
  border-top: 1px dotted #ccc;
  line-height: 33px;
  font-size: 14px;
  font-weight: bold;
}
.m-price-item.loan .loan-item img {
  margin-top: 5px;
}
.m-price-item.loan .loan-item .item-inner {
  display: table;
}
.m-price-item.loan .loan-item .item-title,
.m-price-item.loan .loan-item .item-text {
  display: table-cell;
}
.m-price-item.loan .loan-item .item-title {
  padding-top: 11px;
  width: 130px;
}
.m-price-item.loan .loan-item .item-title .small-text {
  font-weight: bold;
}
.m-price-item.loan .loan-item .item-text {
  padding: 10px 0 9px;
  font-weight: normal;
  line-height: 1.5;
}
.m-price-item.loan .loan-item .item-text em {
  font-weight: bold;
  color: #6a6dae;
}
.m-price-item.loan .loan-item .item-text dl {
  line-height: 1.2857142857;
  font-size: 14px;
}
.m-price-item.loan .loan-item .item-text li {
  margin-left: 20px;
  padding: 0;
  line-height: 1.2857142857;
  font-size: 14px;
  list-style-type: decimal;
}
.m-price-item.loan .loan-item .item-text li .small-text {
  display: inline-block;
}
.m-price-item.loan .loan-item .item-text li p {
  line-height: 1.5;
  font-size: 12px;
}
.m-price-item.loan .loan-item .item-text li p::before {
  content: '◇';
}
.m-price-item.loan .loan-item .small-text {
  display: block;
  line-height: 1.75;
  font-size: 12px;
}
.m-price-item.loan .loan-item:nth-child(1) {
  background-image: url(../img/price_loan_no1.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:nth-child(2) {
  background-image: url(../img/price_loan_no2.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:nth-child(3) {
  background-image: url(../img/price_loan_no3.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:nth-child(4) {
  background-image: url(../img/price_loan_no4.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:first-child {
  letter-spacing: .5em;
}
.m-price-item.loan .loan-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.m-price-item.anesthesia {
  background-image: url(../img/price_anesthesia_bg.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  padding: 29px 70px 29px 29px;
}
.m-price-item.care .m-price-item-inner {
  display: flex;
  justify-content: space-between;
  padding: 29px 19px 29px 29px;
}
.m-price-item.care .m-price-item-text {
  width: 736px;
}
.m-price-item.care .care-text {
  line-height: 1.5714285714;
  margin-bottom: 15px;
}
.m-price-item.care .care-list__item__inner {
  display: flex;
}
.m-price-item.care .care-list__item__headline {
  width: 170px;
  font-family: "Gothic MB101 DemiBold", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.5714285714;
  font-weight: bold;
}
.m-price-item.care .care-list__item__headline:before {
  display: inline-block;
  content: '■';
  margin-right: 5px;
  color: #6a6dae;
}
.m-price-item.care .care-list__item__details {
  flex: 1;
  line-height: 1.5714285714;
}
.m-price-item.care .care-list .care-list__item + .care-list__item {
  margin-top: 15px;
}
.m-price-item.care .m-price-item-pic {
  margin-top: 9px;
}

/*----------------------------------------------------------------------
　QA
----------------------------------------------------------------------*/
.m-qa {
  padding-bottom: 60px;
  background: url(../img/qa_bg.png) center top 143px no-repeat, url(../img/qa_bg2.png) left top 143px repeat-x;
  background-size: cover, cover;
}
.m-qa-title {
  margin-bottom: 70px;
  background: url(../img/contents_title_bg.gif) left top repeat-x;
}
.m-qa-inner {
  *zoom: 1;
  position: relative;
  margin: 0 auto;
  width: 1001px;
}
.m-qa-inner:after {
  content: "";
  display: table;
  clear: both;
}
.m-qa-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m-qa-item {
  margin-bottom: 60px;
  width: 440px;
}
.m-qa-item:last-child {
  margin-bottom: 0;
}
.m-qa-item__title {
  position: relative;
  border-bottom: 1px solid #353230;
  padding-bottom: 5px;
  margin-bottom: 6px;
  font-size: 2em;
  font-weight: bold;
  color: #353230;
  font-family: "Gothic MB101 DemiBold", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
.m-qa-item__title::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.m-qa-item__question, .m-qa-item__answer {
  padding-left: 34px;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.m-qa-item__question {
  margin-bottom: 6px;
  background-image: url(../img/qa_item_question_bg.png);
  line-height: 27px;
  font-family: "Gothic MB101 Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6em;
  font-weight: bold;
  color: #6a6fac;
}
.m-qa-item__answer {
  background-image: url(../img/qa_item_answer_bg.png);
  text-align: justify;
  line-height: 1.7142857143;
  font-size: 1.4em;
  color: #5d5a59;
}
.m-qa .pic6 {
  position: absolute;
  right: 0;
  bottom: 0;
}

/*----------------------------------------------------------------------
　クリニック紹介
----------------------------------------------------------------------*/
.m-clinic {
  background: url(../img/clinic_bg.png) center top no-repeat;
}
.m-clinic-wrapper {
  padding: 80px 0 100px;
}
.m-clinic-title {
  background: url(../img/contents_title_bg2.png) left top repeat-x;
}
.m-clinic-logo {
  margin: 0 auto 45px;
  width: 227px;
  text-align: center;
}
.m-clinic-logo object {
  width: 100%;
}
.m-clinic-text {
  margin-bottom: 78px;
  text-align: center;
  font-family: "Ryumin Regular KL", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 15.5px;
  line-height: 1.8;
}
.m-clinic-tab {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 920px;
}
.m-clinic-tab-list {
  *zoom: 1;
  display: flex;
}
.m-clinic-tab-list:after {
  content: "";
  display: table;
  clear: both;
}
.m-clinic-tab-item {
  -moz-border-radius: 8px 8px 0 0;
  -webkit-border-radius: 8px;
  border-radius: 8px 8px 0 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  overflow: hidden;
  float: left;
  background: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.m-clinic-tab-item:last-child {
  margin-right: 0;
}
.m-clinic-tab-item + .m-clinic-tab-item {
  margin-left: 5px;
}
.m-clinic-tab-item a {
  display: block;
  padding: 6px 0;
  line-height: 1.7777777778;
  font-size: 18px;
  color: #58504c;
}
.m-clinic-tab-item a:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.m-clinic-tab .is-active {
  background: rgba(255, 255, 255, 0.8);
}
.m-clinic-contents {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 920px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: rgba(0, 0, 0, 0.3) 0 6px 6px;
}
.m-clinic-item {
  *zoom: 1;
  -moz-transition: opacity 0.25s linear;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 26px;
}
.m-clinic-item:after {
  content: "";
  display: table;
  clear: both;
}
.m-clinic-item-title {
  float: left;
  text-align: center;
}
.m-clinic-item.is-active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  position: static;
}
.m-clinic-data {
  float: left;
}
.m-clinic-data-item {
  color: #726b60;
}
.m-clinic-data-title {
  position: relative;
  font-size: 1.4em;
}
.m-clinic-data-detail {
  line-height: 1.2857142857;
  font-size: 1.4em;
}
.m-clinic-contact img {
  height: auto;
}
.m-clinic-contact a {
  color: #726b60;
}
.m-clinic-contact a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.m-clinic-contact .overseas {
  display: block;
  font-size: 0.8571428571em;
}
.m-clinic-map iframe {
  width: 100%;
  height: 400px;
}
.m-clinic-map-item {
  margin-bottom: 5px;
}
.m-clinic-map-route-item {
  float: left;
  padding-left: 25px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  line-height: 1.6666666667;
  font-size: 1.2em;
  color: #726b60;
}
.m-clinic-map-route-item + .m-clinic-map-route-item {
  margin-left: 8px;
}
.m-clinic-map-route-item.hiroden, .m-clinic-map-route-item.astramline {
  margin: 0 8px 4px 0;
}
.m-clinic-map .hibiya {
  background-image: url(../mobile/img/logo_hibiya.svg);
}
.m-clinic-map .oedo {
  background-image: url(../mobile/img/logo_oedo.svg);
}
.m-clinic-map .jr {
  background-image: url(../mobile/img/logo_jr.svg);
}
.m-clinic-map .sakuradori {
  background-image: url(../mobile/img/logo_sakuradori.svg);
}
.m-clinic-map .nishitetsu {
  background-image: url(../mobile/img/logo_nishitetsu.svg);
}
.m-clinic-map .tenjin {
  background-image: url(../mobile/img/logo_tenjin.svg);
}
.m-clinic-map .hiroden {
  background-image: url(../mobile/img/logo_hiroden.svg);
}
.m-clinic-map .astramline {
  background-image: url(../mobile/img/logo_astramline.svg);
}
.m-clinic .has-doctor .m-clinic-item-title {
  width: 225px;
  height: 170px;
  margin-bottom: 28px;
}
.m-clinic .has-doctor .m-clinic-item-title::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.m-clinic .has-doctor .m-clinic-item-title img {
  vertical-align: middle;
}
.m-clinic .has-doctor .m-clinic-data {
  margin-bottom: 35px;
  width: 323px;
}
.m-clinic .has-doctor .m-clinic-data-item {
  margin-bottom: 20px;
}
.m-clinic .has-doctor .m-clinic-data-item:last-child {
  margin: 0;
}
.m-clinic .has-doctor .m-clinic-data-title {
  float: left;
  width: 68px;
}
.m-clinic .has-doctor .m-clinic-data-detail {
  -moz-box-shadow: inset 1px 0 0 #fff;
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  overflow: hidden;
  padding-left: 7px;
  border-left: 1px solid #a8a8a8;
}
.m-clinic .has-doctor .m-clinic-contact img {
  margin-bottom: 8px;
  width: 180px;
}
.m-clinic .has-doctor .m-clinic-doctor {
  float: right;
  width: 320px;
  color: #726b60;
}
.m-clinic .has-doctor .m-clinic-doctor-title {
  margin: 0 0 -1em 20px;
  font-size: 1.4em;
}
.m-clinic .has-doctor .m-clinic-doctor-profile {
  -moz-box-shadow: inset 1px 0 0 #fff;
  -webkit-box-shadow: inset 1px 0 0 #fff;
  box-shadow: inset 1px 0 0 #fff;
  margin-bottom: 13px;
  padding-left: 20px;
  border-left: 1px solid #a8a8a8;
}
.m-clinic .has-doctor .m-clinic-doctor-profile > * {
  display: table-cell;
  vertical-align: middle;
}
.m-clinic .has-doctor .m-clinic-doctor-name {
  width: 199px;
  font-size: 1.8em;
}
.m-clinic .has-doctor .m-clinic-doctor-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.6666666667em;
  color: #a7a29b;
}
.m-clinic .has-doctor .m-clinic-doctor-text {
  margin-bottom: 11px;
  text-align: justify;
  line-height: 1.5;
  font-size: 1.2em;
}
.m-clinic .has-doctor .m-clinic-doctor-history-title {
  margin-bottom: 5px;
  padding: 5px;
  background: #b98c59;
  font-size: 1.4em;
  color: #fff;
}
.m-clinic .has-doctor .m-history-title {
  width: 50px;
  vertical-align: top;
}
.m-clinic .has-doctor .m-clinic-map {
  float: left;
  width: 510px;
}

.m-history-item {
  padding: 3px 0 4px;
  border-bottom: 1px solid #b9b5af;
}
.m-history-item .item-inner > * {
  display: table-cell;
  vertical-align: middle;
  line-height: 1.5;
  font-size: 1.2em;
  color: #726b60;
}

/*----------------------------------------------------------------------
　プライバシーポリシー
----------------------------------------------------------------------*/
.m-privacypolicy {
  position: relative;
  z-index: 2;
  background: #353b48;
}
.m-privacypolicy::before {
  content: '';
  position: absolute;
  top: 150px;
}
.m-privacypolicy-inner {
  margin: 0 auto;
  padding: 75px 0 30px;
  width: 1001px;
}
.m-privacypolicy-title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.m-privacypolicy-title::before {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  left: 490px;
  width: 26px;
  height: 13px;
  background: url(../img/privacypolicy_arrow.png) left center no-repeat;
}
.m-privacypolicy-title.is-open::before {
  background-image: url(../img/privacypolicy_arrow_a.png);
}
.m-privacypolicy-contents {
  display: none;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 1px 1px #dad9d9;
  color: #505767;
}
.m-privacypolicy-contents-wrapper {
  padding: 70px;
}
.m-privacypolicy-contents-box {
  margin-bottom: 30px;
}
.m-privacypolicy-contents-box.last {
  margin-bottom: 0;
}
.m-privacypolicy-contents-box .title {
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: bold;
  color: #505767;
}
.m-privacypolicy-contents-box p,
.m-privacypolicy-contents-box ul {
  line-height: 1.8333333333;
  font-size: 12px;
}
.m-privacypolicy-contents-box li {
  padding-left: 2.5em;
  text-indent: -3em;
}
.m-privacypolicy-contents .reception {
  margin-top: 15px;
  font-size: 12px;
}
.m-privacypolicy-contents .reception-title {
  margin-bottom: 10px;
}
.m-privacypolicy-contents .reception-contents {
  padding-left: 12px;
  line-height: 1.5;
}
.m-privacypolicy-contents .reception-tel {
  margin-top: 5px;
}
.m-privacypolicy-contents .reception-tel > * {
  display: inline-block;
}
.m-privacypolicy-contents .reception-tel-contents a {
  color: #726b60;
}

.m-anchor {
  z-index: 2;
  margin-bottom: -20px;
  padding-top: 70px;
  text-align: center;
}
.m-anchor-arrow {
  position: absolute;
  bottom: -20px;
  left: 495px;
}

.m-cv {
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-width: 1001px;
  background: url(../img/cv_bg.jpg) center top no-repeat, #fff;
}
.m-cv-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 1001px;
}
.m-cv-title {
  margin-bottom: 12px;
  text-align: right;
}
.m-cv-inner {
  float: right;
  width: 522px;
}
.m-cv-pic, .m-cv-limit, .m-cv-button {
  text-align: center;
}
.m-cv-pic {
  margin: 0 0 14px -2px;
}
.m-cv-limit {
  position: relative;
  margin-right: auto;
  margin-bottom: 10px;
  margin-left: auto;
  width: 335px;
  height: 31px;
  background: url(../img/cv_limit_bg.png) left top no-repeat;
}
.m-cv-limit-text {
  position: absolute;
  right: 25px;
  bottom: -10px;
  width: 67px;
  text-align: center;
  line-height: 49px;
  font-family: "ヒラギノ明朝 ProN", "HiraMinProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-size: 33px;
  font-weight: bold;
  color: #ea3480;
}
.m-cv-inner-button {
  overflow: hidden;
}
.m-cv-button {
  margin-right: auto;
  margin-bottom: 13px;
  margin-left: auto;
}
.m-cv-button a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.m-cv-button img {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.m-cv-text {
  float: left;
}
.m-cv-line {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px 0 10px;
}
.m-cv-line__title {
  margin-bottom: 10px;
  width: 100%;
  text-align: center;
}

.bgimg {
  position: absolute;
  top: 6%;
  left: 10%;
  z-index: 0;
  opacity: 0;
}
.bgimg.is-show {
  opacity: 1;
}

/*----------------------------------------------------------------------
9.	#footer
----------------------------------------------------------------------*/
.f-copyright {
  background: #505767;
  text-align: center;
  line-height: 2.6;
  font-size: 1em;
  color: #fff;
}

/*----------------------------------------------------------------------
10.	original
----------------------------------------------------------------------*/

/*# sourceMappingURL=pc.css.map */
