@charset "UTF-8";
.c-button a {
  display: inline-block;
  width: 279px;
  border: 2px solid #554c48;
  background: linear-gradient(#91847b, #443b34);
  color: #f5f2f0;
  transition: opacity 0.1s linear;
}
.c-button a:hover {
  color: #f5f2f0 !important;
}
.c-button a .inner-text {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
  width: 100%;
  text-align: center;
  line-height: 2.5;
  font-size: 16px;
  box-sizing: border-box;
}
.c-button a .inner-text::before, .c-button a .inner-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: url(../img/arrow/arrow16.png) top left no-repeat;
  opacity: 1;
  transition: opacity 0.1s;
}
.c-button a .inner-text::after {
  z-index: 1;
  width: 22px;
  height: 22px;
  background: url(../img/arrow/arrow16_h.png) top left no-repeat;
}
.c-button a::after {
  display: block;
  border-top: 1px solid #474038;
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  font-size: 10px;
}
.c-button.consultation a::after {
  content: "あなたのお悩みに24時間以内に返答します。";
}
.c-button.counseling a::after {
  content: "ドクターとのカウンセリングです";
}
.c-button.line a::after {
  content: "メールアドレス不要で気軽に質問。";
}
.c-button.line .inner-text {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.c-button.line .inner-text::after {
  content: "";
  display: inline-block;
  margin-right: 9px;
  width: 31px;
  height: 29px;
  background: url(../img/qa_line.png) top left no-repeat;
}
.c-button.line:hover a .inner-text::before {
  background: url(../img/arrow/arrow16_h.png) top left no-repeat;
  opacity: 1;
}
.c-button.attribute a::after {
  content: attr(data-subtext);
}
.c-button:hover a .inner-text::before {
  opacity: 0;
  transition: opacity 0.1s;
}

/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name:		operation.scss
Note:			診療内容 施術ページ用SCSSファイル


New Creation:	2013/02/14 13:12:15.
Last Change:	2014/10/02 11:04:52.


Created By		Yoshiaki Murakami

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

1.	ブラウザデフォルトスタイルリセット
2.	HTMLタグ
3.	container
4.	共通部分
5.	header
6.	content
7.	main
8.	sub
9.	footer

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
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;
}

body {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 10px;
}

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

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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

figure {
  margin: 0;
}

/*----------------------------------------------------------------------
2.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  min-width: 1034px;
  height: 100%;
}

body {
  background: url(../img/container_bg.png) top center repeat-y, url(../img/bg.gif) top center;
  -webkit-text-size-adjust: 100%;
}

a {
  transition: color 0.1s linear;
  color: #6d9dd0;
}
a:hover {
  color: #ec7c78 !important;
}

a img {
  opacity: 1;
  transition: opacity 0.1s linear;
}
a:hover img {
  opacity: 0.5;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
a[href^="tel:"]:hover {
  cursor: default;
}

/*----------------------------------------------------------------------
3.	container
----------------------------------------------------------------------*/
#container {
  min-height: 100vh;
  background: url(../img/container_bg.png) top center repeat-y;
}
#container .wrapper {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 100%;
  background: url(../img/container_bg2.png) top center no-repeat, url(../img/bg2.gif) top center repeat-x;
}
body > #container .wrapper {
  height: auto;
}
#container > .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
#container > .wrapper #content {
  flex: 1;
}
#container * .wrapper {
  position: static;
  height: auto;
  min-height: auto;
  background: none;
}
body > #container * .wrapper {
  height: auto;
}

/*----------------------------------------------------------------------
4.	共通部分
----------------------------------------------------------------------*/
.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

#topicpath ol {
  *zoom: 1;
}
#topicpath ol::after {
  content: "";
  display: table;
  clear: both;
}
#topicpath ol li {
  float: left;
  margin-right: 0.5em;
  line-height: 30px;
  color: #7f7875;
}
#topicpath ol li::before {
  content: " > ";
  display: inline-block;
}
#topicpath ol li:first-child::before {
  content: "";
}
#topicpath ol li:last-child a {
  color: #7f7875;
}
#topicpath ol li a {
  display: inline-block;
  white-space: nowrap;
  color: #6d9dd0;
}

.pagetop {
  margin: 23px 10px;
  text-align: right;
}
.pagetop a {
  padding-left: 15px;
  background: url(../img/arrow/arrow3.png) left top no-repeat;
  color: #7f7875;
}
.pagetop a:hover {
  background-image: url(../img/arrow/arrow3_h.png);
}

.assist {
  display: none;
}

#yearend {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  overflow: hidden;
  padding-top: 3px;
  width: 99.85%;
  height: 32px;
  border: 1px solid #888;
  background: url(../img/yearend_bg.gif) left 3px repeat-x #c40038;
  line-height: 1.2em;
}
#yearend h2,
#yearend p {
  display: table-cell;
}
#yearend p {
  padding: 5px 91px 0 2em;
  vertical-align: middle;
  text-indent: -1em;
  line-height: 1.2;
  font-size: 1em;
  color: #59514e;
}
#yearend .pic {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
}

.notice-tax {
  margin: 20px 10px;
  padding: 12px 0;
  border: #c9c9ca 1px solid;
  background-color: #f6f7f7;
  text-align: center;
  line-height: 1.4;
  font-size: 1em;
  color: #e85554;
}

#link_box {
  position: fixed;
  right: calc(50% - 494px - 39px - 5px);
  bottom: calc(50% - 202px);
  z-index: 100;
  width: 39px;
}
#link_box .link_inquiry,
#link_box .link_counseling {
  margin-bottom: 7px;
  background-position: right top;
  background-repeat: no-repeat;
  box-shadow: 3px 3px 6px #777;
  text-align: right;
}
#link_box .link_inquiry {
  background-image: url(../img/link_mail_h.png?v=2);
}
#link_box .link_counseling {
  background-image: url(../img/link_counseling_h.png);
}
#link_box .pagetop {
  margin: 0;
}
#link_box .pagetop a {
  padding: 0;
  background: none;
}

sup.copyright {
  font-weight: lighter;
}

/*----------------------------------------------------------------------
5.	#header
----------------------------------------------------------------------*/
#header {
  position: relative;
  margin: 0 auto;
  width: 988px;
  background: url(../img/header_bg.gif) left 24px no-repeat;
}
#header h1 {
  background: url(../img/h1_bg.gif) left top repeat-x #524840;
  text-align: center;
  line-height: 24px;
  font-size: 1em;
  white-space: nowrap;
  color: #b3a79c;
}
#header #logo {
  padding: 27px 0 31px 26px;
}
#header aside {
  display: flex;
  position: absolute;
  top: 37px;
  right: 30px;
}
#header .h-tel {
  margin-right: 15px;
  width: 186px;
}
#header .h-tel .h-tab-list {
  *zoom: 1;
  margin-bottom: 9px;
  width: 186px;
}
#header .h-tel .h-tab-list::after {
  content: "";
  display: table;
  clear: both;
}
#header .h-tel .h-tab-item {
  float: left;
  padding: 4px 0 3px;
  width: 35px;
  border-bottom: 1px solid #56514c;
  border-left: 1px solid #56514c;
  background-color: rgba(0,0,0,.15);
  cursor: pointer;
  text-align: center;
}
#header .h-tel .h-tab-item.nagoya {
  width: 39px;
}
#header .h-tel .h-tab-item:last-child {
  border-right: 1px solid #56514c;
}
#header .h-tel .h-tab-item.is-active {
  padding: 3px 0 4px;
  border-top: 1px solid #56514c;
  border-bottom: 0;
  background-color: transparent;
}
#header .h-tel .h-tab-content {
  position: relative;
}
#header .h-tel .h-tab-content-item {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.15s linear;
}
#header .h-tel .h-tab-content-item.is-active {
  opacity: 1;
}
#header .info {
  display: flex;
  top: 0;
  flex-direction: column;
  flex-wrap: wrap;
  width: 439px;
  height: 66px;
}
#header .info-inner {
  width: 336px;
}
#header .info li {
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#header .info li.mail {
  margin-bottom: 0;
  background-image: url(../img/header_info_mail_h.png?v=2);
}
#header .info li.counseling {
  margin-bottom: 0;
  background-image: url(../img/header_info_counseling_h.png?v=2);
}
#header .info a:hover img {
  opacity: 0;
}
#header .info .line {
  margin-left: 4px;
  border: 2px solid #29211b;
}
#header .info .line a {
  display: block;
  width: 95px;
  height: 62px;
  background: url(../img/header_cv_line_h.png) left top no-repeat;
}
#header .info .line a:hover img {
  display: none;
}
#header .info-list {
  display: flex;
  margin-bottom: 2px;
  height: 32px;
}
#header .info-list .info-item + .info-item {
  margin-left: 2px;
}
#header .h-search {
  position: static;
  border: 2px solid #332a27;
}
#header .h-search__form {
  display: flex;
  width: 332px;
}
#header .h-search__form__input {
  display: block;
  padding: 10px;
  width: 259px;
  height: 28px;
  border: 0;
  border-right: 2px solid #332a27;
  font-size: 1.4em;
  box-sizing: border-box;
}
#header .h-search__form__button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

#gnavi, #footer #fnavi {
  padding: 1px 0 5px;
  background: url(../img/nav_bg_l.gif) left top repeat-x;
}
#gnavi > ul, #footer #fnavi > ul {
  *zoom: 1;
  position: relative;
  padding: 0 29px;
}
#gnavi > ul::after, #footer #fnavi > ul::after {
  content: "";
  display: table;
  clear: both;
}
#gnavi > ul > li, #footer #fnavi > ul > li {
  float: left;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#gnavi > ul > li.about, #footer #fnavi > ul > li.about {
  background-image: url(../img/nav_about_a.png?v=4);
}
#gnavi > ul > li.trouble, #footer #fnavi > ul > li.trouble {
  background-image: url(../img/nav_trouble_a.png?v=4);
}
#gnavi > ul > li.contents, #footer #fnavi > ul > li.contents {
  background-image: url(../img/nav_contents_a.png?v=4);
}
#gnavi > ul > li.case, #footer #fnavi > ul > li.case {
  background-image: url(../img/nav_case_a.png?v=4);
}
#gnavi > ul > li.price, #footer #fnavi > ul > li.price {
  background-image: url(../img/nav_price_a.png?v=4);
}
#gnavi > ul > li.campaign, #footer #fnavi > ul > li.campaign {
  background-image: url(../img/nav_campaign_a.png?v=4);
}
#gnavi > ul > li.doctor, #footer #fnavi > ul > li.doctor {
  background-image: url(../img/nav_doctor_a.png?v=4);
}
#gnavi > ul > li.access, #footer #fnavi > ul > li.access {
  background-image: url(../img/nav_access_a.png?v=4);
}
#gnavi > ul > li.qa, #footer #fnavi > ul > li.qa {
  background-image: url(../img/nav_qa_a.png?v=4);
}
#gnavi > ul > li .new, #footer #fnavi > ul > li .new {
  position: absolute;
  top: -11px;
  right: 0;
  z-index: 100;
}
#gnavi > ul > li > a, #footer #fnavi > ul > li > a {
  display: block;
  position: relative;
}
#gnavi > ul > li > a:hover > *, #footer #fnavi > ul > li > a:hover > * {
  opacity: 0;
}
#gnavi > ul > li > a img, #footer #fnavi > ul > li > a img {
  transition: opacity 0.15s linear;
}
#gnavi .h-gnavi-contents-submenu, #footer #fnavi .h-gnavi-contents-submenu {
  position: absolute;
  z-index: 10;
  padding-top: 5px;
  opacity: 0;
  transition: all 0.15s linear;
  pointer-events: none;
}
#gnavi .h-gnavi-contents-submenu.is-active, #footer #fnavi .h-gnavi-contents-submenu.is-active {
  opacity: 1;
  pointer-events: all;
}
#gnavi .h-gnavi-contents-submenu-list, #footer #fnavi .h-gnavi-contents-submenu-list {
  display: flex;
  border: 1px solid #c5bbb3;
}
#gnavi .h-gnavi-contents-submenu-item, #footer #fnavi .h-gnavi-contents-submenu-item {
  position: relative;
}
#gnavi .h-gnavi-contents-submenu-item a, #footer #fnavi .h-gnavi-contents-submenu-item a {
  display: block;
}
#gnavi .h-gnavi-contents-submenu-item a::after, #footer #fnavi .h-gnavi-contents-submenu-item a::after {
  transition: all 0.15s linear;
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) 0 0 no-repeat;
}
#gnavi .h-gnavi-contents-submenu-item a:hover img, #footer #fnavi .h-gnavi-contents-submenu-item a:hover img {
  opacity: 1;
}
#gnavi .h-gnavi-contents-submenu-item a:hover::after, #footer #fnavi .h-gnavi-contents-submenu-item a:hover::after {
  background-image: url(../img/arrow/arrow2_h.png);
}

.ad #gnavi > ul > li.about, .ad #footer #fnavi > ul > li.about, #footer .ad #fnavi > ul > li.about {
  background-image: url(../img/ad_nav_about_a.png?v=4);
}
.ad #gnavi > ul > li.trouble, .ad #footer #fnavi > ul > li.trouble, #footer .ad #fnavi > ul > li.trouble {
  background-image: url(../img/ad_nav_trouble_a.png?v=4);
}
.ad #gnavi > ul > li.contents, .ad #footer #fnavi > ul > li.contents, #footer .ad #fnavi > ul > li.contents {
  background-image: url(../img/ad_nav_contents_a.png?v=4);
}
.ad #gnavi > ul > li.case, .ad #footer #fnavi > ul > li.case, #footer .ad #fnavi > ul > li.case {
  background-image: url(../img/ad_nav_case_a.png?v=4);
}
.ad #gnavi > ul > li.price, .ad #footer #fnavi > ul > li.price, #footer .ad #fnavi > ul > li.price {
  background-image: url(../img/ad_nav_price_a.png?v=4);
}
.ad #gnavi > ul > li.campaign, .ad #footer #fnavi > ul > li.campaign, #footer .ad #fnavi > ul > li.campaign {
  background-image: url(../img/ad_nav_campaign_a.png?v=4);
}
.ad #gnavi > ul > li.doctor, .ad #footer #fnavi > ul > li.doctor, #footer .ad #fnavi > ul > li.doctor {
  background-image: url(../img/ad_nav_doctor_a.png?v=4);
}
.ad #gnavi > ul > li.access, .ad #footer #fnavi > ul > li.access, #footer .ad #fnavi > ul > li.access {
  background-image: url(../img/ad_nav_access_a.png?v=4);
}
.ad #gnavi > ul > li.qa, .ad #footer #fnavi > ul > li.qa, #footer .ad #fnavi > ul > li.qa {
  background-image: url(../img/ad_nav_qa_a.png?v=4);
}

.tummy_tuck #header,
.radiesse #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.tummy_tuck #header::before,
.radiesse #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

/*----------------------------------------------------------------------
6.	#content
----------------------------------------------------------------------*/
#content {
  *zoom: 1;
  margin: 0 auto;
  padding: 0 30px 0;
  width: 928px;
}
#content::after {
  content: "";
  display: table;
  clear: both;
}

.area-link {
  position: relative;
  transition: opacity 0.1s linear;
}
.area-link:hover {
  opacity: 0.5;
}
.area-link a {
  display: block;
}
.area-link a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.area-link a:hover img {
  opacity: 1;
}

/*----------------------------------------------------------------------
7.	#main
----------------------------------------------------------------------*/
.p-reference.p-reference {
  margin: 40px 0 60px;
  padding: 0 0 0 24px;
  border: 0;
  background: url(../img/reference_title_bg.png) 0 0 no-repeat;
  color: #7f7875;
}
.p-reference__title {
  margin-bottom: 18px;
  padding: 0 0 6px 6px;
  border-bottom: 1px solid #c7bcb5;
  font-size: 1.5em;
  font-weight: bold;
}
.p-reference__item {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  font-size: 1.2em;
}
.p-reference__item > a {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 3em;
  font-weight: bold;
}
.p-reference__item > a::before {
  content: "";
  display: block;
  margin-right: 5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow3.png) 0 0 no-repeat;
}
.p-reference__item > a:hover::before {
  background-image: url(../img/arrow/arrow3_h.png);
}
.p-reference__item .p-reference__text {
  flex: 1;
}
.p-reference__item .p-reference__text a {
  color: #7e7774;
}
.p-reference__item + .p-reference__item {
  margin-top: 0.5em;
}
.p-reference__item:target .p-reference__text {
  background: #f1ea4d;
  font-weight: bold;
  color: #221814;
}
.p-reference__item:target .p-reference__text a {
  font-weight: bold;
  color: #221814;
}

sup[id^=cite] {
  padding: 2px;
  line-height: 0;
}
sup[id^=cite] a {
  text-decoration: none;
}
sup[id^=cite]:target {
  background: #f1ea4d;
}
sup[id^=cite]:target a {
  font-weight: bold;
  color: #221814;
}

article > aside {
  padding-top: 45px;
  border-top: 1px dotted #baafa6;
}

#main {
  float: right;
  margin-bottom: 45px;
  width: 704px;
}

.popup {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  opacity: 1;
  transform: translateY(100%);
  transition: all 0.4s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.popup.is-popup {
  transform: translateY(0);
}
.popup.is-hidden {
  transform: translateY(100%);
}
.popup__inner {
  position: relative;
  margin: 0 auto;
  padding: 40px 60px 35px;
  width: 640px;
  border-radius: 10px 10px 0 0;
  background: #f4f3f4;
  box-sizing: border-box;
  box-shadow: 0 0 3px 3px rgba(0,0,0,.2);
}
.popup__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
  cursor: pointer;
}
.popup__title {
  padding-bottom: 15px;
  border-bottom: 1px solid #6d6562;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  color: #6d6562;
}
.popup__title span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #c8bdb5;
}
.popup__details {
  display: flex;
  align-items: center;
  padding: 30px 0 10px;
}
.popup__pic {
  margin-right: 20px;
}
.popup__name {
  margin-bottom: 15px;
  font-size: 15px;
  color: #6d6562;
}
.popup__text {
  line-height: 1.5;
  font-size: 12px;
  color: #a39d9b;
}
.popup__link {
  margin: 0 auto;
  width: 320px;
  height: 50px;
  font-size: 15px;
  color: #7f7875;
}
.popup__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: #e27175;
  color: #fff;
}
.popup__link a:hover {
  opacity: 0.7;
  color: #fff !important;
}

.p-supervisor {
  position: relative;
  margin: 15px 0 20px;
  padding: 10px;
  background: #efece9;
  color: #7f7875;
}
.p-supervisor a {
  color: #7f7875;
}
.p-supervisor__headline {
  position: absolute;
  top: 15px;
  left: 90px;
  margin: 0;
  padding: 0;
  background: none;
  line-height: 1;
  font-size: 0.75rem;
  font-weight: normal;
}
.p-supervisor__details {
  display: flex;
  align-items: center;
}
.p-supervisor__details__pic {
  margin-right: 10px;
  background: #fff;
}
.p-supervisor__details__name {
  margin-top: 7px;
  line-height: 1.3;
  font-size: 0.75rem;
}
.p-supervisor__details__name a:hover > * {
  opacity: 1;
}
.p-supervisor__details__name .name-emphasis {
  font-size: 1rem;
  font-weight: bold;
}
.p-supervisor__link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 0;
  background: none;
  text-align: right;
  line-height: 1;
  font-size: 1.2em;
}
.p-supervisor__link a {
  padding-left: 15px;
  background: url(../../img/arrow/arrow2.png) left center no-repeat;
}
.p-supervisor__link a:hover {
  background: url(../../img/arrow/arrow2_h.png) left center no-repeat;
  color: #6d9dd0;
}

.m-provider {
  position: relative;
  margin: 15px 0 40px;
  padding: 10px;
  background: #efece9;
  color: #7f7875;
}
.m-provider a {
  color: #7f7875;
}
.m-provider .title {
  position: absolute;
  top: 15px;
  left: 90px;
  margin: 0;
  padding: 0;
  background: none;
  line-height: 1;
  font-size: 1.3em;
  font-weight: normal;
}
.m-provider .doctor {
  display: flex;
  align-items: center;
}
.m-provider .doctor .pic {
  margin-right: 10px;
  background: #fff;
}
.m-provider .doctor .name {
  margin-top: 7px;
  line-height: 1.3;
  font-size: 1.2em;
}
.m-provider .doctor .name .emphasis {
  font-size: 1.3333333333em;
  font-weight: bold;
}
.m-provider .link {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 0;
  background: none;
  text-align: right;
  line-height: 1;
  font-size: 1.2em;
}
.m-provider .link a {
  padding-left: 15px;
  background: url(../../img/pc/arrow2.png) left center no-repeat;
}
.m-provider .link a:hover {
  background: url(../../img/pc/arrow2_h.png) left center no-repeat;
  color: #6d9dd0;
}

#profile {
  padding: 2em;
}
#profile .title {
  top: 20px;
  left: 100px;
  margin-bottom: 0.4em;
  opacity: 0.8;
  font-size: 1em;
}
#profile .doctor {
  margin-bottom: 1.4em;
}
#profile .doctor .name {
  margin-top: 1em;
}
#profile .doctor .name .emphasis {
  margin-top: 0.7em;
  font-size: 15px;
}
#profile .doctor .name .position {
  font-size: 1.25em;
}
#profile .doctor .name .position .job-title {
  display: block;
  margin-top: 0.7em;
  opacity: 0.9;
  font-size: 12px;
}
#profile .introduction,
#profile .license,
#profile .society,
#profile .history {
  text-align: justify;
  line-height: 1.7;
  font-size: 1.25em;
}
#profile .introduction a,
#profile .license a,
#profile .society a,
#profile .history a {
  color: #6d9dd0;
}
#profile .introduction {
  margin-bottom: 0.8em;
}
#profile .society {
  margin-top: 0.8em;
}

.p-cvArea {
  position: relative;
  padding: 30px;
  border: none;
  background-color: #f5f2f0;
  color: #6d6663;
}
.p-cvArea::before {
  content: "";
  display: block;
  position: absolute;
  top: 188px;
  right: 72px;
  bottom: 56px;
  width: 131px;
  background: url(../img/common_content_cvarea_bg.png?v=2) 0 center no-repeat;
}
.p-cvArea__lead {
  margin-bottom: 15px;
  background: #fff;
  text-align: center;
  line-height: 28px;
  font-size: 15px;
  color: #584f4c;
}
.p-cvArea__buttons {
  display: flex;
  position: relative;
  justify-content: space-between;
  margin: 0 0 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #c7bcb5;
}
.p-cvArea__buttons::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #fff;
}
.p-cvArea__buttons .c-button a {
  display: inline-block;
  width: 279px;
  border: 2px solid #554c48;
  background: linear-gradient(#91847b, #443b34);
  color: #f5f2f0;
  transition: opacity 0.1s linear;
}
.p-cvArea__buttons .c-button a:hover {
  color: #f5f2f0 !important;
}
.p-cvArea__buttons .c-button a .inner-text {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 0 38px;
  width: 100%;
  text-align: center;
  line-height: 2.5;
  font-size: 16px;
  box-sizing: border-box;
}
.p-cvArea__buttons .c-button a .inner-text::before, .p-cvArea__buttons .c-button a .inner-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 10px;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: url(../img/arrow/arrow16.png) top left no-repeat;
  opacity: 1;
  transition: opacity 0.1s;
}
.p-cvArea__buttons .c-button a .inner-text::after {
  z-index: 1;
  width: 22px;
  height: 22px;
  background: url(../img/arrow/arrow16_h.png) top left no-repeat;
}
.p-cvArea__buttons .c-button a::after {
  display: block;
  border-top: 1px solid #474038;
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  font-size: 10px;
}
.p-cvArea__buttons .c-button.consultation a::after {
  content: "あなたのお悩みに24時間以内に返答します。";
}
.p-cvArea__buttons .c-button.counseling a::after {
  content: "ドクターとのカウンセリングです";
}
.p-cvArea__buttons .c-button.line a::after {
  content: "メールアドレス不要で気軽に質問。";
}
.p-cvArea__buttons .c-button.line .inner-text {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}
.p-cvArea__buttons .c-button.line .inner-text::after {
  content: "";
  display: inline-block;
  margin-right: 9px;
  width: 31px;
  height: 29px;
  background: url(../img/qa_line.png) top left no-repeat;
}
.p-cvArea__buttons .c-button.line:hover a .inner-text::before {
  background: url(../img/arrow/arrow16_h.png) top left no-repeat;
  opacity: 1;
}
.p-cvArea__buttons .c-button.attribute a::after {
  content: attr(data-subtext);
}
.p-cvArea__buttons .c-button:hover a .inner-text::before {
  opacity: 0;
  transition: opacity 0.1s;
}
.p-cvArea__buttons .c-button a {
  width: 204px;
}
.p-cvArea__buttons .c-button a .inner-text {
  justify-content: left;
  padding: 0 0 0 40px;
  line-height: 45px;
  font-size: 13px;
}
.p-cvArea__buttons .c-button a .inner-text::before, .p-cvArea__buttons .c-button a .inner-text::after {
  right: inherit;
  left: 12px;
}
.p-cvArea__buttons .c-button.consultation a::after {
  content: "24時間以内に返答します";
}
.p-cvArea__buttons .c-button.counseling a::after {
  content: "ドクターとのカウンセリングです";
}
.p-cvArea__buttons .c-button.line a::after {
  content: "メールアドレス不要で気軽に質問";
}
.p-cvArea__buttons .c-button.line a .inner-text {
  justify-content: flex-end;
  padding: 0 0 0 88px;
}
.p-cvArea__buttons .c-button.line a .inner-text::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 42px;
  margin-right: 6px;
  width: 40px;
  height: 38px;
  background: url(../img/common_content_cvarea_button_line.png) top left no-repeat;
}
.p-cvArea__buttons .c-button.line:hover a .inner-text::before {
  background: url(../img/arrow/arrow16_h.png) top left no-repeat;
  opacity: 1;
}
.p-cvArea__clinic {
  margin: 0;
}
.p-cvArea__clinic__list__item {
  display: flex;
  align-items: center;
  height: 27px;
}
.p-cvArea__clinic__list__item .clinicName {
  margin-top: -3px;
  margin-right: 10px;
}
.p-cvArea__clinic__list__item .clinicAddress {
  font-size: 11px;
}
.p-cvArea__clinic__list__item:not(:last-child) {
  margin-bottom: 10px;
}
.p-cvArea__clinic__list__item:not(:first-child) .clinicName {
  margin-top: -7px;
}
.p-cvArea__clinic .c-link1 {
  display: flex;
  align-items: center;
  width: 400px;
  width: fit-content;
  border: 1px solid #c7bcb5;
  background: #e3ded9;
  background: -moz-linear-gradient(top, #fff 0%, #e3ded9 100%);
  background: -webkit-linear-gradient(top, #fff 0%, #e3ded9 100%);
  background: linear-gradient(to bottom, #fff 0%, #e3ded9 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#e3ded9",GradientType=0 );
}
.p-cvArea__clinic .c-link1 a {
  display: flex;
  align-items: center;
  padding: 9px 10px;
  background: url(../img/arrow/arrow2_h.png) left 10px center no-repeat;
  font-size: 11px;
  color: #6d6663;
}
.p-cvArea__clinic .c-link1 a::before {
  content: "";
  display: inline-block;
  margin-right: 9px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) top left no-repeat;
  opacity: 1;
  transition: opacity 0.1s;
}
.p-cvArea__clinic .c-link1:hover a::before {
  opacity: 0;
  transition: opacity 0.1s;
}
.p-cvArea__clinic__toDetails {
  position: absolute;
  right: 10px;
  bottom: 11px;
  z-index: 1;
}

.m-operation-list + .p-cvArea {
  margin-top: 23px;
}

.f-imp {
  padding-top: 40px;
}
.f-imp__title {
  margin-bottom: 20px;
  text-align: center;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 18px;
  color: #595656;
}
.f-imp__text {
  text-align: justify;
  line-height: 1.4285714286;
  font-size: 12px;
  color: #7f7875;
}
.f-imp-doctor {
  margin-bottom: 60px;
}
.f-imp-doctor__box__title {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #7f7875;
}
.f-imp-doctor__box + .f-imp-doctor__box {
  margin-top: 40px;
}

article > .title {
  margin-bottom: 30px;
  padding: 1px;
  height: auto;
  border: 1px solid #baafa6;
  background: none;
  line-height: 1;
  font-size: 1em;
  margin-bottom: 10px;
}
.focus article > .title {
  padding: 0;
  border: none;
}
article .lead {
  margin-bottom: 10px;
  font-size: 1.2em;
  letter-spacing: -0.02em;
  color: #7f7875;
}
article .banner {
  margin: 0 0 45px;
  text-align: center;
}
article .banner.top {
  float: right;
  margin: 0 0 10px;
}
article .banner-item {
  margin-bottom: 10px;
}
article .banner-item:last-child {
  margin-bottom: 0;
}

.tab {
  margin: 20px 0;
}
.tab ul {
  *zoom: 1;
}
.tab ul::after {
  content: "";
  display: table;
  clear: both;
}
.tab li {
  float: left;
}
.tab li.active a:hover img {
  opacity: 1;
}
.tab a:hover img {
  opacity: 0;
}
.tab.top ul {
  border-bottom: 1px solid #baafa6;
}
.tab.top li {
  margin-top: 8px;
}
.tab.top li.active {
  margin: 0;
}
.tab.bottom {
  margin-bottom: 45px;
}
.tab.bottom ul {
  border-top: 1px solid #baafa6;
}
.tab.bottom li {
  margin-bottom: 8px;
}

.top li.index {
  background: url(../img/operation_tab_top_index_h.png) 0 0 no-repeat;
}
.top li.case {
  background: url(../img/operation_tab_top_case_h.png) 0 0 no-repeat;
}
.top li.flow {
  background: url(../img/operation_tab_top_flow_h.png) 0 0 no-repeat;
}
.top li.price {
  background: url(../img/operation_tab_top_price_h.png) 0 0 no-repeat;
}
.top li.campaign {
  background: url(../img/operation_tab_top_campaign_h.png) 0 0 no-repeat;
}
.top li.qa {
  background: url(../img/operation_tab_top_qa_h.png) 0 0 no-repeat;
}

#finish {
  margin-bottom: 30px;
  text-align: center;
}
#finish img {
  display: inline-block;
  border: 1px solid #baafa6;
}
#finish .title {
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid #baafa6;
}

