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

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


New Creation:	2013/03/04 18:08:40.
Last Change:	2018/09/20.


Created By		Yoshiaki Murakami
Update By       Kosuke Inoue

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

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

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
0.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
dl,
form,
fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

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

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

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: 0;
}

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

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

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

a {
  text-decoration: none;
}

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

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

th,
td {
  padding: 0;
}

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

textarea {
  vertical-align: top;
}

iframe {
  border: 0;
}

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

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

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

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

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

a {
  color: #6d9dcf;
}

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

/*----------------------------------------------------------------------
3.	container
----------------------------------------------------------------------*/
.l-container {
  overflow: hidden;
  min-width: 920px;
  background: #eae9e7;
}

/*----------------------------------------------------------------------
4.	共通部分
----------------------------------------------------------------------*/
.sp {
  display: none !important;
}

.wow {
  visibility: hidden;
}

.is-gsap .js-fade {
  transition: all 1.5s;
  opacity: 0;
}
.is-gsap .js-fade--top {
  transform: translateY(30px);
}
.is-gsap .is-show {
  opacity: 1;
  transform: translateY(0);
}

/*----------------------------------------------------------------------
5.	header
----------------------------------------------------------------------*/
.h-navi {
  height: 70px;
  background: #fff;
}
.h-navi-list {
  *zoom: 1;
  margin: 0 auto;
  width: 920px;
}
.h-navi-list:after {
  content: "";
  display: table;
  clear: both;
}
.h-navi-item {
  float: left;
}
.h-navi-item.is-active a,
.h-navi-item.is-active a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.h-navi a {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.h-navi a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  opacity: 0.5;
}
.h-navi.headroom--not-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}
.h-navi .commitment.is-active {
  background: url(../img/navi_commitment_a.png) left top no-repeat;
}
.h-navi .factor.is-active {
  background: url(../img/navi_factor_a.png) left top no-repeat;
}
.h-navi .price.is-active {
  background: url(../img/navi_price_a.png) left top no-repeat;
}
.h-navi .qa.is-active {
  background: url(../img/navi_qa_a.png) left top no-repeat;
}
.h-navi .clinic.is-active {
  background: url(../img/navi_clinic_a.png) left top no-repeat;
}
.h-navi .application.is-active {
  background: url(../img/navi_application_a.png) left top no-repeat;
}

.l-header::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  margin-top: -10.78125%;
  padding-top: 21.5625%;
  width: 100%;
  background: url(../img/header_bg.png) center repeat-x;
  background-size: contain;
}

.h-inner {
  position: relative;
  width: 45.8333333333%;
  height: auto;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 2;
  margin: 0 0 0 -22.9166666667%;
  background: rgba(255, 255, 255, 0.5);
}
.h-inner::before {
  content: '';
  display: block;
  padding-top: 53.8636363636%;
}
.h-inner > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.h-contents-wrapper {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 9.5454545455% 1.1363636364% 9.0909090909%;
}

.h-logo {
  margin: -10.0680272109% 0 2.0408163265% -16px;
  text-align: center;
}

.h-price {
  margin-bottom: 2.0408163265%;
  text-align: center;
}

.h-feature {
  *zoom: 1;
  margin: 0 auto 4.0816326531%;
  width: 85%;
}
.h-feature:after {
  content: "";
  display: table;
  clear: both;
}
.h-feature-item {
  float: left;
  margin-right: -4.0816326531%;
  width: 35.3741496599%;
}
.h-feature img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.h-text {
  text-align: center;
}

.h-duration {
  display: table;
  width: 100%;
  border-top: 1px solid #696664;
  border-bottom: 1px solid #696664;
  background: rgba(215, 210, 205, 0.5);
  line-height: 1.5;
  font-size: 1.8vw;
  color: #575453;
}
.h-duration > * {
  display: table-cell;
  vertical-align: middle;
}
.h-duration .title {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 2.5%;
  width: 23%;
  background: url(../img/duration_bg.png) left top no-repeat;
  background-size: cover;
}
.h-duration .contents {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  padding: .85% 0 .85% 2%;
  width: 67%;
}
.h-duration .date,
.h-duration .note {
  display: table-cell;
  vertical-align: middle;
}
.h-duration .note {
  padding-left: 10px;
}
.h-duration .note small {
  display: block;
  line-height: 1.5;
  font-size: .6vw;
}

