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

/*----------------------------------------------------------------------
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
----------------------------------------------------------------------*/
article > aside {
  padding-top: 45px;
  border-top: 1px dotted #baafa6;
}

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

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

article > .title {
  margin-bottom: 30px;
  padding: 1px;
  height: auto;
  border: 1px solid #baafa6;
  background: none;
  line-height: 1;
  font-size: 1em;
}
.focus article > .title {
  padding: 0;
  border: none;
}
article .date {
  margin: 0 10px 10px;
}
article .date-list-item {
  text-align: right;
  line-height: 1.3333333333;
  font-size: 1.1em;
  color: #999490;
}
article .date-list-item .fa-clock {
  margin-right: 5px;
  vertical-align: top;
  font-size: 1.3333333333em;
}
article .banner {
  margin: 0 0 45px;
  text-align: center;
}
article .banner.top {
  float: right;
  margin: -6px 0;
}
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;
}

.ugc {
  margin: 20px 0;
  text-align: center;
}

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

.ref_note {
  text-align: right;
  font-size: 10px;
  color: #7f7875;
}

#campaignlist {
  /* $discount: sprite-map('discount/*.png'); */
  /* $discount-img: sprite-url($discount); */
}
#campaignlist > li {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
}
#campaignlist > li .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1;
}
#campaignlist > li .title a img {
  opacity: 1;
  transition: opacity 0.1s linear;
}
#campaignlist > li .title a:hover img {
  opacity: 0.5;
}
#campaignlist .table {
  padding: 2px;
  background: #f2efed;
}
#campaignlist .table .title,
#campaignlist .table p,
#campaignlist .table ol {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
#campaignlist .table .title {
  padding: 3px 0 3px 3px;
  width: 531px;
  text-align: left;
}
#campaignlist .table .title-inner {
  display: table-cell;
  padding: 10px 0 7px 17px;
  height: 44px;
  border-left: 4px solid #ec7c78;
  vertical-align: middle;
}
#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;
}
#campaignlist .table .title-inner .ref {
  display: block;
  padding: 0 0 3px;
  width: auto;
  background: none;
  text-align: left;
  font-size: 12px;
}
#campaignlist .table .title-inner .price {
  padding: 0;
  width: auto;
  background: none;
  text-align: left;
  font-size: 14px;
}
#campaignlist .table.capacity .title-inner {
  height: 56px;
}
#campaignlist .table p,
#campaignlist .table ol {
  padding: 0 9px;
  width: 126px;
  background: #fff;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#campaignlist .table a {
  text-decoration: none;
  color: #ec7c78;
}
#campaignlist .table em {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#campaignlist .discount ol li:first-child {
  margin-bottom: 6px;
  padding-bottom: 10px;
  background: url(../img/arrow/arrow13.png) 63px 18px no-repeat;
}
#campaignlist .discount ol li.double {
  background: url(../img/arrow/arrow13.png) 63px 34px no-repeat;
}
#campaignlist .discount ol em {
  font-size: 1.1666666667em;
}
#campaignlist .badge .title {
  padding-right: 58px;
  width: 482px;
}
#campaignlist .badge p,
#campaignlist .badge ol {
  padding-left: 0;
}
#campaignlist .badge50 .title {
  background: url(../img/discount/badge50.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#campaignlist .badge40 .title {
  background: url(../img/discount/badge40.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#campaignlist .badge33 .title {
  background: url(../img/discount/badge33.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#campaignlist .badge30 .title {
  background: url(../img/discount/badge30.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#campaignlist .badge25 .title {
  background: url(../img/discount/badge25.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#campaignlist .badge20 .title {
  background: url(../img/discount/badge20.png) right center no-repeat, url(../img/price_campaign_badge_bg.gif) right top repeat-y;
}
#campaignlist .capacity section {
  position: relative;
}
#campaignlist .capacity p,
#campaignlist .capacity ol {
  padding: 7px 9px 20px;
}
#campaignlist .capacity p em,
#campaignlist .capacity li em {
  display: inline;
  position: static;
  width: auto;
  background: none;
  font-weight: bold;
  color: #ec7c78;
}
#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;
}
#campaignlist .folding .title a {
  cursor: pointer;
}
#campaignlist .folding .wrapper {
  display: none;
  border-top: 1px solid #baafa6;
}
#campaignlist .folding .wrapper > div {
  border-top: 1px solid #baafa6;
}
#campaignlist .folding .wrapper > div:first-child {
  border-top: 0;
}
#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;
}
#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;
}
#campaignlist .folding .wrapper .option {
  border: 0;
}
#campaignlist .folding .lead {
  padding: 15px 30px;
}
#campaignlist .folding .lead p {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
#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;
}
#campaignlist .folding div.price table thead td {
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding div.price table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#campaignlist .folding div.price table tbody th,
#campaignlist .folding div.price table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#campaignlist .folding div.price table tbody tr.separate th,
#campaignlist .folding div.price table tbody tr.separate td {
  border-bottom-style: solid;
}
#campaignlist .folding div.price table tbody tr:last-child th,
#campaignlist .folding div.price table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding div.price table tbody td {
  line-height: 24px;
}
#campaignlist .folding div.price table thead th,
#campaignlist .folding div.price table thead td {
  height: 33px;
  box-sizing: border-box;
}
#campaignlist .folding div.price table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
#campaignlist .folding div.price table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
#campaignlist .folding div.price table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
#campaignlist .folding div.price table thead .note::before {
  content: "※";
  color: #ec7c78;
}
#campaignlist .folding div.price table tbody tr:nth-child(even) th,
#campaignlist .folding div.price table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
#campaignlist .folding div.price table tbody th,
#campaignlist .folding div.price table tbody td {
  line-height: 16/12;
}
#campaignlist .folding div.price table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
#campaignlist .folding div.price table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
#campaignlist .folding div.price table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#campaignlist .folding div.price table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
#campaignlist .folding div.price table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
#campaignlist .folding div.price table tfoot td {
  padding: 10px 15px;
}
#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;
}
#campaignlist .folding div.price table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#campaignlist .folding div.price table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#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;
}
#campaignlist .folding div.price table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
#campaignlist .folding div.price table tfoot .inclusion-item .summary {
  color: #b4afac;
}
#campaignlist .folding div.price table tfoot .inclusion-item .price {
  order: 3;
}
#campaignlist .folding div.price table thead th {
  line-height: 16px;
}
#campaignlist .folding div.price table thead th .tax-include,
#campaignlist .folding div.price table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#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;
}
#campaignlist .folding div.price table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
#campaignlist .folding div.price table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
#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;
}
#campaignlist .folding div.price table thead .icon.question .text {
  display: none;
}
#campaignlist .folding div.price table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
#campaignlist .folding div.price table thead .icon.question:hover .text, #campaignlist .folding div.price table thead .icon.question:hover::after {
  position: absolute;
}
#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;
}
#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;
}
#campaignlist .folding div.price table tbody th {
  line-height: 1.3333333333;
}
#campaignlist .folding div.price table tbody td {
  line-height: 1.3333333333;
}
#campaignlist .folding div.price table tbody td .price + .reduce ol {
  text-align: right;
}
#campaignlist .folding div.price table tbody td .reduce ol li > span {
  display: inline;
}
#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;
}
#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;
}
#campaignlist .folding div.price table thead td {
  line-height: 1.3333333333;
}
#campaignlist .folding div.price table thead th {
  height: 33px;
  border-top: 0;
  border-right: 0;
}
#campaignlist .folding div.price table tbody th,
#campaignlist .folding div.price table tbody td {
  border-left: 0;
}
#campaignlist .folding div.price table:last-child {
  border-bottom: 0;
}
#campaignlist .folding div.price table:last-child tbody tr:last-child th,
#campaignlist .folding div.price table:last-child tbody tr:last-child td {
  border-bottom: 0;
}
#campaignlist .folding div.price ul {
  margin: 0 0 12px 15px;
}
#campaignlist .folding div.price li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
#campaignlist .folding div.price .multiple {
  margin: 10px 0;
  width: 652px;
}
#campaignlist .folding div.price .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
#campaignlist .folding div.price .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#campaignlist .folding div.price .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
#campaignlist .folding div.price .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
#campaignlist .folding div.price .multiple dl .info {
  margin-top: 12px;
}
#campaignlist .folding div.price .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
#campaignlist .folding div.price .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
#campaignlist .folding div.price .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
#campaignlist .folding div.price .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
#campaignlist .folding div.price .multiple dl .info li a:hover {
  opacity: 0;
}
#campaignlist .folding div.price .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
#campaignlist .folding div.price .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
#campaignlist .folding div.price small {
  font-size: 1em;
}
#campaignlist .folding div.price small, #campaignlist .folding div.price small::before {
  content: "※";
}
#campaignlist .folding div.price small .before, #campaignlist .folding div.price small::before {
  color: #ec7c78;
}
#campaignlist .folding .option {
  margin: 0;
  border: 0;
}
#campaignlist .folding .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
  color: #7f7875;
}
#campaignlist .folding .option .title::after {
  content: "";
  display: table;
  clear: both;
}
#campaignlist .folding .option .title > * {
  float: left;
}
#campaignlist .folding .option .title-img {
  margin-right: 10px;
}
#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;
}
#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;
}
#campaignlist .folding .option table thead td {
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding .option table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#campaignlist .folding .option table tbody th,
#campaignlist .folding .option table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#campaignlist .folding .option table tbody tr.separate th,
#campaignlist .folding .option table tbody tr.separate td {
  border-bottom-style: solid;
}
#campaignlist .folding .option table tbody tr:last-child th,
#campaignlist .folding .option table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding .option table tbody td {
  line-height: 24px;
}
#campaignlist .folding .option table thead th,
#campaignlist .folding .option table thead td {
  height: 33px;
  box-sizing: border-box;
}
#campaignlist .folding .option table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
#campaignlist .folding .option table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
#campaignlist .folding .option table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
#campaignlist .folding .option table thead .note::before {
  content: "※";
  color: #ec7c78;
}
#campaignlist .folding .option table tbody tr:nth-child(even) th,
#campaignlist .folding .option table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
#campaignlist .folding .option table tbody th,
#campaignlist .folding .option table tbody td {
  line-height: 16/12;
}
#campaignlist .folding .option table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
#campaignlist .folding .option table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
#campaignlist .folding .option table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#campaignlist .folding .option table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
#campaignlist .folding .option table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
#campaignlist .folding .option table tfoot td {
  padding: 10px 15px;
}
#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;
}
#campaignlist .folding .option table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
#campaignlist .folding .option table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#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;
}
#campaignlist .folding .option table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
#campaignlist .folding .option table tfoot .inclusion-item .summary {
  color: #b4afac;
}
#campaignlist .folding .option table tfoot .inclusion-item .price {
  order: 3;
}
#campaignlist .folding .option table thead th {
  line-height: 16px;
}
#campaignlist .folding .option table thead th .tax-include,
#campaignlist .folding .option table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
#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;
}
#campaignlist .folding .option table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
#campaignlist .folding .option table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
#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;
}
#campaignlist .folding .option table thead .icon.question .text {
  display: none;
}
#campaignlist .folding .option table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
#campaignlist .folding .option table thead .icon.question:hover .text, #campaignlist .folding .option table thead .icon.question:hover::after {
  position: absolute;
}
#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;
}
#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;
}
#campaignlist .folding .option table tbody th {
  line-height: 1.3333333333;
}
#campaignlist .folding .option table tbody td {
  line-height: 1.3333333333;
}
#campaignlist .folding .option table tbody td .price + .reduce ol {
  text-align: right;
}
#campaignlist .folding .option table tbody td .reduce ol li > span {
  display: inline;
}
#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;
}
#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;
}
#campaignlist .folding .option table thead th {
  border-right: 0;
  background-color: #f2efed;
}
#campaignlist .folding .option table thead th:first-child {
  padding-left: 6px;
  width: auto;
  border-left: 0;
  text-align: left;
}
#campaignlist .folding .option table thead span {
  display: block;
  padding-left: 12px;
  line-height: 34px;
}
#campaignlist .folding .option table tbody th {
  border-left: 0;
}
#campaignlist .folding .option table tbody td {
  border-right: 0;
}
#campaignlist .folding .option table tbody tr:last-child th,
#campaignlist .folding .option table tbody tr:last-child td {
  border-bottom: 0;
}
#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;
}
#campaignlist .folding .summary table thead td {
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding .summary table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
#campaignlist .folding .summary table tbody th,
#campaignlist .folding .summary table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
#campaignlist .folding .summary table tbody tr.separate th,
#campaignlist .folding .summary table tbody tr.separate td {
  border-bottom-style: solid;
}
#campaignlist .folding .summary table tbody tr:last-child th,
#campaignlist .folding .summary table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding .summary table tbody td {
  line-height: 24px;
}
#campaignlist .folding .summary table tbody th,
#campaignlist .folding .summary table tbody td,
#campaignlist .folding .summary table tbody tr:last-child th,
#campaignlist .folding .summary table tbody tr:last-child td {
  border: 0;
}
#campaignlist .folding .summary table tbody th {
  width: 116px;
  border-bottom: 1px solid #fff;
  background-color: #f2efed;
  text-align: center;
  line-height: 1.5;
}
#campaignlist .folding .summary table tbody td {
  padding: 22px;
  border-bottom: 1px dotted #baafa6;
}
#campaignlist .folding .summary table tbody .contents ul {
  margin: 0;
}
#campaignlist .folding .summary table tbody .contents li {
  margin-bottom: 21px;
  font-size: 1em;
}
#campaignlist .folding .summary table tbody .contents li li {
  margin: 0;
}
#campaignlist .folding .summary table tbody .contents li:last-child {
  margin-bottom: 0;
}
#campaignlist .folding .summary table tbody .contents dt {
  margin-bottom: 11px;
  padding: 6px 0 6px 16px;
  background: #f2efed;
}
#campaignlist .folding .summary table tbody .contents dd {
  margin-right: 16px;
  margin-left: 16px;
}
#campaignlist .folding .summary table tbody .contents dd dt,
#campaignlist .folding .summary table tbody .contents dd dd {
  display: inline;
  padding: 0;
  background: none;
  line-height: 1.6666666667;
  font-weight: normal;
}
#campaignlist .folding .summary table tbody .contents dd dt {
  margin-right: 10px;
}
#campaignlist .folding .summary table tbody .contents dd.price {
  padding-bottom: 5px;
  border-bottom: 1px solid #baafa6;
}
#campaignlist .folding .summary table tbody .contents dd.price > ul {
  width: 100%;
}
#campaignlist .folding .summary table tbody .contents dd.price > ul > li {
  width: 100%;
}
#campaignlist .folding .summary table tbody .contents dd.price > ul > li dl {
  display: flex;
  width: 100%;
}
#campaignlist .folding .summary table tbody .contents dd.price > ul > li dl > * {
  margin-bottom: 0;
}
#campaignlist .folding .summary table tbody .contents dd.price > ul > li dl > dd {
  flex: 1;
  margin: 0;
  text-align: right;
}
#campaignlist .folding .summary table tbody .contents dd.price dd > span {
  display: none;
}
#campaignlist .folding .summary table tbody .contents dd.price + .reduce {
  padding-top: 5px;
}
#campaignlist .folding .summary table tbody .contents dd.price + .reduce > ol {
  text-align: right;
}
#campaignlist .folding .summary table tbody .contents dd.reduce li {
  display: inline;
  line-height: 1.6666666667;
}
#campaignlist .folding .summary table tbody .contents dd.reduce li > span {
  font-size: 0.6em;
}
#campaignlist .folding .summary table tbody .contents dd.reduce li:first-child::after {
  content: "→";
}
#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;
}
#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;
}
#campaignlist .folding .summary table tbody .contents dd.reduce em {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
#campaignlist .folding .summary table tbody .operation_place li {
  line-height: 1.5;
}
#campaignlist .folding .summary table tbody .conditions li {
  padding-left: 15px;
  background: url(../img/arrow/arrow5.png) left 4px no-repeat;
  line-height: 1.5;
}
#campaignlist .folding .summary table tbody .conditions li em {
  color: #ec7c78;
}
#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;
}
#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;
}
#campaignlist .folding .summary table tbody .flow li span {
  font-size: 0.8333333333em;
}
#campaignlist .folding .summary table tbody .flow li small {
  margin-left: 1em;
  font-size: 1em;
}
#campaignlist .folding .summary table tbody .flow li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(5) {
  background-image: url(../img/sprite/num/price-no5.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(6) {
  background-image: url(../img/sprite/num/price-no6.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(7) {
  background-image: url(../img/sprite/num/price-no7.png);
}
#campaignlist .folding .summary table tbody .flow li:nth-child(8) {
  background-image: url(../img/sprite/num/price-no8.png);
}
#campaignlist .folding .summary table tbody .flow li:last-child {
  margin: 0;
  padding-bottom: 0;
}
#campaignlist .folding .summary table tbody .flow li:last-child::before {
  content: initial;
}
#campaignlist .folding .summary table tbody .tel dt,
#campaignlist .folding .summary table tbody .tel dd {
  display: inline;
  line-height: 28px;
}
#campaignlist .folding .summary table tbody .tel dt {
  display: inline-block;
  width: 5em;
  font-size: 1.1666666667em;
  color: #ec7c78;
}
#campaignlist .folding .summary table tbody .tel dd:nth-child(2) {
  font-size: 1.5em;
  font-weight: bold;
  color: #ec7c78;
}
#campaignlist .folding .summary table tbody .net p,
#campaignlist .folding .summary table tbody .net li {
  line-height: 1.5;
}
#campaignlist .folding .summary table tbody .net small {
  font-size: 1em;
}
#campaignlist .folding .summary table tbody .net em {
  color: #ec7c78;
}
#campaignlist .folding .summary table tbody .net p {
  margin-bottom: 12px;
}
#campaignlist .folding .summary table tbody .net ul {
  margin-bottom: 15px;
}
#campaignlist .folding .summary table tbody .net li {
  margin-left: 2em;
  list-style-type: disc;
  color: #ec7c78;
}
#campaignlist .folding .summary table tbody .net .form {
  *zoom: 1;
  margin: 0;
}
#campaignlist .folding .summary table tbody .net .form::after {
  content: "";
  display: table;
  clear: both;
}
#campaignlist .folding .summary table tbody .net .form li {
  float: left;
  margin: 0 12px 0 0;
  list-style-type: none;
}
#campaignlist .folding .summary table tbody .net .form .c-button a {
  width: 206px;
  height: 55px;
  box-sizing: border-box;
}
#campaignlist .folding .summary table tbody .net .form .c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
#campaignlist .folding .summary table tbody .net .form .c-button a .inner-text::before, #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text::after {
  right: 4px;
}
#campaignlist .folding .summary table tbody .net .form .c-button.net a {
  display: flex;
  align-items: center;
}
#campaignlist .folding .summary table tbody .net .form .c-button.net a::after {
  content: none;
}
#campaignlist .folding .summary table tbody .net .form .c-button.net .inner-text {
  line-height: 1.4;
}
#campaignlist .exo .summary table tbody th {
  border-bottom: 1px dotted #baafa6;
}
#campaignlist .new .title a::after {
  content: "";
  display: block;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #a4948a;
}
#campaignlist .new.monitor .title a::after {
  background-image: url(../img/campaignlist_monitor_title_bg.png);
}
#campaignlist .new.monitor.is-open .title a::after {
  background-image: url(../img/campaignlist_monitor_title_bg_a.png);
}
#campaignlist .new.campaign .title a::after {
  background-image: url(../img/campaignlist_campaign_title_bg.png);
}
#campaignlist .new.campaign.is-open .title a::after {
  background-image: url(../img/campaignlist_campaign_title_bg_a.png);
}