#anchor {
  margin-bottom: 12px;
  margin: 22px 10px;
}
#anchor ul {
  *zoom: 1;
}
#anchor ul::after {
  content: "";
  display: table;
  clear: both;
}
#anchor li {
  float: left;
  margin-right: 15px;
  margin-bottom: 10px;
  font-size: 1.2em;
  white-space: nowrap;
}
#anchor a {
  padding-left: 15px;
  background: url(../img/arrow/arrow4.png) 0 2px no-repeat;
  color: #6d9dd0;
}
#anchor a:hover {
  background-image: url(../img/arrow/arrow4_h.png);
}

#pagenation ul {
  *zoom: 1;
}
#pagenation ul::after {
  content: "";
  display: table;
  clear: both;
}
#pagenation li {
  border: 1px solid #baafa6;
}
#pagenation .prev {
  float: left;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#pagenation .prev.index {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_prev_index_h.png);
}
#pagenation .prev.case {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_prev_case_h.png);
}
#pagenation .prev.flow {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_prev_flow_h.png);
}
#pagenation .prev.price {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_prev_price_h.png);
}
#pagenation .prev.campaign {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_prev_campaign_h.png);
}
#pagenation .next {
  float: right;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#pagenation .next.case {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_next_case_h.png);
}
#pagenation .next.flow {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_next_flow_h.png);
}
#pagenation .next.price {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_next_price_h.png);
}
#pagenation .next.campaign {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_next_campaign_h.png);
}
#pagenation .next.qa {
  background-image: url(../img/sprite/hover/operation/operation_pagenation_next_qa_h.png);
}
#pagenation a:hover img {
  opacity: 0;
}

.pagetop {
  margin-right: 0;
}

.m-anchor {
  margin: 0 0 10px;
}
.m-anchor .anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -2px;
}
.m-anchor .anchor-item {
  overflow: hidden;
  flex-basis: 172px;
  flex-grow: 1;
  flex-shrink: 1;
  margin: 0 2px 5px;
  border-radius: 4px;
}
.m-anchor .anchor-item a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: linear-gradient(#f2efed, #e5dfdb);
  text-align: center;
  line-height: 1.2307692308;
  font-size: 1.3em;
  color: #7f7875;
  transition: opacity 0.1s linear;
}
.m-anchor .anchor-item a::after {
  content: "";
  display: block;
  position: absolute;
  right: 50%;
  bottom: 9px;
  margin-right: -4px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #7f7875;
  border-bottom: 1px solid #7f7875;
  transform: rotate(45deg);
}
.m-anchor .anchor-item a:hover {
  opacity: 0.5;
  color: #7f7875 !important;
}
.m-anchor .anchor-item {
  flex-basis: 114px;
}

.m-banner {
  display: table;
  width: 100%;
  border: 1px solid #d4d0ce;
  background: #f5f2f0;
  box-shadow: inset 0 0 1px #fff;
  text-align: center;
  color: #7f7875;
}
.m-banner > * {
  display: table-cell;
  vertical-align: middle;
}
.m-banner .lead {
  margin: 0;
  padding: 0 20px;
  width: 216px;
  background: #eae5e2;
  text-align: left;
  line-height: 1.5;
  font-size: 1.6em;
  box-sizing: border-box;
}
.m-banner .banner-list {
  padding: 11px 37px 11px 42px;
}
.m-banner .banner-item {
  margin-right: 0;
}
.m-banner .banner-item + .banner-item {
  margin-top: 5px;
}
.m-banner:not(.ver-friends) {
  margin-top: 20px;
}

.date {
  margin: 0 0 10px;
}
.date-list-item {
  text-align: right;
  line-height: 1.3333333333;
  font-size: 1.1em;
  color: #999490;
}
.date-list-item .fa-clock {
  margin-right: 5px;
  vertical-align: top;
  font-size: 1.3333333333em;
}

.m-contents {
  margin-bottom: 60px;
}
.m-contents > * {
  margin-right: 10px;
  margin-left: 10px;
}
.m-contents > .title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  width: 704px;
  height: 77px;
  background: url(../img/contents_operation_contents_title_bg.png) left top no-repeat;
  text-shadow: 0 0 8px #250708;
  line-height: 1.2857142857;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.8em;
  color: #fff;
  box-sizing: border-box;
  margin: 0 0 30px;
}
.m-contents > .title + * {
  margin-top: 30px;
}
.m-contents > .text {
  line-height: 1.8571428571;
  font-size: 1.4em;
}
.m-contents .text {
  color: #7f7875;
}
.m-contents .text em {
  padding: 2px 0;
  background: #f2f1a3;
}
.m-contents > .link {
  text-align: right;
  font-size: 1.4em;
}
.m-contents > .link a {
  transition: all 0.1s linear;
  display: inline-block;
  padding: 19px 42px;
  background: url(../img/arrow/arrow16.png) right 11px center no-repeat #d3cbc5;
  color: #7f7875;
}
.m-contents > .link a:hover {
  opacity: 0.6;
  color: #7f7875 !important;
}

#feature {
  clear: both;
}
#feature .case-info-table {
  clear: both;
  color: #7f7875;
}
#feature .case-info-table + #feature .case-info-table {
  margin-top: 20px;
}
#feature .case-info-table .title {
  padding: 10px;
  border: 1px solid #d3cac3;
  border-top: 0;
  border-bottom: 0;
  background: #a39388;
  font-size: 14px;
  font-weight: bold;
  color: #fefefe;
}
#feature .case-info-table table {
  font-size: 1.2em;
}
#feature .case-info-table th,
#feature .case-info-table td {
  padding: 5px 10px;
  border: 1px solid #d3cac3;
  line-height: 1.5;
}
#feature .case-info-table th {
  width: 90px;
  background: #f5f3f1;
  text-align: center;
  white-space: nowrap;
}
#feature .case-info-table .notice-item {
  margin-left: 1.5em;
  list-style-type: disc;
  line-height: 1.5;
}
#feature .case-info-table + .link {
  margin-top: 30px;
}
#feature .price-info {
  clear: both;
  margin: 14px 10px;
}
#feature .price-info .info-text {
  line-height: 1.5;
  font-size: 12px;
  color: #7f7875;
}
#feature .price-info .info-text em {
  font-weight: bold;
}
#feature .price-info .info-text a {
  text-decoration: underline;
}
#feature .price-info .caution em a {
  text-decoration: underline;
  font-weight: bold;
}
#feature .title {
  margin-bottom: 30px;
  padding: 1px;
  height: auto;
  border: 1px solid #baafa6;
  background: none;
  line-height: 1;
  font-size: 1em;
  background: url(../img/operation_feature_title_bg.gif) left top repeat-x;
}
#feature .m-lead {
  *zoom: 1;
  margin: 0 10px 30px;
}
#feature .m-lead::after {
  content: "";
  display: table;
  clear: both;
}
#feature .m-lead .pic {
  float: left;
  margin-right: 30px;
}
#feature .m-lead .pic img {
  border: 1px solid #baafa6;
}
#feature .m-lead .title {
  margin: 0 0 10px;
  padding: 6px 0 6px 14px;
  min-height: 18px;
  border: 0;
  background: url(../img/operation_feature_body_title_bg.gif) left center no-repeat;
  line-height: 1.2857142857;
  font-size: 1.4em;
  color: #7f7875;
  overflow: hidden;
}
#feature .m-lead .title .fn {
  font-size: 0.0714285714em;
}
#feature .m-lead .title.multi {
  padding: 7.5px 0 7.5px 14px;
  height: 36px;
  background-image: url(../img/operation_feature_body_title_bg2.gif);
}
#feature .m-lead .text {
  overflow: hidden;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#feature .wrapper {
  *zoom: 1;
  margin-right: 0 10px;
}
#feature .wrapper::after {
  content: "";
  display: table;
  clear: both;
}
#feature .feature-contents {
  margin: 0 10px 30px;
}
#feature .feature-contents > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 20px;
}
#feature .case-info-table {
  margin: 30px 0;
}
#feature .case-info-table table {
  border: 1px solid #d3cac3;
}
#feature .case-info-table th,
#feature .case-info-table td {
  display: block;
  width: auto;
  border: 0;
  border-bottom: 1px solid #d3cac3;
}
#feature .case-info-table th {
  text-align: left;
}
#feature .case-info-table tr:last-child td {
  border-bottom: 0;
}

#case .case-info-table {
  clear: both;
  color: #7f7875;
}
#case .case-info-table + #case .case-info-table {
  margin-top: 20px;
}
#case .case-info-table .title {
  padding: 10px;
  border: 1px solid #d3cac3;
  border-top: 0;
  border-bottom: 0;
  background: #a39388;
  font-size: 14px;
  font-weight: bold;
  color: #fefefe;
}
#case .case-info-table table {
  font-size: 1.2em;
}
#case .case-info-table th,
#case .case-info-table td {
  padding: 5px 10px;
  border: 1px solid #d3cac3;
  line-height: 1.5;
}
#case .case-info-table th {
  width: 90px;
  background: #f5f3f1;
  text-align: center;
  white-space: nowrap;
}
#case .case-info-table .notice-item {
  margin-left: 1.5em;
  list-style-type: disc;
  line-height: 1.5;
}
#case .case-info-table + .link {
  margin-top: 30px;
}
#case .price-info {
  clear: both;
  margin: 14px 10px;
}
#case .price-info .info-text {
  line-height: 1.5;
  font-size: 12px;
  color: #7f7875;
}
#case .price-info .info-text em {
  font-weight: bold;
}
#case .price-info .info-text a {
  text-decoration: underline;
}
#case .price-info .caution em a {
  text-decoration: underline;
  font-weight: bold;
}
#case .m-case {
  border-top-width: 4px;
  border-top-style: solid;
  background-image: linear-gradient(to bottom, #e3deda 0%, #f7f5f4 90%, #fff 100%);
  background-color: #e3deda;
}
#case .m-case.liposuction {
  border-top-color: #5777b0;
}
#case .m-case.breast-hip {
  border-top-color: #c64d78;
}
#case .m-case.antiaging {
  border-top-color: #7a5b9a;
}
#case .m-case.others {
  border-top-color: #87b263;
}
#case .m-case .case-title {
  position: relative;
  margin-bottom: 20px;
  padding: 16px 20px 2px;
}
#case .m-case .case-title .sex-age {
  font-size: 0.81em;
}
#case .m-case .case-title > .title {
  border: 0;
  line-height: 1.2307692308;
  font-size: 2.6em;
  color: #7f7875;
}
#case .m-case .attr-list {
  margin-top: 10px;
}
#case .m-case .attr-item a {
  color: #7f7875;
}
#case .m-case .before-after {
  margin: 0 auto;
  width: 664px;
}
#case .m-case .before::after,
#case .m-case .after::after {
  width: 79px;
  height: 28px;
}
#case .m-case .before::after {
  background-image: url(../img/case_icon_before_l.png);
}
#case .m-case .after {
  position: relative;
  float: right;
}
#case .m-case .after::before {
  content: "\f0da";
  position: absolute;
  top: 50%;
  left: -25px;
  margin-top: -0.5em;
  font-family: fontAwesome;
  font-size: 3em;
  color: #7f7875;
}
#case .m-case .after::after {
  background-image: url(../img/case_icon_after_l.png);
}
#case .m-case .case-pic {
  margin-bottom: 30px;
  text-align: center;
}
#case .m-case .comment {
  position: relative;
  margin: 0 20px 30px 115px;
  padding-bottom: 1px;
  background: url(../img/case_details_comment.gif) left top repeat;
  line-height: 30px;
  font-size: 14px;
  color: #7f7875;
}
#case .m-case .comment::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: -87px;
  margin-top: -36px;
  width: 80px;
  height: 72px;
  background: url(../img/case_details_comment_icon.png) left top no-repeat;
}
#case .m-case .keyword-list {
  *zoom: 1;
  margin: 10px 20px 30px 0;
  text-align: right;
}
#case .m-case .keyword-list::after {
  content: "";
  display: table;
  clear: both;
}
#case .m-case .keyword-item {
  display: inline-block;
  overflow: hidden;
  margin-left: 2px;
  border: 1px solid #d9d2cc;
  border-radius: 6px;
}
#case .m-case .keyword-item:first-child {
  margin-left: 0;
}
#case .m-case .keyword-item a {
  display: block;
  padding: 4px 4px 3px;
  font-size: 10px;
  color: #7f7875;
}
#case .m-case .keyword-item a:hover {
  background: #fff;
}
#case .m-case .keyword-item a::before {
  display: inline-block;
  margin-right: 2px;
  width: 1em;
  text-align: center;
  font-family: fontAwesome;
  content: "\f02b";
  vertical-align: middle;
  font-size: 1.2em;
}
#case .m-case .price-info {
  margin: 0 20px 10px;
}
#case .m-case .price-info .info-text {
  line-height: 1.5;
  font-size: 12px;
  color: #7f7875;
}
#case .m-case .price-info .info-text em {
  font-weight: bold;
}
#case .m-case .price-info .info-text a {
  text-decoration: underline;
}
#case .m-case .price-info .caution em a {
  text-decoration: underline;
  font-weight: bold;
}

#price #feature .pic {
  margin-bottom: 10px;
}
#price #feature .pic img {
  border: 1px solid #baafa6;
}
#price #feature #service {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: 0;
  display: flex;
  column-gap: 10px;
  margin-bottom: 20px;
  margin-left: 0;
}
#price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#price #feature #service a:hover img {
  opacity: 0;
}
#price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
#price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
#price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
#price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#price #feature #service li a:hover img {
  opacity: 0;
}
#price #feature #service li:nth-child(1) {
  background-image: url(../img/sprite/hover/price/price_nav_counseling_h.png);
}
#price #feature #service li:nth-child(2) {
  background-image: url(../img/sprite/hover/price/price_nav_payment_h.png);
}
#price #feature #service li {
  background-position: 0 0;
  background-repeat: no-repeat;
}
#price #feature #service a:hover img {
  opacity: 0;
}
#price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
#price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
#price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
#price #counseling dl {
  display: flex;
  align-items: center;
  border: 1px solid #baafa6;
}
#price #counseling dt,
#price #counseling dd {
  display: flex;
  align-items: center;
  height: 81px;
}
#price #counseling dt {
  justify-content: center;
  width: 83px;
  border-right: 1px dotted #baafa6;
  background: #f2efed;
}
#price #counseling dd {
  padding: 0 15px 0 29px;
}
#price #counseling dd img {
  margin-right: 30px;
}
#price #counseling dd small {
  display: inline-block;
  width: 270px;
  text-indent: -1em;
  line-height: 1.25;
  font-size: 1em;
  color: #7f7875;
}
#price #counseling dd:nth-child(2) {
  flex: 1;
}
#price #counseling dd:last-child {
  padding: 0 14px 0 0;
}
#price #counseling dd.c-button {
  width: 206px;
}
#price #counseling dd.c-button a {
  width: 206px;
  box-sizing: border-box;
}
#price #counseling dd.c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
#price #counseling dd.c-button a .inner-text::before, #price #counseling dd.c-button a .inner-text::after {
  right: 4px;
}
#price #payment p,
#price #payment li {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#price #payment p li,
#price #payment li li {
  font-size: 1em;
}
#price #payment small {
  font-size: 1em;
}
#price #payment li,
#price #payment dt {
  line-height: 39px;
}
#price #payment li {
  display: list-item;
  padding: 0 0 0 40px;
  min-height: 39px;
  border-bottom: 1px dotted #baafa6;
  background-position: 13px 8px;
  background-repeat: no-repeat;
  font-weight: bold;
}
#price #payment li:first-child {
  letter-spacing: 0.5em;
}
#price #payment li:last-child {
  border: 0;
}
#price #payment li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
#price #payment li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
#price #payment li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
#price #payment li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
#price #payment dt {
  float: left;
  width: 110px;
}
#price #payment dd {
  overflow: hidden;
  padding: 10px 0 9px;
  line-height: 1.8333333333;
  font-weight: normal;
}
#price #payment dd li,
#price #payment dd dt {
  line-height: 1.8333333333;
}
#price #payment dd dt {
  float: none;
  width: auto;
}
#price #payment dd dd {
  overflow: auto;
  padding: 0;
}
#price #payment dd li {
  margin-left: 2em;
  padding: 0;
  min-height: 1px;
  border: 0;
  list-style-type: decimal;
  font-weight: normal;
}
#price #payment dd li:first-child {
  letter-spacing: 0;
}
#price #payment dd li:nth-child(n) {
  background-image: none;
}
#price #payment dd li li {
  margin: 0;
  list-style-type: none;
}
#price #payment dd li li, #price #payment dd li li::before {
  content: "◇";
}
#price #payment .wrapper {
  margin: 0;
  border: 1px solid #baafa6;
}
#price #payment .wrapper p {
  padding-left: 12px;
  border-bottom: 1px dotted #baafa6;
  line-height: 28px;
}
#price #pricelist .pagetop {
  margin-right: -10px;
}
#price #pricelist table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
}
#price #pricelist table thead td {
  border-bottom: 1px solid #baafa6;
}
#price #pricelist table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#price #pricelist table tbody th,
#price #pricelist table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#price #pricelist table tbody tr.separate th,
#price #pricelist table tbody tr.separate td {
  border-bottom-style: solid;
}
#price #pricelist table tbody tr:last-child th,
#price #pricelist table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#price #pricelist table tbody td {
  line-height: 24px;
}
#price #pricelist table thead th,
#price #pricelist table thead td {
  height: 33px;
  box-sizing: border-box;
}
#price #pricelist table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
#price #pricelist table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
#price #pricelist table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
#price #pricelist table thead .note::before {
  content: "※";
  color: #ec7c78;
}
#price #pricelist table tbody tr:nth-child(even) th,
#price #pricelist table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
#price #pricelist table tbody th,
#price #pricelist table tbody td {
  line-height: 16/12;
}
#price #pricelist table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
#price #pricelist table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
#price #pricelist table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#price #pricelist table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
#price #pricelist table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
#price #pricelist table tfoot td {
  padding: 10px 15px;
}
#price #pricelist table tfoot .price-inclusion .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#price #pricelist table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#price #pricelist table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#price #pricelist table tfoot .inclusion-item .item-inner::after {
  content: "";
  display: block;
  flex: 1;
  order: 2;
  margin: 0 10px 0 25px;
  width: 100%;
  border-top: 1px dotted #baafa6;
}
#price #pricelist table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
#price #pricelist table tfoot .inclusion-item .summary {
  color: #b4afac;
}
#price #pricelist table tfoot .inclusion-item .price {
  order: 3;
}
#price #pricelist table thead th {
  line-height: 16px;
}
#price #pricelist table thead th .tax-include,
#price #pricelist table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#price #pricelist table thead th a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
  text-decoration: none;
  font-size: 0.8333333333em;
  color: #7f7875;
}
#price #pricelist table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
#price #pricelist table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
#price #pricelist table thead .icon.question {
  display: inline-block;
  position: relative;
  margin-right: -20px;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  background: url(../img/icon_question2.png);
  cursor: help;
  vertical-align: sub;
}
#price #pricelist table thead .icon.question .text {
  display: none;
}
#price #pricelist table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
#price #pricelist table thead .icon.question:hover .text, #price #pricelist table thead .icon.question:hover::after {
  position: absolute;
}
#price #pricelist table thead .icon.question:hover .text {
  display: block;
  right: -36px;
  bottom: 21px;
  z-index: 1;
  padding: 14px;
  width: 330px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #efece9;
  text-align: left;
  line-height: 1.5;
  font-size: 1em;
  font-style: normal;
  color: #7f7875;
  box-sizing: border-box;
}
#price #pricelist table thead .icon.question:hover::after {
  content: "";
  top: -6px;
  right: 3px;
  z-index: 2;
  border-top: 8px solid #efece9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
#price #pricelist table tbody th {
  line-height: 1.3333333333;
}
#price #pricelist table tbody td {
  line-height: 1.3333333333;
}
#price #pricelist table tbody td .price + .reduce ol {
  text-align: right;
}
#price #pricelist table tbody td .reduce ol li > span {
  display: inline;
}
#price #pricelist table tbody td .reduce ol li:nth-child(2) {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}
#price #pricelist table tbody td .reduce ol li:nth-child(2) span {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: normal;
}
#price #pricelist table .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 10px;
  color: #918b88;
}
#price #pricelist table .note::before {
  content: "※";
  color: #ec7c78;
}
#price #pricelist table .note + .head-text {
  margin-bottom: 5px;
}
#price #pricelist table + table {
  margin-top: 10px;
}
#price #pricelist li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
#price #pricelist .multiple {
  margin: 10px 0;
}
#price #pricelist .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
#price #pricelist .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#price #pricelist .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
#price #pricelist .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
#price #pricelist .multiple dl .info {
  margin-top: 12px;
}
#price #pricelist .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
#price #pricelist .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
#price #pricelist .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#price #pricelist .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
#price #pricelist .multiple dl .info li a:hover {
  opacity: 0;
}
#price #pricelist .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
#price #pricelist .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
#price #pricelist small {
  font-size: 1em;
}
#price #pricelist small, #price #pricelist small::before {
  content: "※";
}
#price #pricelist small::before {
  color: #ec7c78;
}
#price #pricelist .example {
  margin: 10px 0;
  color: #7f7875;
}
#price #pricelist .example img {
  display: block;
}
#price #pricelist .option {
  margin: 40px 0 0;
}
#price #pricelist .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
}
#price #pricelist .option .title::after {
  content: "";
  display: table;
  clear: both;
}
#price #pricelist .option .title > * {
  float: left;
}
#price #pricelist .option .title-img {
  margin-right: 10px;
}
#price #pricelist .option .title-text {
  padding-right: 24px;
  background: url(../img/price_option_title_bg.gif) right center no-repeat;
  line-height: 30px;
  font-size: 1.4em;
}
#price #pricelist .option table thead th {
  background-color: #f2efed;
}
#price #pricelist .option table thead th > span:not(.tax-included) {
  display: block;
  padding-left: 12px;
  border-left: 4px solid #94bc5a;
  line-height: 34px;
  font-size: 1.1666666667em;
}
#price #pricelist .option table thead th:nth-child(1) {
  padding-left: 6px;
  width: auto;
  text-align: left;
}
#price #campaignlist {
  /* $discount: sprite-map('discount/*.png'); */
  /* $discount-img: sprite-url($discount); */
}
#price #campaignlist > li {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
}
#price #campaignlist > li .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1;
}
#price #campaignlist > li .title a img {
  opacity: 1;
  transition: opacity 0.1s linear;
}
#price #campaignlist > li .title a:hover img {
  opacity: 0.5;
}
#price #campaignlist .table {
  padding: 2px;
  background: #f2efed;
}
#price #campaignlist .table .title,
#price #campaignlist .table p,
#price #campaignlist .table ol {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#price #campaignlist .table .title {
  padding: 3px 0 3px 3px;
  width: 531px;
  text-align: left;
}
#price #campaignlist .table .title-inner {
  display: table-cell;
  padding: 10px 0 7px 17px;
  height: 44px;
  border-left: 4px solid #ec7c78;
  vertical-align: middle;
}
#price #campaignlist .table .title-inner .course-title {
  display: block;
  padding-bottom: 4px;
  width: 380px;
  line-height: 1.25;
  font-size: 18px;
  font-weight: normal;
  color: #7f7875;
}
#price #campaignlist .table .title-inner .ref {
  display: block;
  padding: 0 0 3px;
  width: auto;
  background: none;
  text-align: left;
  font-size: 12px;
}
#price #campaignlist .table .title-inner .price {
  padding: 0;
  width: auto;
  background: none;
  text-align: left;
  font-size: 14px;
}
#price #campaignlist .table.capacity .title-inner {
  height: 56px;
}
#price #campaignlist .table p,
#price #campaignlist .table ol {
  padding: 0 9px;
  width: 126px;
  background: #fff;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#price #campaignlist .table a {
  text-decoration: none;
  color: #ec7c78;
}
#price #campaignlist .table em {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#price #campaignlist .discount ol li:first-child {
  margin-bottom: 6px;
  padding-bottom: 10px;
  background: url(../img/arrow/arrow13.png) 63px 18px no-repeat;
}
#price #campaignlist .discount ol li.double {
  background: url(../img/arrow/arrow13.png) 63px 34px no-repeat;
}
#price #campaignlist .discount ol em {
  font-size: 1.1666666667em;
}
#price #campaignlist .badge .title {
  padding-right: 58px;
  width: 482px;
}
#price #campaignlist .badge p,
#price #campaignlist .badge ol {
  padding-left: 0;
}
#price #campaignlist .badge50 .title {
  background: url(../img/discount/badge50.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#price #campaignlist .badge40 .title {
  background: url(../img/discount/badge40.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#price #campaignlist .badge33 .title {
  background: url(../img/discount/badge33.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#price #campaignlist .badge30 .title {
  background: url(../img/discount/badge30.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#price #campaignlist .badge25 .title {
  background: url(../img/discount/badge25.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#price #campaignlist .badge20 .title {
  background: url(../img/discount/badge20.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#price #campaignlist .capacity section {
  position: relative;
}
#price #campaignlist .capacity p,
#price #campaignlist .capacity ol {
  padding: 7px 9px 20px;
}
#price #campaignlist .capacity p em,
#price #campaignlist .capacity li em {
  display: inline;
  position: static;
  width: auto;
  background: none;
  font-weight: bold;
  color: #ec7c78;
}
#price #campaignlist .capacity em {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 144px;
  background: #ec7c78;
  text-align: center;
  line-height: 20px;
  font-weight: normal;
  color: #fff;
}
#price #campaignlist .folding .title a {
  cursor: pointer;
}
#price #campaignlist .folding .wrapper {
  display: none;
  border-top: 1px solid #baafa6;
}
#price #campaignlist .folding .wrapper > div {
  border-top: 1px solid #baafa6;
}
#price #campaignlist .folding .wrapper > div:first-child {
  border-top: 0;
}
#price #campaignlist .folding .wrapper .title {
  margin-bottom: 30px;
  padding: 1px;
  height: auto;
  border: 1px solid #baafa6;
  background: none;
  line-height: 1;
  font-size: 1em;
  margin: 0;
  padding: 1px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
