@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.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	HTMLタグ
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
3.	container
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
4.	共通部分
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
5.	#header
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
6.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
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;
}

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

.c-supervision {
  margin-bottom: 15px;
  color: #7f7875;
}
.c-supervision__headline {
  margin-bottom: 19px;
  padding: 10px;
  background-color: #f3f0ed;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.c-supervision__lead {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #a39e9b;
  text-align: center;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 18px;
  font-weight: bold;
}
.c-supervision__text {
  margin-bottom: 27px;
  line-height: 1.8333333333;
  font-size: 12px;
}
.c-supervision__text mark {
  padding: 0.3em 0;
  background-color: #f2f1a3;
  color: #7f7875;
}
.c-supervision__text a {
  text-decoration: underline;
}
.c-supervision__doctor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -8px auto 0;
  width: 571px;
}
.c-supervision__doctor__item {
  margin-right: 50px;
  margin-bottom: 23px;
}
.c-supervision__doctor__item:nth-of-type(3n) {
  margin-right: 0;
}
.c-supervision__doctor__item figure {
  margin: 0;
}
.c-supervision__doctor__item figure figcaption {
  padding-top: 10px;
  text-align: center;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 17px;
  color: #7f7875;
}

figure {
  display: table;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
}

article > .title {
  margin-bottom: 10px;
}
article .banner {
  margin: 0 0 45px;
  text-align: center;
}
article .banner.top {
  float: right;
  margin: -6px 0;
}

.tab {
  margin: 20px 0;
  margin: 20px 0 10px;
}
.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;
}
.tab.top li.index {
  background: url(../img/operation_tab_top_index_h.png) 0 0 no-repeat;
}
.tab.top li.case {
  background: url(../img/operation_tab_top_case_h.png) 0 0 no-repeat;
}
.tab.top li.flow {
  background: url(../img/operation_tab_top_flow_h.png) 0 0 no-repeat;
}
.tab.top li.price {
  background: url(../img/operation_tab_top_price_h.png) 0 0 no-repeat;
}
.tab.top li.campaign {
  background: url(../img/operation_tab_top_campaign_h.png) 0 0 no-repeat;
}
.tab.top li.qa {
  background: url(../img/operation_tab_top_qa_h.png) 0 0 no-repeat;
}

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

#anchor {
  margin-bottom: 12px;
  margin: 10px 10px 22px;
}
#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);
}

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

#anchor {
  margin-bottom: 40px;
}

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

.m-sub-contents {
  *zoom: 1;
  margin-bottom: 40px;
}
.m-sub-contents::after {
  content: "";
  display: table;
  clear: both;
}
.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;
  padding: 0 0 1px 12px;
  height: 41px;
  border-top: 3px solid;
  border-bottom: 1px solid #baafa6;
  background: linear-gradient(#fefdfd, #f4f2f0);
  line-height: 41px;
  font-size: 1.6em;
  color: #7f7875;
  border-top-color: #94bc5a;
  margin-bottom: 20px;
}
.m-sub-contents > * {
  margin-right: 10px;
  margin-left: 10px;
}
.m-sub-contents > *:last-child:last-child {
  margin-bottom: 0;
}
.m-sub-contents > .title {
  margin-right: 0;
  margin-left: 0;
}
.m-sub-contents > .pic {
  margin-bottom: 40px;
}
.m-sub-contents > .pic.right {
  float: right;
  margin: 0;
  padding: 0 0 5px 24px;
  background: #fff;
}
.m-sub-contents > .pic .pic-item {
  *zoom: 1;
  background: url(../img/contents_operation_points_contents_pic_bg.gif) center bottom no-repeat #f5f2f0;
}
.m-sub-contents > .pic .pic-item::after {
  content: "";
  display: table;
  clear: both;
}
.m-sub-contents > .pic .pic-item-title {
  background: #999490;
  text-align: center;
}
.m-sub-contents > .pic .pic-item:last-of-type {
  margin-bottom: 2px;
}
.m-sub-contents > .pic .pic-item-contents-img {
  float: left;
  margin-right: 20px;
  padding-top: 16px;
}
.m-sub-contents > .pic .pic-item-contents-text {
  overflow: hidden;
  margin: 13px 20px 0 0;
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
.m-sub-contents > .pic figure {
  margin: 0 auto;
}
.m-sub-contents > .text {
  margin-bottom: 26px;
  line-height: 1.5714285714;
  font-size: 1.4em;
}
.m-sub-contents aside {
  padding-top: 40px;
  border-top: 1px dashed #b9aea5;
}

.m-lead > .pic {
  margin-bottom: 30px;
  text-align: center;
}
.m-lead .note {
  display: block;
  margin-top: 10px;
  text-align: right;
  color: #7f7875;
}
.m-lead .comment {
  position: relative;
  padding-bottom: 60px;
}
.m-lead .comment .text {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding: 22px 35px;
  width: 470px;
  background: #f5f2f0;
}
.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;
}
.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;
}
.m-lead .comment .notice {
  position: absolute;
  position: absolute;
  bottom: -2em;
  left: 0;
  font-size: 1em;
}
.m-lead .comment .pic {
  position: absolute;
  right: 0;
  bottom: 0;
}

.m-case .pic {
  margin-bottom: 0;
}
.m-case .pic img {
  max-width: 100%;
  height: auto;
}
.m-case .pic figcaption {
  margin-top: 5px;
  font-size: 1.2em;
  color: #7f7875;
}
.m-case .pic + .pic {
  margin-right: 12px;
}
.m-case .case__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 35px;
}
.m-case .case__item {
  margin-bottom: 15px;
  width: 336px;
}
.m-case .case__item:nth-last-child(2), .m-case .case__item:last-child {
  margin-bottom: 0;
}
.m-case .case__item.full {
  width: 100%;
}
.m-case .case__details {
  margin-top: 5px;
}
.m-case .case__details .js-accordion-contents {
  overflow: hidden;
  height: 0;
  min-height: 0;
  transition: all 0.4s ease-in;
  transform: translate3d(0, 0, 0);
}
.m-case .case__details .js-accordion.is-open > .js-accordion-button::after {
  transform: rotate(180deg);
}
.m-case .case__details .inner {
  overflow: hidden;
}
.m-case .case__details .inner__title {
  position: relative;
  float: right;
  padding: 10px;
  background: #d3cbc5;
  cursor: pointer;
  font-size: 12px;
  color: #7f7875;
  transition: all 0.1s linear;
}
.m-case .case__details .inner__title::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 10px;
  height: 10px;
  background: url(../img/arrow/arrow4.png) right center no-repeat;
}
.m-case .case__details .inner__details {
  clear: both;
}
.m-case .case__details .info {
  padding: 10px 0;
}
.m-case .case__details .info__text {
  line-height: 1.3333333333;
  font-size: 12px;
  color: #7f7875;
}
.m-case .case__details .info__text span {
  color: #595350;
}
.m-case .case__details .info__text + .info__text {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dotted #7f7875;
}
.m-case > .case__details {
  margin-top: -35px;
}
.m-case > .case__details .info {
  padding: 30px 0;
}
.m-case .price-info {
  margin-bottom: 20px;
}
.m-case .price-info .info-text {
  line-height: 1.5;
  font-size: 12px;
  color: #7f7875;
}
.m-case .price-info .info-text em {
  font-weight: bold;
}
.m-case .price-info .info-text a {
  text-decoration: underline;
}
.m-case .price-info .caution em a {
  text-decoration: underline;
  font-weight: bold;
}

.m-features > .text,
.m-technique > .text,
.m-patent > .text {
  margin-bottom: 24px;
}
.m-features .anchor-link,
.m-technique .anchor-link,
.m-patent .anchor-link {
  float: left;
  margin-right: 20px;
  margin-bottom: 60px;
  width: 411px;
}
.m-features .anchor-link-item,
.m-technique .anchor-link-item,
.m-patent .anchor-link-item {
  margin-bottom: 6px;
}
.m-features .anchor-link-item:last-child,
.m-technique .anchor-link-item:last-child,
.m-patent .anchor-link-item:last-child {
  margin: 0;
}
.m-features .anchor-link-item a,
.m-technique .anchor-link-item a,
.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;
}
.m-features .anchor-link-item a::before, .m-features .anchor-link-item a::after,
.m-technique .anchor-link-item a::before,
.m-technique .anchor-link-item a::after,
.m-patent .anchor-link-item a::before,
.m-patent .anchor-link-item a::after {
  content: "";
  display: block;
  position: absolute;
}
.m-features .anchor-link-item a::before,
.m-technique .anchor-link-item a::before,
.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;
}
.m-features .anchor-link-item a::after,
.m-technique .anchor-link-item a::after,
.m-patent .anchor-link-item a::after {
  top: 7px;
  left: 82px;
  width: 59px;
  height: 14px;
  background-position: left top;
  background-repeat: no-repeat;
}
.m-features .anchor-link-item:nth-child(1) a::after,
.m-technique .anchor-link-item:nth-child(1) a::after,
.m-patent .anchor-link-item:nth-child(1) a::after {
  background-image: url(../img/contents_operation_points_anchor_bg1.png);
}
.m-features .anchor-link-item:nth-child(2) a::after,
.m-technique .anchor-link-item:nth-child(2) a::after,
.m-patent .anchor-link-item:nth-child(2) a::after {
  background-image: url(../img/contents_operation_points_anchor_bg2.png);
}
.m-features .anchor-link-item:nth-child(3) a::after,
.m-technique .anchor-link-item:nth-child(3) a::after,
.m-patent .anchor-link-item:nth-child(3) a::after {
  background-image: url(../img/contents_operation_points_anchor_bg3.png);
}
.m-features > .pic,
.m-technique > .pic,
.m-patent > .pic {
  overflow: hidden;
  border: 1px solid #baafa6;
}
.m-features-contents,
.m-technique-contents,
.m-patent-contents {
  clear: both;
}