body.botox #campaignlist .no1 .price table, body.bnls #campaignlist .no1 .price table {
  margin-bottom: 0;
}

body.ultraaccent #campaignlist .no2 .price table {
  margin-bottom: 0;
}
body.ultraaccent #campaignlist .no2 .price ul {
  margin-top: 15px;
}

.campaign-contents .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;
}
.campaign-contents ul {
  margin: 0 10px;
}

#campaignlist .folding div.price table,
#campaignlist .folding .option table,
#campaignlist .folding .summary table {
  width: 100%;
}
#campaignlist .folding .wrapper {
  display: none;
}
#campaignlist .folding div.price .multiple dl .info .mail {
  background-position: 0 -299px;
}
#campaignlist .folding .wrapper .details .summary .contents > td > ul > li:last-child .case-item:nth-last-child(2), #campaignlist .folding .wrapper .details .summary .contents > td > ul > li:last-child .case-item:last-child {
  margin-bottom: 8px;
}
#campaignlist .folding .wrapper .details .summary .contents .case {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 16px 0;
}
#campaignlist .folding .wrapper .details .summary .contents .case-item {
  margin-bottom: 19px;
  width: 240px;
}
#campaignlist .folding .wrapper .details .summary .contents .case-item figure {
  margin: 0;
}
#campaignlist .folding .wrapper .details .summary .contents .case-item img {
  width: 100%;
  height: auto;
}
#campaignlist .folding .wrapper .details .summary .contents .case-item figcaption {
  margin-top: 8px;
  font-size: 0.8333333333em;
}