#price #campaignlist .folding .wrapper .title span {
  display: block;
  padding-left: 13px;
  background: url(../img/operation_campaign_title_bg.gif) left top repeat-x;
  line-height: 26px;
  font-size: 1.2em;
  color: #7f7875;
}
#price #campaignlist .folding .wrapper .option {
  border: 0;
}
#price #campaignlist .folding .lead {
  padding: 15px 30px;
}
#price #campaignlist .folding .lead p {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#price #campaignlist .folding div.price table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
  margin-bottom: 12px;
}
#price #campaignlist .folding div.price table thead td {
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding div.price table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#price #campaignlist .folding div.price table tbody th,
#price #campaignlist .folding div.price table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#price #campaignlist .folding div.price table tbody tr.separate th,
#price #campaignlist .folding div.price table tbody tr.separate td {
  border-bottom-style: solid;
}
#price #campaignlist .folding div.price table tbody tr:last-child th,
#price #campaignlist .folding div.price table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding div.price table tbody td {
  line-height: 24px;
}
#price #campaignlist .folding div.price table thead th,
#price #campaignlist .folding div.price table thead td {
  height: 33px;
  box-sizing: border-box;
}
#price #campaignlist .folding div.price table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
#price #campaignlist .folding div.price table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
#price #campaignlist .folding div.price table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
#price #campaignlist .folding div.price table thead .note::before {
  content: "※";
  color: #ec7c78;
}
#price #campaignlist .folding div.price table tbody tr:nth-child(even) th,
#price #campaignlist .folding div.price table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
#price #campaignlist .folding div.price table tbody th,
#price #campaignlist .folding div.price table tbody td {
  line-height: 16/12;
}
#price #campaignlist .folding div.price table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
#price #campaignlist .folding div.price table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
#price #campaignlist .folding div.price table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#price #campaignlist .folding div.price table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
#price #campaignlist .folding div.price table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
#price #campaignlist .folding div.price table tfoot td {
  padding: 10px 15px;
}
#price #campaignlist .folding div.price table tfoot .price-inclusion .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#price #campaignlist .folding div.price table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#price #campaignlist .folding div.price table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#price #campaignlist .folding div.price table tfoot .inclusion-item .item-inner::after {
  content: "";
  display: block;
  flex: 1;
  order: 2;
  margin: 0 10px 0 25px;
  width: 100%;
  border-top: 1px dotted #baafa6;
}
#price #campaignlist .folding div.price table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
#price #campaignlist .folding div.price table tfoot .inclusion-item .summary {
  color: #b4afac;
}
#price #campaignlist .folding div.price table tfoot .inclusion-item .price {
  order: 3;
}
#price #campaignlist .folding div.price table thead th {
  line-height: 16px;
}
#price #campaignlist .folding div.price table thead th .tax-include,
#price #campaignlist .folding div.price table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#price #campaignlist .folding div.price table thead th a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
  text-decoration: none;
  font-size: 0.8333333333em;
  color: #7f7875;
}
#price #campaignlist .folding div.price table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
#price #campaignlist .folding div.price table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
#price #campaignlist .folding div.price table thead .icon.question {
  display: inline-block;
  position: relative;
  margin-right: -20px;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  background: url(../img/icon_question2.png);
  cursor: help;
  vertical-align: sub;
}
#price #campaignlist .folding div.price table thead .icon.question .text {
  display: none;
}
#price #campaignlist .folding div.price table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
#price #campaignlist .folding div.price table thead .icon.question:hover .text, #price #campaignlist .folding div.price table thead .icon.question:hover::after {
  position: absolute;
}
#price #campaignlist .folding div.price table thead .icon.question:hover .text {
  display: block;
  right: -36px;
  bottom: 21px;
  z-index: 1;
  padding: 14px;
  width: 330px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #efece9;
  text-align: left;
  line-height: 1.5;
  font-size: 1em;
  font-style: normal;
  color: #7f7875;
  box-sizing: border-box;
}
#price #campaignlist .folding div.price table thead .icon.question:hover::after {
  content: "";
  top: -6px;
  right: 3px;
  z-index: 2;
  border-top: 8px solid #efece9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
#price #campaignlist .folding div.price table tbody th {
  line-height: 1.3333333333;
}
#price #campaignlist .folding div.price table tbody td {
  line-height: 1.3333333333;
}
#price #campaignlist .folding div.price table tbody td .price + .reduce ol {
  text-align: right;
}
#price #campaignlist .folding div.price table tbody td .reduce ol li > span {
  display: inline;
}
#price #campaignlist .folding div.price table tbody td .reduce ol li:nth-child(2) {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}
#price #campaignlist .folding div.price table tbody td .reduce ol li:nth-child(2) span {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: normal;
}
#price #campaignlist .folding div.price table thead td {
  line-height: 1.3333333333;
}
#price #campaignlist .folding div.price table thead th {
  height: 33px;
  border-top: 0;
  border-right: 0;
}
#price #campaignlist .folding div.price table tbody th,
#price #campaignlist .folding div.price table tbody td {
  border-left: 0;
}
#price #campaignlist .folding div.price table:last-child {
  border-bottom: 0;
}
#price #campaignlist .folding div.price table:last-child tbody tr:last-child th,
#price #campaignlist .folding div.price table:last-child tbody tr:last-child td {
  border-bottom: 0;
}
#price #campaignlist .folding div.price ul {
  margin: 0 0 12px 15px;
}
#price #campaignlist .folding div.price li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
#price #campaignlist .folding div.price .multiple {
  margin: 10px 0;
  width: 652px;
}
#price #campaignlist .folding div.price .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
#price #campaignlist .folding div.price .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#price #campaignlist .folding div.price .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
#price #campaignlist .folding div.price .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
#price #campaignlist .folding div.price .multiple dl .info {
  margin-top: 12px;
}
#price #campaignlist .folding div.price .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
#price #campaignlist .folding div.price .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
#price #campaignlist .folding div.price .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#price #campaignlist .folding div.price .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
#price #campaignlist .folding div.price .multiple dl .info li a:hover {
  opacity: 0;
}
#price #campaignlist .folding div.price .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
#price #campaignlist .folding div.price .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
#price #campaignlist .folding div.price small {
  font-size: 1em;
}
#price #campaignlist .folding div.price small, #price #campaignlist .folding div.price small::before {
  content: "※";
}
#price #campaignlist .folding div.price small .before, #price #campaignlist .folding div.price small::before {
  color: #ec7c78;
}
#price #campaignlist .folding .option {
  margin: 0;
  border: 0;
}
#price #campaignlist .folding .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
  color: #7f7875;
}
#price #campaignlist .folding .option .title::after {
  content: "";
  display: table;
  clear: both;
}
#price #campaignlist .folding .option .title > * {
  float: left;
}
#price #campaignlist .folding .option .title-img {
  margin-right: 10px;
}
#price #campaignlist .folding .option .title-text {
  padding-right: 24px;
  background: url(../img/price_option_title_bg.gif) right center no-repeat;
  line-height: 30px;
  font-size: 1.4em;
}
#price #campaignlist .folding .option table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
  border-bottom: 0;
}
#price #campaignlist .folding .option table thead td {
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding .option table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#price #campaignlist .folding .option table tbody th,
#price #campaignlist .folding .option table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#price #campaignlist .folding .option table tbody tr.separate th,
#price #campaignlist .folding .option table tbody tr.separate td {
  border-bottom-style: solid;
}
#price #campaignlist .folding .option table tbody tr:last-child th,
#price #campaignlist .folding .option table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding .option table tbody td {
  line-height: 24px;
}
#price #campaignlist .folding .option table thead th,
#price #campaignlist .folding .option table thead td {
  height: 33px;
  box-sizing: border-box;
}
#price #campaignlist .folding .option table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
#price #campaignlist .folding .option table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
#price #campaignlist .folding .option table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
#price #campaignlist .folding .option table thead .note::before {
  content: "※";
  color: #ec7c78;
}
#price #campaignlist .folding .option table tbody tr:nth-child(even) th,
#price #campaignlist .folding .option table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
#price #campaignlist .folding .option table tbody th,
#price #campaignlist .folding .option table tbody td {
  line-height: 16/12;
}
#price #campaignlist .folding .option table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
#price #campaignlist .folding .option table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
#price #campaignlist .folding .option table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#price #campaignlist .folding .option table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
#price #campaignlist .folding .option table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
#price #campaignlist .folding .option table tfoot td {
  padding: 10px 15px;
}
#price #campaignlist .folding .option table tfoot .price-inclusion .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#price #campaignlist .folding .option table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#price #campaignlist .folding .option table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#price #campaignlist .folding .option table tfoot .inclusion-item .item-inner::after {
  content: "";
  display: block;
  flex: 1;
  order: 2;
  margin: 0 10px 0 25px;
  width: 100%;
  border-top: 1px dotted #baafa6;
}
#price #campaignlist .folding .option table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
#price #campaignlist .folding .option table tfoot .inclusion-item .summary {
  color: #b4afac;
}
#price #campaignlist .folding .option table tfoot .inclusion-item .price {
  order: 3;
}
#price #campaignlist .folding .option table thead th {
  line-height: 16px;
}
#price #campaignlist .folding .option table thead th .tax-include,
#price #campaignlist .folding .option table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#price #campaignlist .folding .option table thead th a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
  text-decoration: none;
  font-size: 0.8333333333em;
  color: #7f7875;
}
#price #campaignlist .folding .option table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
#price #campaignlist .folding .option table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
#price #campaignlist .folding .option table thead .icon.question {
  display: inline-block;
  position: relative;
  margin-right: -20px;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  background: url(../img/icon_question2.png);
  cursor: help;
  vertical-align: sub;
}
#price #campaignlist .folding .option table thead .icon.question .text {
  display: none;
}
#price #campaignlist .folding .option table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
#price #campaignlist .folding .option table thead .icon.question:hover .text, #price #campaignlist .folding .option table thead .icon.question:hover::after {
  position: absolute;
}
#price #campaignlist .folding .option table thead .icon.question:hover .text {
  display: block;
  right: -36px;
  bottom: 21px;
  z-index: 1;
  padding: 14px;
  width: 330px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #efece9;
  text-align: left;
  line-height: 1.5;
  font-size: 1em;
  font-style: normal;
  color: #7f7875;
  box-sizing: border-box;
}
#price #campaignlist .folding .option table thead .icon.question:hover::after {
  content: "";
  top: -6px;
  right: 3px;
  z-index: 2;
  border-top: 8px solid #efece9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
#price #campaignlist .folding .option table tbody th {
  line-height: 1.3333333333;
}
#price #campaignlist .folding .option table tbody td {
  line-height: 1.3333333333;
}
#price #campaignlist .folding .option table tbody td .price + .reduce ol {
  text-align: right;
}
#price #campaignlist .folding .option table tbody td .reduce ol li > span {
  display: inline;
}
#price #campaignlist .folding .option table tbody td .reduce ol li:nth-child(2) {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}
#price #campaignlist .folding .option table tbody td .reduce ol li:nth-child(2) span {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: normal;
}
#price #campaignlist .folding .option table thead th {
  border-right: 0;
  background-color: #f2efed;
}
#price #campaignlist .folding .option table thead th:first-child {
  padding-left: 6px;
  width: auto;
  border-left: 0;
  text-align: left;
}
#price #campaignlist .folding .option table thead span {
  display: block;
  padding-left: 12px;
  line-height: 34px;
}
#price #campaignlist .folding .option table tbody th {
  border-left: 0;
}
#price #campaignlist .folding .option table tbody td {
  border-right: 0;
}
#price #campaignlist .folding .option table tbody tr:last-child th,
#price #campaignlist .folding .option table tbody tr:last-child td {
  border-bottom: 0;
}
#price #campaignlist .folding .summary table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
  border: 1px solid #fff;
}
#price #campaignlist .folding .summary table thead td {
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding .summary table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#price #campaignlist .folding .summary table tbody th,
#price #campaignlist .folding .summary table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#price #campaignlist .folding .summary table tbody tr.separate th,
#price #campaignlist .folding .summary table tbody tr.separate td {
  border-bottom-style: solid;
}
#price #campaignlist .folding .summary table tbody tr:last-child th,
#price #campaignlist .folding .summary table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding .summary table tbody td {
  line-height: 24px;
}
#price #campaignlist .folding .summary table tbody th,
#price #campaignlist .folding .summary table tbody td,
#price #campaignlist .folding .summary table tbody tr:last-child th,
#price #campaignlist .folding .summary table tbody tr:last-child td {
  border: 0;
}
#price #campaignlist .folding .summary table tbody th {
  width: 116px;
  border-bottom: 1px solid #fff;
  background-color: #f2efed;
  text-align: center;
  line-height: 1.5;
}
#price #campaignlist .folding .summary table tbody td {
  padding: 22px;
  border-bottom: 1px dotted #baafa6;
}
#price #campaignlist .folding .summary table tbody .contents ul {
  margin: 0;
}
#price #campaignlist .folding .summary table tbody .contents li {
  margin-bottom: 21px;
  font-size: 1em;
}
#price #campaignlist .folding .summary table tbody .contents li li {
  margin: 0;
}
#price #campaignlist .folding .summary table tbody .contents li:last-child {
  margin-bottom: 0;
}
#price #campaignlist .folding .summary table tbody .contents dt {
  margin-bottom: 11px;
  padding: 6px 0 6px 16px;
  background: #f2efed;
}
#price #campaignlist .folding .summary table tbody .contents dd {
  margin-right: 16px;
  margin-left: 16px;
}
#price #campaignlist .folding .summary table tbody .contents dd dt,
#price #campaignlist .folding .summary table tbody .contents dd dd {
  display: inline;
  padding: 0;
  background: none;
  line-height: 1.6666666667;
  font-weight: normal;
}
#price #campaignlist .folding .summary table tbody .contents dd dt {
  margin-right: 10px;
}
#price #campaignlist .folding .summary table tbody .contents dd.price {
  padding-bottom: 5px;
  border-bottom: 1px solid #baafa6;
}
#price #campaignlist .folding .summary table tbody .contents dd.price > ul {
  width: 100%;
}
#price #campaignlist .folding .summary table tbody .contents dd.price > ul > li {
  width: 100%;
}
#price #campaignlist .folding .summary table tbody .contents dd.price > ul > li dl {
  display: flex;
  width: 100%;
}
#price #campaignlist .folding .summary table tbody .contents dd.price > ul > li dl > * {
  margin-bottom: 0;
}
#price #campaignlist .folding .summary table tbody .contents dd.price > ul > li dl > dd {
  flex: 1;
  margin: 0;
  text-align: right;
}
#price #campaignlist .folding .summary table tbody .contents dd.price dd > span {
  display: none;
}
#price #campaignlist .folding .summary table tbody .contents dd.price + .reduce {
  padding-top: 5px;
}
#price #campaignlist .folding .summary table tbody .contents dd.price + .reduce > ol {
  text-align: right;
}
#price #campaignlist .folding .summary table tbody .contents dd.reduce li {
  display: inline;
  line-height: 1.6666666667;
}
#price #campaignlist .folding .summary table tbody .contents dd.reduce li > span {
  font-size: 0.6em;
}
#price #campaignlist .folding .summary table tbody .contents dd.reduce li:first-child::after {
  content: "→";
}
#price #campaignlist .folding .summary table tbody .contents dd.reduce li:nth-child(2) {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}
#price #campaignlist .folding .summary table tbody .contents dd.reduce li:nth-child(2) span {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: normal;
}
#price #campaignlist .folding .summary table tbody .contents dd.reduce em {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#price #campaignlist .folding .summary table tbody .operation_place li {
  line-height: 1.5;
}
#price #campaignlist .folding .summary table tbody .conditions li {
  padding-left: 15px;
  background: url(../img/arrow/arrow5.png) left 4px no-repeat;
  line-height: 1.5;
}
#price #campaignlist .folding .summary table tbody .conditions li em {
  color: #ec7c78;
}
#price #campaignlist .folding .summary table tbody .flow li {
  position: relative;
  margin-bottom: 5px;
  padding: 0 0 12px 35px;
  background-position: 0 0;
  background-repeat: no-repeat;
  line-height: 22px;
}
#price #campaignlist .folding .summary table tbody .flow li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 62px;
  width: 8px;
  height: 8px;
  background: url(../img/arrow/arrow6.png) 0 0 no-repeat;
}
#price #campaignlist .folding .summary table tbody .flow li span {
  font-size: 0.8333333333em;
}
#price #campaignlist .folding .summary table tbody .flow li small {
  margin-left: 1em;
  font-size: 1em;
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(5) {
  background-image: url(../img/sprite/num/price-no5.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(6) {
  background-image: url(../img/sprite/num/price-no6.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(7) {
  background-image: url(../img/sprite/num/price-no7.png);
}
#price #campaignlist .folding .summary table tbody .flow li:nth-child(8) {
  background-image: url(../img/sprite/num/price-no8.png);
}
#price #campaignlist .folding .summary table tbody .flow li:last-child {
  margin: 0;
  padding-bottom: 0;
}
#price #campaignlist .folding .summary table tbody .flow li:last-child::before {
  content: initial;
}
#price #campaignlist .folding .summary table tbody .tel dt,
#price #campaignlist .folding .summary table tbody .tel dd {
  display: inline;
  line-height: 28px;
}
#price #campaignlist .folding .summary table tbody .tel dt {
  display: inline-block;
  width: 5em;
  font-size: 1.1666666667em;
  color: #ec7c78;
}
#price #campaignlist .folding .summary table tbody .tel dd:nth-child(2) {
  font-size: 1.5em;
  font-weight: bold;
  color: #ec7c78;
}
#price #campaignlist .folding .summary table tbody .net p,
#price #campaignlist .folding .summary table tbody .net li {
  line-height: 1.5;
}
#price #campaignlist .folding .summary table tbody .net small {
  font-size: 1em;
}
#price #campaignlist .folding .summary table tbody .net em {
  color: #ec7c78;
}
#price #campaignlist .folding .summary table tbody .net p {
  margin-bottom: 12px;
}
#price #campaignlist .folding .summary table tbody .net ul {
  margin-bottom: 15px;
}
#price #campaignlist .folding .summary table tbody .net li {
  margin-left: 2em;
  list-style-type: disc;
  color: #ec7c78;
}
#price #campaignlist .folding .summary table tbody .net .form {
  *zoom: 1;
  margin: 0;
}
#price #campaignlist .folding .summary table tbody .net .form::after {
  content: "";
  display: table;
  clear: both;
}
#price #campaignlist .folding .summary table tbody .net .form li {
  float: left;
  margin: 0 12px 0 0;
  list-style-type: none;
}
#price #campaignlist .folding .summary table tbody .net .form .c-button a {
  width: 206px;
  height: 55px;
  box-sizing: border-box;
}
#price #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
#price #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text::before, #price #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text::after {
  right: 4px;
}
#price #campaignlist .folding .summary table tbody .net .form .c-button.net a {
  display: flex;
  align-items: center;
}
#price #campaignlist .folding .summary table tbody .net .form .c-button.net a::after {
  content: none;
}
#price #campaignlist .folding .summary table tbody .net .form .c-button.net .inner-text {
  line-height: 1.4;
}
#price #campaignlist .exo .summary table tbody th {
  border-bottom: 1px dotted #baafa6;
}
#price #campaignlist .new .title a::after {
  content: "";
  display: block;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #a4948a;
}
#price #campaignlist .new.monitor .title a::after {
  background-image: url(../img/campaignlist_monitor_title_bg.png);
}
#price #campaignlist .new.monitor.is-open .title a::after {
  background-image: url(../img/campaignlist_monitor_title_bg_a.png);
}
#price #campaignlist .new.campaign .title a::after {
  background-image: url(../img/campaignlist_campaign_title_bg.png);
}
#price #campaignlist .new.campaign.is-open .title a::after {
  background-image: url(../img/campaignlist_campaign_title_bg_a.png);
}
#price body.botox #campaignlist .no1 .price table, #price body.bnls #campaignlist .no1 .price table {
  margin-bottom: 0;
}
#price body.ultraaccent #campaignlist .no2 .price table {
  margin-bottom: 0;
}
#price body.ultraaccent #campaignlist .no2 .price ul {
  margin-top: 15px;
}
#price .m-subcontents {
  margin-right: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
}
#price .m-subcontents .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}
#price #feature {
  margin-right: 10px;
  margin-left: 10px;
}
#price .m-price__schema {
  margin-top: 25px;
}
#price #pricelist table,
#price #pricelist #campaignlist .folding div.price table,
#price #pricelist #campaignlist .folding .option table,
#price #pricelist #campaignlist .folding .summary table {
  width: 100%;
}
#price #campaign {
  margin-top: 20px;
  font-size: 8px;
}
#price #campaign #campaignlist .folding .summary table tbody th {
  padding: 0;
  background-image: none;
}
#price #campaign #campaignlist .folding .summary table tbody td {
  background-color: #fff;
  text-align: left;
}
#price #campaign #campaignlist .folding .summary table tbody td small::before {
  content: none;
}
#price #campaign #campaignlist .folding .summary table tbody td .net p {
  font-size: 1.2em;
}
#price #campaign #campaignlist .folding .summary table tbody .conditions small {
  font-size: 8px;
}
#price #campaign #campaignlist .folding .summary table tbody .conditions td,
#price #campaign #campaignlist .folding .summary table tbody .flow td,
#price #campaign #campaignlist .folding .summary table tbody .tel td {
  font-size: 10px;
}
#price #campaign #campaignlist .folding .wrapper .details .summary .contents > td > ul > li:last-child .case-item:nth-last-child(2), #price #campaign #campaignlist .folding .wrapper .details .summary .contents > td > ul > li:last-child .case-item:last-child {
  margin-bottom: 8px;
}
#price #campaign #campaignlist .folding .wrapper .details .summary .contents .case {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 16px 0;
}
#price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item {
  margin-bottom: 19px;
  width: 240px;
}
#price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item figure {
  margin: 0;
}
#price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item img {
  width: 100%;
  height: auto;
}
#price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item figcaption {
  margin-top: 8px;
  font-size: 0.8333333333em;
}

#flow > ol {
  margin: 0 10px;
}
#flow > ol > li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  min-height: 202px;
  border-bottom: 1px dotted #baafa6;
  background-position: left 46px;
  background-repeat: no-repeat;
}
#flow > ol > li:nth-child(1) {
  background-image: url(../img/operation_flow_bg1.jpg?v=2);
}
#flow > ol > li:nth-child(2) {
  background-image: url(../img/operation_flow_bg2.jpg?v=2);
}
#flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg3.jpg?v=2);
}
#flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg4.jpg?v=2);
}
#flow > ol > li:nth-child(5) {
  background-image: url(../img/operation_flow_bg5.jpg?v=2);
}
#flow > ol > li:nth-child(6) {
  background-image: url(../img/operation_flow_bg6.jpg?v=2);
}
#flow > ol > li:nth-child(7) {
  background-image: url(../img/operation_flow_bg7.jpg?v=2);
}
#flow > ol > li:first-child .title {
  letter-spacing: 0.5em;
}
#flow > ol > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
#flow > ol > li li {
  margin: 0;
  padding: 0;
  min-height: 1px;
  border: 0;
  color: #7f7875;
}
#flow > ol > li section * {
  margin-left: 242px;
}
#flow > ol > li section * * {
  margin: 0;
}
#flow > ol > li .title {
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  border: 0;
  background: none;
  background-position: 0 0;
  background-repeat: no-repeat;
  line-height: 32px;
  font-size: 1.6em;
  font-weight: bold;
  color: #b3a79c;
}
#flow > ol > li:nth-child(1) .title {
  background-image: url(../img/sprite/num/flow-no1.png);
}
#flow > ol > li:nth-child(2) .title {
  background-image: url(../img/sprite/num/flow-no2.png);
}
#flow > ol > li:nth-child(3) .title {
  background-image: url(../img/sprite/num/flow-no3.png);
}
#flow > ol > li:nth-child(4) .title {
  background-image: url(../img/sprite/num/flow-no4.png);
}
#flow > ol > li:nth-child(5) .title {
  background-image: url(../img/sprite/num/flow-no5.png);
}
#flow > ol > li:nth-child(6) .title {
  background-image: url(../img/sprite/num/flow-no6.png);
}
#flow > ol > li:nth-child(7) .title {
  background-image: url(../img/sprite/num/flow-no7.png);
}
#flow > ol > li:nth-child(8) .title {
  background-image: url(../img/sprite/num/flow-no8.png);
}
#flow p {
  margin-bottom: 15px;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#flow ul {
  margin-top: 22px;
  margin-bottom: 22px;
}
#flow ul li:nth-child(n) {
  margin-left: 10px;
  padding-left: 15px;
  background: url(../img/list_bg.gif) left center no-repeat;
  line-height: 2;
  font-size: 1.2em;
}
#flow .info, #flow li:nth-child(1) ul {
  margin-bottom: 0;
  border: 1px solid #baafa6;
  border-bottom: 0;
}
#flow .info li, #flow li:nth-child(1) ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #baafa6;
  background-position: 41px 11px;
  background-repeat: no-repeat;
  font-size: 1em;
}
#flow .info li:nth-child(1), #flow li:nth-child(1) ul li:nth-child(1) {
  background-image: url(../img/sprite/info/flow-net.png);
}
#flow .info li:nth-child(2), #flow li:nth-child(1) ul li:nth-child(2) {
  background-image: url(../img/sprite/info/flow-tel.png);
}
#flow .info dl, #flow li:nth-child(1) ul dl {
  margin-left: 151px;
  padding: 0 0 0 41px;
  border-left: 1px dotted #baafa6;
  background: #f2efed;
}
#flow .info .net dl, #flow li:nth-child(1) ul .net dl {
  padding-top: 19px;
  padding-bottom: 20px;
}
#flow .info .net dt, #flow li:nth-child(1) ul .net dt {
  margin-bottom: 10px;
  font-size: 1.2em;
}
#flow .info .net dd, #flow li:nth-child(1) ul .net dd {
  display: block;
}
#flow .info .net dd .c-button a, #flow li:nth-child(1) ul .net dd .c-button a {
  width: 206px;
  box-sizing: border-box;
}
#flow .info .net dd .c-button a .inner-text, #flow li:nth-child(1) ul .net dd .c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
#flow .info .net dd .c-button a .inner-text::before, #flow .info .net dd .c-button a .inner-text::after, #flow li:nth-child(1) ul .net dd .c-button a .inner-text::before, #flow li:nth-child(1) ul .net dd .c-button a .inner-text::after {
  right: 4px;
}
#flow .info .tel dl, #flow li:nth-child(1) ul .tel dl {
  padding-top: 21px;
  padding-bottom: 20px;
}
#flow .info .tel dl dt, #flow li:nth-child(1) ul .tel dl dt {
  margin-bottom: 5px;
}
#flow .info .tel dl dt a, #flow li:nth-child(1) ul .tel dl dt a {
  color: #7f7875;
}
#flow .info .tel dl dt img, #flow li:nth-child(1) ul .tel dl dt img {
  margin-bottom: 8px;
}
#flow .info .tel dl dl, #flow li:nth-child(1) ul .tel dl dl {
  margin: 0;
  padding: 0;
  border: 0;
}
#flow .info .tel dl dl dt,
#flow .info .tel dl dl dd, #flow li:nth-child(1) ul .tel dl dl dt,
#flow li:nth-child(1) ul .tel dl dl dd {
  display: inline;
}
#flow .info .tel dl dl dt,
#flow .info .tel dl dl em, #flow li:nth-child(1) ul .tel dl dl dt,
#flow li:nth-child(1) ul .tel dl dl em {
  font-weight: bold;
}
#flow #oneday {
  margin-bottom: 0;
  border: 1px solid #baafa6;
}
#flow #previousday {
  border: 1px solid #baafa6;
}
#flow #previousday .title,
#flow #previousday p {
  display: table-cell;
  vertical-align: middle;
}
#flow #previousday .title {
  padding: 0;
  width: 151px;
  border-right: 1px dotted #baafa6;
  background: none;
  text-align: center;
  line-height: 1;
  font-size: 1.2em;
  font-weight: normal;
}
#flow #previousday p {
  padding: 15px 20px;
  background: #f2efed;
  line-height: 1.6666666667;
}
#flow ol li:last-child .info {
  margin-top: 22px;
  padding-bottom: 17px;
  border: none;
}
#flow ol li:last-child .info__title {
  margin-bottom: 13px;
  padding: 8px 10px;
  background: #d3cbc5;
  line-height: 1;
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W4", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #7f7875;
}
#flow #order {
  margin: 0 10px 30px;
  padding-bottom: 26px;
  border-bottom: 1px dotted #baafa6;
}