.m-features-contents > .pic .pic-item {
  margin-bottom: 5px;
}

.m-reason-contents {
  position: relative;
  margin-bottom: 20px;
  padding-left: 185px;
  height: 110px;
  background: linear-gradient(to right, #f4f2f0, #f4f2f0 55%, #fff);
}
.m-reason-contents:last-of-type {
  margin-bottom: 0;
}
.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;
}
.m-reason-contents .title {
  position: relative;
  margin-bottom: 10px;
  padding: 13px 0 15px 17px;
  font-family: YakuHanMP, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2em;
  color: #7f7875;
}
.m-reason-contents .title em {
  color: #ec7c78;
}
.m-reason-contents .title sup {
  font-size: 0.5em;
}
.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));
}
.m-reason-contents .text {
  margin: 0 0 0 17px;
  line-height: 1.4285714286;
  font-size: 1.4em;
  color: #7f7875;
}
.m-reason-contents .pic {
  position: absolute;
  top: 0;
  left: 45px;
}
.m-reason-contents.reason1::before {
  background-image: url(../img/contents_operation_reason1_bg.gif);
}
.m-reason-contents.reason2::before {
  background-image: url(../img/contents_operation_reason2_bg.gif);
}
.m-reason-contents.reason3::before {
  background-image: url(../img/contents_operation_reason3_bg.gif);
}
.m-reason-contents.reason4::before {
  background-image: url(../img/contents_operation_reason4_bg.gif);
}
.m-reason-contents.reason5::before {
  background-image: url(../img/contents_operation_reason5_bg.gif);
}
.m-reason .note {
  margin-top: 10px;
  text-align: right;
  color: #7f7875;
}

.m-doctor ul {
  margin-right: -10px;
}
.m-doctor ul.main {
  margin-bottom: 20px;
}
.m-doctor li {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.m-doctor li img {
  border: 1px solid #baafa6;
}
.m-doctor .advisor {
  *zoom: 1;
  margin-bottom: 40px;
}
.m-doctor .advisor::after {
  content: "";
  display: table;
  clear: both;
}
.m-doctor .advisor-item {
  float: left;
  margin-right: 10px;
  padding: 30px 31px 30px 30px;
  background: #eeebe8;
}
.m-doctor .advisor-item:last-child {
  margin: 0;
}
.m-doctor .text {
  margin-bottom: 30px;
  font-size: 1.4em;
  color: #7f7875;
}
.m-doctor .advisor-item {
  padding: 23px 31px 23px 30px;
}
.m-doctor .m-sub-contents {
  margin: 0 10px 20px;
}
.m-doctor .m-sub-contents > .title {
  margin: 0 0 5px;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1;
  font-size: 1.4em;
  color: #7f7875;
}
.m-doctor .m-sub-contents > .title::before {
  content: "●";
  margin-right: 0.5em;
  color: #7f7875;
}
.m-doctor .m-sub-contents table {
  width: 100%;
  border: 1px solid #dbdad9;
  border-collapse: collapse;
  font-size: 1.2em;
  color: #7f7875;
}
.m-doctor .m-sub-contents table th {
  height: 26px;
  border-right: 1px solid #dbdad9;
  background: #eae5e2;
  text-align: center;
}
.m-doctor .m-sub-contents table th:nth-child(1) {
  width: 63px;
}
.m-doctor .m-sub-contents table th:nth-child(2) {
  width: 185px;
}
.m-doctor .m-sub-contents table th:nth-child(4) {
  width: 146px;
}
.m-doctor .m-sub-contents table td {
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #dbdad9;
  border-top: 0;
  vertical-align: top;
  line-height: 1.3333333333;
}

body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-list {
  margin-bottom: 30px;
  border: 1px solid #baafa6;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item {
  border-bottom: 1px solid #e6e0dc;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item:last-child {
  border: 0;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .question.title {
  position: relative;
  padding: 15px 42px;
  background: url(../img/qa_list_bg.png) 12px center no-repeat;
  line-height: 1.3333333333;
  font-size: 1.4em;
  color: #6d9dd0;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .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.4em;
  color: #7f7875;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .title {
  margin-bottom: 15px;
  line-height: 1.3333333333;
  font-weight: bold;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .text {
  line-height: 1.3333333333;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .text + .text {
  margin-top: 15px;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .text a {
  display: inline-block;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .pic {
  margin-top: 15px;
  text-align: center;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .link {
  margin-top: 0.5em;
  text-align: right;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .link a {
  padding-right: 14px;
  background: url(../img/arrow/arrow2.png) right center no-repeat;
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents .link a:hover {
  background-image: url(../img/sprite/hover/arrow/arrow2_h.png);
}
body:not(.vaser):not(.condenserich_breastaugmentation):not(.breast_reconstruction):not(.embracerf) .m-faq-item .contents *:last-child {
  margin-bottom: 0;
}

#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: "メアド不要で気軽に質問";
}

.m-flow > ol {
  margin: 0 10px;
}
.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;
}
.m-flow > ol > li:nth-child(1) {
  background-image: url(../img/operation_flow_bg1.jpg?v=2);
}
.m-flow > ol > li:nth-child(2) {
  background-image: url(../img/operation_flow_bg2.jpg?v=2);
}
.m-flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg3.jpg?v=2);
}
.m-flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg4.jpg?v=2);
}
.m-flow > ol > li:nth-child(5) {
  background-image: url(../img/operation_flow_bg5.jpg?v=2);
}
.m-flow > ol > li:nth-child(6) {
  background-image: url(../img/operation_flow_bg6.jpg?v=2);
}
.m-flow > ol > li:nth-child(7) {
  background-image: url(../img/operation_flow_bg7.jpg?v=2);
}
.m-flow > ol > li:first-child .title {
  letter-spacing: 0.5em;
}
.m-flow > ol > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.m-flow > ol > li li {
  margin: 0;
  padding: 0;
  min-height: 1px;
  border: 0;
  color: #7f7875;
}
.m-flow > ol > li section * {
  margin-left: 242px;
}
.m-flow > ol > li section * * {
  margin: 0;
}
.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;
}
.m-flow > ol > li:nth-child(1) .title {
  background-image: url(../img/sprite/num/flow-no1.png);
}
.m-flow > ol > li:nth-child(2) .title {
  background-image: url(../img/sprite/num/flow-no2.png);
}
.m-flow > ol > li:nth-child(3) .title {
  background-image: url(../img/sprite/num/flow-no3.png);
}
.m-flow > ol > li:nth-child(4) .title {
  background-image: url(../img/sprite/num/flow-no4.png);
}
.m-flow > ol > li:nth-child(5) .title {
  background-image: url(../img/sprite/num/flow-no5.png);
}
.m-flow > ol > li:nth-child(6) .title {
  background-image: url(../img/sprite/num/flow-no6.png);
}
.m-flow > ol > li:nth-child(7) .title {
  background-image: url(../img/sprite/num/flow-no7.png);
}
.m-flow > ol > li:nth-child(8) .title {
  background-image: url(../img/sprite/num/flow-no8.png);
}
.m-flow p {
  margin-bottom: 15px;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.m-flow ul {
  margin-top: 22px;
  margin-bottom: 22px;
}
.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;
}
.m-flow .info, .m-flow li:nth-child(1) ul {
  margin-bottom: 0;
  border: 1px solid #baafa6;
  border-bottom: 0;
}
.m-flow .info li, .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;
}
.m-flow .info li:nth-child(1), .m-flow li:nth-child(1) ul li:nth-child(1) {
  background-image: url(../img/sprite/info/flow-net.png);
}
.m-flow .info li:nth-child(2), .m-flow li:nth-child(1) ul li:nth-child(2) {
  background-image: url(../img/sprite/info/flow-tel.png);
}
.m-flow .info dl, .m-flow li:nth-child(1) ul dl {
  margin-left: 151px;
  padding: 0 0 0 41px;
  border-left: 1px dotted #baafa6;
  background: #f2efed;
}
.m-flow .info .net dl, .m-flow li:nth-child(1) ul .net dl {
  padding-top: 19px;
  padding-bottom: 20px;
}
.m-flow .info .net dt, .m-flow li:nth-child(1) ul .net dt {
  margin-bottom: 10px;
  font-size: 1.2em;
}
.m-flow .info .net dd, .m-flow li:nth-child(1) ul .net dd {
  display: block;
}
.m-flow .info .net dd .c-button a, .m-flow li:nth-child(1) ul .net dd .c-button a {
  width: 206px;
  box-sizing: border-box;
}
.m-flow .info .net dd .c-button a .inner-text, .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;
}
.m-flow .info .net dd .c-button a .inner-text::before, .m-flow .info .net dd .c-button a .inner-text::after, .m-flow li:nth-child(1) ul .net dd .c-button a .inner-text::before, .m-flow li:nth-child(1) ul .net dd .c-button a .inner-text::after {
  right: 4px;
}
.m-flow .info .tel dl, .m-flow li:nth-child(1) ul .tel dl {
  padding-top: 21px;
  padding-bottom: 20px;
}
.m-flow .info .tel dl dt, .m-flow li:nth-child(1) ul .tel dl dt {
  margin-bottom: 5px;
}
.m-flow .info .tel dl dt a, .m-flow li:nth-child(1) ul .tel dl dt a {
  color: #7f7875;
}
.m-flow .info .tel dl dt img, .m-flow li:nth-child(1) ul .tel dl dt img {
  margin-bottom: 8px;
}
.m-flow .info .tel dl dl, .m-flow li:nth-child(1) ul .tel dl dl {
  margin: 0;
  padding: 0;
  border: 0;
}
.m-flow .info .tel dl dl dt,
.m-flow .info .tel dl dl dd, .m-flow li:nth-child(1) ul .tel dl dl dt,
.m-flow li:nth-child(1) ul .tel dl dl dd {
  display: inline;
}
.m-flow .info .tel dl dl dt,
.m-flow .info .tel dl dl em, .m-flow li:nth-child(1) ul .tel dl dl dt,
.m-flow li:nth-child(1) ul .tel dl dl em {
  font-weight: bold;
}
.m-flow #oneday {
  margin-bottom: 0;
  border: 1px solid #baafa6;
}
.m-flow #previousday {
  border: 1px solid #baafa6;
}
.m-flow #previousday .title,
.m-flow #previousday p {
  display: table-cell;
  vertical-align: middle;
}
.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;
}
.m-flow #previousday p {
  padding: 15px 20px;
  background: #f2efed;
  line-height: 1.6666666667;
}
.m-flow ol li:last-child .info {
  margin-top: 22px;
  padding-bottom: 17px;
  border: none;
}
.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;
}
.m-flow p,
.m-flow ul li:nth-child(n),
.m-flow #previousday .title {
  font-size: 1.4em;
}
.m-flow-order {
  margin: 0 10px 30px;
  padding-bottom: 26px;
  border-bottom: 1px dotted #baafa6;
}
.m-flow .info .tel .clinic-tel, .m-flow li:nth-child(1) ul .tel .clinic-tel {
  display: table;
  padding: 0;
  width: 288px;
  table-layout: fixed;
}
.m-flow .info .tel .clinic-tel > *, .m-flow li:nth-child(1) ul .tel .clinic-tel > * {
  display: table-cell;
  vertical-align: middle;
}
.m-flow .info .tel .clinic-tel-title, .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;
}
.m-flow .info .tel .clinic-tel-contents, .m-flow li:nth-child(1) ul .tel .clinic-tel-contents {
  padding: 13px 0 13px 14px;
  border-bottom: 1px solid #c7bcb5;
}
.m-flow .info .tel .clinic-tel-contents-title, .m-flow li:nth-child(1) ul .tel .clinic-tel-contents-title {
  font-weight: normal;
}
.m-flow .info .tel .clinic-tel-contents-contents, .m-flow li:nth-child(1) ul .tel .clinic-tel-contents-contents {
  display: inline-block;
  margin-top: 5px;
}
.m-flow .info .tel .clinic-tel.nagoya .clinic-tel-title, .m-flow li:nth-child(1) ul .tel .clinic-tel.nagoya .clinic-tel-title {
  text-indent: 0;
  letter-spacing: 0;
}
.m-flow .info .tel .clinic-tel:last-child .clinic-tel-title,
.m-flow .info .tel .clinic-tel:last-child .clinic-tel-contents, .m-flow li:nth-child(1) ul .tel .clinic-tel:last-child .clinic-tel-title,
.m-flow li:nth-child(1) ul .tel .clinic-tel:last-child .clinic-tel-contents {
  border-bottom: 0;
}