.pagetop {
  margin-right: 0;
}

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

.lp-banner {
  margin-bottom: 30px;
}
.lp-banner-list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lp-banner-item {
  flex-basis: 345px;
  margin-bottom: 15px;
}
.lp-banner-item img {
  width: 100%;
  height: auto;
}

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

.m-operation-list {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.m-operation-item {
  box-sizing: border-box;
  flex-basis: 339px;
  margin-bottom: 6px;
  border: 0;
}
.m-operation-item a {
  transition: opacity 0.1s linear;
  display: block;
  background: url(../img/arrow/arrow.png) right 10px center no-repeat;
  color: inherit;
}
.m-operation-item a:hover {
  opacity: 1;
}
.m-operation-item .item-inner {
  display: flow-root;
  position: relative;
  padding: 10px 0;
  min-height: 65px;
  transition: opacity 0.1s linear;
}
.m-operation-item .item-inner:hover {
  opacity: 0.5;
}
.m-operation-item .name {
  font-size: 1.6em;
  color: #6d9dd0;
}
.m-operation-item .pic {
  position: absolute;
  top: 10px;
  left: 0;
  border: 1px solid #d7d4d3;
}
.m-operation-item .text {
  font-size: 1.4em;
}
.m-operation-item a {
  display: block;
  background: none;
  color: inherit;
}
.m-operation-item a:hover {
  opacity: 1;
}
.m-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;
}
.m-operation-item .item-inner:hover {
  opacity: 0.5;
}
.m-operation-item .name,
.m-operation-item .text {
  margin-left: 76px;
}
.m-operation-item .name {
  margin-bottom: 12px;
}
.m-operation-item .pic {
  position: absolute;
  top: 10px;
  left: 10px;
  border: 1px solid #d7d4d3;
}
.m-operation-item .text {
  line-height: 1.4285714286;
  font-size: 1.4em;
}
.m-operation-item .text::before {
  margin-top: -3px;
}
.m-operation-item .text::after {
  margin-top: -3px;
}
.m-operation-item .item-inner {
  border: 1px solid #d7d4d3;
}
.m-operation-item .notice {
  display: block;
  margin-top: 5px;
  text-align: right;
  font-size: 1em;
  color: #7f7875;
}

body.tecartherapy article section small {
  font-size: 1em;
  color: #7f7875;
}

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

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

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

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

.morpheus8 #campaignlist .wrapper section > .cap {
  padding: 0 10px;
  border-bottom: 1px solid #baafa6;
  text-align: right;
  line-height: 40px;
  font-weight: bold;
  color: #7f7875;
}

/*----------------------------------------------------------------------
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 {
  padding-bottom: 1px;
  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 dt,
#sub .menu .s-operation-item dd {
  display: table-cell;
  vertical-align: middle;
}
#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;
}
#sub .s-category-link .link-item {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
  background-position: left top;
  background-repeat: no-repeat;
}
#sub .s-category-link .link-item a:hover img {
  opacity: 0;
}
#sub .s-category-link .link-item.liposuction {
  background-image: url(../img/sub_category_link_liposuction_bg.png);
}
#sub .s-category-link .link-item.breast-hip {
  background-image: url(../img/sub_category_link_breast-hip_bg.png);
}
#sub .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_campaign.css.map */