#qa .qa-list {
  margin: 0;
}
#qa .qa-item {
  overflow: hidden;
}
#qa .qa-item .question .text,
#qa .qa-item .answer .text {
  font-size: 1.6em;
  color: #7f7875;
}
#qa .qa-item .question {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
  border-bottom: 1px solid #d4d0ce;
  box-shadow: 0 0 6px rgba(0,0,0,.3);
  cursor: pointer;
}
#qa .qa-item .question::after {
  transform: rotate(90deg);
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  background: url(../img/arrow/arrow18.png) center no-repeat;
}
#qa .qa-item .question .text {
  font-weight: bold;
}
#qa .qa-item .answer {
  position: relative;
  padding-top: 25px;
  padding-right: 9px;
  padding-bottom: 15px;
}
#qa .qa-item .answer::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}
#qa .qa-item .answer .text {
  line-height: 1.625;
}
#qa .qa-item:nth-child(1) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no1_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(2) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no2_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(3) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no3_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(4) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no4_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(5) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no5_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(6) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no6_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(7) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no7_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(8) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no8_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(9) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no9_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(10) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no10_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(11) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no11_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(12) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no12_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(13) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no13_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(14) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no14_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(15) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no15_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(16) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no16_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(17) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no17_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(18) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no18_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(19) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no19_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item:nth-child(20) .question {
  background: url(../img/qa_question_title_bg.png) 21px center no-repeat, url(../img/qa_index_ranking_no20_bg2.png) right 37px bottom 12px no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
}
#qa .qa-item .question.question {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 76px;
  padding-left: 77px;
  min-height: 100px;
  background: url(../img/qa_question_title_bg.png) 20px center no-repeat, linear-gradient(to right, #fff 12.64%, #f5f2f0);
  cursor: auto;
  box-sizing: border-box;
}
#qa .qa-item .question.question .text {
  line-height: 1.4;
}
#qa .qa-item .question.question .category {
  font-size: 1.2em;
  color: #7f7875;
}
#qa .qa-item .question.question::after {
  content: initial;
}
#qa .qa-item .answer {
  padding-right: 40px;
  padding-bottom: 30px;
  padding-left: 77px;
  background: url(../img/qa_answer_title_bg.png) 23px 30px no-repeat, linear-gradient(280deg, #fdeeeb, #fef6f4);
}
#qa .qa-item .answer .title {
  margin-bottom: 15px;
  font-size: 1.6em;
  font-weight: bold;
  color: #7f7875;
}
#qa .qa-item .answer .text {
  margin-bottom: 15px;
}
#qa .qa-item .answer > .pic.right {
  float: right;
  margin: 0 0 20px 20px;
}
#qa .qa-item .answer .link {
  text-align: right;
}
#qa .qa-item .answer .link a {
  display: inline-block;
  padding: 0 30px 0 15px;
  border: 1px solid #d0cac8;
  border-radius: 8px;
  background: url(../img/arrow/arrow.png) right 10px center no-repeat #fff;
  line-height: 27px;
  color: #7f7875;
}
#qa .qa-item .answer *:last-child {
  margin-bottom: 0;
}
#qa .qa-item .sub-contents {
  *zoom: 1;
}
#qa .qa-item .sub-contents::after {
  content: "";
  display: table;
  clear: both;
}
#qa .qa-item .sub-contents + .sub-contents {
  margin-top: 20px;
}
#qa .qa-item .sub-contents > .title {
  margin-bottom: 10px;
  font-size: 1.6em;
  font-weight: bold;
  color: #7f7875;
}
#qa .qa-item .sub-contents .pic {
  overflow: hidden;
  float: none;
  margin: 0 0 20px;
  text-align: right;
}
#qa .qa-item .sub-contents.right .text {
  float: left;
  margin: 0;
  width: 365px;
}
#qa .qa-item .sub-contents.right .pic {
  float: right;
  margin: 0 0 20px 20px;
}
#qa .qa-item.latest-item {
  border-bottom: 1px solid #d4d0ce;
}
#qa .qa-item.latest-item .question {
  border: 0;
  background: url(../img/qa_question_title_bg.png) 20px center no-repeat;
  box-shadow: none;
}
#qa .qa-item.latest-item .title {
  line-height: 1.4;
  font-size: 1.6em;
  font-weight: bold;
  color: #7f7875;
}
#qa .qa-item.latest-item .question-text {
  position: relative;
  padding: 0 40px 30px 77px;
  line-height: 1.625;
  font-size: 1.6em;
  color: #7f7875;
}
#qa .qa-item.latest-item .answer {
  overflow: hidden;
}
#qa .qa-item.latest-item .answer::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 1px;
  box-shadow: 0 0 6px rgba(0,0,0,.3);
}

#main .line:not(.c-button) {
  overflow: hidden;
  margin-top: 30px;
}
#main .line:not(.c-button) .link {
  float: right;
  width: 284px;
}
#main .line:not(.c-button) .link a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 2px solid #554c48;
  background: -webkit-gradient(linear, left top, left bottom, from(#91847b), to(#443b34));
  background: linear-gradient(#91847b, #443b34);
  vertical-align: middle;
  line-height: 1.25;
  color: #f5f2f0;
  box-sizing: border-box;
  transition: opacity 0.1s linear;
}
#main .line:not(.c-button) .link a .inner-text {
  margin-left: 70px;
  padding-left: 40px;
  background: url(../img/qa_line.png) left center no-repeat;
  text-align: center;
  line-height: 2.5;
  font-size: 16px;
}
#main .line:not(.c-button) .link a:hover {
  opacity: 0.7;
  color: inherit !important;
}
#main .line:not(.c-button) .link a:hover > *, #main .line:not(.c-button) .link a:hover::before {
  opacity: 0.7;
  color: #f5f2f0;
}
#main .line:not(.c-button) .link a::before {
  display: block;
  flex-grow: 1;
  align-self: flex-end;
  order: 3;
  width: 100%;
  border-top: 1px solid #474038;
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  font-size: 10px;
}
#main .line:not(.c-button) .link a::after {
  content: "";
  display: inline-block;
  margin-right: 15px;
  width: 21px;
  height: 21px;
  background: url(../img/qa_line_arrow.png) right top no-repeat;
}
#main .line:not(.c-button) .link a::before {
  content: "メアド不要で気軽に質問";
}

.operations {
  margin-bottom: 40px;
}
.operations .operation-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
}
.operations .operation-item {
  box-sizing: border-box;
}
.operations .operation-item a {
  transition: opacity 0.1s linear;
  display: block;
  background: url(../img/arrow/arrow.png) right 10px center no-repeat;
  color: inherit;
}
.operations .operation-item a:hover {
  opacity: 1;
}
.operations .operation-item .item-inner {
  display: flow-root;
  position: relative;
  padding: 10px 0;
  min-height: 65px;
  transition: opacity 0.1s linear;
}
.operations .operation-item .item-inner:hover {
  opacity: 0.5;
}
.operations .operation-item .name {
  font-size: 1.6em;
  color: #6d9dd0;
}
.operations .operation-item .pic {
  position: absolute;
  top: 10px;
  left: 0;
  border: 1px solid #d7d4d3;
}
.operations .operation-item .text {
  font-size: 1.4em;
}
.operations .operation-item a {
  display: block;
  background: none;
  color: inherit;
}
.operations .operation-item a:hover {
  opacity: 1;
}
.operations .operation-item .item-inner {
  display: flow-root;
  position: relative;
  padding: 10px 30px 10px 10px;
  min-height: 65px;
  background: url(../img/arrow/arrow.png) right 10px center no-repeat;
  color: #7f7875;
  transition: opacity 0.1s linear;
}
.operations .operation-item .item-inner:hover {
  opacity: 0.5;
}
.operations .operation-item .name,
.operations .operation-item .text {
  margin-left: 76px;
}
.operations .operation-item .name {
  margin-bottom: 12px;
}
.operations .operation-item .pic {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid #d7d4d3;
}
.operations .operation-item .text {
  line-height: 1.4285714286;
  font-size: 1.4em;
}
.operations .operation-item .text::before {
  margin-top: -3px;
}
.operations .operation-item .text::after {
  margin-top: -3px;
}
.operations .others {
  justify-content: space-between;
  margin-bottom: 40px;
}
.operations .others .operation-item {
  flex-basis: 314px;
  margin: 0 10px;
  border-bottom: 1px dotted #d7d4d3;
}
.operations .others .operation-item .item-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 0 6px;
  background-position: right top 25px;
}
.operations .others .operation-item .pic {
  position: static;
  order: 1;
  margin: 0 10px 6px 0;
}
.operations .others .operation-item .pic img {
  width: 38px;
  height: auto;
}
.operations .others .operation-item .name {
  flex: 1;
  order: 2;
  margin: 0 20px 6px 0;
  line-height: 1.2857142857;
  font-size: 1.4em;
}
.operations .others .operation-item .name a {
  font-weight: bold;
  color: #7f7875;
}
.operations .others .operation-item .text {
  flex-basis: 100%;
  order: 3;
  margin: 0;
  line-height: 1.5714285714;
}
.operations .others .operation-item .text::before {
  margin-top: -4px;
}
.operations .others .operation-item .text::after {
  margin-top: -4px;
}
.operations .m-genre-item {
  margin: 0 10px;
}
.operations .m-genre-item > .title {
  margin-bottom: 7px;
  padding-left: 14px;
  border: 0;
  border-left: 5px solid #94bc5a;
  background: #f7f5f3;
  text-align: left;
  line-height: 2.2857142857;
  font-size: 1.4em;
  font-weight: bold;
  color: #7f7875;
}
.operations .m-genre-item .operation-list {
  margin-bottom: 20px;
}
.operations .m-genre-item .operation-item {
  margin: 0;
  border-top: 1px dotted #d7d4d3;
  border-bottom: 0;
}
.operations .m-genre-item .operation-item:nth-child(1), .operations .m-genre-item .operation-item:nth-child(2) {
  border: 0;
}
.operations .m-genre-item .operation-item .name {
  font-size: 1.5em;
}
.operations .m-genre-item .operation-item .name a {
  font-weight: bold;
}
.operations .m-genre-item .operation-item .text {
  line-height: 1.3333333333;
  font-size: 1.2em;
}

.m-particular {
  *zoom: 1;
}
.m-particular::after {
  content: "";
  display: table;
  clear: both;
}
.m-particular-item {
  float: left;
}
.m-particular-item + .m-particular-item {
  margin-left: 10px;
}

#body {
  float: right;
  width: 440px;
}
#body .title {
  margin: 0 0 10px;
  padding: 6px 0 6px 14px;
  min-height: 18px;
  border: 0;
  background: url(../img/operation_feature_body_title_bg.gif) left center no-repeat;
  line-height: 1.2857142857;
  font-size: 1.4em;
  color: #7f7875;
}
#body .title .fn {
  font-size: 0.0714285714em;
}
#body .multi {
  padding: 7.5px 0 7.5px 14px;
  height: 36px;
  background-image: url(../img/operation_feature_body_title_bg2.gif);
}
#body p,
#body li,
#body dt,
#body dd {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#body p *,
#body li *,
#body dt *,
#body dd * {
  font-size: 1em;
}
#body p,
#body ol,
#body ul,
#body li dl {
  margin-bottom: 20px;
}
#body li {
  margin-left: 2em;
  list-style-type: disc;
}
#body ol li {
  list-style-type: decimal;
}
#body .pic {
  margin: -5px 0 30px;
  text-align: center;
}
#body .pic .ref_note {
  display: block;
  padding: 2px 0 0;
  text-align: right;
  font-size: 10px;
}
#body .right {
  float: right;
  margin: 0 0 10px 10px;
}
#body .right .ref_note {
  display: block;
  padding: 2px 0 0;
  text-align: right;
  font-size: 10px;
}
#body .left {
  float: left;
  margin: 0 10px 10px 0;
}
#body .keyword {
  padding-right: 18px;
  border-bottom: 1px dotted #f00;
  background: url(../img/keyword_bg.gif) right top no-repeat;
  cursor: pointer;
}
#body .movie {
  margin-bottom: 30px;
}
#body #certification_mark {
  *zoom: 1;
  margin-bottom: 25px;
}
#body #certification_mark::after {
  content: "";
  display: table;
  clear: both;
}
#body #certification_mark dt {
  float: left;
  margin-right: 10px;
}
#body #certification_mark dd {
  overflow: hidden;
}
#body #certification_mark li {
  margin: 0;
  list-style-type: none;
}
#body #certification_mark div {
  margin: 0 auto;
}
#body .fn {
  vertical-align: super;
  font-size: 0.8333333333em;
}
#body #footnote {
  margin: 20px 0 0;
}
#body #footnote li {
  margin: 0;
  list-style-type: none;
  font-size: 1em;
}
#body #footnote dl {
  margin: 0;
}
#body #footnote dt,
#body #footnote dd {
  display: inline;
}
#body .link {
  text-align: right;
}
#body .link a {
  display: inline-block;
  padding: 19px 42px;
  background: url(../img/arrow/arrow16.png) right 11px center no-repeat #d3cbc5;
  opacity: 1;
  color: #7f7875;
  transition: all 0.1s linear;
}
#body .link a:hover {
  opacity: 0.6;
  color: #7f7875 !important;
}
#body aside {
  clear: both;
}
#body aside .banner {
  margin: 30px 0 0;
}
#body aside .banner ul {
  margin: 0;
}
#body aside .banner p,
#body aside .banner li {
  margin-bottom: 10px;
}
#body aside .banner p:last-child,
#body aside .banner li:last-child {
  margin-bottom: 0;
}
#body aside .banner li {
  margin-left: 0;
  list-style-type: none;
}

#contents {
  margin: 0 10px;
}
#contents .contents {
  margin-bottom: 30px;
}
#contents .contents > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}
#contents table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
  width: 100%;
}
#contents table thead td {
  border-bottom: 1px solid #baafa6;
}
#contents table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#contents table tbody th,
#contents table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#contents table tbody tr.separate th,
#contents table tbody tr.separate td {
  border-bottom-style: solid;
}
#contents table tbody tr:last-child th,
#contents table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#contents table tbody td {
  line-height: 24px;
}
#contents table thead td {
  border: 1px solid #baafa6;
}
#contents table thead th {
  padding: 6.5px 0;
  line-height: 1.25;
}
#contents table tbody tr:nth-child(even) th,
#contents table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
#contents table tbody th span {
  padding-left: 20px;
  background: url(../img/arrow/arrow.png) 5px 3px no-repeat;
}
#contents table tbody td {
  padding: 3px 5px;
  text-align: center;
  line-height: 1.4166666667;
}
#contents table thead th {
  padding-right: 5px;
  padding-left: 5px;
}
#contents .pagetop {
  margin-right: -10px;
}
#contents .ref_note {
  padding: 5px 0 0;
  line-height: 1.3333333333;
  font-size: 12px;
  color: #7f7875;
}
#contents .m-treatise > .title,
#contents .m-society > .title {
  margin-bottom: 5px;
  border: 0;
  background: none;
  font-size: 1.4em;
}
#contents .m-treatise > .title::before,
#contents .m-society > .title::before {
  content: "●";
}
#contents .m-treatise table,
#contents .m-society table {
  width: 100%;
  border: 1px solid #dbdad9;
  border-collapse: collapse;
  font-size: 1.2em;
  color: #7f7875;
}
#contents .m-treatise table th,
#contents .m-treatise table td,
#contents .m-society table th,
#contents .m-society table td {
  text-align: left;
}
#contents .m-treatise table tr:nth-child(even) th,
#contents .m-treatise table tr:nth-child(even) td,
#contents .m-society table tr:nth-child(even) th,
#contents .m-society table tr:nth-child(even) td {
  background: none;
}
#contents .m-treatise table tr:last-child th,
#contents .m-treatise table tr:last-child td,
#contents .m-society table tr:last-child th,
#contents .m-society table tr:last-child td {
  border-color: #dbdad9;
}
#contents .m-treatise table th,
#contents .m-society table th {
  padding: 0;
  height: 26px;
  border-right: 1px solid #dbdad9;
  background: #eae5e2;
  text-align: center;
}
#contents .m-treatise table th:nth-child(1),
#contents .m-society table th:nth-child(1) {
  width: 63px;
}
#contents .m-treatise table th:nth-child(2),
#contents .m-society table th:nth-child(2) {
  width: 185px;
}
#contents .m-treatise table th:nth-child(4),
#contents .m-society table th:nth-child(4) {
  width: 146px;
}
#contents .m-treatise table td,
#contents .m-society table td {
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #dbdad9;
  border-top: 0;
  vertical-align: top;
  line-height: 1.3333333333;
}

#recommend {
  margin-bottom: 30px;
  border: 1px solid #baafa6;
}
#recommend p {
  margin: 0;
}

#advice {
  margin: 20px 0 0;
  border: 1px solid #baafa6;
}
#advice .title {
  margin: 0;
  padding: 0 0 0 40px;
  min-height: 1px;
  border: 0;
  border-bottom: 1px solid #baafa6;
  background: url(../img/operation_advice_title_bg.gif) left top no-repeat;
  line-height: 30px;
}
#advice p {
  margin: 0;
  padding: 13px 18px;
}
#advice + .movie {
  margin: 30px 0 0;
}

#pic {
  float: left;
  width: 214px;
  text-align: center;
}
#pic > * {
  margin-bottom: 20px;
  line-height: 1.4;
  color: #7f7875;
}
#pic > *:last-child,
#pic > * * {
  margin: 0;
}
#pic p .ref_note {
  display: block;
  padding: 2px 0 0;
  width: 100%;
  text-align: right;
  color: #7f7875;
}
#pic img {
  border: 1px solid #baafa6;
}

#info table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
  width: calc(100% - 20px);
  border: 1px solid #baafa6;
}
#info table thead td {
  border-bottom: 1px solid #baafa6;
}
#info table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#info table tbody th,
#info table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#info table tbody tr.separate th,
#info table tbody tr.separate td {
  border-bottom-style: solid;
}
#info table tbody tr:last-child th,
#info table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#info table tbody td {
  line-height: 24px;
}
#info table tbody th {
  width: 76px;
  border-right-style: dotted;
  background: #f2efed;
  text-align: center;
  line-height: 1.4;
}
#info table tbody td {
  padding: 2px 20px;
  border-left: 0;
  line-height: 1.5;
}
#info table tbody td small {
  font-size: 1em;
}

#effect {
  margin: 0 10px;
}
#effect dl {
  display: table;
  padding: 6px 11px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  box-sizing: border-box;
}
#effect dt,
#effect dd {
  display: table-cell;
  vertical-align: middle;
}
#effect dt {
  padding-right: 10px;
  width: 32px;
}
#effect dt img {
  border: 1px solid #baafa6;
}
#effect dd {
  line-height: 1.1666666667;
  font-size: 1.2em;
}
#effect ul {
  display: flex;
  flex-wrap: wrap;
  box-shadow: inset 0 0 0 1px #baafa6;
}
#effect li {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-right: 1px dotted #baafa6;
  border-bottom: 1px dotted #baafa6;
}
#effect a {
  display: block;
  text-decoration: none;
  color: #7f7875;
}
#effect .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}
#effect li {
  width: 25%;
}

#dictionary .description {
  position: absolute;
  top: -100%;
  left: -100%;
}
#dictionary .wrapper-outer {
  padding: 5px;
  background: #463f3c;
}
#dictionary .wrapper-inner {
  margin: 0;
  padding: 15px 22px 19px;
  border: 2px solid #b8aca4;
  background: url(../img/dictionary_bg.gif) left top repeat-x #fff;
  font-size: 1.2em;
}
#dictionary .title {
  float: left;
  margin: 0;
  padding: 13px 94px 15px 0;
  min-height: 33px;
  border-bottom: 1px solid #cac1b9;
  background: url(../img/dictionary_title_bg.gif) right top no-repeat;
  line-height: 1;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  color: #463f3c;
}
#dictionary .title span {
  font-size: 1.4285714286em;
  font-weight: bold;
}
#dictionary .title .en {
  font-size: 0.7142857143em;
  font-weight: normal;
  color: #a5a09d;
}
#dictionary p {
  clear: both;
  margin: 0;
  padding-top: 7px;
  border-top: 1px solid #fff;
  line-height: 1.6666666667;
  color: #7f7875;
}

.m-sub-contents > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}

.m-column {
  margin-bottom: 30px;
}
.m-column-list {
  border: 1px solid #baafa6;
}
.m-column-list li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 1px dotted #baafa6;
}
* html .m-column-list li {
  height: 1%;
}
* + html .m-column-list li {
  height: 1%;
}
.m-column-list dl {
  position: relative;
}
.m-column-list .pic {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
.m-column-list dt,
.m-column-list dd {
  margin-left: 65px;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.m-column-list dt {
  margin-bottom: 6px;
}
.m-column-list dt a {
  text-decoration: none;
  color: #6d9dd0;
}
.m-column-list .new {
  float: right;
}
.m-column-list .new img {
  vertical-align: text-top;
}
.m-column-list .cat {
  text-align: right;
  font-size: 1em;
}
.m-column-list .cat ul,
.m-column-list .cat li {
  display: inline;
  padding: 0;
  border: 0;
}
.m-column-list .link {
  text-align: right;
}
.m-column-list .link a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
}
.m-column-list li {
  padding: 0;
}
.m-column-item {
  padding-right: 10px;
}
.m-column-item:nth-child(even) {
  background: #f2efed;
}
.m-column-item:last-child {
  border: 0;
}
.m-column-item .title,
.m-column-item .text {
  margin-left: 90px;
}
.m-column-item .title {
  font-size: 18px;
  font-weight: bold;
  color: #6d9dd0;
}
.m-column-item a {
  display: block;
  position: relative;
  padding: 10px;
  min-height: 70px;
}

.m-matome {
  margin-bottom: 30px;
}
.m-matome-list {
  *zoom: 1;
  border: 1px solid #baafa6;
}
.m-matome-list::after {
  content: "";
  display: table;
  clear: both;
}
.m-matome-list li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 1px dotted #baafa6;
}
* html .m-matome-list li {
  height: 1%;
}
* + html .m-matome-list li {
  height: 1%;
}
.m-matome-list dl {
  position: relative;
}
.m-matome-list .pic {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
.m-matome-list dt,
.m-matome-list dd {
  margin-left: 65px;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.m-matome-list dt {
  margin-bottom: 6px;
}
.m-matome-list dt a {
  text-decoration: none;
  color: #6d9dd0;
}
.m-matome-list .new {
  float: right;
}
.m-matome-list .new img {
  vertical-align: text-top;
}
.m-matome-list .cat {
  text-align: right;
  font-size: 1em;
}
.m-matome-list .cat ul,
.m-matome-list .cat li {
  display: inline;
  padding: 0;
  border: 0;
}
.m-matome-list .link {
  text-align: right;
}
.m-matome-list .link a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
}
.m-matome-list li {
  padding: 0;
}
.m-matome-item {
  box-sizing: border-box;
  float: left;
  padding-right: 10px;
  width: 50%;
  background: #fff;
}
.m-matome-item:nth-child(4n+1), .m-matome-item:nth-child(4n+2) {
  background: #f2efed;
}
.m-matome-item:nth-child(even) {
  border-left: 1px solid #baafa6;
}
.m-matome-item:nth-last-child(2):nth-child(odd), .m-matome-item:last-child {
  border-bottom: 0;
}
.m-matome-item .item-inner {
  position: relative;
  min-height: 70px;
}
.m-matome-item .pic {
  line-height: 1;
}
.m-matome-item .title {
  margin: 0 0 0 80px;
  padding: 3px 0 20px;
  line-height: 1.25;
  font-size: 16px;
  font-weight: bold;
  color: #6d9dd0;
}
.m-matome-item a {
  display: block;
  position: relative;
  padding: 10px;
  min-height: 70px;
}
.m-matome-item .attr {
  position: absolute;
  right: 0;
  bottom: 0;
}
.m-matome-item .attr-item {
  display: inline-block;
  color: #7f7875;
  margin-left: 10px;
  border: none;
  font-size: 0.8333333333em;
}
.m-matome-item .attr-item::before {
  font-family: fontAwesome;
  margin-right: 5px;
  font-size: 1.2em;
}
.m-matome-item .attr-item.view::before {
  content: "\f06e";
}
.m-matome-item.new {
  float: left;
}
.m-matome-item.new .attr .date::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 10px;
  background: url(../img/icon_new.gif) top left no-repeat;
  vertical-align: top;
}

.m-operation {
  margin-bottom: 40px;
}
.m-operation dl {
  display: table;
  padding: 6px 11px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  box-sizing: border-box;
}
.m-operation dt,
.m-operation dd {
  display: table-cell;
  vertical-align: middle;
}
.m-operation dt {
  padding-right: 10px;
  width: 32px;
}
.m-operation dt img {
  border: 1px solid #baafa6;
}
.m-operation dd {
  line-height: 1.1666666667;
  font-size: 1.2em;
}
.m-operation .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
}
.m-operation ul {
  *zoom: 1;
  border: 1px solid #baafa6;
}
.m-operation ul::after {
  content: "";
  display: table;
  clear: both;
}
.m-operation li {
  float: left;
  padding: 6px 11px;
  border-top: 1px dotted #baafa6;
  border-right: 1px dotted #baafa6;
  border-bottom: 1px dotted #baafa6;
}
.m-operation a {
  display: block;
  padding: 6px 11px;
  text-decoration: none;
  color: #7f7875;
}
.m-operation > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}

.m-genre.m-contents {
  margin-bottom: 30px;
}
.m-genre.m-contents dl {
  display: table;
  padding: 6px 11px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  box-sizing: border-box;
}
.m-genre.m-contents dt,
.m-genre.m-contents dd {
  display: table-cell;
  vertical-align: middle;
}
.m-genre.m-contents dt {
  padding-right: 10px;
  width: 32px;
}
.m-genre.m-contents dt img {
  border: 1px solid #baafa6;
}
.m-genre.m-contents dd {
  line-height: 1.1666666667;
  font-size: 1.2em;
}
.m-genre.m-contents ul {
  display: flex;
  flex-wrap: wrap;
  box-shadow: inset 0 0 0 1px #baafa6;
}
.m-genre.m-contents li {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-right: 1px dotted #baafa6;
  border-bottom: 1px dotted #baafa6;
}
.m-genre.m-contents a {
  display: block;
  text-decoration: none;
  color: #7f7875;
}
.m-genre.m-contents li {
  flex-basis: 25%;
}
.m-genre.m-contents dl:not(.area-link) {
  opacity: 0.6;
}
.m-genre.m-contents dl:not(.area-link) dd {
  color: #7f7875;
}