.m-price #feature .pic {
  margin-bottom: 10px;
}
.m-price #feature .pic img {
  border: 1px solid #baafa6;
}
.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;
}
.m-price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.m-price #feature #service a:hover img {
  opacity: 0;
}
.m-price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.m-price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.m-price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.m-price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.m-price #feature #service li a:hover img {
  opacity: 0;
}
.m-price #feature #service li:nth-child(1) {
  background-image: url(../img/sprite/hover/price/price_nav_counseling_h.png);
}
.m-price #feature #service li:nth-child(2) {
  background-image: url(../img/sprite/hover/price/price_nav_payment_h.png);
}
.m-price #feature #service li {
  background-position: 0 0;
  background-repeat: no-repeat;
}
.m-price #feature #service a:hover img {
  opacity: 0;
}
.m-price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.m-price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.m-price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.m-price #counseling dl {
  display: flex;
  align-items: center;
  border: 1px solid #baafa6;
}
.m-price #counseling dt,
.m-price #counseling dd {
  display: flex;
  align-items: center;
  height: 81px;
}
.m-price #counseling dt {
  justify-content: center;
  width: 83px;
  border-right: 1px dotted #baafa6;
  background: #f2efed;
}
.m-price #counseling dd {
  padding: 0 15px 0 29px;
}
.m-price #counseling dd img {
  margin-right: 30px;
}
.m-price #counseling dd small {
  display: inline-block;
  width: 270px;
  text-indent: -1em;
  line-height: 1.25;
  font-size: 1em;
  color: #7f7875;
}
.m-price #counseling dd:nth-child(2) {
  flex: 1;
}
.m-price #counseling dd:last-child {
  padding: 0 14px 0 0;
}
.m-price #counseling dd.c-button {
  width: 206px;
}
.m-price #counseling dd.c-button a {
  width: 206px;
  box-sizing: border-box;
}
.m-price #counseling dd.c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
.m-price #counseling dd.c-button a .inner-text::before, .m-price #counseling dd.c-button a .inner-text::after {
  right: 4px;
}
.m-price #payment p,
.m-price #payment li {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.m-price #payment p li,
.m-price #payment li li {
  font-size: 1em;
}
.m-price #payment small {
  font-size: 1em;
}
.m-price #payment li,
.m-price #payment dt {
  line-height: 39px;
}
.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;
}
.m-price #payment li:first-child {
  letter-spacing: 0.5em;
}
.m-price #payment li:last-child {
  border: 0;
}
.m-price #payment li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
.m-price #payment li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
.m-price #payment li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
.m-price #payment li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
.m-price #payment dt {
  float: left;
  width: 110px;
}
.m-price #payment dd {
  overflow: hidden;
  padding: 10px 0 9px;
  line-height: 1.8333333333;
  font-weight: normal;
}
.m-price #payment dd li,
.m-price #payment dd dt {
  line-height: 1.8333333333;
}
.m-price #payment dd dt {
  float: none;
  width: auto;
}
.m-price #payment dd dd {
  overflow: auto;
  padding: 0;
}
.m-price #payment dd li {
  margin-left: 2em;
  padding: 0;
  min-height: 1px;
  border: 0;
  list-style-type: decimal;
  font-weight: normal;
}
.m-price #payment dd li:first-child {
  letter-spacing: 0;
}
.m-price #payment dd li:nth-child(n) {
  background-image: none;
}
.m-price #payment dd li li {
  margin: 0;
  list-style-type: none;
}
.m-price #payment dd li li, .m-price #payment dd li li::before {
  content: "◇";
}
.m-price #payment .wrapper {
  margin: 0;
  border: 1px solid #baafa6;
}
.m-price #payment .wrapper p {
  padding-left: 12px;
  border-bottom: 1px dotted #baafa6;
  line-height: 28px;
}
.m-price #pricelist .pagetop {
  margin-right: -10px;
}
.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;
}
.m-price #pricelist table thead td {
  border-bottom: 1px solid #baafa6;
}
.m-price #pricelist table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.m-price #pricelist table tbody th,
.m-price #pricelist table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.m-price #pricelist table tbody tr.separate th,
.m-price #pricelist table tbody tr.separate td {
  border-bottom-style: solid;
}
.m-price #pricelist table tbody tr:last-child th,
.m-price #pricelist table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.m-price #pricelist table tbody td {
  line-height: 24px;
}
.m-price #pricelist table thead th,
.m-price #pricelist table thead td {
  height: 33px;
  box-sizing: border-box;
}
.m-price #pricelist table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
.m-price #pricelist table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
.m-price #pricelist table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
.m-price #pricelist table thead .note::before {
  content: "※";
  color: #ec7c78;
}
.m-price #pricelist table tbody tr:nth-child(even) th,
.m-price #pricelist table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
.m-price #pricelist table tbody th,
.m-price #pricelist table tbody td {
  line-height: 16/12;
}
.m-price #pricelist table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
.m-price #pricelist table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
.m-price #pricelist table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.m-price #pricelist table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
.m-price #pricelist table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
.m-price #pricelist table tfoot td {
  padding: 10px 15px;
}
.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;
}
.m-price #pricelist table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
.m-price #pricelist table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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;
}
.m-price #pricelist table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
.m-price #pricelist table tfoot .inclusion-item .summary {
  color: #b4afac;
}
.m-price #pricelist table tfoot .inclusion-item .price {
  order: 3;
}
.m-price #pricelist table thead th {
  line-height: 16px;
}
.m-price #pricelist table thead th .tax-include,
.m-price #pricelist table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.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;
}
.m-price #pricelist table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.m-price #pricelist table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
.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;
}
.m-price #pricelist table thead .icon.question .text {
  display: none;
}
.m-price #pricelist table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
.m-price #pricelist table thead .icon.question:hover .text, .m-price #pricelist table thead .icon.question:hover::after {
  position: absolute;
}
.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;
}
.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;
}
.m-price #pricelist table tbody th {
  line-height: 1.3333333333;
}
.m-price #pricelist table tbody td {
  line-height: 1.3333333333;
}
.m-price #pricelist table tbody td .price + .reduce ol {
  text-align: right;
}
.m-price #pricelist table tbody td .reduce ol li > span {
  display: inline;
}
.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;
}
.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;
}
.m-price #pricelist table .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 10px;
  color: #918b88;
}
.m-price #pricelist table .note::before {
  content: "※";
  color: #ec7c78;
}
.m-price #pricelist table .note + .head-text {
  margin-bottom: 5px;
}
.m-price #pricelist table + table {
  margin-top: 10px;
}
.m-price #pricelist li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
.m-price #pricelist .multiple {
  margin: 10px 0;
}
.m-price #pricelist .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
.m-price #pricelist .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
.m-price #pricelist .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
.m-price #pricelist .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
.m-price #pricelist .multiple dl .info {
  margin-top: 12px;
}
.m-price #pricelist .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
.m-price #pricelist .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
.m-price #pricelist .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.m-price #pricelist .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
.m-price #pricelist .multiple dl .info li a:hover {
  opacity: 0;
}
.m-price #pricelist .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
.m-price #pricelist .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
.m-price #pricelist small {
  font-size: 1em;
}
.m-price #pricelist small, .m-price #pricelist small::before {
  content: "※";
}
.m-price #pricelist small::before {
  color: #ec7c78;
}
.m-price #pricelist .example {
  margin: 10px 0;
  color: #7f7875;
}
.m-price #pricelist .example img {
  display: block;
}
.m-price #pricelist .option {
  margin: 40px 0 0;
}
.m-price #pricelist .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
}
.m-price #pricelist .option .title::after {
  content: "";
  display: table;
  clear: both;
}
.m-price #pricelist .option .title > * {
  float: left;
}
.m-price #pricelist .option .title-img {
  margin-right: 10px;
}
.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;
}
.m-price #pricelist .option table thead th {
  background-color: #f2efed;
}
.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;
}
.m-price #pricelist .option table thead th:nth-child(1) {
  padding-left: 6px;
  width: auto;
  text-align: left;
}
.m-price > .title {
  padding-left: 0.5em;
  letter-spacing: 0.5em;
}
.m-price .lead {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #7f7875;
}
.m-price #pricelist {
  margin-bottom: 20px;
}
.m-price #pricelist table {
  width: 100%;
}
.m-price #pricelist .m-price__schema {
  margin-top: 25px;
}
.m-price #pricelist .option {
  margin-top: 40px;
}
.m-price #pricelist .option .title {
  color: #7f7875;
}
.m-price #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;
  padding: 0 0 1px 12px;
  height: 41px;
  border-top: 3px solid;
  border-bottom: 1px solid #baafa6;
  background: linear-gradient(#fefdfd, #f4f2f0);
  line-height: 41px;
  font-size: 1.6em;
  color: #7f7875;
  border-top-color: #94bc5a;
  margin-bottom: 10px;
}
.m-price #payment dt {
  width: 130px;
}
.m-price #payment p,
.m-price #payment li {
  font-size: 1.4em;
}