.m-page-link {
  width: 100%;
}
.m-page-link-list {
  *zoom: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
}
.m-page-link-list:after {
  content: "";
  display: table;
  clear: both;
}
.m-page-link-item {
  position: relative;
  overflow: hidden;
  float: left;
  width: 50%;
  height: 50%;
}
.m-page-link-item a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #b84662;
}
.m-page-link-item a::before, .m-page-link-item a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.m-page-link-item a::before {
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.m-page-link-item a:hover::before {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=45);
  opacity: 0.45;
}
.m-page-link-item a:hover .button img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.m-page-link-item a::after {
  z-index: 2;
}
.m-page-link-item .button {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
}
.m-page-link-item .button img {
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.m-page-link-item:nth-child(odd) .button {
  left: 0;
}
.m-page-link-item:nth-child(even) .button {
  right: 0;
}
.m-page-link-item:nth-child(1) .button, .m-page-link-item:nth-child(2) .button {
  top: 0;
}
.m-page-link-item:nth-child(3) .button, .m-page-link-item:nth-child(4) .button {
  bottom: 0;
}
.m-page-link-item:nth-child(3) img, .m-page-link-item:nth-child(4) img {
  vertical-align: bottom;
}
.m-page-link-item.breast_enlargement a::before {
  background-image: url(../img/breast_enlargement_bg.jpg);
}
.m-page-link-item.breast_enlargement a:hover .button {
  background-image: url(../img/button_breast_enlargement_h.png);
}
.m-page-link-item.breast_enlargement .button {
  position: relative;
  width: 58.8541666667%;
  height: auto;
  position: absolute;
}
.m-page-link-item.breast_enlargement .button::before {
  content: '';
  display: block;
  padding-top: 41.2389380531%;
}
.m-page-link-item.breast_enlargement .button > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-page-link-item.bagent a::before {
  background-image: url(../img/bagent_bg.jpg);
}
.m-page-link-item.bagent a:hover .button {
  background-image: url(../img/button_bagent_h.png);
}
.m-page-link-item.bagent .button {
  position: relative;
  width: 68.9583333333%;
  height: auto;
  position: absolute;
}
.m-page-link-item.bagent .button::before {
  content: '';
  display: block;
  padding-top: 35.0453172205%;
}
.m-page-link-item.bagent .button > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-page-link-item.after_breastfeeding a::before {
  background-image: url(../img/after_breastfeeding_bg.jpg);
}
.m-page-link-item.after_breastfeeding a:hover .button {
  background-image: url(../img/button_after_breastfeeding_h.png);
}
.m-page-link-item.after_breastfeeding .button {
  position: relative;
  width: 67.7083333333%;
  height: auto;
  position: absolute;
}
.m-page-link-item.after_breastfeeding .button::before {
  content: '';
  display: block;
  padding-top: 29.3846153846%;
}
.m-page-link-item.after_breastfeeding .button > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.m-page-link-item.waifish a::before {
  background-image: url(../img/waifish_bg.jpg);
}
.m-page-link-item.waifish a:hover .button {
  background-image: url(../img/button_waifish_h.png);
}
.m-page-link-item.waifish .button {
  position: relative;
  width: 48.4375%;
  height: auto;
  position: absolute;
}
.m-page-link-item.waifish .button::before {
  content: '';
  display: block;
  padding-top: 41.0752688172%;
}
.m-page-link-item.waifish .button > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------------------------
6.	content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
7.	main
----------------------------------------------------------------------*/
.m-contents-title {
  background: url(../img/contents_title_bg.gif) left top repeat-x;
  text-align: center;
}

.m-anchor {
  text-align: center;
}

.m-appeal-wrapper {
  background: url(../img/appeal_bg.png) center top repeat-x, url(../img/appeal_bg_footer.png) center bottom repeat-x, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZDJjZCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjZjNmMWYwIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZDdkMmNkIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background: url(../img/appeal_bg.png) center top repeat-x, url(../img/appeal_bg_footer.png) center bottom repeat-x, -moz-linear-gradient(#d7d2cd, #f3f1f0 50%, #d7d2cd 100%);
  background: url(../img/appeal_bg.png) center top repeat-x, url(../img/appeal_bg_footer.png) center bottom repeat-x, -webkit-linear-gradient(#d7d2cd, #f3f1f0 50%, #d7d2cd 100%);
  background: url(../img/appeal_bg.png) center top repeat-x, url(../img/appeal_bg_footer.png) center bottom repeat-x, linear-gradient(#d7d2cd, #f3f1f0 50%, #d7d2cd 100%);
  padding: 80px 0;
  background-size: 100% auto, auto;
}
.m-appeal-inner {
  margin: 0 auto;
  width: 920px;
}
.m-appeal__recommend {
  margin-bottom: 26px;
}

.m-commitment {
  position: relative;
}
.m-commitment > * {
  position: relative;
  z-index: 2;
}
.m-commitment-wrapper {
  background: url(../img/commitment_bg_footer.png) center bottom repeat-x, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2Q3ZDJjZCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2QyY2QiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: url(../img/commitment_bg_footer.png) center bottom repeat-x, -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  background: url(../img/commitment_bg_footer.png) center bottom repeat-x, -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  background: url(../img/commitment_bg_footer.png) center bottom repeat-x, linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  padding: 65px 0 40px;
}
.m-commitment-inner {
  position: relative;
  margin: 0 auto;
  padding-top: 913px;
  width: 920px;
}
.m-commitment-pic {
  position: absolute;
}
.m-commitment .pic1 {
  top: 0;
  left: -6px;
}
.m-commitment .pic2 {
  top: 110px;
  left: 318px;
}
.m-commitment .pic3 {
  top: 209px;
  right: -43px;
}
.m-commitment.is-fixed::before {
  position: fixed;
  top: 73px;
}

.m-factor > * {
  position: relative;
  z-index: 2;
}
.m-factor-title {
  margin-bottom: 80px;
}
.m-factor-wrapper {
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2Q3ZDJjZCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2QyY2QiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  padding-bottom: 60px;
}
.m-factor-inner {
  position: relative;
  margin: 0 auto 75px;
  width: 920px;
  height: 980px;
}
.m-factor-pic {
  position: absolute;
}
.m-factor .pic1 {
  top: 0;
  left: 25px;
}
.m-factor .pic2 {
  top: 190px;
  right: 27px;
}
.m-factor .pic3 {
  top: 405px;
  left: 48px;
}
.m-factor .pic4 {
  top: 675px;
  right: 44px;
}
.m-factor .pic5 {
  bottom: 0;
  left: 48px;
}
.m-factor.is-fixed::before {
  position: fixed;
  top: 73px;
}

.m-qa > * {
  position: relative;
  z-index: 2;
}
.m-qa-title {
  margin-bottom: 70px;
}
.m-qa-inner {
  *zoom: 1;
  display: flex;
  padding-bottom: 100px;
  margin: 0 auto;
  width: 920px;
}
.m-qa-inner:after {
  content: "";
  display: table;
  clear: both;
}
.m-qa-list {
  flex-basis: 50%;
}
.m-qa-list:first-child {
  margin-right: 40px;
}
.m-qa-item {
  margin-bottom: 60px;
  height: 131px;
}
.m-qa-item:last-child {
  margin-bottom: 0;
}

.m-price > * {
  position: relative;
  z-index: 2;
}
.m-price-title {
  margin-bottom: 130px;
}
.m-price-wrapper {
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijc1JSIgc3RvcC1jb2xvcj0iI2Q3ZDJjZCIgc3RvcC1vcGFjaXR5PSIwLjUiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2QyY2QiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  background: url(../img/factor_bg_footer.png) center bottom repeat-x, linear-gradient(rgba(255, 255, 255, 0), rgba(215, 210, 205, 0.5) 75%, #d7d2cd);
  padding-bottom: 100px;
}
.m-price-inner {
  *zoom: 1;
  margin: 0 auto;
  width: 920px;
}
.m-price-inner:after {
  content: "";
  display: table;
  clear: both;
}
.m-price-table-text {
  text-align: right;
  line-height: 1.8;
  font-size: 10px;
  color: #7e7774;
}
.m-price table {
  margin-bottom: 50px;
  width: 100%;
}
.m-price table tfoot td {
  border-right: 1px solid #c5bab2;
  border-bottom: 1px solid #c5bab2;
  border-left: 1px solid #c5bab2;
  background: #fff;
}
.m-price table tfoot .option {
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #c5bab2;
}
.m-price table tfoot .option td {
  border: 0;
}
.m-price table tfoot .option .name {
  border: 0;
  border-right: 1px solid #c5bab2;
}
.m-price table tfoot .option .price {
  text-align: center;
  font-size: 17px;
  color: #7e7774;
}
.m-price table tfoot .no-details {
  line-height: 20px;
}
.m-price table tfoot .no-details .small-text {
  display: inline-block;
}
.m-price table tfoot .cap {
  text-align: right;
  font-size: 12px;
  color: #a39d9a;
}
.m-price table tfoot .table-wrapper {
  display: flex;
  flex-direction: column;
}
.m-price table tfoot .table-wrapper > * {
  padding: 10px;
}
.m-price table thead th {
  border-right: 1px solid #c5bab2;
  background: #6c6561;
  text-align: center;
  line-height: 56px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}
.m-price table thead .empty {
  border-right: 1px solid #fff;
}
.m-price table tbody td {
  border-right: 1px solid #c5bab2;
  border-bottom: 1px solid #c5bab2;
  background: #fff;
  color: #7e7774;
  box-sizing: border-box;
}
.m-price table tbody td sup {
  line-height: 0;
}
.m-price table tbody td .small-text {
  font-size: 13px;
}
.m-price table tbody td.red {
  color: #b94160;
}
.m-price table tbody td.name {
  padding: 10px 17px;
  width: 278px;
  border-left: 1px solid #c5bab2;
  font-size: 15px;
}
.m-price table tbody td.name .small-text {
  display: block;
  line-height: 1.2;
  font-size: 12px;
  color: #a39d9a;
}
.m-price table tbody td.name.exo {
  padding: 18px 10px;
  letter-spacing: -0.1em;
}
.m-price table tbody td.price {
  padding: 10px;
  width: 151px;
  text-align: center;
  font-size: 17px;
}
.m-price table tbody td.price span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}
.m-price table tbody td.details {
  padding: 10px 30px;
}
.m-price table tbody td.no-details {
  line-height: 20px;
}
.m-price table tbody td.no-details .small-text {
  display: inline-block;
}
.m-price table tbody td.cap {
  text-align: right;
  font-size: 12px;
  color: #a39d9a;
}
.m-price table tbody .details-title {
  position: relative;
  margin-bottom: 10px;
  line-height: 1.4285714286;
  font-size: 14px;
}
.m-price table tbody .details-title::before {
  content: '●';
}
.m-price table tbody .details-text {
  margin-top: 10px;
  line-height: 1.6666666667;
  font-size: 12px;
}
.m-price table tbody .details-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.m-price table tbody .details .inner {
  width: 48%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.6666666667;
  font-size: 12px;
}
.m-price table tbody .details .title {
  position: relative;
  text-align: left;
  box-sizing: border-box;
  white-space: nowrap;
}
.m-price table tbody .details .title::before {
  content: '●';
  font-size: 8px;
}
.m-price table tbody .details .text {
  text-align: center;
  white-space: nowrap;
  margin: 0 0 0 auto;
}
.m-price-tab-list {
  display: flex;
  flex-wrap: nowrap;
}
.m-price-tab-item {
  flex-basis: 222px;
  margin-right: 9px;
  border: 1px solid #c5bab2;
}
.m-price-tab-item.transportation.is-active {
  background-image: url(../img/price_tab_item_transportation_a.png);
}
.m-price-tab-item.anesthesia.is-active {
  background-image: url(../img/price_tab_item_anesthesia_a.png);
}
.m-price-tab-item.care.is-active {
  background-image: url(../img/price_tab_item_care_a.png);
}
.m-price-tab-item.loan.is-active {
  background-image: url(../img/price_tab_item_loan_a.png);
}
.m-price-tab-item.is-active {
  border-bottom: 0;
}
.m-price-tab-item.is-active img {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
}
.m-price-tab-item:last-child {
  margin-right: 0;
}
.m-price-contents {
  position: relative;
}
.m-price-item {
  *zoom: 1;
  -moz-transition: opacity 0.25s linear;
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  padding: 50px 35px 35px;
  border-right: 1px solid #c5bab2;
  border-bottom: 1px solid #c5bab2;
  border-left: 1px solid #c5bab2;
  background: #fff;
}
.m-price-item:after {
  content: "";
  display: table;
  clear: both;
}
.m-price-item-text {
  line-height: 1.7142857143;
  font-size: 14px;
  color: #7e7774;
}
.m-price-item.is-active {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  position: static;
}
.m-price-item.transportation.is-active {
  background-image: url(../img/price_transportation_bg.png);
  background-repeat: no-repeat;
}
.m-price-item.anesthesia.is-active {
  background-image: url(../img/price_anesthesia_bg.png);
  background-repeat: no-repeat;
}
.m-price-item.care.is-active {
  background-image: url(../img/price_care_bg.png);
  background-repeat: no-repeat;
}
.m-price-item.loan.is-active {
  background-image: url(../img/price_loan_bg.png);
  background-repeat: no-repeat;
}
.m-price-item.transportation, .m-price-item.care {
  background-position: left top;
}
.m-price-item.transportation .m-price-item-text .small, .m-price-item.care .m-price-item-text .small {
  display: block;
  font-size: 12px;
}
.m-price-item.anesthesia, .m-price-item.loan {
  background-position: right bottom;
}
.m-price-item.care {
  padding: 50px 35px 25px;
}
.m-price-item.care .m-price-item-text {
  float: left;
  margin-right: 10px;
  width: 522px;
}
.m-price-item.care .m-price-item-title,
.m-price-item.care .m-price-item-text {
  width: 640px;
}
.m-price-item.care .m-price-item-title {
  float: left;
  margin-top: 5px;
  margin-right: 10px;
  line-height: 1.7142857143;
  font-size: 14px;
  color: #7e7774;
  font-weight: bold;
}
.m-price-item.care .m-price-item-title::before {
  content: '■';
  color: #beac81;
}
.m-price-item.care .m-price-item-title + .m-price-item-text {
  line-height: 1.5714285714;
}
.m-price-item.loan {
  padding: 50px 0 15px;
}
.m-price-item.loan .m-price-item-text {
  margin-bottom: 20px;
  padding: 0 35px;
}
.m-price-item.loan .loan-item {
  display: list-item;
  padding: 5px 50px 5px 55px;
  border-top: 1px dotted #c7bcb4;
  line-height: 33px;
  font-size: 14px;
  font-weight: bold;
  color: #6c6561;
}
.m-price-item.loan .loan-item img {
  margin-top: 5px;
}
.m-price-item.loan .loan-item .item-inner {
  display: table;
}
.m-price-item.loan .loan-item .item-title,
.m-price-item.loan .loan-item .item-text {
  display: table-cell;
}
.m-price-item.loan .loan-item .item-title {
  padding-top: 11px;
  width: 130px;
}
.m-price-item.loan .loan-item .item-text {
  padding: 10px 0 9px;
  font-weight: normal;
}
.m-price-item.loan .loan-item .item-text dl {
  line-height: 1.2857142857;
  font-size: 14px;
}
.m-price-item.loan .loan-item .item-text li {
  margin-left: 20px;
  padding: 0;
  line-height: 1.2857142857;
  font-size: 14px;
  list-style-type: decimal;
}
.m-price-item.loan .loan-item .item-text li .small-text {
  display: inline-block;
}
.m-price-item.loan .loan-item .item-text li p {
  line-height: 1.5;
  font-size: 12px;
}
.m-price-item.loan .loan-item .item-text li p::before {
  content: '◇';
}
.m-price-item.loan .loan-item .small-text {
  display: block;
  line-height: 1.75;
  font-size: 12px;
}
.m-price-item.loan .loan-item:nth-child(1) {
  background-image: url(../img/price_loan_no1.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:nth-child(2) {
  background-image: url(../img/price_loan_no2.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:nth-child(3) {
  background-image: url(../img/price_loan_no3.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:nth-child(4) {
  background-image: url(../img/price_loan_no4.png);
  background-position: left 30px top 12px;
  background-repeat: no-repeat;
}
.m-price-item.loan .loan-item:first-child {
  letter-spacing: .5em;
}
.m-price-item.loan .loan-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

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

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

.m-cv {
  position: relative;
  min-width: 920px;
  padding-bottom: 75px;
  background: linear-gradient(#d7d2cd, #ebe9e6 15%, #ffffff 25%);
}
.m-cv-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 10px 0 0;
  width: 920px;
}
.m-cv-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  background: linear-gradient(#bbb0a8, #ddd8d4 60%, #ffffff 77%);
}
.m-cv-wrapper > * {
  position: relative;
  z-index: 1;
}
.m-cv-title, .m-cv-inner {
  width: 490px;
}
.m-cv-title {
  margin-bottom: 10px;
}
.m-cv-title::before, .m-cv-title::after {
  content: '';
  display: block;
  position: absolute;
  top: 20px;
}
.m-cv-title::before {
  -moz-box-shadow: 0 0 10px 5px rgba(122, 51, 71, 0.5);
  -webkit-box-shadow: 0 0 10px 5px rgba(122, 51, 71, 0.5);
  box-shadow: 0 0 10px 5px rgba(122, 51, 71, 0.5);
  width: 488px;
  height: 390px;
  background: rgba(122, 51, 71, 0.5);
}
.m-cv-title::after {
  width: 709px;
  height: 400px;
  background-position: left top;
  background-repeat: no-repeat;
}
.m-cv-pic {
  margin-bottom: 10px;
  text-align: center;
}
.m-cv-button-list {
  display: flex;
}
.m-cv-button-item a:hover img {
  display: none;
}
.m-cv-button-item img {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}
.m-cv-button-item.counseling {
  margin-right: 5px;
}
.m-cv-button-item.counseling a {
  display: block;
  width: 235px;
  height: 82px;
  background: url(../img/button_counseling_h.png) left top no-repeat;
}
.m-cv-button-item.monitor a {
  display: block;
  width: 233px;
  height: 82px;
  background: url(../img/button_monitor_h.png?v=2) left top no-repeat;
}
.m-cv .cap {
  margin-top: 6px;
  padding-left: 10px;
  line-height: 1.5;
  font-size: 11px;
  color: #7e7774;
  text-indent: -10px;
}
.m-cv .cap.first {
  margin-top: 20px;
}
.m-cv-service {
  position: relative;
  padding: 30px 0 40px;
  background: #fff;
  text-align: center;
}
.m-cv-service__movie {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  padding-right: 458px;
  z-index: 2;
}
.m-cv-service__pic {
  position: relative;
  z-index: 1;
}
.m-cv.cv1 .m-cv-wrapper::before, .m-cv.cv3 .m-cv-wrapper::before {
  right: -80px;
  left: -100%;
}
.m-cv.cv1 .m-cv-title img, .m-cv.cv3 .m-cv-title img {
  margin-left: -14px;
}
.m-cv.cv1 .m-cv-title::before, .m-cv.cv1 .m-cv-title::after, .m-cv.cv3 .m-cv-title::before, .m-cv.cv3 .m-cv-title::after {
  left: 506px;
}
.m-cv.cv2 .m-cv-wrapper, .m-cv.cv4 .m-cv-wrapper {
  *zoom: 1;
}
.m-cv.cv2 .m-cv-wrapper:after, .m-cv.cv4 .m-cv-wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.m-cv.cv2 .m-cv-wrapper::before, .m-cv.cv4 .m-cv-wrapper::before {
  right: -100%;
  left: -80px;
}
.m-cv.cv2 .m-cv-wrapper > *, .m-cv.cv4 .m-cv-wrapper > * {
  float: right;
}
.m-cv.cv2 .m-cv-title::before, .m-cv.cv2 .m-cv-title::after, .m-cv.cv4 .m-cv-title::before, .m-cv.cv4 .m-cv-title::after {
  right: 506px;
}
.m-cv.cv2 .m-cv-pic,
.m-cv.cv2 .m-cv-button-list, .m-cv.cv4 .m-cv-pic,
.m-cv.cv4 .m-cv-button-list {
  margin-left: 14px;
}
.m-cv.cv1 .m-cv-service {
  margin-top: -50px;
  padding: 100px 0 50px;
}
.m-cv.cv3 {
  background: linear-gradient(#eae9e7, #ebe9e6 34%, #ffffff 50%);
}
.m-cv.cv4 {
  background: linear-gradient(#eae9e7, #ebe9e6 34%, #ffffff 50%);
}
.m-cv.cv1 .m-cv-title::after {
  background-image: url(../img/cv_pic1.jpg);
}
.m-cv.cv2 .m-cv-title::after {
  background-image: url(../img/cv_pic2.jpg);
}
.m-cv.cv3 .m-cv-title::after {
  background-image: url(../img/cv_pic3.jpg);
}
.m-cv.cv4 .m-cv-title::after {
  background-image: url(../img/cv_pic4.jpg);
}

.cv-link-list {
  *zoom: 1;
  display: flex;
  height: auto;
  box-shadow: 0 -2px 10px;
}
.cv-link-list:after {
  content: "";
  display: table;
  clear: both;
}
.cv-link-item {
  position: relative;
  overflow: hidden;
  float: left;
  width: 25%;
}
.cv-link-item a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: none;
}
.cv-link-item a img {
  -moz-transition: opacity 0.15s linear;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  width: 100%;
  backface-visibility: hidden;
}
.cv-link-item a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.cv-link-item a:hover img {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
}

.m-safety {
  padding: 115px 0 88px;
  margin: 0 auto;
  background-color: #fff;
  width: 920px;
  background: url(../img/safety_bg2.png) left bottom 70px repeat-x;
}
.m-safety-outer {
  text-align: center;
  position: relative;
}
.m-safety-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 66px 0 30px;
  text-align: center;
  background: url(../img/safety_bg1.png) left top repeat-x;
}
.m-safety-inner > * {
  display: block;
  width: 100%;
}
.m-safety-logo {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  z-index: 1;
}
.m-safety-headline {
  margin-bottom: 12px;
}
.m-safety-troubles {
  margin-bottom: 10px;
}
.m-safety-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 280px;
  overflow: hidden;
}
.m-safety-list-item {
  position: relative;
  width: 208px;
  padding-bottom: 90px;
}
.m-safety-list-item:nth-child(1), .m-safety-list-item:nth-child(2), .m-safety-list-item:nth-child(3) {
  width: 287px;
  margin-bottom: 22px;
}
.m-safety-list-item .title {
  margin-bottom: 6px;
}
.m-safety-list-item .list {
  margin-bottom: 6px;
}
.m-safety-list-item .list-item {
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.5454545455;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.m-safety-list-item .list-item:before {
  content: '●';
  color: #d1d1d1;
  margin-right: .3em;
}
.m-safety-list-item .pic {
  position: absolute;
  bottom: 0;
  left: 0;
}
.m-safety-open {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 25px 0;
  font-size: 1.1em;
  text-align: right;
  background-image: linear-gradient(to top, #ffffff 36%, rgba(255, 255, 255, 0));
  cursor: pointer;
}
.m-safety.is-open .m-safety-list {
  height: inherit;
}
.m-safety.is-open .m-safety-open {
  display: none;
}

/*----------------------------------------------------------------------
8.	footer
----------------------------------------------------------------------*/
.f-copyright {
  -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  background: #ac5974;
  text-align: center;
  color: #fff;
}
.f-copyright-item a, .f-copyright-text {
  line-height: 3.5;
  font-size: 1.1em;
  color: #fff;
}
.f-copyright-item {
  display: inline-block;
}

/*----------------------------------------------------------------------
9.	ページ別個別設定
----------------------------------------------------------------------*/
.p-fixed-banner {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
  width: 684px;
  background: #fff;
  opacity: 1;
  transition: .3s;
  z-index: 1000;
}
.p-fixed-banner.is-hide {
  opacity: 0;
  transition: .3s;
  pointer-events: none;
}
.p-fixed-banner.is-delete {
  display: none !important;
}
.p-fixed-banner.is-bottom {
  bottom: 50px;
}
.p-fixed-banner__inner {
  position: relative;
  display: flex;
}
.p-fixed-banner__title {
  display: none;
  font-size: 11px;
  font-weight: bold;
  line-height: 2.4;
  text-align: center;
  overflow: hidden;
  height: 27px;
  letter-spacing: 0.15em;
  color: #e9e5e3;
  background-color: #7e7875;
}
.p-fixed-banner__pic img {
  width: 100%;
  height: auto;
}
.p-fixed-banner__pic a:after {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}
.p-fixed-banner__pic a:hover * {
  opacity: 1;
}
.p-fixed-banner__section {
  position: relative;
  flex: 1;
  transition: opacity 0.15s linear;
}
.p-fixed-banner__section:hover {
  opacity: .6;
}
.p-fixed-banner__section:nth-child(2) .p-fixed-banner__title {
  color: #7e7875;
  background-color: #e9e5e3;
}
.p-fixed-banner__close-button {
  position: absolute;
  top: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 1;
}
.p-fixed-banner__close-button img {
  width: 100%;
  height: auto;
}

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