.m-for-customers {
  margin-bottom: 50px;
}
.m-for-customers .for-customers-contents {
  color: #7f7875;
}
.m-for-customers .for-customers-contents + .for-customers-contents {
  margin: 40px 0 0;
}
.m-for-customers .for-customers-contents > .title {
  padding-bottom: 10px;
  border-bottom: 1px solid #c7bcb5;
  text-align: center;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.8em;
  font-weight: bold;
}
.m-for-customers .for-customers-contents .text {
  line-height: 1.6666666667;
  font-size: 1.2em;
}
.m-for-customers .for-customers-contents.provider {
  margin-top: 40px;
}
.m-for-customers .for-customers-contents.provider .doctors {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 0 10px 0 20px;
  background: #f5f2f0;
}
.m-for-customers .for-customers-contents.provider .doctors-contents {
  position: relative;
  padding: 20px 10px 60px 0;
  width: 50%;
}
.m-for-customers .for-customers-contents.provider .doctors-contents > * {
  position: relative;
  z-index: 2;
  margin-left: 140px;
}
.m-for-customers .for-customers-contents.provider .doctors-contents > .title {
  margin-bottom: 17px;
}
.m-for-customers .for-customers-contents.provider .doctors-contents > .title a {
  display: inline-block;
  color: #7f7875;
}
.m-for-customers .for-customers-contents.provider .doctors-contents > .title .position {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4em;
}
.m-for-customers .for-customers-contents.provider .doctors-contents > .title .name {
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.2em;
  font-weight: bold;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .pic {
  position: absolute;
  top: 33px;
  left: 0;
  z-index: 1;
  margin: 0;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .license,
.m-for-customers .for-customers-contents.provider .doctors-contents .history {
  font-size: 1.2em;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .license > .title,
.m-for-customers .for-customers-contents.provider .doctors-contents .history > .title {
  margin-bottom: 4px;
  padding-bottom: 3px;
  border-bottom: 1px solid #c7bcb5;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .license-list {
  margin-left: 2em;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .license-item {
  list-style-type: disc;
  line-height: 1.1666666667;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .license-item + .license-item {
  margin-top: 4px;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .link {
  position: absolute;
  right: 10px;
  bottom: 20px;
  left: 0;
  margin: 0;
  text-align: right;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .link a {
  background: url(../img/arrow/arrow2_h.png) right center no-repeat;
  font-size: 1.2em;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .link a::after {
  content: "";
  display: inline-block;
  margin-left: 4px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) top left no-repeat;
  opacity: 1;
  transition: opacity 0.1s;
}
.m-for-customers .for-customers-contents.provider .doctors-contents .link:hover a::after {
  opacity: 0;
  transition: opacity 0.1s;
}
.m-for-customers .for-customers-contents.lead > .title, .m-for-customers .for-customers-contents.doctors > .title {
  margin-bottom: 6px;
}

.renuvion #flow > ol > li:nth-child(3),
.thermi_tight #flow > ol > li:nth-child(3),
.bnls #flow > ol > li:nth-child(3),
.breast_hyaluronicacid #flow > ol > li:nth-child(3),
.pfc #flow > ol > li:nth-child(3),
.silhouette #flow > ol > li:nth-child(3),
.baby_collagen #flow > ol > li:nth-child(3),
.co2_mesotherapy #flow > ol > li:nth-child(3),
.hyaluronicacid #flow > ol > li:nth-child(3),
.botox #flow > ol > li:nth-child(3),
.cleviel #flow > ol > li:nth-child(3),
.radiesse #flow > ol > li:nth-child(3),
.thermi_va #flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg5.jpg?v=2);
}
.renuvion #flow > ol > li:nth-child(4),
.thermi_tight #flow > ol > li:nth-child(4),
.bnls #flow > ol > li:nth-child(4),
.breast_hyaluronicacid #flow > ol > li:nth-child(4),
.pfc #flow > ol > li:nth-child(4),
.silhouette #flow > ol > li:nth-child(4),
.baby_collagen #flow > ol > li:nth-child(4),
.co2_mesotherapy #flow > ol > li:nth-child(4),
.hyaluronicacid #flow > ol > li:nth-child(4),
.botox #flow > ol > li:nth-child(4),
.cleviel #flow > ol > li:nth-child(4),
.radiesse #flow > ol > li:nth-child(4),
.thermi_va #flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg6.jpg?v=2);
}

/*	7-1-3.	ベイザーハイデフ// {{{
----------------------------------------------------------------------*/
.vaserhidef #bmi {
  padding: 10px;
  border: 1px solid #baafa6;
}
.vaserhidef #bmi .title {
  margin: 0 0 0.5em;
  border-radius: 1.2rem;
  background: #e5dfda;
  text-align: center;
  line-height: 2;
  font-size: 1.2em;
  font-weight: bold;
}
.vaserhidef #bmi img {
  border: 0;
}
.vaserhidef #bmi .text {
  margin: 5.5px 0;
  text-align: center;
  line-height: 1.25;
  font-size: 1.2em;
  color: #7f7875;
}
.vaserhidef #bmi #bmiform {
  padding-top: 8px;
  background: url(../img/vaserhidef_bmi_bg_header.gif) left top no-repeat #e5dfda;
}
.vaserhidef #bmi #bmiform fieldset {
  padding-bottom: 8px;
  background: url(../img/vaserhidef_bmi_bg_footer.gif) left bottom no-repeat;
}
.vaserhidef #bmi #bmiform ul {
  padding: 7px 15px;
}
.vaserhidef #bmi #bmiform #height {
  margin-bottom: 5px;
}
.vaserhidef #bmi #bmiform #button {
  padding-top: 8px;
  padding-right: 0;
}
.vaserhidef #bmi #bmiform #button li {
  display: inline;
  margin-right: 3px;
}
.vaserhidef #bmi #bmiform #button li input {
  width: 78px;
  height: 24px;
}
.vaserhidef #bmi #bmiform dt {
  float: left;
  margin-right: 0.5em;
  padding: 0.5em 1em;
  background: #a49489;
}
.vaserhidef #bmi #bmiform dt label {
  color: #fff;
}
.vaserhidef #bmi #bmiform dd {
  overflow: hidden;
  text-align: left;
  line-height: 2em;
}
.vaserhidef #bmi #bmiform dd input {
  padding: 0.35em;
  width: 80px;
  border: 1px solid #a49489;
  background: #fff;
  vertical-align: top;
}
.vaserhidef #bmi #message {
  margin-top: 15px;
  padding: 5px;
  border-top: 1px solid #ec7c78;
  border-right: 6px solid #ec7c78;
  border-bottom: 1px solid #ec7c78;
  border-left: 6px solid #ec7c78;
}
.vaserhidef #bmi #message p span {
  margin: 0 0.67em;
  font-size: 1.5em;
  color: #ec7c78;
}
.vaserhidef #bmi #message p .notice {
  font-size: 1em;
}
.vaserhidef #bmi #pr {
  margin: 10px 0 0;
  padding: 11px 0 5px;
  background: url(../img/border4.gif) left top repeat-x;
  line-height: 1.4em;
  font-size: 1em;
}
.vaserhidef #bmi #pr a {
  text-decoration: underline;
  color: #d63765;
}
.vaserhidef #bmi #pr a:hover {
  color: #ec7c78;
}

/*	7-1-3.	ベイザー4D// {{{
----------------------------------------------------------------------*/
.vaser4dsculpt #pic section section {
  border: 1px solid #baafa6;
  text-align: center;
}
.vaser4dsculpt #pic section section h1 {
  margin-bottom: 20px;
  background: #908177;
  line-height: 24px;
  font-size: 1.2em;
  font-weight: bold;
  color: #fff;
}
.vaser4dsculpt #pic section section div {
  margin: 0 auto 5px;
}
.vaser4dsculpt #pic section section div img {
  border: 0;
}
.vaser4dsculpt #pic section section div p {
  margin: 0;
  padding: 0;
  background: none;
  line-height: 1;
}
.vaser4dsculpt #pic section section p {
  margin-top: 15px;
  padding: 10px;
  background: #f2efed;
  text-align: left;
  line-height: 1.4;
  font-weight: bold;
}

/*	7-1-4.	LSN// {{{
----------------------------------------------------------------------*/
.lsn #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.lsn #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}
.lsn #contents table tbody tr th,
.lsn #contents table tbody tr td {
  background-color: #f2efed;
}
.lsn #contents table tbody tr:nth-child(even) th,
.lsn #contents table tbody tr:nth-child(even) td {
  background-color: #fff;
}