.m-campaign {
  margin-bottom: 20px;
  border: 1px solid #baafa6;
  background-position: left top;
  background-repeat: no-repeat;
}
.m-campaign a {
  display: block;
}
.m-campaign a:hover > * {
  opacity: 0.5;
}

#index.srf .m-campaign a::before {
  content: none;
}

#index.microcrf #pricelist table thead th,
#index.microcrf #pricelist table thead td {
  height: 45px;
}

.m-service {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: 0;
  margin: 0 10px 30px;
}
.m-service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.m-service a:hover img {
  opacity: 0;
}
.m-service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.m-service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.m-service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}

.m-summary table {
  width: calc(100% - 10px - 10px);
  border: 1px solid #c7bcb5;
  font-size: 1.4em;
  color: #7f7875;
}
.m-summary table th,
.m-summary table td {
  border-bottom: 1px dotted #c7bcb5;
}
.m-summary table th {
  width: 125px;
  border-right: 1px dotted #c7bcb5;
  background: #f2efed;
  text-align: center;
}
.m-summary table td {
  padding: 12px 20px;
  line-height: 1.4285714286;
}
.m-summary table .inner-text {
  margin-bottom: 5px;
  line-height: 1.4285714286;
}
.m-summary table .inner-text small {
  font-size: 0.8571428571em;
}

.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;
  padding: 0 0 1px 12px;
  height: 41px;
  border-top: 3px solid;
  border-bottom: 1px solid #baafa6;
  background: linear-gradient(#fefdfd, #f4f2f0);
  line-height: 41px;
  font-size: 1.6em;
  color: #7f7875;
  border-top-color: #94bc5a;
  margin-bottom: 10px;
}

.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-operations {
  margin: 0 0 30px;
}
.m-operations dl {
  display: table;
  padding: 6px 11px;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  box-sizing: border-box;
}
.m-operations dt,
.m-operations dd {
  display: table-cell;
  vertical-align: middle;
}
.m-operations dt {
  padding-right: 10px;
  width: 32px;
}
.m-operations dt img {
  border: 1px solid #baafa6;
}
.m-operations dd {
  line-height: 1.1666666667;
  font-size: 1.2em;
}
.m-operations ul {
  display: flex;
  flex-wrap: wrap;
  box-shadow: inset 0 0 0 1px #baafa6;
}
.m-operations li {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  border-right: 1px dotted #baafa6;
  border-bottom: 1px dotted #baafa6;
}
.m-operations a {
  display: block;
  text-decoration: none;
  color: #7f7875;
}
.m-operations > .title2 {
  margin-bottom: 15px;
  border-bottom: 1px solid #cccacc;
}
.m-operations > .sub-title {
  margin-bottom: 7px;
  padding-left: 7px;
  border-left: 3px solid #94bc5a;
  line-height: 1.4285714286;
  font-size: 1.4em;
  font-weight: bold;
  color: #7f7875;
}
.m-operations ul {
  margin-bottom: 15px;
}
.m-operations li {
  flex-basis: 25%;
}

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

.p-movie__list {
  display: grid;
  column-gap: 20px;
  row-gap: 20px;
}
.p-movie__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  grid-template-columns: min-content max-content 1fr;
  row-gap: 10px;
}
.p-movie__item__title {
  grid-column: 2/4;
  grid-row: 2/3;
  line-height: 1.2941176471;
  font-size: 1.7em;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
.p-movie__item__title a {
  color: #8c8683;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-movie__item.is-new .p-movie__date::before {
  content: "NEW";
  margin-right: 8px;
  padding: 2px 6px;
  border-radius: 6px;
  background: #ec7c78;
  font-size: 0.6428571429em;
  color: #fff;
}
.p-movie__img {
  margin-bottom: 6px;
  width: 100%;
  height: auto;
  border-radius: 6px;
  grid-column: 1/4;
  grid-row: 1/2;
}
.p-movie__doctor__pic {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-right: 10px;
}
.p-movie__doctor__pic img {
  width: 40px;
  height: auto;
}
.p-movie__doctor__name {
  grid-column: 2/3;
  grid-row: 3/4;
  align-self: flex-start;
  font-size: 1.4em;
  color: #b2aeac;
}
.p-movie__date {
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: flex-end;
  text-align: right;
  font-size: 1.4em;
  color: #b2aeac;
  grid-column: 3/4;
  grid-row: 3/4;
}

.p-movie__list {
  grid-template-columns: repeat(auto-fit, 214px);
}
.p-movie__item {
  row-gap: 8px;
}
.p-movie__item__title {
  line-height: 1.3076923077;
  font-size: 1.3em;
}
.p-movie__img {
  margin-bottom: 0;
}
.p-movie__doctor__name, .p-movie__date {
  font-size: 1.1em;
}

/*----------------------------------------------------------------------
8.	#sub
----------------------------------------------------------------------*/
#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
----------------------------------------------------------------------*/
/* ----------------------------------------
エンブレイス
---------------------------------------- */
.embracerf #price #feature .pic {
  margin-bottom: 10px;
}
.embracerf #price #feature .pic img {
  border: 1px solid #baafa6;
}
.embracerf #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;
}
.embracerf #price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.embracerf #price #feature #service a:hover img {
  opacity: 0;
}
.embracerf #price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.embracerf #price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.embracerf #price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.embracerf #price #feature #service li {
  border: 1px solid #baafa6;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.embracerf #price #feature #service li a:hover img {
  opacity: 0;
}
.embracerf #price #feature #service li:nth-child(1) {
  background-image: url(../img/sprite/hover/price/price_nav_counseling_h.png);
}
.embracerf #price #feature #service li:nth-child(2) {
  background-image: url(../img/sprite/hover/price/price_nav_payment_h.png);
}
.embracerf #price #feature #service li {
  background-position: 0 0;
  background-repeat: no-repeat;
}
.embracerf #price #feature #service a:hover img {
  opacity: 0;
}
.embracerf #price #feature #service li.transportation {
  background-image: url(../img/sprite/hover/price/price_feature_transportation_h.png);
}
.embracerf #price #feature #service li.oneday {
  background-image: url(../img/sprite/hover/price/price_feature_oneday_h.png);
}
.embracerf #price #feature #service li.guarantee {
  background-image: url(../img/sprite/hover/price/price_feature_guarantee_h.png);
}
.embracerf #price #counseling dl {
  display: flex;
  align-items: center;
  border: 1px solid #baafa6;
}
.embracerf #price #counseling dt,
.embracerf #price #counseling dd {
  display: flex;
  align-items: center;
  height: 81px;
}
.embracerf #price #counseling dt {
  justify-content: center;
  width: 83px;
  border-right: 1px dotted #baafa6;
  background: #f2efed;
}
.embracerf #price #counseling dd {
  padding: 0 15px 0 29px;
}
.embracerf #price #counseling dd img {
  margin-right: 30px;
}
.embracerf #price #counseling dd small {
  display: inline-block;
  width: 270px;
  text-indent: -1em;
  line-height: 1.25;
  font-size: 1em;
  color: #7f7875;
}
.embracerf #price #counseling dd:nth-child(2) {
  flex: 1;
}
.embracerf #price #counseling dd:last-child {
  padding: 0 14px 0 0;
}
.embracerf #price #counseling dd.c-button {
  width: 206px;
}
.embracerf #price #counseling dd.c-button a {
  width: 206px;
  box-sizing: border-box;
}
.embracerf #price #counseling dd.c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
.embracerf #price #counseling dd.c-button a .inner-text::before, .embracerf #price #counseling dd.c-button a .inner-text::after {
  right: 4px;
}
.embracerf #price #payment p,
.embracerf #price #payment li {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.embracerf #price #payment p li,
.embracerf #price #payment li li {
  font-size: 1em;
}
.embracerf #price #payment small {
  font-size: 1em;
}
.embracerf #price #payment li,
.embracerf #price #payment dt {
  line-height: 39px;
}
.embracerf #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;
}
.embracerf #price #payment li:first-child {
  letter-spacing: 0.5em;
}
.embracerf #price #payment li:last-child {
  border: 0;
}
.embracerf #price #payment li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
.embracerf #price #payment li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
.embracerf #price #payment li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
.embracerf #price #payment li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
.embracerf #price #payment dt {
  float: left;
  width: 110px;
}
.embracerf #price #payment dd {
  overflow: hidden;
  padding: 10px 0 9px;
  line-height: 1.8333333333;
  font-weight: normal;
}
.embracerf #price #payment dd li,
.embracerf #price #payment dd dt {
  line-height: 1.8333333333;
}
.embracerf #price #payment dd dt {
  float: none;
  width: auto;
}
.embracerf #price #payment dd dd {
  overflow: auto;
  padding: 0;
}
.embracerf #price #payment dd li {
  margin-left: 2em;
  padding: 0;
  min-height: 1px;
  border: 0;
  list-style-type: decimal;
  font-weight: normal;
}
.embracerf #price #payment dd li:first-child {
  letter-spacing: 0;
}
.embracerf #price #payment dd li:nth-child(n) {
  background-image: none;
}
.embracerf #price #payment dd li li {
  margin: 0;
  list-style-type: none;
}
.embracerf #price #payment dd li li, .embracerf #price #payment dd li li::before {
  content: "◇";
}
.embracerf #price #payment .wrapper {
  margin: 0;
  border: 1px solid #baafa6;
}
.embracerf #price #payment .wrapper p {
  padding-left: 12px;
  border-bottom: 1px dotted #baafa6;
  line-height: 28px;
}
.embracerf #price #pricelist .pagetop {
  margin-right: -10px;
}
.embracerf #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;
}
.embracerf #price #pricelist table thead td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #pricelist table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.embracerf #price #pricelist table tbody th,
.embracerf #price #pricelist table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.embracerf #price #pricelist table tbody tr.separate th,
.embracerf #price #pricelist table tbody tr.separate td {
  border-bottom-style: solid;
}
.embracerf #price #pricelist table tbody tr:last-child th,
.embracerf #price #pricelist table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #pricelist table tbody td {
  line-height: 24px;
}
.embracerf #price #pricelist table thead th,
.embracerf #price #pricelist table thead td {
  height: 33px;
  box-sizing: border-box;
}
.embracerf #price #pricelist table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
.embracerf #price #pricelist table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
.embracerf #price #pricelist table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
.embracerf #price #pricelist table thead .note::before {
  content: "※";
  color: #ec7c78;
}
.embracerf #price #pricelist table tbody tr:nth-child(even) th,
.embracerf #price #pricelist table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
.embracerf #price #pricelist table tbody th,
.embracerf #price #pricelist table tbody td {
  line-height: 16/12;
}
.embracerf #price #pricelist table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
.embracerf #price #pricelist table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
.embracerf #price #pricelist table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.embracerf #price #pricelist table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
.embracerf #price #pricelist table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
.embracerf #price #pricelist table tfoot td {
  padding: 10px 15px;
}
.embracerf #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;
}
.embracerf #price #pricelist table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
.embracerf #price #pricelist table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.embracerf #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;
}
.embracerf #price #pricelist table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
.embracerf #price #pricelist table tfoot .inclusion-item .summary {
  color: #b4afac;
}
.embracerf #price #pricelist table tfoot .inclusion-item .price {
  order: 3;
}
.embracerf #price #pricelist table thead th {
  line-height: 16px;
}
.embracerf #price #pricelist table thead th .tax-include,
.embracerf #price #pricelist table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.embracerf #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;
}
.embracerf #price #pricelist table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.embracerf #price #pricelist table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
.embracerf #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;
}
.embracerf #price #pricelist table thead .icon.question .text {
  display: none;
}
.embracerf #price #pricelist table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
.embracerf #price #pricelist table thead .icon.question:hover .text, .embracerf #price #pricelist table thead .icon.question:hover::after {
  position: absolute;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #pricelist table tbody th {
  line-height: 1.3333333333;
}
.embracerf #price #pricelist table tbody td {
  line-height: 1.3333333333;
}
.embracerf #price #pricelist table tbody td .price + .reduce ol {
  text-align: right;
}
.embracerf #price #pricelist table tbody td .reduce ol li > span {
  display: inline;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #pricelist table .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 10px;
  color: #918b88;
}
.embracerf #price #pricelist table .note::before {
  content: "※";
  color: #ec7c78;
}
.embracerf #price #pricelist table .note + .head-text {
  margin-bottom: 5px;
}
.embracerf #price #pricelist table + table {
  margin-top: 10px;
}
.embracerf #price #pricelist li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
.embracerf #price #pricelist .multiple {
  margin: 10px 0;
}
.embracerf #price #pricelist .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
.embracerf #price #pricelist .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #pricelist .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
.embracerf #price #pricelist .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #pricelist .multiple dl .info {
  margin-top: 12px;
}
.embracerf #price #pricelist .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
.embracerf #price #pricelist .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
.embracerf #price #pricelist .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.embracerf #price #pricelist .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
.embracerf #price #pricelist .multiple dl .info li a:hover {
  opacity: 0;
}
.embracerf #price #pricelist .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
.embracerf #price #pricelist .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
.embracerf #price #pricelist small {
  font-size: 1em;
}
.embracerf #price #pricelist small, .embracerf #price #pricelist small::before {
  content: "※";
}
.embracerf #price #pricelist small::before {
  color: #ec7c78;
}
.embracerf #price #pricelist .example {
  margin: 10px 0;
  color: #7f7875;
}
.embracerf #price #pricelist .example img {
  display: block;
}
.embracerf #price #pricelist .option {
  margin: 40px 0 0;
}
.embracerf #price #pricelist .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
}
.embracerf #price #pricelist .option .title::after {
  content: "";
  display: table;
  clear: both;
}
.embracerf #price #pricelist .option .title > * {
  float: left;
}
.embracerf #price #pricelist .option .title-img {
  margin-right: 10px;
}
.embracerf #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;
}
.embracerf #price #pricelist .option table thead th {
  background-color: #f2efed;
}
.embracerf #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;
}
.embracerf #price #pricelist .option table thead th:nth-child(1) {
  padding-left: 6px;
  width: auto;
  text-align: left;
}
.embracerf #price #campaignlist {
  /* $discount: sprite-map('discount/*.png'); */
  /* $discount-img: sprite-url($discount); */
}
.embracerf #price #campaignlist > li {
  margin-bottom: 10px;
  border: 1px solid #baafa6;
}
.embracerf #price #campaignlist > li .title {
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  line-height: 1;
}
.embracerf #price #campaignlist > li .title a img {
  opacity: 1;
  transition: opacity 0.1s linear;
}
.embracerf #price #campaignlist > li .title a:hover img {
  opacity: 0.5;
}
.embracerf #price #campaignlist .table {
  padding: 2px;
  background: #f2efed;
}
.embracerf #price #campaignlist .table .title,
.embracerf #price #campaignlist .table p,
.embracerf #price #campaignlist .table ol {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.embracerf #price #campaignlist .table .title {
  padding: 3px 0 3px 3px;
  width: 531px;
  text-align: left;
}
.embracerf #price #campaignlist .table .title-inner {
  display: table-cell;
  padding: 10px 0 7px 17px;
  height: 44px;
  border-left: 4px solid #ec7c78;
  vertical-align: middle;
}
.embracerf #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;
}
.embracerf #price #campaignlist .table .title-inner .ref {
  display: block;
  padding: 0 0 3px;
  width: auto;
  background: none;
  text-align: left;
  font-size: 12px;
}
.embracerf #price #campaignlist .table .title-inner .price {
  padding: 0;
  width: auto;
  background: none;
  text-align: left;
  font-size: 14px;
}
.embracerf #price #campaignlist .table.capacity .title-inner {
  height: 56px;
}
.embracerf #price #campaignlist .table p,
.embracerf #price #campaignlist .table ol {
  padding: 0 9px;
  width: 126px;
  background: #fff;
  line-height: 1.3333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.embracerf #price #campaignlist .table a {
  text-decoration: none;
  color: #ec7c78;
}
.embracerf #price #campaignlist .table em {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #campaignlist .discount ol li:first-child {
  margin-bottom: 6px;
  padding-bottom: 10px;
  background: url(../img/arrow/arrow13.png) 63px 18px no-repeat;
}
.embracerf #price #campaignlist .discount ol li.double {
  background: url(../img/arrow/arrow13.png) 63px 34px no-repeat;
}
.embracerf #price #campaignlist .discount ol em {
  font-size: 1.1666666667em;
}
.embracerf #price #campaignlist .badge .title {
  padding-right: 58px;
  width: 482px;
}
.embracerf #price #campaignlist .badge p,
.embracerf #price #campaignlist .badge ol {
  padding-left: 0;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .capacity section {
  position: relative;
}
.embracerf #price #campaignlist .capacity p,
.embracerf #price #campaignlist .capacity ol {
  padding: 7px 9px 20px;
}
.embracerf #price #campaignlist .capacity p em,
.embracerf #price #campaignlist .capacity li em {
  display: inline;
  position: static;
  width: auto;
  background: none;
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .title a {
  cursor: pointer;
}
.embracerf #price #campaignlist .folding .wrapper {
  display: none;
  border-top: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .wrapper > div {
  border-top: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .wrapper > div:first-child {
  border-top: 0;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .wrapper .option {
  border: 0;
}
.embracerf #price #campaignlist .folding .lead {
  padding: 15px 30px;
}
.embracerf #price #campaignlist .folding .lead p {
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table thead td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding div.price table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding div.price table tbody th,
.embracerf #price #campaignlist .folding div.price table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding div.price table tbody tr.separate th,
.embracerf #price #campaignlist .folding div.price table tbody tr.separate td {
  border-bottom-style: solid;
}
.embracerf #price #campaignlist .folding div.price table tbody tr:last-child th,
.embracerf #price #campaignlist .folding div.price table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding div.price table tbody td {
  line-height: 24px;
}
.embracerf #price #campaignlist .folding div.price table thead th,
.embracerf #price #campaignlist .folding div.price table thead td {
  height: 33px;
  box-sizing: border-box;
}
.embracerf #price #campaignlist .folding div.price table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
.embracerf #price #campaignlist .folding div.price table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding div.price table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
.embracerf #price #campaignlist .folding div.price table thead .note::before {
  content: "※";
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding div.price table tbody tr:nth-child(even) th,
.embracerf #price #campaignlist .folding div.price table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
.embracerf #price #campaignlist .folding div.price table tbody th,
.embracerf #price #campaignlist .folding div.price table tbody td {
  line-height: 16/12;
}
.embracerf #price #campaignlist .folding div.price table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
.embracerf #price #campaignlist .folding div.price table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
.embracerf #price #campaignlist .folding div.price table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.embracerf #price #campaignlist .folding div.price table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
.embracerf #price #campaignlist .folding div.price table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
.embracerf #price #campaignlist .folding div.price table tfoot td {
  padding: 10px 15px;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