/*	7-1-5.	コンデンスリッチ豊胸// {{{
----------------------------------------------------------------------*/
.condenserich_breastaugmentation #anchor {
  margin-bottom: 40px;
}
.condenserich_breastaugmentation .m-contents {
  margin-bottom: 60px;
}
.condenserich_breastaugmentation .m-contents > * {
  margin-right: 10px;
  margin-left: 10px;
}
.condenserich_breastaugmentation .m-contents > .title {
  margin: 0 0 30px;
}
.condenserich_breastaugmentation .m-lead > .pic {
  margin-bottom: 30px;
}
.condenserich_breastaugmentation .m-lead .comment {
  position: relative;
  height: 195px;
}
.condenserich_breastaugmentation .m-lead .comment .text {
  position: relative;
  z-index: 1;
  padding: 22px 35px;
  width: 470px;
  background: #f5f2f0;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-lead .comment .text::before {
  content: "";
  display: block;
  position: absolute;
  right: -26px;
  bottom: 43px;
  border-top: 8px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 26px solid #f5f2f0;
}
.condenserich_breastaugmentation .m-lead .comment .text .inner-text {
  display: block;
  background: repeating-linear-gradient(transparent 0, transparent 29px, #e5dfdb 29px, #e5dfdb 30px);
  line-height: 2.1428571429;
  font-size: 1.4em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-lead .comment .pic {
  position: absolute;
  right: 0;
  bottom: 0;
}
.condenserich_breastaugmentation .m-case {
  *zoom: 1;
}
.condenserich_breastaugmentation .m-case::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-case .pic {
  float: left;
  margin-bottom: 14px;
}
.condenserich_breastaugmentation .m-case .pic + .pic {
  margin-right: 12px;
}
.condenserich_breastaugmentation .m-case .pic figcaption {
  margin-top: 5px;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-case .pic.full {
  float: none;
}
.condenserich_breastaugmentation .m-case .link {
  text-align: right;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-case .link a {
  text-decoration: underline;
}
.condenserich_breastaugmentation .m-case > .link a {
  padding-right: 15px;
}
.condenserich_breastaugmentation .m-features .text,
.condenserich_breastaugmentation .m-technique .text,
.condenserich_breastaugmentation .m-patent .text {
  color: #7f7875;
}
.condenserich_breastaugmentation .m-features > .text,
.condenserich_breastaugmentation .m-technique > .text,
.condenserich_breastaugmentation .m-patent > .text {
  margin-bottom: 24px;
  line-height: 1.8571428571;
  font-size: 1.4em;
}
.condenserich_breastaugmentation .m-features .anchor-link,
.condenserich_breastaugmentation .m-technique .anchor-link,
.condenserich_breastaugmentation .m-patent .anchor-link {
  float: left;
  margin-right: 20px;
  margin-bottom: 60px;
  width: 411px;
}
.condenserich_breastaugmentation .m-features .anchor-link-item,
.condenserich_breastaugmentation .m-technique .anchor-link-item,
.condenserich_breastaugmentation .m-patent .anchor-link-item {
  margin-bottom: 6px;
}
.condenserich_breastaugmentation .m-features .anchor-link-item:last-child,
.condenserich_breastaugmentation .m-technique .anchor-link-item:last-child,
.condenserich_breastaugmentation .m-patent .anchor-link-item:last-child {
  margin: 0;
}
.condenserich_breastaugmentation .m-features .anchor-link-item a,
.condenserich_breastaugmentation .m-technique .anchor-link-item a,
.condenserich_breastaugmentation .m-patent .anchor-link-item a {
  display: block;
  position: relative;
  padding: 28px 0 6px 81px;
  height: 62px;
  background: linear-gradient(#fcfbfb, #ddd8d1);
  font-size: 1.8em;
  font-weight: bold;
  color: #7f7875;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-features .anchor-link-item a::before, .condenserich_breastaugmentation .m-features .anchor-link-item a::after,
.condenserich_breastaugmentation .m-technique .anchor-link-item a::before,
.condenserich_breastaugmentation .m-technique .anchor-link-item a::after,
.condenserich_breastaugmentation .m-patent .anchor-link-item a::before,
.condenserich_breastaugmentation .m-patent .anchor-link-item a::after {
  content: "";
  display: block;
  position: absolute;
}
.condenserich_breastaugmentation .m-features .anchor-link-item a::before,
.condenserich_breastaugmentation .m-technique .anchor-link-item a::before,
.condenserich_breastaugmentation .m-patent .anchor-link-item a::before {
  top: 9px;
  left: 0;
  width: 66px;
  height: 46px;
  border-right: 1px solid #fff;
  background: url(../img/contents_operation_points_anchor_bg.png) center no-repeat;
  box-shadow: inset -1px 0 0 #c4c0be;
}
.condenserich_breastaugmentation .m-features .anchor-link-item a::after,
.condenserich_breastaugmentation .m-technique .anchor-link-item a::after,
.condenserich_breastaugmentation .m-patent .anchor-link-item a::after {
  top: 7px;
  left: 82px;
  width: 59px;
  height: 14px;
  background-position: left top;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-features .anchor-link-item:nth-child(1) a::after,
.condenserich_breastaugmentation .m-technique .anchor-link-item:nth-child(1) a::after,
.condenserich_breastaugmentation .m-patent .anchor-link-item:nth-child(1) a::after {
  background-image: url(../img/contents_operation_points_anchor_bg1.png);
}
.condenserich_breastaugmentation .m-features .anchor-link-item:nth-child(2) a::after,
.condenserich_breastaugmentation .m-technique .anchor-link-item:nth-child(2) a::after,
.condenserich_breastaugmentation .m-patent .anchor-link-item:nth-child(2) a::after {
  background-image: url(../img/contents_operation_points_anchor_bg2.png);
}
.condenserich_breastaugmentation .m-features .anchor-link-item:nth-child(3) a::after,
.condenserich_breastaugmentation .m-technique .anchor-link-item:nth-child(3) a::after,
.condenserich_breastaugmentation .m-patent .anchor-link-item:nth-child(3) a::after {
  background-image: url(../img/contents_operation_points_anchor_bg3.png);
}
.condenserich_breastaugmentation .m-features > .pic,
.condenserich_breastaugmentation .m-technique > .pic,
.condenserich_breastaugmentation .m-patent > .pic {
  overflow: hidden;
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-features-contents,
.condenserich_breastaugmentation .m-technique-contents,
.condenserich_breastaugmentation .m-patent-contents {
  clear: both;
  margin-bottom: 40px;
}
.condenserich_breastaugmentation .m-features-contents > .title,
.condenserich_breastaugmentation .m-technique-contents > .title,
.condenserich_breastaugmentation .m-patent-contents > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 20px;
}
.condenserich_breastaugmentation .m-features-contents > *,
.condenserich_breastaugmentation .m-patent-contents > * {
  margin-right: 10px;
  margin-left: 10px;
}
.condenserich_breastaugmentation .m-features-contents > .title,
.condenserich_breastaugmentation .m-patent-contents > .title {
  margin-right: 0;
  margin-left: 0;
}
.condenserich_breastaugmentation .m-features-contents > .pic,
.condenserich_breastaugmentation .m-patent-contents > .pic {
  margin-bottom: 40px;
}
.condenserich_breastaugmentation .m-features-contents > .pic.right,
.condenserich_breastaugmentation .m-patent-contents > .pic.right {
  float: right;
  margin: 0;
  padding: 0 0 5px 24px;
  background: #fff;
}
.condenserich_breastaugmentation .m-features-contents > .pic .pic-item,
.condenserich_breastaugmentation .m-patent-contents > .pic .pic-item {
  *zoom: 1;
  margin-bottom: 5px;
  background: url(../img/contents_operation_points_contents_pic_bg.gif) center bottom no-repeat #f5f2f0;
}
.condenserich_breastaugmentation .m-features-contents > .pic .pic-item::after,
.condenserich_breastaugmentation .m-patent-contents > .pic .pic-item::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-features-contents > .pic .pic-item-title,
.condenserich_breastaugmentation .m-patent-contents > .pic .pic-item-title {
  background: #999490;
  text-align: center;
}
.condenserich_breastaugmentation .m-features-contents > .pic .pic-item:last-of-type,
.condenserich_breastaugmentation .m-patent-contents > .pic .pic-item:last-of-type {
  margin-bottom: 2px;
}
.condenserich_breastaugmentation .m-features-contents > .pic .pic-item-contents-img,
.condenserich_breastaugmentation .m-patent-contents > .pic .pic-item-contents-img {
  float: left;
  margin-right: 20px;
  padding-top: 16px;
}
.condenserich_breastaugmentation .m-features-contents > .pic .pic-item-contents-text,
.condenserich_breastaugmentation .m-patent-contents > .pic .pic-item-contents-text {
  overflow: hidden;
  margin: 13px 20px 0 0;
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-features-contents > .text,
.condenserich_breastaugmentation .m-patent-contents > .text {
  margin-bottom: 25px;
  line-height: 1.8333333333;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-features-contents > .text em,
.condenserich_breastaugmentation .m-patent-contents > .text em {
  padding: 2px 0;
  background: #f2f1a3;
}
.condenserich_breastaugmentation .m-features-contents aside,
.condenserich_breastaugmentation .m-patent-contents aside {
  padding-top: 40px;
  border-top: 1px dashed #b9aea5;
}
.condenserich_breastaugmentation .m-features-contents.feature1 .pic-img {
  text-align: right;
}
.condenserich_breastaugmentation .m-features-contents.feature1 .pic3 .pic-item-title {
  background: #ec7c78;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic:last-child {
  margin-bottom: 0;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic-item-contents {
  *zoom: 1;
  padding: 11px 0;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic-item-contents::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic-item-contents-inner {
  position: relative;
  float: left;
  padding: 19px 20px 23px;
  width: 50%;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic-item-contents-inner:first-of-type {
  border-right: 1px dashed #b9aea5;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic-item-contents-img {
  float: none;
  margin: 0;
  padding: 0;
}
.condenserich_breastaugmentation .m-features-contents.feature2 .pic-item-contents-text {
  position: absolute;
  top: 50px;
  right: 20px;
  margin: 0;
  width: 135px;
  line-height: 1.5;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-features-contents.feature3 > .text {
  float: left;
  width: 471px;
}
.condenserich_breastaugmentation .m-features-contents.feature3 > .pic {
  float: right;
}
.condenserich_breastaugmentation .m-features-contents.feature3 aside {
  clear: both;
}
.condenserich_breastaugmentation .m-patent-contents.patent2 .pic-item {
  text-align: center;
}
.condenserich_breastaugmentation .m-inourcase,
.condenserich_breastaugmentation .m-subjection {
  *zoom: 1;
  box-sizing: border-box;
  position: relative;
  background: #faf6e7;
  padding: 20px 30px 30px;
}
.condenserich_breastaugmentation .m-inourcase::after,
.condenserich_breastaugmentation .m-subjection::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-inourcase::before, .condenserich_breastaugmentation .m-inourcase::after,
.condenserich_breastaugmentation .m-subjection::before,
.condenserich_breastaugmentation .m-subjection::after {
  content: "";
  display: block;
  position: absolute;
}
.condenserich_breastaugmentation .m-inourcase::before,
.condenserich_breastaugmentation .m-subjection::before {
  top: -4px;
  left: -5px;
  width: 36px;
  height: 57px;
  background: url(../img/contents_operation_subcontents_bg.gif) left top no-repeat;
}
.condenserich_breastaugmentation .m-inourcase::after,
.condenserich_breastaugmentation .m-subjection::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  border-top: 25px solid #ebe7d3;
  border-right: 25px solid #fff;
}
.condenserich_breastaugmentation .m-inourcase > .title,
.condenserich_breastaugmentation .m-subjection > .title {
  position: relative;
  padding-bottom: 7px;
  border-bottom: 1px solid #d0c7c0;
}
.condenserich_breastaugmentation .m-inourcase .contents,
.condenserich_breastaugmentation .m-subjection .contents {
  *zoom: 1;
}
.condenserich_breastaugmentation .m-inourcase .contents::after,
.condenserich_breastaugmentation .m-subjection .contents::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-inourcase .contents > .text,
.condenserich_breastaugmentation .m-subjection .contents > .text {
  float: left;
  background: url(../img/contents_operation_subcontents_text_bg.gif) left -4px;
  line-height: 2.5;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-inourcase .contents > .text a,
.condenserich_breastaugmentation .m-subjection .contents > .text a {
  display: block;
  position: relative;
  float: right;
  padding-left: 20px;
  text-decoration: underline;
}
.condenserich_breastaugmentation .m-inourcase .contents > .text a::before,
.condenserich_breastaugmentation .m-subjection .contents > .text a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow4.png) left top no-repeat;
}
.condenserich_breastaugmentation .m-inourcase .contents > .text a:hover::before,
.condenserich_breastaugmentation .m-subjection .contents > .text a:hover::before {
  background-image: url(../img/arrow/arrow4_h.png);
}
.condenserich_breastaugmentation .m-inourcase .contents > .pic,
.condenserich_breastaugmentation .m-subjection .contents > .pic {
  padding-top: 12px;
  text-align: right;
}
.condenserich_breastaugmentation .m-inourcase .title,
.condenserich_breastaugmentation .m-subjection .title {
  font-size: 1.8em;
  font-weight: bold;
  white-space: nowrap;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-inourcase .title > *,
.condenserich_breastaugmentation .m-subjection .title > * {
  display: inline-block;
  vertical-align: middle;
}
.condenserich_breastaugmentation .m-inourcase .title > .pic,
.condenserich_breastaugmentation .m-subjection .title > .pic {
  margin-right: 10px;
}
.condenserich_breastaugmentation .m-inourcase .title > .text,
.condenserich_breastaugmentation .m-subjection .title > .text {
  font-weight: bold;
}
.condenserich_breastaugmentation .m-inourcase .contents > .text,
.condenserich_breastaugmentation .m-subjection .contents > .text {
  width: 451px;
  background: repeating-linear-gradient(transparent 0, transparent 29px, #d0c7c0 29px, #d0c7c0 30px);
}
.condenserich_breastaugmentation .m-inourcase > .title::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 121px;
  height: 100px;
  background: url(../img/contents_operation_subcontents_doctor_ohashi.png) right bottom no-repeat;
}
.condenserich_breastaugmentation .m-technique {
  margin-bottom: 60px;
}
.condenserich_breastaugmentation .m-technique-item {
  *zoom: 1;
  margin: 0 10px 20px;
}
.condenserich_breastaugmentation .m-technique-item::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-technique-item > .title {
  margin: 0 0 10px;
  padding: 6px 0 6px 14px;
  min-height: 18px;
  border: 0;
  background: url(../img/operation_feature_body_title_bg.gif) left center no-repeat;
  line-height: 1.2857142857;
  font-size: 1.4em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-technique-item > .text {
  float: left;
  width: 442px;
  line-height: 1.8333333333;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-technique-item > .pic {
  float: right;
  width: 200px;
}
.condenserich_breastaugmentation .m-technique-item > .pic figcaption {
  margin-top: 5px;
  line-height: 1.2;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-technique .technique2 .no3 .text,
.condenserich_breastaugmentation .m-technique .technique2 .no3 .pic {
  float: none;
  width: auto;
}
.condenserich_breastaugmentation .m-technique .technique2 .no3 .text {
  margin-bottom: 20px;
}
.condenserich_breastaugmentation .m-reason-contents {
  position: relative;
  margin-bottom: 20px;
  padding-left: 185px;
  height: 110px;
  background: linear-gradient(to right, #f4f2f0, #f4f2f0 55%, #fff);
}
.condenserich_breastaugmentation .m-reason-contents:last-of-type {
  margin-bottom: 80px;
}
.condenserich_breastaugmentation .m-reason-contents::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 110px;
  background-position: left top;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-reason-contents .title {
  position: relative;
  margin-bottom: 10px;
  padding: 13px 0 15px 17px;
}
.condenserich_breastaugmentation .m-reason-contents .title::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(to right, #ea7d7a, #f0a09a 24%, #f5c2ba 79%, rgba(245,194,186,0));
}
.condenserich_breastaugmentation .m-reason-contents .text {
  margin: 0 0 0 17px;
  line-height: 1.4285714286;
  font-size: 1.4em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-reason-contents .pic {
  position: absolute;
  top: 0;
  left: 45px;
}
.condenserich_breastaugmentation .m-reason-contents.reason1::before {
  background-image: url(../img/contents_operation_reason1_bg.gif);
}
.condenserich_breastaugmentation .m-reason-contents.reason2::before {
  background-image: url(../img/contents_operation_reason2_bg.gif);
}
.condenserich_breastaugmentation .m-reason-contents.reason3::before {
  background-image: url(../img/contents_operation_reason3_bg.gif);
}
.condenserich_breastaugmentation .m-reason-contents.reason4::before {
  background-image: url(../img/contents_operation_reason4_bg.gif);
}
.condenserich_breastaugmentation .m-reason-contents.reason5::before {
  background-image: url(../img/contents_operation_reason5_bg.gif);
}
.condenserich_breastaugmentation .m-caution .text {
  float: left;
  margin-bottom: 44px;
  width: 465px;
  line-height: 1.8571428571;
  font-size: 1.4em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-caution .pic {
  overflow: hidden;
  text-align: right;
}
.condenserich_breastaugmentation .m-caution .seals {
  *zoom: 1;
  clear: both;
  margin: 0 97px;
  padding-left: 10px;
}
.condenserich_breastaugmentation .m-caution .seals::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-caution .seals > div {
  float: left;
  margin: 0 10px 10px 0;
}
.condenserich_breastaugmentation .m-doctor ul {
  margin-right: -10px;
}
.condenserich_breastaugmentation .m-doctor ul.main {
  margin-bottom: 20px;
}
.condenserich_breastaugmentation .m-doctor li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.condenserich_breastaugmentation .m-doctor li img {
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-doctor .advisor {
  *zoom: 1;
  margin-bottom: 40px;
}
.condenserich_breastaugmentation .m-doctor .advisor::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-doctor .advisor-item {
  float: left;
  margin-right: 10px;
  padding: 30px 31px 30px 30px;
  background: #eeebe8;
}
.condenserich_breastaugmentation .m-doctor .advisor-item:last-child {
  margin: 0;
}
.condenserich_breastaugmentation .m-doctor .text {
  margin-bottom: 30px;
  font-size: 1.4em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-doctor .advisor-item {
  padding: 23px 31px 23px 30px;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents {
  margin: 0 10px 20px;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents > .title {
  margin: 0 0 5px;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents > .title::before {
  content: "●";
  margin-right: 0.5em;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents table {
  width: 100%;
  border: 1px solid #dbdad9;
  border-collapse: collapse;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents table th {
  height: 26px;
  border-right: 1px solid #dbdad9;
  background: #eae5e2;
  text-align: center;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents table td {
  padding: 10px 12px;
  border: 1px solid #dbdad9;
  border-top: 0;
  vertical-align: top;
  line-height: 1.3333333333;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents table td:nth-child(1) {
  width: 63px;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents table td:nth-child(2) {
  width: 185px;
}
.condenserich_breastaugmentation .m-doctor .m-sub-contents table td:nth-child(4) {
  min-width: 76px;
}
.condenserich_breastaugmentation .m-faq-list {
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-faq-item {
  border-bottom: 1px solid #e6e0dc;
}
.condenserich_breastaugmentation .m-faq-item:last-child {
  border: 0;
}
.condenserich_breastaugmentation .m-faq-item .title {
  position: relative;
  background: url(../img/qa_list_bg.png) 12px center no-repeat;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-faq-item .title::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow4.png) left top no-repeat;
}
.condenserich_breastaugmentation .m-faq-item .title a {
  display: block;
  padding: 15px 42px;
  cursor: pointer;
}
.condenserich_breastaugmentation .m-faq-item .contents .contents-inner {
  padding: 15px 12px 15px 42px;
  background: url(../img/qa_frequently_answer_bg.png) 12px 10px no-repeat #f5f2f0;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-faq-item .contents .text {
  line-height: 1.3333333333;
}
.condenserich_breastaugmentation .m-faq-item .contents .link {
  margin-top: 0.5em;
  text-align: right;
}
.condenserich_breastaugmentation .m-faq-item .contents .link a {
  padding-right: 14px;
  background: url(../img/arrow/arrow2.png) right center no-repeat;
}
.condenserich_breastaugmentation .m-faq-item .contents .link a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.condenserich_breastaugmentation .m-flow > ol {
  margin: 0 10px;
}
.condenserich_breastaugmentation .m-flow > ol > li {
  margin-bottom: 30px;
  padding-bottom: 30px;
  min-height: 202px;
  border-bottom: 1px dotted #baafa6;
  background-position: left 46px;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(1) {
  background-image: url(../img/operation_flow_bg1.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(2) {
  background-image: url(../img/operation_flow_bg2.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg3.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg4.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(5) {
  background-image: url(../img/operation_flow_bg5.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(6) {
  background-image: url(../img/operation_flow_bg6.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(7) {
  background-image: url(../img/operation_flow_bg7.jpg?v=2);
}
.condenserich_breastaugmentation .m-flow > ol > li:first-child .title {
  letter-spacing: 0.5em;
}
.condenserich_breastaugmentation .m-flow > ol > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.condenserich_breastaugmentation .m-flow > ol > li li {
  margin: 0;
  padding: 0;
  min-height: 1px;
  border: 0;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-flow > ol > li section * {
  margin-left: 242px;
}
.condenserich_breastaugmentation .m-flow > ol > li section * * {
  margin: 0;
}
.condenserich_breastaugmentation .m-flow > ol > li .title {
  margin: 0 0 10px;
  padding: 0 0 0 40px;
  border: 0;
  background: none;
  background-position: 0 0;
  background-repeat: no-repeat;
  line-height: 32px;
  font-size: 1.6em;
  font-weight: bold;
  color: #b3a79c;
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(1) .title {
  background-image: url(../img/sprite/num/flow-no1.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(2) .title {
  background-image: url(../img/sprite/num/flow-no2.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(3) .title {
  background-image: url(../img/sprite/num/flow-no3.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(4) .title {
  background-image: url(../img/sprite/num/flow-no4.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(5) .title {
  background-image: url(../img/sprite/num/flow-no5.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(6) .title {
  background-image: url(../img/sprite/num/flow-no6.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(7) .title {
  background-image: url(../img/sprite/num/flow-no7.png);
}
.condenserich_breastaugmentation .m-flow > ol > li:nth-child(8) .title {
  background-image: url(../img/sprite/num/flow-no8.png);
}
.condenserich_breastaugmentation .m-flow p {
  margin-bottom: 15px;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-flow ul {
  margin-top: 22px;
  margin-bottom: 22px;
}
.condenserich_breastaugmentation .m-flow ul li:nth-child(n) {
  margin-left: 10px;
  padding-left: 15px;
  background: url(../img/list_bg.gif) left center no-repeat;
  line-height: 2;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-flow .info, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul {
  margin-bottom: 0;
  border: 1px solid #baafa6;
  border-bottom: 0;
}
.condenserich_breastaugmentation .m-flow .info li, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #baafa6;
  background-position: 41px 11px;
  background-repeat: no-repeat;
  font-size: 1em;
}
.condenserich_breastaugmentation .m-flow .info li:nth-child(1), .condenserich_breastaugmentation .m-flow li:nth-child(1) ul li:nth-child(1) {
  background-image: url(../img/sprite/info/flow-net.png);
}
.condenserich_breastaugmentation .m-flow .info li:nth-child(2), .condenserich_breastaugmentation .m-flow li:nth-child(1) ul li:nth-child(2) {
  background-image: url(../img/sprite/info/flow-tel.png);
}
.condenserich_breastaugmentation .m-flow .info dl, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul dl {
  margin-left: 151px;
  padding: 0 0 0 41px;
  border-left: 1px dotted #baafa6;
  background: #f2efed;
}
.condenserich_breastaugmentation .m-flow .info .net dl, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dl {
  padding-top: 19px;
  padding-bottom: 20px;
}
.condenserich_breastaugmentation .m-flow .info .net dt, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dt {
  margin-bottom: 10px;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-flow .info .net dd, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dd {
  display: block;
}
.condenserich_breastaugmentation .m-flow .info .net dd .c-button a, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dd .c-button a {
  width: 206px;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-flow .info .net dd .c-button a .inner-text, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dd .c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
.condenserich_breastaugmentation .m-flow .info .net dd .c-button a .inner-text::before, .condenserich_breastaugmentation .m-flow .info .net dd .c-button a .inner-text::after, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dd .c-button a .inner-text::before, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .net dd .c-button a .inner-text::after {
  right: 4px;
}
.condenserich_breastaugmentation .m-flow .info .tel dl, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl {
  padding-top: 21px;
  padding-bottom: 20px;
}
.condenserich_breastaugmentation .m-flow .info .tel dl dt, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dt {
  margin-bottom: 5px;
}
.condenserich_breastaugmentation .m-flow .info .tel dl dt a, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dt a {
  color: #7f7875;
}
.condenserich_breastaugmentation .m-flow .info .tel dl dt img, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dt img {
  margin-bottom: 8px;
}
.condenserich_breastaugmentation .m-flow .info .tel dl dl, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dl {
  margin: 0;
  padding: 0;
  border: 0;
}
.condenserich_breastaugmentation .m-flow .info .tel dl dl dt,
.condenserich_breastaugmentation .m-flow .info .tel dl dl dd, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dl dt,
.condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dl dd {
  display: inline;
}
.condenserich_breastaugmentation .m-flow .info .tel dl dl dt,
.condenserich_breastaugmentation .m-flow .info .tel dl dl em, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dl dt,
.condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel dl dl em {
  font-weight: bold;
}
.condenserich_breastaugmentation .m-flow #oneday {
  margin-bottom: 0;
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-flow #previousday {
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-flow #previousday .title,
.condenserich_breastaugmentation .m-flow #previousday p {
  display: table-cell;
  vertical-align: middle;
}
.condenserich_breastaugmentation .m-flow #previousday .title {
  padding: 0;
  width: 151px;
  border-right: 1px dotted #baafa6;
  background: none;
  text-align: center;
  line-height: 1;
  font-size: 1.2em;
  font-weight: normal;
}
.condenserich_breastaugmentation .m-flow #previousday p {
  padding: 15px 20px;
  background: #f2efed;
  line-height: 1.6666666667;
}
.condenserich_breastaugmentation .m-flow ol li:last-child .info {
  margin-top: 22px;
  padding-bottom: 17px;
  border: none;
}
.condenserich_breastaugmentation .m-flow ol li:last-child .info__title {
  margin-bottom: 13px;
  padding: 8px 10px;
  background: #d3cbc5;
  line-height: 1;
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W4", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 12px;
  font-weight: bold;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-flow-order {
  margin: 0 10px 30px;
  padding-bottom: 26px;
  border-bottom: 1px dotted #baafa6;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel {
  display: table;
  padding: 0;
  width: 288px;
  table-layout: fixed;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel > *, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel > * {
  display: table-cell;
  vertical-align: middle;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel-title, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel-title {
  width: 45px;
  border-bottom: 1px solid #fff;
  background-color: #c7bcb5;
  text-align: center;
  text-indent: 0.3em;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #fff;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel-contents, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel-contents {
  padding: 13px 0 13px 14px;
  border-bottom: 1px solid #c7bcb5;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel-contents-title, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel-contents-title {
  font-weight: normal;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel-contents-contents, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel-contents-contents {
  display: inline-block;
  margin-top: 5px;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel.nagoya .clinic-tel-title, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel.nagoya .clinic-tel-title {
  text-indent: 0;
  letter-spacing: 0;
}
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel:last-child .clinic-tel-title,
.condenserich_breastaugmentation .m-flow .info .tel .clinic-tel:last-child .clinic-tel-contents, .condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel:last-child .clinic-tel-title,
.condenserich_breastaugmentation .m-flow li:nth-child(1) ul .tel .clinic-tel:last-child .clinic-tel-contents {
  border-bottom: 0;
}
.condenserich_breastaugmentation .m-price #feature .pic {
  margin-bottom: 10px;
}
.condenserich_breastaugmentation .m-price #feature .pic img {
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-price #feature #service {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: 0;
  display: flex;
  column-gap: 10px;
  margin-bottom: 20px;
  margin-left: 0;
}
.condenserich_breastaugmentation .m-price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-price #feature #service a:hover img {
  opacity: 0;
}
.condenserich_breastaugmentation .m-price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-price #feature #service li a:hover img {
  opacity: 0;
}
.condenserich_breastaugmentation .m-price #feature #service li:nth-child(1) {
  background-image: url(../img/sprite/hover/price/price_nav_counseling_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li:nth-child(2) {
  background-image: url(../img/sprite/hover/price/price_nav_payment_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li {
  background-position: 0 0;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-price #feature #service a:hover img {
  opacity: 0;
}
.condenserich_breastaugmentation .m-price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.condenserich_breastaugmentation .m-price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.condenserich_breastaugmentation .m-price #counseling dl {
  display: flex;
  align-items: center;
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-price #counseling dt,
.condenserich_breastaugmentation .m-price #counseling dd {
  display: flex;
  align-items: center;
  height: 81px;
}
.condenserich_breastaugmentation .m-price #counseling dt {
  justify-content: center;
  width: 83px;
  border-right: 1px dotted #baafa6;
  background: #f2efed;
}
.condenserich_breastaugmentation .m-price #counseling dd {
  padding: 0 15px 0 29px;
}
.condenserich_breastaugmentation .m-price #counseling dd img {
  margin-right: 30px;
}
.condenserich_breastaugmentation .m-price #counseling dd small {
  display: inline-block;
  width: 270px;
  text-indent: -1em;
  line-height: 1.25;
  font-size: 1em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #counseling dd:nth-child(2) {
  flex: 1;
}
.condenserich_breastaugmentation .m-price #counseling dd:last-child {
  padding: 0 14px 0 0;
}
.condenserich_breastaugmentation .m-price #counseling dd.c-button {
  width: 206px;
}
.condenserich_breastaugmentation .m-price #counseling dd.c-button a {
  width: 206px;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-price #counseling dd.c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
.condenserich_breastaugmentation .m-price #counseling dd.c-button a .inner-text::before, .condenserich_breastaugmentation .m-price #counseling dd.c-button a .inner-text::after {
  right: 4px;
}
.condenserich_breastaugmentation .m-price #payment p,
.condenserich_breastaugmentation .m-price #payment li {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #payment p li,
.condenserich_breastaugmentation .m-price #payment li li {
  font-size: 1em;
}
.condenserich_breastaugmentation .m-price #payment small {
  font-size: 1em;
}
.condenserich_breastaugmentation .m-price #payment li,
.condenserich_breastaugmentation .m-price #payment dt {
  line-height: 39px;
}
.condenserich_breastaugmentation .m-price #payment li {
  display: list-item;
  padding: 0 0 0 40px;
  min-height: 39px;
  border-bottom: 1px dotted #baafa6;
  background-position: 13px 8px;
  background-repeat: no-repeat;
  font-weight: bold;
}
.condenserich_breastaugmentation .m-price #payment li:first-child {
  letter-spacing: 0.5em;
}
.condenserich_breastaugmentation .m-price #payment li:last-child {
  border: 0;
}
.condenserich_breastaugmentation .m-price #payment li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
.condenserich_breastaugmentation .m-price #payment li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
.condenserich_breastaugmentation .m-price #payment li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
.condenserich_breastaugmentation .m-price #payment li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
.condenserich_breastaugmentation .m-price #payment dt {
  float: left;
  width: 110px;
}
.condenserich_breastaugmentation .m-price #payment dd {
  overflow: hidden;
  padding: 10px 0 9px;
  line-height: 1.8333333333;
  font-weight: normal;
}
.condenserich_breastaugmentation .m-price #payment dd li,
.condenserich_breastaugmentation .m-price #payment dd dt {
  line-height: 1.8333333333;
}
.condenserich_breastaugmentation .m-price #payment dd dt {
  float: none;
  width: auto;
}
.condenserich_breastaugmentation .m-price #payment dd dd {
  overflow: auto;
  padding: 0;
}
.condenserich_breastaugmentation .m-price #payment dd li {
  margin-left: 2em;
  padding: 0;
  min-height: 1px;
  border: 0;
  list-style-type: decimal;
  font-weight: normal;
}
.condenserich_breastaugmentation .m-price #payment dd li:first-child {
  letter-spacing: 0;
}
.condenserich_breastaugmentation .m-price #payment dd li:nth-child(n) {
  background-image: none;
}
.condenserich_breastaugmentation .m-price #payment dd li li {
  margin: 0;
  list-style-type: none;
}
.condenserich_breastaugmentation .m-price #payment dd li li, .condenserich_breastaugmentation .m-price #payment dd li li::before {
  content: "◇";
}
.condenserich_breastaugmentation .m-price #payment .wrapper {
  margin: 0;
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-price #payment .wrapper p {
  padding-left: 12px;
  border-bottom: 1px dotted #baafa6;
  line-height: 28px;
}
.condenserich_breastaugmentation .m-price #pricelist .pagetop {
  margin-right: -10px;
}
.condenserich_breastaugmentation .m-price #pricelist table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #pricelist table thead td {
  border-bottom: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody th,
.condenserich_breastaugmentation .m-price #pricelist table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody tr.separate th,
.condenserich_breastaugmentation .m-price #pricelist table tbody tr.separate td {
  border-bottom-style: solid;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody tr:last-child th,
.condenserich_breastaugmentation .m-price #pricelist table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td {
  line-height: 24px;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th,
.condenserich_breastaugmentation .m-price #pricelist table thead td {
  height: 33px;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #pricelist table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .note::before {
  content: "※";
  color: #ec7c78;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody tr:nth-child(even) th,
.condenserich_breastaugmentation .m-price #pricelist table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody th,
.condenserich_breastaugmentation .m-price #pricelist table tbody td {
  line-height: 16/12;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot td {
  padding: 10px 15px;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .price-inclusion .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .inclusion-item .item-inner::after {
  content: "";
  display: block;
  flex: 1;
  order: 2;
  margin: 0 10px 0 25px;
  width: 100%;
  border-top: 1px dotted #baafa6;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .inclusion-item .summary {
  color: #b4afac;
}
.condenserich_breastaugmentation .m-price #pricelist table tfoot .inclusion-item .price {
  order: 3;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th {
  line-height: 16px;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th .tax-include,
.condenserich_breastaugmentation .m-price #pricelist table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
  text-decoration: none;
  font-size: 0.8333333333em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #pricelist table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.condenserich_breastaugmentation .m-price #pricelist table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .icon.question {
  display: inline-block;
  position: relative;
  margin-right: -20px;
  margin-left: 4px;
  width: 16px;
  height: 16px;
  background: url(../img/icon_question2.png);
  cursor: help;
  vertical-align: sub;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .icon.question .text {
  display: none;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .icon.question:hover .text, .condenserich_breastaugmentation .m-price #pricelist table thead .icon.question:hover::after {
  position: absolute;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .icon.question:hover .text {
  display: block;
  right: -36px;
  bottom: 21px;
  z-index: 1;
  padding: 14px;
  width: 330px;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #efece9;
  text-align: left;
  line-height: 1.5;
  font-size: 1em;
  font-style: normal;
  color: #7f7875;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-price #pricelist table thead .icon.question:hover::after {
  content: "";
  top: -6px;
  right: 3px;
  z-index: 2;
  border-top: 8px solid #efece9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody th {
  line-height: 1.3333333333;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td {
  line-height: 1.3333333333;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td .price + .reduce ol {
  text-align: right;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td .reduce ol li > span {
  display: inline;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td .reduce ol li:nth-child(2) {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}
.condenserich_breastaugmentation .m-price #pricelist table tbody td .reduce ol li:nth-child(2) span {
  font-family: YakuHanJP, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: normal;
}
.condenserich_breastaugmentation .m-price #pricelist table .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 10px;
  color: #918b88;
}
.condenserich_breastaugmentation .m-price #pricelist table .note::before {
  content: "※";
  color: #ec7c78;
}
.condenserich_breastaugmentation .m-price #pricelist table .note + .head-text {
  margin-bottom: 5px;
}
.condenserich_breastaugmentation .m-price #pricelist table + table {
  margin-top: 10px;
}
.condenserich_breastaugmentation .m-price #pricelist li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple {
  margin: 10px 0;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info {
  margin-top: 12px;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info li a:hover {
  opacity: 0;
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
.condenserich_breastaugmentation .m-price #pricelist .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
.condenserich_breastaugmentation .m-price #pricelist small {
  font-size: 1em;
}
.condenserich_breastaugmentation .m-price #pricelist small, .condenserich_breastaugmentation .m-price #pricelist small::before {
  content: "※";
}
.condenserich_breastaugmentation .m-price #pricelist small::before {
  color: #ec7c78;
}
.condenserich_breastaugmentation .m-price #pricelist .example {
  margin: 10px 0;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-price #pricelist .example img {
  display: block;
}
.condenserich_breastaugmentation .m-price #pricelist .option {
  margin: 40px 0 0;
}
.condenserich_breastaugmentation .m-price #pricelist .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
}
.condenserich_breastaugmentation .m-price #pricelist .option .title::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-price #pricelist .option .title > * {
  float: left;
}
.condenserich_breastaugmentation .m-price #pricelist .option .title-img {
  margin-right: 10px;
}
.condenserich_breastaugmentation .m-price #pricelist .option .title-text {
  padding-right: 24px;
  background: url(../img/price_option_title_bg.gif) right center no-repeat;
  line-height: 30px;
  font-size: 1.4em;
}
.condenserich_breastaugmentation .m-price #pricelist .option table thead th {
  background-color: #f2efed;
}
.condenserich_breastaugmentation .m-price #pricelist .option table thead th > span:not(.tax-included) {
  display: block;
  padding-left: 12px;
  border-left: 4px solid #94bc5a;
  line-height: 34px;
  font-size: 1.1666666667em;
}
.condenserich_breastaugmentation .m-price #pricelist .option table thead th:nth-child(1) {
  padding-left: 6px;
  width: auto;
  text-align: left;
}
.condenserich_breastaugmentation .m-price #pricelist {
  margin-bottom: 20px;
}
.condenserich_breastaugmentation .m-price #pricelist table {
  width: 100%;
}
.condenserich_breastaugmentation .m-price #pricelist .option {
  margin-top: 40px;
}
.condenserich_breastaugmentation .m-price #pricelist .option .title {
  color: #7f7875;
}
.condenserich_breastaugmentation #payment > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}
.condenserich_breastaugmentation .m-campaign {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
  background: url(../img/contents_condenserich-breastaugmentation_campaign_bg.png) left top no-repeat;
}
.condenserich_breastaugmentation .m-campaign a:hover > * {
  opacity: 0;
}
.condenserich_breastaugmentation .m-service {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: 0;
  margin: 0 0 30px 10px;
}
.condenserich_breastaugmentation .m-service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.condenserich_breastaugmentation .m-service a:hover img {
  opacity: 0;
}
.condenserich_breastaugmentation .m-service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.condenserich_breastaugmentation .m-service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.condenserich_breastaugmentation .m-service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.condenserich_breastaugmentation .m-summary table {
  width: calc(100% - 10px - 10px);
  border: 1px solid #c7bcb5;
  font-size: 1.4em;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-summary table th,
.condenserich_breastaugmentation .m-summary table td {
  border-bottom: 1px dotted #c7bcb5;
}
.condenserich_breastaugmentation .m-summary table th {
  width: 125px;
  border-right: 1px dotted #c7bcb5;
  background: #f2efed;
  text-align: center;
}
.condenserich_breastaugmentation .m-summary table td {
  padding: 12px 20px;
  line-height: 1.4285714286;
}
.condenserich_breastaugmentation .m-summary table .inner-text {
  margin-bottom: 5px;
  line-height: 1.4285714286;
}
.condenserich_breastaugmentation .m-summary table .inner-text small {
  font-size: 0.8571428571em;
}
.condenserich_breastaugmentation .m-operation {
  margin-bottom: 40px;
}
.condenserich_breastaugmentation .m-operation dl {
  display: table;
  padding: 6px 11px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  box-sizing: border-box;
}
.condenserich_breastaugmentation .m-operation dt,
.condenserich_breastaugmentation .m-operation dd {
  display: table-cell;
  vertical-align: middle;
}
.condenserich_breastaugmentation .m-operation dt {
  padding-right: 10px;
  width: 32px;
}
.condenserich_breastaugmentation .m-operation dt img {
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-operation dd {
  line-height: 1.1666666667;
  font-size: 1.2em;
}
.condenserich_breastaugmentation .m-operation .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
}
.condenserich_breastaugmentation .m-operation ul {
  *zoom: 1;
  border: 1px solid #baafa6;
}
.condenserich_breastaugmentation .m-operation ul::after {
  content: "";
  display: table;
  clear: both;
}
.condenserich_breastaugmentation .m-operation li {
  float: left;
  padding: 6px 11px;
  border-top: 1px dotted #baafa6;
  border-right: 1px dotted #baafa6;
  border-bottom: 1px dotted #baafa6;
}
.condenserich_breastaugmentation .m-operation a {
  display: block;
  padding: 6px 11px;
  text-decoration: none;
  color: #7f7875;
}
.condenserich_breastaugmentation .m-operation > .title {
  margin-bottom: 20px;
  padding: 0 0 1px 12px;
  height: 31px;
  border: 0;
  background: url(../img/subtitle_bg.gif) left top repeat-x;
  line-height: 31px;
  font-size: 1.4em;
  color: #7f7875;
  border-top: 3px solid #94bc5a;
  border-bottom: 1px solid #baafa6;
  margin-bottom: 10px;
}

/*	7-1-6.	ウルトラアクセント// {{{
----------------------------------------------------------------------*/
.ultraaccent#index #pic p.pic img {
  border: 0;
}

/*	7-1-8.	しこり外来// {{{
----------------------------------------------------------------------*/
.breast_tumour #pic p.pic:last-child img {
  border: 0;
}

/*	7-1-9.	CRF注入// {{{
----------------------------------------------------------------------*/
.crfinjection #contents #additional2 p, .crfface #contents #additional2 p {
  text-align: center;
}

/*	7-1-9.	3D Cell Lift// {{{
----------------------------------------------------------------------*/
.cell_lift #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.cell_lift #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}
.cell_lift #pic .pic:last-child img {
  border: 0;
}

/*	7-1-10.	美容外科施術// {{{
----------------------------------------------------------------------*/
.plasticsurgery #feature {
  margin-bottom: 40px;
}
.plasticsurgery #info p {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.plasticsurgery #info a {
  text-decoration: none;
  color: #6d9dd0;
}
.plasticsurgery #list {
  margin: 0 10px;
}
.plasticsurgery #list .wrapper {
  position: relative;
  margin: 2px;
  padding: 13px 20px 33px;
  min-height: 72px;
  background: #f2efed;
}
.plasticsurgery #list .subtitle,
.plasticsurgery #list p {
  margin-left: 92px;
}
.plasticsurgery #list .subtitle {
  margin-bottom: 8px;
  padding-top: 6px;
  line-height: 1;
  font-size: 1.4em;
  color: #ec7c78;
}
.plasticsurgery #list p {
  margin-bottom: 9px;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.plasticsurgery #list .pic {
  position: absolute;
  top: 18px;
  left: 20px;
  margin: 0;
}
.plasticsurgery #list .pic img {
  border: 1px solid #baafa6;
}
.plasticsurgery #list section {
  border: 1px solid #baafa6;
}
.plasticsurgery #list section .title {
  margin: 0;
  padding: 1px;
  height: auto;
  border: 0;
  border-bottom: 1px solid #baafa6;
  background: none;
  line-height: 1;
}
.plasticsurgery #list section footer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px dotted #baafa6;
}
.plasticsurgery #list section footer .link {
  margin: 0;
  padding: 10px 20px 10px 0;
  text-align: right;
  line-height: 1;
}
.plasticsurgery #list section footer .link a {
  padding-left: 18px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
  text-decoration: none;
}
.plasticsurgery #list section footer .link a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.plasticsurgery #list li .wrapper {
  position: relative;
  padding-right: 0;
  padding-left: 0;
  min-height: 135px;
}
.plasticsurgery #list li .subtitle,
.plasticsurgery #list li p {
  margin-right: 20px;
  margin-bottom: 13px;
  margin-left: 152px;
}
.plasticsurgery #list li .pic {
  margin: 0;
}
.plasticsurgery #list section {
  margin-bottom: 10px;
}
.plasticsurgery #list .wrapper {
  padding-bottom: 33px;
}

/*	7-1-11.	Vタイトニング// {{{
----------------------------------------------------------------------*/
.vtightening #pic p.pic img {
  border: 0;
}

/*	7-1-12.	CRFフェイス// {{{
----------------------------------------------------------------------*/
.crfface #additional1 p {
  text-align: center;
}

.srf #pic .pic + .ref_note {
  display: block;
  margin-top: -16px;
  text-align: right;
}

.breast_counseling #body .title,
.elastography #body .title {
  clear: both;
}

.\31 day_liposuction #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.\31 day_liposuction #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}
.\31 day_liposuction #body > section > .table-wrapper table {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  border-bottom: 1px solid #baafa6;
  table-layout: fixed;
  font-size: 1.2em;
  color: #7f7875;
  width: 100%;
}
.\31 day_liposuction #body > section > .table-wrapper table thead td {
  border-bottom: 1px solid #baafa6;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody th,
.\31 day_liposuction #body > section > .table-wrapper table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody tr.separate th,
.\31 day_liposuction #body > section > .table-wrapper table tbody tr.separate td {
  border-bottom-style: solid;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody tr:last-child th,
.\31 day_liposuction #body > section > .table-wrapper table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody td {
  line-height: 24px;
}
.\31 day_liposuction #body > section > .table-wrapper table thead td {
  border: 1px solid #baafa6;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th {
  padding: 6.5px 0;
  line-height: 1.25;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody tr:nth-child(even) th,