.embracerf #price #campaignlist .folding div.price table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
.embracerf #price #campaignlist .folding div.price table tfoot .inclusion-item .summary {
  color: #b4afac;
}
.embracerf #price #campaignlist .folding div.price table tfoot .inclusion-item .price {
  order: 3;
}
.embracerf #price #campaignlist .folding div.price table thead th {
  line-height: 16px;
}
.embracerf #price #campaignlist .folding div.price table thead th .tax-include,
.embracerf #price #campaignlist .folding div.price table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.embracerf #price #campaignlist .folding div.price table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table thead .icon.question .text {
  display: none;
}
.embracerf #price #campaignlist .folding div.price table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
.embracerf #price #campaignlist .folding div.price table thead .icon.question:hover .text, .embracerf #price #campaignlist .folding div.price table thead .icon.question:hover::after {
  position: absolute;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table tbody th {
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding div.price table tbody td {
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding div.price table tbody td .price + .reduce ol {
  text-align: right;
}
.embracerf #price #campaignlist .folding div.price table tbody td .reduce ol li > span {
  display: inline;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding div.price table thead td {
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding div.price table thead th {
  height: 33px;
  border-top: 0;
  border-right: 0;
}
.embracerf #price #campaignlist .folding div.price table tbody th,
.embracerf #price #campaignlist .folding div.price table tbody td {
  border-left: 0;
}
.embracerf #price #campaignlist .folding div.price table:last-child {
  border-bottom: 0;
}
.embracerf #price #campaignlist .folding div.price table:last-child tbody tr:last-child th,
.embracerf #price #campaignlist .folding div.price table:last-child tbody tr:last-child td {
  border-bottom: 0;
}
.embracerf #price #campaignlist .folding div.price ul {
  margin: 0 0 12px 15px;
}
.embracerf #price #campaignlist .folding div.price li {
  line-height: 1.5;
  font-size: 1.2em;
  color: #7f7875;
}
.embracerf #price #campaignlist .folding div.price .multiple {
  margin: 10px 0;
  width: 652px;
}
.embracerf #price #campaignlist .folding div.price .multiple dl {
  padding: 20px 0 14px 18px;
  border: 1px solid #baafa6;
  background-color: #f2efed;
}
.embracerf #price #campaignlist .folding div.price .multiple dl dt {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .notice {
  margin-top: 13px;
  font-weight: bold;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .notice em {
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info {
  margin-top: 12px;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info ul {
  *zoom: 1;
  margin-left: 0;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info ul::after {
  content: "";
  display: table;
  clear: both;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info li {
  float: left;
  border: 2px solid #29211b;
  background-position: 0 0;
  background-repeat: no-repeat;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info li a {
  transition: opacity 0.1s linear;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info li a:hover {
  opacity: 0;
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info .counseling {
  margin-right: 19px;
  background-image: url(../img/sprite/hover/button/button_counseling_h.png);
}
.embracerf #price #campaignlist .folding div.price .multiple dl .info .mail {
  background-image: url(../img/sprite/hover/button/button_mail_h.png);
}
.embracerf #price #campaignlist .folding div.price small {
  font-size: 1em;
}
.embracerf #price #campaignlist .folding div.price small, .embracerf #price #campaignlist .folding div.price small::before {
  content: "※";
}
.embracerf #price #campaignlist .folding div.price small .before, .embracerf #price #campaignlist .folding div.price small::before {
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .option {
  margin: 0;
  border: 0;
}
.embracerf #price #campaignlist .folding .option .title {
  *zoom: 1;
  margin: 0;
  padding: 0;
  height: auto;
  border: 0;
  background: none;
  font-size: 1em;
  color: #7f7875;
}
.embracerf #price #campaignlist .folding .option .title::after {
  content: "";
  display: table;
  clear: both;
}
.embracerf #price #campaignlist .folding .option .title > * {
  float: left;
}
.embracerf #price #campaignlist .folding .option .title-img {
  margin-right: 10px;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table thead td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .option table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding .option table tbody th,
.embracerf #price #campaignlist .folding .option table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .option table tbody tr.separate th,
.embracerf #price #campaignlist .folding .option table tbody tr.separate td {
  border-bottom-style: solid;
}
.embracerf #price #campaignlist .folding .option table tbody tr:last-child th,
.embracerf #price #campaignlist .folding .option table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .option table tbody td {
  line-height: 24px;
}
.embracerf #price #campaignlist .folding .option table thead th,
.embracerf #price #campaignlist .folding .option table thead td {
  height: 33px;
  box-sizing: border-box;
}
.embracerf #price #campaignlist .folding .option table thead th {
  padding: 4px;
  width: 125px;
  min-height: 24px;
  color: #7f7875;
}
.embracerf #price #campaignlist .folding .option table thead td {
  padding: 0 1em;
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding .option table thead .note {
  margin: 5px 0;
  text-indent: -1em;
  line-height: 1.5;
  font-size: 0.8333333333em;
  color: #918b88;
}
.embracerf #price #campaignlist .folding .option table thead .note::before {
  content: "※";
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .option table tbody tr:nth-child(even) th,
.embracerf #price #campaignlist .folding .option table tbody tr:nth-child(even) td {
  background-color: #f2efed;
}
.embracerf #price #campaignlist .folding .option table tbody th,
.embracerf #price #campaignlist .folding .option table tbody td {
  line-height: 16/12;
}
.embracerf #price #campaignlist .folding .option table tbody th {
  padding: 10px 10px 10px 20px;
  background: url(../img/arrow/arrow.png) 5px center no-repeat;
}
.embracerf #price #campaignlist .folding .option table tbody td {
  padding: 5px;
  height: 14px;
  text-align: center;
  color: #7f7875;
}
.embracerf #price #campaignlist .folding .option table tbody td span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.embracerf #price #campaignlist .folding .option table tbody td.loan {
  line-height: 1.25;
  font-size: 11px;
  box-sizing: border-box;
}
.embracerf #price #campaignlist .folding .option table tfoot {
  border: 1px solid #baafa6;
  border-top: 0;
}
.embracerf #price #campaignlist .folding .option table tfoot td {
  padding: 10px 15px;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table tfoot .inclusion-item {
  line-height: 1.6363636364;
  font-size: 0.9166666667em;
}
.embracerf #price #campaignlist .folding .option table tfoot .inclusion-item .item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table tfoot .inclusion-item .title {
  order: 1;
  font-weight: bold;
}
.embracerf #price #campaignlist .folding .option table tfoot .inclusion-item .summary {
  color: #b4afac;
}
.embracerf #price #campaignlist .folding .option table tfoot .inclusion-item .price {
  order: 3;
}
.embracerf #price #campaignlist .folding .option table thead th {
  line-height: 16px;
}
.embracerf #price #campaignlist .folding .option table thead th .tax-include,
.embracerf #price #campaignlist .folding .option table thead th span:not(.inner-text) {
  display: block;
  font-size: 0.8333333333em;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table thead th a:hover {
  background-image: url(../img/arrow/arrow2_h.png);
}
.embracerf #price #campaignlist .folding .option table thead th.loan {
  box-sizing: border-box;
  padding-right: 0;
  padding-left: 0;
  width: 100px;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table thead .icon.question .text {
  display: none;
}
.embracerf #price #campaignlist .folding .option table thead .icon.question .text a {
  padding: 0;
  background: none;
  text-decoration: underline;
  font-size: 1em;
  color: #6d9dd0;
}
.embracerf #price #campaignlist .folding .option table thead .icon.question:hover .text, .embracerf #price #campaignlist .folding .option table thead .icon.question:hover::after {
  position: absolute;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table tbody th {
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding .option table tbody td {
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding .option table tbody td .price + .reduce ol {
  text-align: right;
}
.embracerf #price #campaignlist .folding .option table tbody td .reduce ol li > span {
  display: inline;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .option table thead th {
  border-right: 0;
  background-color: #f2efed;
}
.embracerf #price #campaignlist .folding .option table thead th:first-child {
  padding-left: 6px;
  width: auto;
  border-left: 0;
  text-align: left;
}
.embracerf #price #campaignlist .folding .option table thead span {
  display: block;
  padding-left: 12px;
  line-height: 34px;
}
.embracerf #price #campaignlist .folding .option table tbody th {
  border-left: 0;
}
.embracerf #price #campaignlist .folding .option table tbody td {
  border-right: 0;
}
.embracerf #price #campaignlist .folding .option table tbody tr:last-child th,
.embracerf #price #campaignlist .folding .option table tbody tr:last-child td {
  border-bottom: 0;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .summary table thead td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .summary table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.embracerf #price #campaignlist .folding .summary table tbody th,