.\31 day_liposuction #body > section > .table-wrapper table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody th span {
  padding-left: 20px;
  background: url(../img/arrow/arrow.png) 5px 3px no-repeat;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody td {
  padding: 3px 5px;
  text-align: center;
  line-height: 1.4166666667;
}
.\31 day_liposuction #body > section > .table-wrapper table th {
  padding-right: 3px;
  padding-left: 3px;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th {
  background: #eae6e3;
  line-height: 1.1666666667;
  box-sizing: border-box;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th:nth-child(1) {
  width: 88px;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th:nth-child(2), .\31 day_liposuction #body > section > .table-wrapper table thead th:nth-child(3), .\31 day_liposuction #body > section > .table-wrapper table thead th:nth-child(4) {
  width: 44px;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th:nth-child(5) {
  width: 124px;
}
.\31 day_liposuction #body > section > .table-wrapper table thead th:nth-child(6) {
  width: 89px;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody th,
.\31 day_liposuction #body > section > .table-wrapper table tbody td {
  line-height: 1.1666666667;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody th {
  background: #fce8e3;
  text-align: center;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody td {
  padding: 3px;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody td:nth-child(5), .\31 day_liposuction #body > section > .table-wrapper table tbody td:nth-child(6) {
  vertical-align: top;
  text-align: left;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody tr:nth-child(even) th {
  background: #fce8e3;
}
.\31 day_liposuction #body > section > .table-wrapper table tbody tr:nth-child(even) td {
  background: none;
}
.\31 day_liposuction #body > section > .table-wrapper table ul {
  margin: 0;
}
.\31 day_liposuction #body > section > .table-wrapper table li {
  margin-left: 1.5em;
  text-align: left;
  line-height: 1.1666666667;
  font-size: 1em;
}
.\31 day_liposuction #case .case-info {
  margin: 0 30px 10px;
}
.\31 day_liposuction #case .case-info th,
.\31 day_liposuction #case .case-info td {
  padding: 5px 10px;
  vertical-align: top;
  line-height: 1.3333333333;
  font-size: 12px;
  color: #7f7875;
}
.\31 day_liposuction #case .case-info th {
  width: 85px;
  text-align-last: justify;
  color: #595350;
}
.\31 day_liposuction #case .case-info th.no-just {
  padding-left: 0;
  text-align-last: left;
}
.\31 day_liposuction #case .case-info td a {
  display: block;
  margin-top: 3px;
}
.\31 day_liposuction #case .\33 60lipo {
  margin-top: 50px;
  padding: 20px;
  border-radius: 8px;
  background: #f0edea;
  color: #7f7875;
}
.\31 day_liposuction #case .\33 60lipo__title {
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.5;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 22px;
}
.\31 day_liposuction #case .\33 60lipo__title em {
  background-image: linear-gradient(transparent 70%, #f5b5ab 30%);
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.\31 day_liposuction #case .\33 60lipo__text {
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}
.\31 day_liposuction #case .\33 60lipo-box1 {
  position: relative;
  margin-bottom: 35px;
  padding: 14px 0 10px;
  border-top: 1px solid #7f7875;
  border-bottom: 1px solid #7f7875;
}
.\31 day_liposuction #case .\33 60lipo-box1__title {
  width: 287px;
  text-align: center;
  line-height: 1.4210526316;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 17px;
}
.\31 day_liposuction #case .\33 60lipo-box1__title em {
  font-size: 19px;
  font-weight: bold;
  color: #ee7b75;
}
.\31 day_liposuction #case .\33 60lipo-box1-list {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}
.\31 day_liposuction #case .\33 60lipo-box1-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  width: fit-content;
  height: 22px;
  border-radius: 4px;
  background: #7f7875;
  font-feature-settings: "palt";
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}
.\31 day_liposuction #case .\33 60lipo-box1-list__item:nth-child(2) {
  margin-left: 50px;
}
.\31 day_liposuction #case .\33 60lipo-box1-list__item:nth-child(3) {
  margin-left: 30px;
}
.\31 day_liposuction #case .\33 60lipo-box1-list__item + .\33 60lipo-box1-list__item {
  margin-top: 3px;
}
.\31 day_liposuction #case .\33 60lipo-box1-list::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -35px;
  padding: 0 10px;
  width: 58px;
  height: 29px;
  background: url(../../img/contents_common_360lipo_box1_pic2.png) center no-repeat #f0edea;
  transform: translateX(-50%);
}
.\31 day_liposuction #case .\33 60lipo-box1__pic {
  position: absolute;
  top: 14px;
  right: 0;
}
.\31 day_liposuction #case .\33 60lipo-box2 {
  margin-bottom: 20px;
}
.\31 day_liposuction #case .\33 60lipo-box2__title {
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
  text-align: center;
  font-feature-settings: "palt";
  font-size: 20px;
  font-weight: bold;
  color: #ee7b75;
}
.\31 day_liposuction #case .\33 60lipo-box2-list {
  display: flex;
  justify-content: space-between;
  margin: -5px auto 22px;
  width: 470px;
}
.\31 day_liposuction #case .\33 60lipo-box2-list__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 142px;
  height: 142px;
  text-align: center;
}
.\31 day_liposuction #case .\33 60lipo-box2-list__item__title {
  margin-bottom: 17px;
  width: 70px;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  background-image: linear-gradient(transparent 70%, #f5b5ab 30%);
  background-position: 0 100%;
  background-repeat: no-repeat;
}
.\31 day_liposuction #case .\33 60lipo-box2-list__item__text {
  position: relative;
  z-index: 1;
  line-height: 1.4166666667;
  font-feature-settings: "palt";
  font-size: 12px;
}
.\31 day_liposuction #case .\33 60lipo-box2-list__item::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
}
.\31 day_liposuction #case .\33 60lipo-box2__text {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.\31 day_liposuction #case .\33 60lipo-box3 {
  margin-bottom: 20px;
  position: relative;
  padding: 20px;
  border: 1px solid #c5c1bf;
  background: #fff;
}
.\31 day_liposuction #case .\33 60lipo-box3__title, .\31 day_liposuction #case .\33 60lipo-box3__text {
  margin-right: 205px;
}
.\31 day_liposuction #case .\33 60lipo-box3__title {
  margin-bottom: 8px;
  line-height: 1.6;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 15px;
  color: #59504d;
}
.\31 day_liposuction #case .\33 60lipo-box3__text {
  background: url(../../img/contents_common_360lipo_box3_pic2.png) right bottom no-repeat;
  text-align: justify;
  line-height: 1.7692307692;
  font-feature-settings: "palt";
  font-size: 13px;
}
.\31 day_liposuction #case .\33 60lipo-box3__text span {
  display: block;
  margin-top: 3px;
  text-align: right;
  line-height: 1;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 12px;
  color: #59504d;
}
.\31 day_liposuction #case .\33 60lipo-box3__text span em {
  font-size: 16px;
}
.\31 day_liposuction #case .\33 60lipo-box3__pic {
  position: absolute;
  top: 20px;
  right: 20px;
}
.\31 day_liposuction #case .\33 60lipo .link {
  text-align: right;
  font-size: 1.4em;
}
.\31 day_liposuction #case .\33 60lipo .link a {
  display: inline-block;
  padding: 19px 42px;
  background: url(../../img/arrow/arrow16.png) right 11px center no-repeat #d3cbc5;
  color: #7f7875;
  transition: all 0.1s linear;
}
.\31 day_liposuction #case .\33 60lipo .link a:hover {
  opacity: 0.6;
  color: #7f7875 !important;
}
.\31 day_liposuction #flow > ol > li:nth-child(2) {
  background-image: url(../img/operation_flow_bg12.jpg);
}
.\31 day_liposuction #flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg2.jpg);
}
.\31 day_liposuction #flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg6.jpg);
}
.\31 day_liposuction .m-price__schema {
  margin-right: 0;
  margin-left: 0;
}
.\31 day_liposuction .m-price__schema__button {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
  color: #7f7875;
}
.\31 day_liposuction .m-price__schema__button::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow4.png) right center no-repeat;
}
.\31 day_liposuction .m-price__schema .js-accordion-contents,
.\31 day_liposuction .m-price__schema .js-accordion-contents-inner {
  margin: 0;
}
.\31 day_liposuction .m-price__schema .js-accordion-contents-inner {
  padding-top: 20px;
}
.\31 day_liposuction .js-accordion-contents {
  overflow: hidden;
  height: 0;
  min-height: 0;
  transition: all 0.4s ease-in;
  transform: translate3d(0, 0, 0);
}
.\31 day_liposuction .js-accordion.is-open > .js-accordion-button::after {
  transform: rotate(-180deg);
}

.hearthiplift #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.hearthiplift #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.elevenlift #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.elevenlift #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.hyaluronicacid #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.hyaluronicacid #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.ppp_body #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.ppp_body #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.mintlift #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.mintlift #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.chemicalpeeling #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.chemicalpeeling #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.mesotherapy #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.mesotherapy #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.repair_liposuction #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.repair_liposuction #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.softbiocellbag #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.softbiocellbag #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.bnls #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.bnls #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.sagging_palpebra #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.sagging_palpebra #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.retouch_breast_reconstruction #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.retouch_breast_reconstruction #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}
.retouch_breast_reconstruction #flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg7.jpg?v=2);
}
.retouch_breast_reconstruction #flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg3.jpg?v=2);
}

.breast_hyaluronicacid #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.breast_hyaluronicacid #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.drarrivofacial #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.drarrivofacial #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.plasticsurgery_palpebra #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.plasticsurgery_palpebra #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.sagging_face_neck #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.sagging_face_neck #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.brava #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.brava #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.thermi_tight #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.thermi_tight #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.sd_bodylift #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.sd_bodylift #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.actserum #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.actserum #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.silhouette #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.silhouette #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.vaser_smooth #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.vaser_smooth #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.thermi_va #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.thermi_va #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.pfc #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.pfc #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.ppp_gel #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.ppp_gel #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.botox #header, #price body.bnls #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.botox #header::before, #price body.bnls #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.renuvion #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.renuvion #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}
.renuvion #body .notice {
  margin-top: -30px;
  margin-bottom: 20px;
  text-align: right;
  font-size: 1em;
}
.renuvion #body .info__text {
  line-height: 1.4;
  font-size: 10px;
  color: #7f7875;
}
.renuvion #body .info__text span {
  color: #595350;
}
.renuvion #body .info__text + .info__text {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dotted #7f7875;
}

.crfinjection #header, .crfface #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.crfinjection #header::before, .crfface #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.baby_collagen #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.baby_collagen #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.cleviel #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.cleviel #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.vaserhidef #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.vaserhidef #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.prp_matrix #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.prp_matrix #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.cellrevive #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.cellrevive #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}

.downtime #header {
  background: url(../img/h1_bg.gif) left top repeat-x, url(../img/header_bg.gif) left 24px no-repeat, #524840;
}
.downtime #header::before {
  content: "";
  display: block;
  width: 100%;
  height: 24px;
}
.downtime .dt-movie {
  margin: 30px 0 0;
}
.downtime .dt-movie__wrapper {
  text-align: center;
}
.downtime .dt-movie iframe {
  width: 432px;
  height: 243px;
}

.tummy_tuck .case-movie {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 30px;
}
.tummy_tuck .case-movie__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: #dfd8d3;
}
.tummy_tuck .case-movie__item:first-child:last-child {
  flex-direction: row;
  width: 100%;
}
.tummy_tuck .case-movie__title {
  flex: 1;
  text-align: center;
  line-height: 1.3125;
  font-size: 1.6em;
  font-weight: bold;
  color: #59514d;
}
.tummy_tuck .case-movie__pic {
  cursor: pointer;
}
.tummy_tuck .p-usp {
  margin-bottom: 40px;
  background: url(../../img/troubles_feature_bg.png) left top no-repeat #a39489;
}
.tummy_tuck .p-usp > .title {
  display: table-cell;
  position: relative;
  width: 704px;
  height: 72px;
  vertical-align: middle;
  text-align: center;
  text-shadow: 0 0 8px #250708;
  line-height: 1.2307692308;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.7em;
  color: #fff;
  box-sizing: border-box;
  font-size: 2.6em;
}
.tummy_tuck .p-usp .contents-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px 10px;
}
.tummy_tuck .p-usp-contents {
  width: 226px;
  background-repeat: no-repeat;
  background-color: #fff;
  color: #7f7875;
  box-sizing: border-box;
  padding: 165px 10px 15px;
  background-position: center 15px;
}
.tummy_tuck .p-usp-contents > .title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 9px;
  text-align: center;
}
.tummy_tuck .p-usp-contents > .title .emphasis {
  font-weight: bold;
  color: #ec7c78;
}
.tummy_tuck .p-usp-contents .text {
  line-height: 1.625;
  font-size: 1.6em;
  line-height: 1.5;
  font-size: 1.25em;
}
.tummy_tuck .p-usp-contents:nth-child(1) {
  background-image: url(../../img/troubles_feature_pic1.jpg?v=2);
}
.tummy_tuck .p-usp-contents:nth-child(2) {
  background-image: url(../../img/troubles_feature_pic2.jpg?v=2);
}
.tummy_tuck .p-usp-contents:nth-child(3) {
  background-image: url(../../img/contents_marking-360_feature_pic3.jpg);
}

.\31 day_liposuction .p-campaign,
.tummy_tuck .p-campaign,
.aquicell .p-campaign,
.vaserhidef .p-campaign,
.bodyjet .p-campaign {
  margin: 42px 0 19px;
  padding-bottom: 43px;
  background: url(../img/contents_condenserich_ex_campaign_bg.png) left bottom no-repeat;
}
.\31 day_liposuction .p-campaign__title,
.tummy_tuck .p-campaign__title,
.aquicell .p-campaign__title,
.vaserhidef .p-campaign__title,
.bodyjet .p-campaign__title {
  margin: 0 0 21px -3px;
}
.\31 day_liposuction .p-campaign__list,
.tummy_tuck .p-campaign__list,
.aquicell .p-campaign__list,
.vaserhidef .p-campaign__list,
.bodyjet .p-campaign__list {
  display: flex;
  justify-content: center;
  margin-bottom: 5px;
}
.\31 day_liposuction .p-campaign__item,
.tummy_tuck .p-campaign__item,
.aquicell .p-campaign__item,
.vaserhidef .p-campaign__item,
.bodyjet .p-campaign__item {
  width: 252px;
}
.\31 day_liposuction .p-campaign__item a,
.tummy_tuck .p-campaign__item a,
.aquicell .p-campaign__item a,
.vaserhidef .p-campaign__item a,
.bodyjet .p-campaign__item a {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 2px solid #554c48;
  background: -webkit-gradient(linear, left top, left bottom, from(#91847b), to(#443b34));
  background: linear-gradient(#91847b, #443b34);
  vertical-align: middle;
  line-height: 1.25;
  color: #f5f2f0;
  box-sizing: border-box;
  transition: opacity 0.1s linear;
}
.\31 day_liposuction .p-campaign__item a .inner-text1,
.tummy_tuck .p-campaign__item a .inner-text1,
.aquicell .p-campaign__item a .inner-text1,
.vaserhidef .p-campaign__item a .inner-text1,
.bodyjet .p-campaign__item a .inner-text1 {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 2.5;
  font-size: 16px;
}
.\31 day_liposuction .p-campaign__item a .inner-text2,
.tummy_tuck .p-campaign__item a .inner-text2,
.aquicell .p-campaign__item a .inner-text2,
.vaserhidef .p-campaign__item a .inner-text2,
.bodyjet .p-campaign__item a .inner-text2 {
  display: block;
  flex-grow: 1;
  align-self: flex-end;
  order: 3;
  width: 100%;
  border-top: 1px solid #474038;
  opacity: 0.7;
  text-align: center;
  line-height: 1.7;
  font-size: 10px;
}
.\31 day_liposuction .p-campaign__item a:hover,
.tummy_tuck .p-campaign__item a:hover,
.aquicell .p-campaign__item a:hover,
.vaserhidef .p-campaign__item a:hover,
.bodyjet .p-campaign__item a:hover {
  color: inherit !important;
}
.\31 day_liposuction .p-campaign__item a:hover > *, .\31 day_liposuction .p-campaign__item a:hover::before,
.tummy_tuck .p-campaign__item a:hover > *,
.tummy_tuck .p-campaign__item a:hover::before,
.aquicell .p-campaign__item a:hover > *,
.aquicell .p-campaign__item a:hover::before,
.vaserhidef .p-campaign__item a:hover > *,
.vaserhidef .p-campaign__item a:hover::before,
.bodyjet .p-campaign__item a:hover > *,
.bodyjet .p-campaign__item a:hover::before {
  color: #f5f2f0;
}
.\31 day_liposuction .p-campaign__item a:hover::after,
.tummy_tuck .p-campaign__item a:hover::after,
.aquicell .p-campaign__item a:hover::after,
.vaserhidef .p-campaign__item a:hover::after,
.bodyjet .p-campaign__item a:hover::after {
  background: url(../img/broadcast_common_btn_arrow_h.png) right top no-repeat;
}
.\31 day_liposuction .p-campaign__item a::before,
.tummy_tuck .p-campaign__item a::before,
.aquicell .p-campaign__item a::before,
.vaserhidef .p-campaign__item a::before,
.bodyjet .p-campaign__item a::before {
  content: none;
}
.\31 day_liposuction .p-campaign__item a::after,
.tummy_tuck .p-campaign__item a::after,
.aquicell .p-campaign__item a::after,
.vaserhidef .p-campaign__item a::after,
.bodyjet .p-campaign__item a::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 5px;
  width: 21px;
  height: 21px;
  background: url(../img/broadcast_common_btn_arrow.png) right top no-repeat;
}
.\31 day_liposuction .p-campaign__item.btn-counseling,
.tummy_tuck .p-campaign__item.btn-counseling,
.aquicell .p-campaign__item.btn-counseling,
.vaserhidef .p-campaign__item.btn-counseling,
.bodyjet .p-campaign__item.btn-counseling {
  margin-right: 5px;
}

.underboob #case .p-column,
.bebra #case .p-column {
  margin-top: 40px;
  margin-right: 20px;
  margin-left: 20px;
  padding: 0 20px 16px;
  background: #f5f2f0;
}
.underboob #case .p-column .title,
.bebra #case .p-column .title {
  margin-bottom: 20px;
  padding: 20px 0 0 6px;
  border-left: 1px solid #ec7c78;
  font-size: 1.4em;
  font-weight: bold;
  color: #7f7875;
}
.underboob #case .p-column .text,
.bebra #case .p-column .text {
  line-height: 1.6153846154;
  font-size: 1.3em;
}
.underboob #case .p-column .text,
.bebra #case .p-column .text {
  margin-bottom: 16px;
}
.underboob #case .p-column .pic,
.bebra #case .p-column .pic {
  float: none;
  margin-bottom: 0;
}
.underboob #case .p-column .link,
.bebra #case .p-column .link {
  text-align: right;
  font-size: 1.4em;
  margin-top: 30px;
}
.underboob #case .p-column .link a,
.bebra #case .p-column .link a {
  transition: all 0.1s linear;
  display: inline-block;
  padding: 19px 42px;
  background: url(../img/arrow/arrow16.png) right 11px center no-repeat #d3cbc5;
  color: #7f7875;
}
.underboob #case .p-column .link a:hover,
.bebra #case .p-column .link a:hover {
  opacity: 0.6;
  color: #7f7875 !important;
}
.underboob #case .p-column .link a,
.bebra #case .p-column .link a {
  position: relative;
  width: 15em;
  text-align: center;
}
.underboob #case .p-column .link .small,
.bebra #case .p-column .link .small {
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 0.7142857143em;
  color: #ec7c78;
}

.tummy_tuck .p-column,
.\31 day_liposuction .p-column,
.bnls .p-column,
.underboob .p-column,
.bebra .p-column,
.brava .p-column,
.retouch_breast_reconstruction .p-column,
.elastography .p-column,
.mammaplasty .p-column {
  margin-bottom: 30px;
}
.tummy_tuck .p-column .m-related-list,
.\31 day_liposuction .p-column .m-related-list,
.bnls .p-column .m-related-list,
.underboob .p-column .m-related-list,
.bebra .p-column .m-related-list,
.brava .p-column .m-related-list,
.retouch_breast_reconstruction .p-column .m-related-list,
.elastography .p-column .m-related-list,
.mammaplasty .p-column .m-related-list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #baafa6;
}
.tummy_tuck .p-column .m-related-list li,
.\31 day_liposuction .p-column .m-related-list li,
.bnls .p-column .m-related-list li,
.underboob .p-column .m-related-list li,
.bebra .p-column .m-related-list li,
.brava .p-column .m-related-list li,
.retouch_breast_reconstruction .p-column .m-related-list li,
.elastography .p-column .m-related-list li,
.mammaplasty .p-column .m-related-list li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 1px dotted #baafa6;
}
* html .tummy_tuck .p-column .m-related-list li,
* html .\31 day_liposuction .p-column .m-related-list li,
* html .bnls .p-column .m-related-list li,
* html .underboob .p-column .m-related-list li,
* html .bebra .p-column .m-related-list li,
* html .brava .p-column .m-related-list li,
* html .retouch_breast_reconstruction .p-column .m-related-list li,
* html .elastography .p-column .m-related-list li,
* html .mammaplasty .p-column .m-related-list li {
  height: 1%;
}
* + html .tummy_tuck .p-column .m-related-list li,
* + html .\31 day_liposuction .p-column .m-related-list li,
* + html .bnls .p-column .m-related-list li,
* + html .underboob .p-column .m-related-list li,
* + html .bebra .p-column .m-related-list li,
* + html .brava .p-column .m-related-list li,
* + html .retouch_breast_reconstruction .p-column .m-related-list li,
* + html .elastography .p-column .m-related-list li,
* + html .mammaplasty .p-column .m-related-list li {
  height: 1%;
}
.tummy_tuck .p-column .m-related-list dl,
.\31 day_liposuction .p-column .m-related-list dl,
.bnls .p-column .m-related-list dl,
.underboob .p-column .m-related-list dl,
.bebra .p-column .m-related-list dl,
.brava .p-column .m-related-list dl,
.retouch_breast_reconstruction .p-column .m-related-list dl,
.elastography .p-column .m-related-list dl,
.mammaplasty .p-column .m-related-list dl {
  position: relative;
}
.tummy_tuck .p-column .m-related-list .pic,
.\31 day_liposuction .p-column .m-related-list .pic,
.bnls .p-column .m-related-list .pic,
.underboob .p-column .m-related-list .pic,
.bebra .p-column .m-related-list .pic,
.brava .p-column .m-related-list .pic,
.retouch_breast_reconstruction .p-column .m-related-list .pic,
.elastography .p-column .m-related-list .pic,
.mammaplasty .p-column .m-related-list .pic {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
.tummy_tuck .p-column .m-related-list dt,
.tummy_tuck .p-column .m-related-list dd,
.\31 day_liposuction .p-column .m-related-list dt,
.\31 day_liposuction .p-column .m-related-list dd,
.bnls .p-column .m-related-list dt,
.bnls .p-column .m-related-list dd,
.underboob .p-column .m-related-list dt,
.underboob .p-column .m-related-list dd,
.bebra .p-column .m-related-list dt,
.bebra .p-column .m-related-list dd,
.brava .p-column .m-related-list dt,
.brava .p-column .m-related-list dd,
.retouch_breast_reconstruction .p-column .m-related-list dt,
.retouch_breast_reconstruction .p-column .m-related-list dd,
.elastography .p-column .m-related-list dt,
.elastography .p-column .m-related-list dd,
.mammaplasty .p-column .m-related-list dt,
.mammaplasty .p-column .m-related-list dd {
  margin-left: 65px;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.tummy_tuck .p-column .m-related-list dt,
.\31 day_liposuction .p-column .m-related-list dt,
.bnls .p-column .m-related-list dt,
.underboob .p-column .m-related-list dt,
.bebra .p-column .m-related-list dt,
.brava .p-column .m-related-list dt,
.retouch_breast_reconstruction .p-column .m-related-list dt,
.elastography .p-column .m-related-list dt,
.mammaplasty .p-column .m-related-list dt {
  margin-bottom: 6px;
}
.tummy_tuck .p-column .m-related-list dt a,
.\31 day_liposuction .p-column .m-related-list dt a,
.bnls .p-column .m-related-list dt a,
.underboob .p-column .m-related-list dt a,
.bebra .p-column .m-related-list dt a,
.brava .p-column .m-related-list dt a,
.retouch_breast_reconstruction .p-column .m-related-list dt a,
.elastography .p-column .m-related-list dt a,
.mammaplasty .p-column .m-related-list dt a {
  text-decoration: none;
  color: #6d9dd0;
}
.tummy_tuck .p-column .m-related-list .new,
.\31 day_liposuction .p-column .m-related-list .new,
.bnls .p-column .m-related-list .new,
.underboob .p-column .m-related-list .new,
.bebra .p-column .m-related-list .new,
.brava .p-column .m-related-list .new,
.retouch_breast_reconstruction .p-column .m-related-list .new,
.elastography .p-column .m-related-list .new,
.mammaplasty .p-column .m-related-list .new {
  float: right;
}
.tummy_tuck .p-column .m-related-list .new img,
.\31 day_liposuction .p-column .m-related-list .new img,
.bnls .p-column .m-related-list .new img,
.underboob .p-column .m-related-list .new img,
.bebra .p-column .m-related-list .new img,
.brava .p-column .m-related-list .new img,
.retouch_breast_reconstruction .p-column .m-related-list .new img,
.elastography .p-column .m-related-list .new img,
.mammaplasty .p-column .m-related-list .new img {
  vertical-align: text-top;
}
.tummy_tuck .p-column .m-related-list .cat,
.\31 day_liposuction .p-column .m-related-list .cat,
.bnls .p-column .m-related-list .cat,
.underboob .p-column .m-related-list .cat,
.bebra .p-column .m-related-list .cat,
.brava .p-column .m-related-list .cat,
.retouch_breast_reconstruction .p-column .m-related-list .cat,
.elastography .p-column .m-related-list .cat,
.mammaplasty .p-column .m-related-list .cat {
  text-align: right;
  font-size: 1em;
}
.tummy_tuck .p-column .m-related-list .cat ul,
.tummy_tuck .p-column .m-related-list .cat li,
.\31 day_liposuction .p-column .m-related-list .cat ul,
.\31 day_liposuction .p-column .m-related-list .cat li,
.bnls .p-column .m-related-list .cat ul,
.bnls .p-column .m-related-list .cat li,
.underboob .p-column .m-related-list .cat ul,
.underboob .p-column .m-related-list .cat li,
.bebra .p-column .m-related-list .cat ul,
.bebra .p-column .m-related-list .cat li,
.brava .p-column .m-related-list .cat ul,
.brava .p-column .m-related-list .cat li,
.retouch_breast_reconstruction .p-column .m-related-list .cat ul,
.retouch_breast_reconstruction .p-column .m-related-list .cat li,
.elastography .p-column .m-related-list .cat ul,
.elastography .p-column .m-related-list .cat li,
.mammaplasty .p-column .m-related-list .cat ul,
.mammaplasty .p-column .m-related-list .cat li {
  display: inline;
  padding: 0;
  border: 0;
}
.tummy_tuck .p-column .m-related-list .link,
.\31 day_liposuction .p-column .m-related-list .link,
.bnls .p-column .m-related-list .link,
.underboob .p-column .m-related-list .link,
.bebra .p-column .m-related-list .link,
.brava .p-column .m-related-list .link,
.retouch_breast_reconstruction .p-column .m-related-list .link,
.elastography .p-column .m-related-list .link,
.mammaplasty .p-column .m-related-list .link {
  text-align: right;
}
.tummy_tuck .p-column .m-related-list .link a,
.\31 day_liposuction .p-column .m-related-list .link a,
.bnls .p-column .m-related-list .link a,
.underboob .p-column .m-related-list .link a,
.bebra .p-column .m-related-list .link a,
.brava .p-column .m-related-list .link a,
.retouch_breast_reconstruction .p-column .m-related-list .link a,
.elastography .p-column .m-related-list .link a,
.mammaplasty .p-column .m-related-list .link a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
}
.tummy_tuck .p-column .m-related-list li,
.\31 day_liposuction .p-column .m-related-list li,
.bnls .p-column .m-related-list li,
.underboob .p-column .m-related-list li,
.bebra .p-column .m-related-list li,
.brava .p-column .m-related-list li,
.retouch_breast_reconstruction .p-column .m-related-list li,
.elastography .p-column .m-related-list li,
.mammaplasty .p-column .m-related-list li {
  padding: 0;
}
.tummy_tuck .p-column .m-related-item,
.\31 day_liposuction .p-column .m-related-item,
.bnls .p-column .m-related-item,
.underboob .p-column .m-related-item,
.bebra .p-column .m-related-item,
.brava .p-column .m-related-item,
.retouch_breast_reconstruction .p-column .m-related-item,
.elastography .p-column .m-related-item,
.mammaplasty .p-column .m-related-item {
  box-sizing: border-box;
  width: 50%;
}
.tummy_tuck .p-column .m-related-item:hover > *,
.\31 day_liposuction .p-column .m-related-item:hover > *,
.bnls .p-column .m-related-item:hover > *,
.underboob .p-column .m-related-item:hover > *,
.bebra .p-column .m-related-item:hover > *,
.brava .p-column .m-related-item:hover > *,
.retouch_breast_reconstruction .p-column .m-related-item:hover > *,
.elastography .p-column .m-related-item:hover > *,
.mammaplasty .p-column .m-related-item:hover > * {
  opacity: 1;
}
.tummy_tuck .p-column .m-related-item:nth-child(odd),
.\31 day_liposuction .p-column .m-related-item:nth-child(odd),
.bnls .p-column .m-related-item:nth-child(odd),
.underboob .p-column .m-related-item:nth-child(odd),
.bebra .p-column .m-related-item:nth-child(odd),
.brava .p-column .m-related-item:nth-child(odd),
.retouch_breast_reconstruction .p-column .m-related-item:nth-child(odd),
.elastography .p-column .m-related-item:nth-child(odd),
.mammaplasty .p-column .m-related-item:nth-child(odd) {
  border-right: 1px dotted #baafa6;
}
.tummy_tuck .p-column .m-related-item:nth-child(4n), .tummy_tuck .p-column .m-related-item:nth-child(4n+3),
.\31 day_liposuction .p-column .m-related-item:nth-child(4n),
.\31 day_liposuction .p-column .m-related-item:nth-child(4n+3),
.bnls .p-column .m-related-item:nth-child(4n),
.bnls .p-column .m-related-item:nth-child(4n+3),
.underboob .p-column .m-related-item:nth-child(4n),
.underboob .p-column .m-related-item:nth-child(4n+3),
.bebra .p-column .m-related-item:nth-child(4n),
.bebra .p-column .m-related-item:nth-child(4n+3),
.brava .p-column .m-related-item:nth-child(4n),
.brava .p-column .m-related-item:nth-child(4n+3),
.retouch_breast_reconstruction .p-column .m-related-item:nth-child(4n),
.retouch_breast_reconstruction .p-column .m-related-item:nth-child(4n+3),
.elastography .p-column .m-related-item:nth-child(4n),
.elastography .p-column .m-related-item:nth-child(4n+3),
.mammaplasty .p-column .m-related-item:nth-child(4n),
.mammaplasty .p-column .m-related-item:nth-child(4n+3) {
  background: #f2efed;
}
.tummy_tuck .p-column .m-related-item:last-child, .tummy_tuck .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.\31 day_liposuction .p-column .m-related-item:last-child,
.\31 day_liposuction .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.bnls .p-column .m-related-item:last-child,
.bnls .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.underboob .p-column .m-related-item:last-child,
.underboob .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.bebra .p-column .m-related-item:last-child,
.bebra .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.brava .p-column .m-related-item:last-child,
.brava .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.retouch_breast_reconstruction .p-column .m-related-item:last-child,
.retouch_breast_reconstruction .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.elastography .p-column .m-related-item:last-child,
.elastography .p-column .m-related-item:nth-last-child(2):nth-child(odd),
.mammaplasty .p-column .m-related-item:last-child,
.mammaplasty .p-column .m-related-item:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}
.tummy_tuck .p-column .m-related-item .item-inner,
.\31 day_liposuction .p-column .m-related-item .item-inner,
.bnls .p-column .m-related-item .item-inner,
.underboob .p-column .m-related-item .item-inner,
.bebra .p-column .m-related-item .item-inner,
.brava .p-column .m-related-item .item-inner,
.retouch_breast_reconstruction .p-column .m-related-item .item-inner,
.elastography .p-column .m-related-item .item-inner,
.mammaplasty .p-column .m-related-item .item-inner {
  display: flex;
  align-items: center;
}
.tummy_tuck .p-column .m-related-item .title,
.tummy_tuck .p-column .m-related-item .text,
.\31 day_liposuction .p-column .m-related-item .title,
.\31 day_liposuction .p-column .m-related-item .text,
.bnls .p-column .m-related-item .title,
.bnls .p-column .m-related-item .text,
.underboob .p-column .m-related-item .title,
.underboob .p-column .m-related-item .text,
.bebra .p-column .m-related-item .title,
.bebra .p-column .m-related-item .text,
.brava .p-column .m-related-item .title,
.brava .p-column .m-related-item .text,
.retouch_breast_reconstruction .p-column .m-related-item .title,
.retouch_breast_reconstruction .p-column .m-related-item .text,
.elastography .p-column .m-related-item .title,
.elastography .p-column .m-related-item .text,
.mammaplasty .p-column .m-related-item .title,
.mammaplasty .p-column .m-related-item .text {
  margin-left: 80px;
}
.tummy_tuck .p-column .m-related-item .title,
.\31 day_liposuction .p-column .m-related-item .title,
.bnls .p-column .m-related-item .title,
.underboob .p-column .m-related-item .title,
.bebra .p-column .m-related-item .title,
.brava .p-column .m-related-item .title,
.retouch_breast_reconstruction .p-column .m-related-item .title,
.elastography .p-column .m-related-item .title,
.mammaplasty .p-column .m-related-item .title {
  line-height: 1.5;
  font-size: 14px;
  color: #6d9dd0;
}
.tummy_tuck .p-column .m-related-item .item-inner,
.\31 day_liposuction .p-column .m-related-item .item-inner,
.bnls .p-column .m-related-item .item-inner,
.underboob .p-column .m-related-item .item-inner,
.bebra .p-column .m-related-item .item-inner,
.brava .p-column .m-related-item .item-inner,
.retouch_breast_reconstruction .p-column .m-related-item .item-inner,
.elastography .p-column .m-related-item .item-inner,
.mammaplasty .p-column .m-related-item .item-inner {
  padding: 10px;
  min-height: 70px;
}
.tummy_tuck .p-column .m-related-item .pic,
.\31 day_liposuction .p-column .m-related-item .pic,
.bnls .p-column .m-related-item .pic,
.underboob .p-column .m-related-item .pic,
.bebra .p-column .m-related-item .pic,
.brava .p-column .m-related-item .pic,
.retouch_breast_reconstruction .p-column .m-related-item .pic,
.elastography .p-column .m-related-item .pic,
.mammaplasty .p-column .m-related-item .pic {
  top: 10px;
  left: 10px;
}
.tummy_tuck .p-column .m-related-item .pic img,
.\31 day_liposuction .p-column .m-related-item .pic img,
.bnls .p-column .m-related-item .pic img,
.underboob .p-column .m-related-item .pic img,
.bebra .p-column .m-related-item .pic img,
.brava .p-column .m-related-item .pic img,
.retouch_breast_reconstruction .p-column .m-related-item .pic img,
.elastography .p-column .m-related-item .pic img,
.mammaplasty .p-column .m-related-item .pic img {
  width: 70px;
  height: auto;
}
.tummy_tuck .p-column .m-related-item a,
.\31 day_liposuction .p-column .m-related-item a,
.bnls .p-column .m-related-item a,
.underboob .p-column .m-related-item a,
.bebra .p-column .m-related-item a,
.brava .p-column .m-related-item a,
.retouch_breast_reconstruction .p-column .m-related-item a,
.elastography .p-column .m-related-item a,
.mammaplasty .p-column .m-related-item a {
  display: block;
}
.tummy_tuck .p-column .m-related-item a::after,
.\31 day_liposuction .p-column .m-related-item a::after,
.bnls .p-column .m-related-item a::after,
.underboob .p-column .m-related-item a::after,
.bebra .p-column .m-related-item a::after,
.brava .p-column .m-related-item a::after,
.retouch_breast_reconstruction .p-column .m-related-item a::after,
.elastography .p-column .m-related-item a::after,
.mammaplasty .p-column .m-related-item a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) 0 0 no-repeat;
}
.tummy_tuck .p-column .m-related-item a:hover::after,
.\31 day_liposuction .p-column .m-related-item a:hover::after,
.bnls .p-column .m-related-item a:hover::after,
.underboob .p-column .m-related-item a:hover::after,
.bebra .p-column .m-related-item a:hover::after,
.brava .p-column .m-related-item a:hover::after,
.retouch_breast_reconstruction .p-column .m-related-item a:hover::after,
.elastography .p-column .m-related-item a:hover::after,
.mammaplasty .p-column .m-related-item a:hover::after {
  background-image: url(../img/arrow/arrow2_h.png);
}

.liposuction_counseling .p-column {
  margin-bottom: 30px;
}
.liposuction_counseling .p-column .m-related-list {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #baafa6;
}
.liposuction_counseling .p-column .m-related-list li {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  border-bottom: 1px dotted #baafa6;
}
* html .liposuction_counseling .p-column .m-related-list li {
  height: 1%;
}
* + html .liposuction_counseling .p-column .m-related-list li {
  height: 1%;
}
.liposuction_counseling .p-column .m-related-list dl {
  position: relative;
}
.liposuction_counseling .p-column .m-related-list .pic {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
.liposuction_counseling .p-column .m-related-list dt,
.liposuction_counseling .p-column .m-related-list dd {
  margin-left: 65px;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.liposuction_counseling .p-column .m-related-list dt {
  margin-bottom: 6px;
}
.liposuction_counseling .p-column .m-related-list dt a {
  text-decoration: none;
  color: #6d9dd0;
}
.liposuction_counseling .p-column .m-related-list .new {
  float: right;
}
.liposuction_counseling .p-column .m-related-list .new img {
  vertical-align: text-top;
}
.liposuction_counseling .p-column .m-related-list .cat {
  text-align: right;
  font-size: 1em;
}
.liposuction_counseling .p-column .m-related-list .cat ul,
.liposuction_counseling .p-column .m-related-list .cat li {
  display: inline;
  padding: 0;
  border: 0;
}
.liposuction_counseling .p-column .m-related-list .link {
  text-align: right;
}
.liposuction_counseling .p-column .m-related-list .link a {
  padding-left: 15px;
  background: url(../img/arrow/arrow2.png) left top no-repeat;
}
.liposuction_counseling .p-column .m-related-list li {
  padding: 0;
}
.liposuction_counseling .p-column .m-related-item {
  box-sizing: border-box;
  width: 50%;
}
.liposuction_counseling .p-column .m-related-item:hover > * {
  opacity: 1;
}
.liposuction_counseling .p-column .m-related-item:nth-child(odd) {
  border-right: 1px dotted #baafa6;
}
.liposuction_counseling .p-column .m-related-item:nth-child(4n), .liposuction_counseling .p-column .m-related-item:nth-child(4n+3) {
  background: #f2efed;
}
.liposuction_counseling .p-column .m-related-item:last-child, .liposuction_counseling .p-column .m-related-item:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}
.liposuction_counseling .p-column .m-related-item .item-inner {
  display: flex;
  align-items: center;
}
.liposuction_counseling .p-column .m-related-item .title,
.liposuction_counseling .p-column .m-related-item .text {
  margin-left: 80px;
}
.liposuction_counseling .p-column .m-related-item .title {
  line-height: 1.5;
  font-size: 14px;
  color: #6d9dd0;
}
.liposuction_counseling .p-column .m-related-item .item-inner {
  padding: 10px;
  min-height: 70px;
}
.liposuction_counseling .p-column .m-related-item .pic {
  top: 10px;
  left: 10px;
}
.liposuction_counseling .p-column .m-related-item .pic img {
  width: 70px;
  height: auto;
}
.liposuction_counseling .p-column .m-related-item a {
  display: block;
}
.liposuction_counseling .p-column .m-related-item a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) 0 0 no-repeat;
}
.liposuction_counseling .p-column .m-related-item a:hover::after {
  background-image: url(../img/arrow/arrow2_h.png);
}

/*----------------------------------------------------------------------
8.	#sub
----------------------------------------------------------------------*/
#sub {
  float: left;
  margin-bottom: 45px;
  width: 194px;
}
#sub .s-contents:last-child {
  margin: 0;
}
#sub .menu {
  margin-bottom: 20px;
  border-bottom: 1px solid #baafa6;
}
#sub .menu .title {
  border: 1px solid #baafa6;
}
#sub .menu li {
  border-right: 1px solid #baafa6;
  border-left: 1px solid #baafa6;
}
#sub .menu a {
  display: block;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.1666666667;
  font-size: 1.2em;
  color: #7f7875;
}
#sub .medical {
  margin-bottom: 20px;
}
#sub .medicallist {
  padding: 2px 4px;
  border: 4px solid #3b4762;
  border-top: 0;
  background: #9693a3;
}
#sub .medicallist-item {
  margin: 2px 0;
  border: 2px solid #454d68;
}
#sub .medicallist-item.drseminar {
  background: url(../img/sprite/hover/sub/sub_medical_drseminar_h.png) 0 0 no-repeat;
}
#sub .medicallist-item.introduction {
  background: url(../img/sprite/hover/sub/sub_medical_introduction_h.png) 0 0 no-repeat;
}
#sub .medicallist-item a:hover img {
  opacity: 0;
}
#sub .info {
  margin-bottom: 20px;
  padding: 4px;
  background: url(../img/sub_info_bg.gif) left top repeat-x;
}
#sub .info ul {
  padding: 4px;
  background: #b7afa8;
}
#sub .info li {
  margin-bottom: 4px;
  border: 2px solid #463f3c;
}
#sub .info li:last-child {
  margin: 0;
}
#sub .president img {
  border: 1px solid #baafa6;
}
#sub .blog {
  margin-bottom: 20px;
}
#sub .blog li {
  margin-bottom: 5px;
}
#sub .blog li:last-child {
  margin: 0;
}
#sub .lp {
  margin-bottom: 20px;
}
#sub .lp li {
  margin-bottom: 5px;
}
#sub .lp li:last-child {
  margin: 0;
}
#sub .banner {
  margin-bottom: 20px;
}
#sub .banner li {
  margin-bottom: 10px;
}
#sub .banner li:last-child {
  margin-bottom: 0;
}
#sub .banner li a > * {
  border: 1px solid #baafa6;
}
#sub .banner .clinic, #sub .banner #footer .kuchikomi, #footer #sub .banner .kuchikomi {
  margin-bottom: 20px;
}
#sub .banner .clinic-item {
  background: url(../img/sub_banner_clinic_bg.gif) left bottom repeat-x #f5f3f1;
}
#sub .banner .clinic-item a:hover > * {
  opacity: 0.5;
}
#sub .banner .clinic-item .pic {
  border-bottom: 1px solid #fff;
}
#sub .banner .clinic-item .text {
  padding: 3px 13px 5px;
  border-top: 1px solid #cbc0b8;
  background: url(../img/arrow/arrow2.png) 176px 17px no-repeat;
  line-height: 1.2;
  color: #7f7875;
}
#sub .banner .others .trouble img {
  border: 0;
}
#sub .social {
  margin-bottom: 20px;
}
#sub .social ul {
  margin: 0 auto;
  width: 71px;
  height: 40px;
}
#sub .social li {
  float: left;
  margin-left: 7px;
  height: 40px;
}
#sub .social li:first-child {
  margin: 0;
}
#sub .feature {
  margin-bottom: 20px;
}
#sub .feature li + li {
  margin-top: 10px;
}
#sub .feature img {
  border: 1px solid #baafa6;
}
#sub .feature .feature-item img {
  border: 0;
}
#sub .feature .feature-item .text {
  margin-top: 3px;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
  white-space: nowrap;
}
#sub .regenerative {
  margin-bottom: 20px;
}
#sub .regenerative p {
  margin-bottom: 10px;
}
#sub .regenerative img {
  border: 1px solid #baafa6;
}
#sub .regenerative .cooperation img {
  border: 0;
}
#sub .matome {
  margin-bottom: 20px;
}
#sub .matome > .title {
  position: relative;
}
#sub .matome > .title::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 1;
  width: 35px;
  height: 35px;
  background: url(../img/sub_matome_title_bg.png) left top no-repeat;
}
#sub .matome .s-matome-item {
  border-bottom: 1px dotted #baafa6;
}
#sub .matome .s-matome-item a {
  display: block;
  padding: 10px;
}
#sub .matome .s-matome-item .item-inner {
  position: relative;
  min-height: 55px;
}
#sub .matome .s-matome-item .item-inner > * {
  margin-left: 65px;
}
#sub .matome .s-matome-item .item-inner .title {
  line-height: 1.3333333333;
  font-size: 1.2em;
}
#sub .matome .s-matome-item .item-inner .pic {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}
#sub .matome .s-matome-wrapper {
  position: relative;
  padding: 12px 0;
  border: 1px solid #baafa6;
  border-top: 0;
  background: #f5f2f0;
}
#sub .matome .s-matome-wrapper .bx-wrapper {
  position: static;
}
#sub .matome .s-matome-wrapper .bx-wrapper .bx-viewport {
  left: 0;
  height: 227px !important;
  border: 0;
  background: none;
  box-shadow: none;
}
#sub .matome .s-matome-wrapper .bx-controls a {
  display: block;
  position: absolute;
  left: 0;
  z-index: 800;
  margin: 0;
  width: 100%;
  height: 12px;
  background-color: #a39489;
}
#sub .matome .s-matome-wrapper .bx-controls .bx-prev {
  top: 0;
  background-image: url(../img/index_relatedsites_arrow1.gif);
  background-position: center;
}
#sub .matome .s-matome-wrapper .bx-controls .bx-next {
  bottom: 0;
  background-image: url(../img/index_relatedsites_arrow2.gif);
  background-position: center;
}
#sub .js-fix-contents {
  width: 194px;
}
#sub .js-fix-contents.is-fixed {
  position: fixed;
}
#sub .js-fix-contents.is-bottom {
  position: absolute;
  bottom: 0;
}

#sub {
  position: relative;
}
#sub .menu a {
  line-height: 1.3333333333;
}
#sub .menu a span {
  font-size: 0.8333333333em;
}
#sub .menu .s-operation-item {
  border: 0;
  border-bottom: 1px dotted #baafa6;
  background: #f2efed;
}
#sub .menu .s-operation-item:last-child {
  border-bottom: 0;
}
#sub .menu .s-operation-item.active {
  background-color: #e4dfdb;
}
#sub .menu .s-operation-item dl {
  padding: 2px 4px;
}
#sub .menu .s-operation-item dt,
#sub .menu .s-operation-item dd {
  display: table-cell;
  vertical-align: top;
}
#sub .menu .s-operation-item dt {
  padding-right: 9px;
}
#sub .menu .s-operation-item dt img {
  border: 1px solid #baafa6;
}
#sub .menu .s-operation-item dd .reccomend {
  display: inline;
  margin-left: 5px;
}
#sub .menu .s-operation-item dd .reccomend img {
  vertical-align: text-top;
}
#sub .contents .s-menu-item + .s-menu-item {
  border-top: 1px solid #c7bcb5;
}
#sub .contents .s-menu-item a {
  display: flex;
  position: static;
  align-items: center;
  padding: 1px;
}
#sub .contents .s-menu-item a::before, #sub .contents .s-menu-item a::after {
  content: "";
  display: block;
}
#sub .contents .s-menu-item a::before {
  margin-right: 8px;
  width: 7px;
  height: 30px;
  background: linear-gradient(#c7bcb5, #7f7875 50%, #584f4c 50%, #7f7875);
}
#sub .contents .s-menu-item a::after {
  margin: 0 10px 0 auto;
  padding-left: 5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) right 0 no-repeat;
}
#sub .contents .s-menu-item a:hover::after {
  background-image: url(../img/arrow/arrow2_h.png);
}
#sub .category .s-menu-item {
  position: relative;
  background: #eae5e2;
}
#sub .category .s-menu-item:hover img {
  opacity: 0.5;
}
#sub .category .s-menu-item + .s-menu-item {
  border-top: 1px dotted #c7bcb5;
}
#sub .category .s-menu-item a {
  padding: 0;
  color: #6d9dd0;
}
#sub .category .s-menu-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
#sub .category .s-menu-item img {
  transition: opacity 0.1s linear;
}
#sub .category .s-menu-item .item-inner {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
#sub .category .s-menu-item .pic {
  margin-right: 10px;
  border: 1px solid #c7bcb5;
}
#sub .category .s-menu-item .text {
  line-height: 1.4;
}
#sub .s-genre-title {
  background: #d3cbc5;
  text-align: center;
  line-height: 1.75;
  font-size: 1.2em;
  color: #fff;
}
#sub .column ul {
  background: #f2efed;
}
#sub .column a {
  color: #6d9dd0;
}
#sub .column dl {
  padding: 5px 10px;
}
#sub .column dt {
  padding-right: 10px;
}
#sub .column dt img {
  border: 1px solid #baafa6;
}
#sub #operations a {
  padding: 2px;
}
#sub #operations dt {
  padding-right: 9px;
}
#sub #operations dt img {
  border: 1px solid #baafa6;
}
#sub #operations dd .reccomend {
  display: inline;
  margin-left: 5px;
}
#sub #operations dd .reccomend img {
  vertical-align: text-top;
}
.trouble #sub #operations ul {
  margin: 0;
  border: 0;
}
.trouble #sub #operations li {
  padding: 0;
  background: none;
}
.trouble #sub #operations a {
  padding: 1px;
}
.trouble #sub #operations dt,
.trouble #sub #operations dd {
  display: block;
}
.trouble #sub #operations dt {
  padding: 0;
  border-bottom: 1px solid #baafa6;
}
.trouble #sub #operations img {
  border: 0;
}
.trouble #sub #operations dd a {
  padding: 5px 11px;
  color: #6d9dd0;
}
.trouble #sub #operations dd dt,
.trouble #sub #operations dd dd {
  display: table-cell;
  border: 0;
  vertical-align: middle;
}
.trouble #sub #operations dd dt {
  padding-right: 11px;
}
.trouble #sub #operations dd dt img {
  border: 1px solid #baafa6;
}
.trouble #sub #operations dd li {
  padding-bottom: 1px;
  border: 0;
  border-bottom: 1px dotted #baafa6;
  background: #f2efed;
}
.trouble #sub #operations dd li:last-child {
  border-bottom: 0;
}
#sub .service li {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
}
#sub .service a:hover img {
  opacity: 0;
}

.s-category-link .link-item {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
  background-position: left top;
  background-repeat: no-repeat;
}
.s-category-link .link-item a:hover img {
  opacity: 0;
}
.s-category-link .link-item.liposuction {
  background-image: url(../img/sub_category_link_liposuction_bg.png);
}
.s-category-link .link-item.breast-hip {
  background-image: url(../img/sub_category_link_breast-hip_bg.png);
}
.s-category-link .link-item.antiaging {
  background-image: url(../img/sub_category_link_antiaging_bg.png);
}

/*----------------------------------------------------------------------
9.	#footer
----------------------------------------------------------------------*/
#footer .wrapper {
  margin: 0 auto;
  width: 988px;
}
#footer .wrapper .wrapper {
  width: auto;
  border-bottom: 1px solid #baafa6;
  background: #f2efed;
}
#footer .f-clinic-list {
  display: flex;
  padding: 9px 0;
  background: #efece9;
}
#footer .f-clinic-item {
  position: relative;
  flex-basis: 20%;
  border-right: 1px solid #c7bcb5;
  border-left: 1px solid #fff;
}
#footer .f-clinic-item:first-child {
  border-left: 0;
}
#footer .f-clinic-item:last-child {
  border-right: 0;
}
#footer .f-clinic-item a::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  right: 0;
  bottom: -9px;
  left: 0;
  transition: all 0.15s linear;
}
#footer .f-clinic-item a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow2.png) 0 0 no-repeat;
}
#footer .f-clinic-item a:hover img {
  opacity: 1;
}
#footer .f-clinic-item a:hover::before {
  background-color: rgba(255,255,255,.5);
}
#footer .f-clinic-item a:hover::after {
  background-image: url(../img/arrow/arrow2_h.png);
}
#footer .f-clinic-item img {
  border-bottom: 1px solid #c7bcb5;
}
#footer .f-clinic-item .pic {
  margin-bottom: 7px;
  text-align: center;
}
#footer .f-clinic-item .address {
  text-align: center;
  line-height: 1.2;
  font-size: 1em;
  color: #7f7875;
}
#footer .f-sitemap {
  display: flex;
  padding: 36px 55px 18px;
}
#footer .f-sitemap-contents {
  flex-basis: 24%;
}
#footer .f-sitemap-contents > .title {
  margin-bottom: 12px;
  font-size: 1.4em;
  color: #595350;
}
#footer .f-sitemap-contents.others {
  flex: 1;
  flex-basis: 52%;
}
#footer .f-sitemap-contents.others .f-sitemap-page-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 240px;
}
#footer .f-sitemap-contents.others .f-sitemap-page-item a {
  font-size: 1.4em;
  color: #595350;
}
#footer .f-sitemap-page-item {
  margin-bottom: 12px;
}
#footer .f-sitemap-page-item a {
  padding-left: 18px;
  background: url(../img/arrow/arrow2.png) 0 center no-repeat;
  text-decoration: none;
  font-size: 1.2em;
  color: #7f7875;
}
#footer .f-sitemap-page-item.subitem a {
  margin-left: 20px;
}
#footer .sitemap {
  *zoom: 1;
  float: left;
  margin: 36px 0 0 60px;
  padding-bottom: 30px;
  width: 614px;
}
#footer .sitemap::after {
  content: "";
  display: table;
  clear: both;
}
#footer .sitemap ul {
  *zoom: 1;
  clear: both;
  background: url(../img/footer_sitemap_bg.gif) left top repeat-x, url(../img/footer_sitemap_bg.gif) left 42px repeat-x, url(../img/footer_sitemap_bg.gif) left 84px repeat-x, url(../img/footer_sitemap_bg.gif) left bottom repeat-x;
}
#footer .sitemap ul::after {
  content: "";
  display: table;
  clear: both;
}
#footer .sitemap ul li {
  float: left;
  margin-right: 12px;
  padding-bottom: 2px;
}
#footer .sitemap ul li a {
  padding-left: 18px;
  background: url(../img/arrow/arrow2.png) 0 2px no-repeat;
  text-decoration: none;
  line-height: 40px;
  font-size: 1.2em;
  font-weight: bold;
  color: #595350;
}
#footer .sitemap ul li a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
#footer .sitemap section {
  float: left;
  margin-bottom: 30px;
  margin-left: 30px;
  width: 130px;
}
#footer .sitemap section:first-child {
  margin: 0;
}
#footer .sitemap section .title {
  margin-bottom: 8px;
  font-size: 1.2em;
  font-weight: bold;
  color: #595350;
}
#footer .sitemap section ul {
  padding: 0;
  background: none;
}
#footer .sitemap section ul li {
  float: none;
  margin: 0;
  line-height: 1;
}
#footer .sitemap section ul li a {
  display: block;
  background-position: 0 4px;
  line-height: 1.8;
  font-size: 1em;
  font-weight: normal;
  color: #7f7875;
}
#footer .clinic, #footer .kuchikomi {
  float: right;
  margin: 36px 60px 0 0;
  padding-bottom: 26px;
  width: 239px;
}
#footer .clinic-item {
  margin-bottom: 4px;
}
#footer .clinic-item a:hover > * {
  opacity: 0.5;
}
#footer .clinic-item img {
  border: 1px solid #baafa6;
}
#footer .clinic-item .item-inner {
  position: relative;
}
#footer .clinic-item .text {
  position: absolute;
  right: 11px;
  bottom: 5px;
  padding: 0;
  width: 164px;
  border: 0;
  background: none;
  text-align: center;
  line-height: 1.25;
  font-size: 0.8em;
  color: #7f7875;
}
#footer .text {
  clear: both;
  padding: 15px 0;
  border-top: 1px solid #fff;
  background: #f2efed;
  text-align: center;
  line-height: 1.6;
  color: #7f7875;
}
#footer #fnavi {
  border-top: 1px solid #ccc3ba;
}
#footer #copyright {
  padding-top: 45px;
  width: 100%;
  height: 25px;
  background: url(../img/copyright_bg.gif) left top no-repeat;
  text-align: center;
  color: #f5f3f1;
}
#footer .kuchikomi {
  margin-top: 0;
  text-align: right;
}
#footer .kuchikomi img {
  border: 0;
}
/*# sourceMappingURL=operation_index.css.map */