.embracerf #price #campaignlist .folding .summary table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .summary table tbody tr.separate th,
.embracerf #price #campaignlist .folding .summary table tbody tr.separate td {
  border-bottom-style: solid;
}
.embracerf #price #campaignlist .folding .summary table tbody tr:last-child th,
.embracerf #price #campaignlist .folding .summary table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .summary table tbody td {
  line-height: 24px;
}
.embracerf #price #campaignlist .folding .summary table tbody th,
.embracerf #price #campaignlist .folding .summary table tbody td,
.embracerf #price #campaignlist .folding .summary table tbody tr:last-child th,
.embracerf #price #campaignlist .folding .summary table tbody tr:last-child td {
  border: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody th {
  width: 116px;
  border-bottom: 1px solid #fff;
  background-color: #f2efed;
  text-align: center;
  line-height: 1.5;
}
.embracerf #price #campaignlist .folding .summary table tbody td {
  padding: 22px;
  border-bottom: 1px dotted #baafa6;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents ul {
  margin: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents li {
  margin-bottom: 21px;
  font-size: 1em;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents li li {
  margin: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents li:last-child {
  margin-bottom: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dt {
  margin-bottom: 11px;
  padding: 6px 0 6px 16px;
  background: #f2efed;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd {
  margin-right: 16px;
  margin-left: 16px;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd dt,
.embracerf #price #campaignlist .folding .summary table tbody .contents dd dd {
  display: inline;
  padding: 0;
  background: none;
  line-height: 1.6666666667;
  font-weight: normal;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd dt {
  margin-right: 10px;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price {
  padding-bottom: 5px;
  border-bottom: 1px solid #baafa6;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price > ul {
  width: 100%;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price > ul > li {
  width: 100%;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price > ul > li dl {
  display: flex;
  width: 100%;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price > ul > li dl > * {
  margin-bottom: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price > ul > li dl > dd {
  flex: 1;
  margin: 0;
  text-align: right;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price dd > span {
  display: none;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price + .reduce {
  padding-top: 5px;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.price + .reduce > ol {
  text-align: right;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.reduce li {
  display: inline;
  line-height: 1.6666666667;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.reduce li > span {
  font-size: 0.6em;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.reduce li:first-child::after {
  content: "→";
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .summary table tbody .contents dd.reduce em {
  font-size: 1.1666666667em;
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .summary table tbody .operation_place li {
  line-height: 1.5;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .summary table tbody .conditions li em {
  color: #ec7c78;
}
.embracerf #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;
}
.embracerf #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;
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li span {
  font-size: 0.8333333333em;
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li small {
  margin-left: 1em;
  font-size: 1em;
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(1) {
  background-image: url(../img/sprite/num/price-no1.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(2) {
  background-image: url(../img/sprite/num/price-no2.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(3) {
  background-image: url(../img/sprite/num/price-no3.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(4) {
  background-image: url(../img/sprite/num/price-no4.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(5) {
  background-image: url(../img/sprite/num/price-no5.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(6) {
  background-image: url(../img/sprite/num/price-no6.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(7) {
  background-image: url(../img/sprite/num/price-no7.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:nth-child(8) {
  background-image: url(../img/sprite/num/price-no8.png);
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:last-child {
  margin: 0;
  padding-bottom: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody .flow li:last-child::before {
  content: initial;
}
.embracerf #price #campaignlist .folding .summary table tbody .tel dt,
.embracerf #price #campaignlist .folding .summary table tbody .tel dd {
  display: inline;
  line-height: 28px;
}
.embracerf #price #campaignlist .folding .summary table tbody .tel dt {
  display: inline-block;
  width: 5em;
  font-size: 1.1666666667em;
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .summary table tbody .tel dd:nth-child(2) {
  font-size: 1.5em;
  font-weight: bold;
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .summary table tbody .net p,
.embracerf #price #campaignlist .folding .summary table tbody .net li {
  line-height: 1.5;
}
.embracerf #price #campaignlist .folding .summary table tbody .net small {
  font-size: 1em;
}
.embracerf #price #campaignlist .folding .summary table tbody .net em {
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .summary table tbody .net p {
  margin-bottom: 12px;
}
.embracerf #price #campaignlist .folding .summary table tbody .net ul {
  margin-bottom: 15px;
}
.embracerf #price #campaignlist .folding .summary table tbody .net li {
  margin-left: 2em;
  list-style-type: disc;
  color: #ec7c78;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form {
  *zoom: 1;
  margin: 0;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form::after {
  content: "";
  display: table;
  clear: both;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form li {
  float: left;
  margin: 0 12px 0 0;
  list-style-type: none;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button a {
  width: 206px;
  height: 55px;
  box-sizing: border-box;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text::before, .embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button a .inner-text::after {
  right: 4px;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button.net a {
  display: flex;
  align-items: center;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button.net a::after {
  content: none;
}
.embracerf #price #campaignlist .folding .summary table tbody .net .form .c-button.net .inner-text {
  line-height: 1.4;
}
.embracerf #price #campaignlist .exo .summary table tbody th {
  border-bottom: 1px dotted #baafa6;
}
.embracerf #price #campaignlist .new .title a::after {
  content: "";
  display: block;
  height: 25px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #a4948a;
}
.embracerf #price #campaignlist .new.monitor .title a::after {
  background-image: url(../img/campaignlist_monitor_title_bg.png);
}
.embracerf #price #campaignlist .new.monitor.is-open .title a::after {
  background-image: url(../img/campaignlist_monitor_title_bg_a.png);
}
.embracerf #price #campaignlist .new.campaign .title a::after {
  background-image: url(../img/campaignlist_campaign_title_bg.png);
}
.embracerf #price #campaignlist .new.campaign.is-open .title a::after {
  background-image: url(../img/campaignlist_campaign_title_bg_a.png);
}
.embracerf #price body.botox #campaignlist .no1 .price table, .embracerf #price body.bnls #campaignlist .no1 .price table {
  margin-bottom: 0;
}
.embracerf #price body.ultraaccent #campaignlist .no2 .price table {
  margin-bottom: 0;
}
.embracerf #price body.ultraaccent #campaignlist .no2 .price ul {
  margin-top: 15px;
}
.embracerf #price #pricelist table,
.embracerf #price #campaignlist .folding div.price table,
.embracerf #price #campaignlist .folding .option table,
.embracerf #price #campaignlist .folding .summary table {
  width: 100%;
}
.embracerf #price .m-subcontents {
  margin-right: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
}
.embracerf #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;
}
.embracerf #price #feature {
  margin-right: 10px;
  margin-left: 10px;
}
.embracerf #price .m-price__schema {
  margin-top: 25px;
}
.embracerf #price #campaign {
  margin-top: 20px;
  font-size: 8px;
}
.embracerf #price #campaign #campaignlist .folding .summary table tbody th {
  padding: 0;
  background-image: none;
}
.embracerf #price #campaign #campaignlist .folding .summary table tbody td {
  background-color: #fff;
  text-align: left;
}
.embracerf #price #campaign #campaignlist .folding .summary table tbody td small::before {
  content: none;
}
.embracerf #price #campaign #campaignlist .folding .summary table tbody td .net p {
  font-size: 1.2em;
}
.embracerf #price #campaign #campaignlist .folding .summary table tbody .conditions small {
  font-size: 8px;
}
.embracerf #price #campaign #campaignlist .folding .summary table tbody .conditions td,
.embracerf #price #campaign #campaignlist .folding .summary table tbody .flow td,
.embracerf #price #campaign #campaignlist .folding .summary table tbody .tel td {
  font-size: 10px;
}
.embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents > td > ul > li:last-child .case-item:nth-last-child(2), .embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents > td > ul > li:last-child .case-item:last-child {
  margin-bottom: 8px;
}
.embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents .case {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 16px 0;
}
.embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item {
  margin-bottom: 19px;
  width: 240px;
}
.embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item figure {
  margin: 0;
}
.embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item img {
  width: 100%;
  height: auto;
}
.embracerf #price #campaign #campaignlist .folding .wrapper .details .summary .contents .case-item figcaption {
  margin-top: 8px;
  font-size: 0.8333333333em;
}
.embracerf #flow > ol {
  margin: 0 10px;
}
.embracerf #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;
}
.embracerf #flow > ol > li:nth-child(1) {
  background-image: url(../img/operation_flow_bg1.jpg?v=2);
}
.embracerf #flow > ol > li:nth-child(2) {
  background-image: url(../img/operation_flow_bg2.jpg?v=2);
}
.embracerf #flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg3.jpg?v=2);
}
.embracerf #flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg4.jpg?v=2);
}
.embracerf #flow > ol > li:nth-child(5) {
  background-image: url(../img/operation_flow_bg5.jpg?v=2);
}
.embracerf #flow > ol > li:nth-child(6) {
  background-image: url(../img/operation_flow_bg6.jpg?v=2);
}
.embracerf #flow > ol > li:nth-child(7) {
  background-image: url(../img/operation_flow_bg7.jpg?v=2);
}
.embracerf #flow > ol > li:first-child .title {
  letter-spacing: 0.5em;
}
.embracerf #flow > ol > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.embracerf #flow > ol > li li {
  margin: 0;
  padding: 0;
  min-height: 1px;
  border: 0;
  color: #7f7875;
}
.embracerf #flow > ol > li section * {
  margin-left: 242px;
}
.embracerf #flow > ol > li section * * {
  margin: 0;
}
.embracerf #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;
}
.embracerf #flow > ol > li:nth-child(1) .title {
  background-image: url(../img/sprite/num/flow-no1.png);
}
.embracerf #flow > ol > li:nth-child(2) .title {
  background-image: url(../img/sprite/num/flow-no2.png);
}
.embracerf #flow > ol > li:nth-child(3) .title {
  background-image: url(../img/sprite/num/flow-no3.png);
}
.embracerf #flow > ol > li:nth-child(4) .title {
  background-image: url(../img/sprite/num/flow-no4.png);
}
.embracerf #flow > ol > li:nth-child(5) .title {
  background-image: url(../img/sprite/num/flow-no5.png);
}
.embracerf #flow > ol > li:nth-child(6) .title {
  background-image: url(../img/sprite/num/flow-no6.png);
}
.embracerf #flow > ol > li:nth-child(7) .title {
  background-image: url(../img/sprite/num/flow-no7.png);
}
.embracerf #flow > ol > li:nth-child(8) .title {
  background-image: url(../img/sprite/num/flow-no8.png);
}
.embracerf #flow p {
  margin-bottom: 15px;
  line-height: 1.8333333333;
  font-size: 1.2em;
  color: #7f7875;
}
.embracerf #flow ul {
  margin-top: 22px;
  margin-bottom: 22px;
}
.embracerf #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;
}
.embracerf #flow .info, .embracerf #flow li:nth-child(1) ul {
  margin-bottom: 0;
  border: 1px solid #baafa6;
  border-bottom: 0;
}
.embracerf #flow .info li, .embracerf #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;
}
.embracerf #flow .info li:nth-child(1), .embracerf #flow li:nth-child(1) ul li:nth-child(1) {
  background-image: url(../img/sprite/info/flow-net.png);
}
.embracerf #flow .info li:nth-child(2), .embracerf #flow li:nth-child(1) ul li:nth-child(2) {
  background-image: url(../img/sprite/info/flow-tel.png);
}
.embracerf #flow .info dl, .embracerf #flow li:nth-child(1) ul dl {
  margin-left: 151px;
  padding: 0 0 0 41px;
  border-left: 1px dotted #baafa6;
  background: #f2efed;
}
.embracerf #flow .info .net dl, .embracerf #flow li:nth-child(1) ul .net dl {
  padding-top: 19px;
  padding-bottom: 20px;
}
.embracerf #flow .info .net dt, .embracerf #flow li:nth-child(1) ul .net dt {
  margin-bottom: 10px;
  font-size: 1.2em;
}
.embracerf #flow .info .net dd, .embracerf #flow li:nth-child(1) ul .net dd {
  display: block;
}
.embracerf #flow .info .net dd .c-button a, .embracerf #flow li:nth-child(1) ul .net dd .c-button a {
  width: 206px;
  box-sizing: border-box;
}
.embracerf #flow .info .net dd .c-button a .inner-text, .embracerf #flow li:nth-child(1) ul .net dd .c-button a .inner-text {
  padding: 0 26px;
  background-position: right 4px center;
  font-size: 13px;
}
.embracerf #flow .info .net dd .c-button a .inner-text::before, .embracerf #flow .info .net dd .c-button a .inner-text::after, .embracerf #flow li:nth-child(1) ul .net dd .c-button a .inner-text::before, .embracerf #flow li:nth-child(1) ul .net dd .c-button a .inner-text::after {
  right: 4px;
}
.embracerf #flow .info .tel dl, .embracerf #flow li:nth-child(1) ul .tel dl {
  padding-top: 21px;
  padding-bottom: 20px;
}
.embracerf #flow .info .tel dl dt, .embracerf #flow li:nth-child(1) ul .tel dl dt {
  margin-bottom: 5px;
}
.embracerf #flow .info .tel dl dt a, .embracerf #flow li:nth-child(1) ul .tel dl dt a {
  color: #7f7875;
}
.embracerf #flow .info .tel dl dt img, .embracerf #flow li:nth-child(1) ul .tel dl dt img {
  margin-bottom: 8px;
}
.embracerf #flow .info .tel dl dl, .embracerf #flow li:nth-child(1) ul .tel dl dl {
  margin: 0;
  padding: 0;
  border: 0;
}
.embracerf #flow .info .tel dl dl dt,
.embracerf #flow .info .tel dl dl dd, .embracerf #flow li:nth-child(1) ul .tel dl dl dt,
.embracerf #flow li:nth-child(1) ul .tel dl dl dd {
  display: inline;
}
.embracerf #flow .info .tel dl dl dt,
.embracerf #flow .info .tel dl dl em, .embracerf #flow li:nth-child(1) ul .tel dl dl dt,
.embracerf #flow li:nth-child(1) ul .tel dl dl em {
  font-weight: bold;
}
.embracerf #flow #oneday {
  margin-bottom: 0;
  border: 1px solid #baafa6;
}
.embracerf #flow #previousday {
  border: 1px solid #baafa6;
}
.embracerf #flow #previousday .title,
.embracerf #flow #previousday p {
  display: table-cell;
  vertical-align: middle;
}
.embracerf #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;
}
.embracerf #flow #previousday p {
  padding: 15px 20px;
  background: #f2efed;
  line-height: 1.6666666667;
}
.embracerf #flow ol li:last-child .info {
  margin-top: 22px;
  padding-bottom: 17px;
  border: none;
}
.embracerf #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;
}
.embracerf #flow #order {
  margin: 0 10px 30px;
  padding-bottom: 26px;
  border-bottom: 1px dotted #baafa6;
}
.embracerf #flow > ol > li:nth-child(3) {
  background-image: url(../img/operation_flow_bg5.jpg);
}
.embracerf #flow > ol > li:nth-child(4) {
  background-image: url(../img/operation_flow_bg6.jpg);
}
.embracerf #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;
}
.embracerf #info table thead td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #info table thead th {
  border: 1px solid #baafa6;
  text-align: center;
  line-height: 1.3333333333;
}
.embracerf #info table tbody th,
.embracerf #info table tbody td {
  border-right: 1px solid #baafa6;
  border-bottom: 1px dotted #baafa6;
  border-left: 1px solid #baafa6;
}
.embracerf #info table tbody tr.separate th,
.embracerf #info table tbody tr.separate td {
  border-bottom-style: solid;
}
.embracerf #info table tbody tr:last-child th,
.embracerf #info table tbody tr:last-child td {
  border-bottom: 1px solid #baafa6;
}
.embracerf #info table tbody td {
  line-height: 24px;
}
.embracerf #info table tbody th {
  width: 76px;
  border-right-style: dotted;
  background: #f2efed;
  text-align: center;
  line-height: 1.4;
}
.embracerf #info table tbody td {
  padding: 2px 20px;
  border-left: 0;
  line-height: 1.5;
}
.embracerf #info table tbody td small {
  font-size: 1em;
}
/*# sourceMappingURL=operation.css.map */
