@charset "UTF-8";

.b { font-weight: bold; }
.red { color: red; }

.ranking_table {
    width: 100%;
    margin-bottom: 1.2em;
}

.ranking_table .ranking_table_inner {
    margin: 0 !important;
    padding: 3% !important;
    border: 1px solid #e3e0e0;
    background: #fff;
}


figure {
    padding-top: 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f3f3f3;
    text-align: center;
}

.ranking_table_inner img {
    width: 100%;
    height: auto;
}


/* 
 * コンバージョンボタン
 */
.btn-cv {
  padding: .5em 0;
  overflow: hidden;
  position: relative;
}
.btn-cv a {
  border: solid #fff 3px;
  border-radius: 12px;
  box-shadow: 1px 1px 10px 0 #a1a1a1;
  color: #fff;
  display: block;
  font-size: 2em;
  font-weight: bold;
  line-height: 1.3;
  /* margin: 2em auto; */
  padding: 1em 2em .8em;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  vertical-align: middle;
 /* width: 59%; */
}
.btn-cv.is-fz20 a {
  font-size: 20px;
}
.btn-cv a img {
  vertical-align: middle;
}
.btn-cv a:after {
  content: ' ' !important;
}
 
/* ボタン内のアイコン */
.btn-cv a:before {
  content: "\f138";
  font-family: "fontawesome";
  font-weight: normal;
  font-size: 1.1em;
  margin-top: -.6em;
  position: absolute;
  right: 25px;
  top: 50%;
}
.btn-cv a:hover {
  box-shadow: 1px 1px 2px 0 #a1a1a1;
  filter: alpha(opacity=70);
  opacity: .7;
}
 
/* 2つ連続で並べる場合の余白 */
.btn-cv + .btn-cv a {
  margin-top: 0;
}
 
/* 緑ボタン */
.btn-cv a {
  background: #00a23f;
  background: -webkit-linear-gradient(#00a23f, #39900a);
  background: linear-gradient(#00a23f, #39900a);
  text-shadow: 0 0 10px rgba(255,255,255,.8), 1px 1px 1px rgba(0,0,0,1);
}
 
/* 赤ボタン */
.btn-cv.is-red a {
  background: #fb4e3e;
  background: -webkit-linear-gradient(#00a23f, #39900a);
  background: linear-gradient(#fb4e3e, #d64b26);
}
 
/* 青ボタン */
.btn-cv.is-blue a {
  background: #09c;
  background: -webkit-linear-gradient(#09c, #069);
  background: linear-gradient(#09c, #069);
}
 
/* 黒ボタン */
.btn-cv.is-black a {
  background: #666;
  background: -webkit-linear-gradient(#8a8a8a, #666);
  background: linear-gradient(#8a8a8a, #666);
}
 
/* ボタンの光沢 */
.is-reflection a {
  overflow: hidden;
}
.is-reflection a:after {
  -moz-animation: is-reflection 4s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -ms-animation: is-reflection 4s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -o-animation: is-reflection 4s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -webkit-animation: is-reflection 4s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  animation: is-reflection 4s ease-in-out infinite;
  background-color: #fff;
  content: " ";
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: -180px;
  transform: rotate(45deg);
  width: 30px;
}
/* アニメーションを遅延させる */
.is-reflection + .is-reflection a:after {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}
@keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes is-reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/* ぷるるるるん！ */
.is-purun {
  -webkit-animation: is-purun 5s infinite;
  -moz-animation: is-purun 5s infinite;
  animation: is-purun 5s infinite;
}
@-webkit-keyframes is-purun {
   0% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { -webkit-transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { -webkit-transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { -webkit-transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { -webkit-transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes is-purun {
   0% { transform: scale(1.0, 1.0) translate(0%, 0%); }
   4% { transform: scale(0.9, 0.9) translate(0%, 3%); }
   8% { transform: scale(1.1, 0.8) translate(0%, 7%); }
  12% { transform: scale(0.9, 0.9) translate(0%, -7%); }
  18% { transform: scale(1.1, 0.9) translate(0%, 3%); }
  25% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
/* アニメーションを遅延させる */
.is-purun + .is-purun {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}


/* ボタンをバウンドさせる */
.is-bounce {
  animation: bounce 4s infinite;
  -moz-animation: bounce 4s infinite;
  -webkit-animation: bounce 4s infinite;
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@-webkit-keyframes bounce {
  0%, 4%, 10%, 18%, 100% {-webkit-transform: translateY(0);}
  5% {-webkit-transform: translateY(-6px);}
  12% {-webkit-transform: translateY(-4px);}
}
@keyframes bounce {
  20%, 24%, 30%, 34%, 100% {-webkit-transform: translateY(0);transform: translateY(0);}
  25% {-webkit-transform: translateY(-6px);transform: translateY(-6px);}
  32% {-webkit-transform: translateY(-4px);transform: translateY(-4px);}
}
/* アニメーションを遅延させる */
.is-bounce + .is-bounce {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

/* CVボタン矢印揺れ */
.is-trembling a:before {
  -webkit-animation-name:is-trembling;
  -webkit-animation-duration:.8s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease;
  -moz-animation-name:is-trembling;
  -moz-animation-duration:1s;
  -moz-animation-iteration-count:infinite;
  -moz-animation-timing-function:ease;
}
@-webkit-keyframes is-trembling {
  0% {-webkit-transform:translate(-3px, 0);}
  100% {-webkit-transform:translate(0, 0);}
}



.ranking_button {
  position: relative;
  background-color: #5df255;
  border-radius: 4px;
  color: #fff;
  line-height: 65px;
  -webkit-transition: none;
  transition: none;
  box-shadow: 0 3px 0 #335122;
  text-shadow: 0 2px 2px rgba(0, 0, 0, .3);
  text-align: center;
  transition: all .2s ease;
  animation: jumpbtn 3s ease-out 0s infinite; /* ジャンプの頻度など */
}
.ranking_button:hover {
  background-color: #b3d69e;
  box-shadow: 0 3px 0 #518e2c;
}
.ranking_button:active {
  top: 3px;
  box-shadow: none;
}

.ranking_button a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
}
@keyframes jumpbtn {
    from, 10%, 20%, 100% {transform: translateY(0%);}
    5%, 15% {transform: translateY(-0.5em);} /* ジャンプする高さ */
}

.ranking_button a:before {
  content: "\f138";
  font-family: "fontawesome";
  font-weight: normal;
  font-size: 1em;
  margin-top: -.6em;
  margin-right: 5px;
}

#header-l {max-width:none;}
th {background:#ffdbff;}

.yellow-box {
    background: #fff8e8;
    border-left: solid 10px #ffc06e;
}

.green-box {
    background: #e0fffb;
    border-left: solid 10px #00d6be;
}

.blue-box {
    background: #E1F5FE;
    border-left: solid 10px #B3E5FC;
}

.yellow-box,
.green-box,
.blue-box {
    padding: 0.5em 1em;
    margin: 2em 0;
    color: #232323;
}

.yellow-box *,
.green-box *,
.blue-box * {
  font-size: 13px !important;
}

.yellow-box p,
.green-box p,
.blue-box p {
    margin: 0 0 10px 0; 
    padding: 0;
}

.point-box {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
}
.point-box .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.point-box p {
    margin: 0; 
    padding: 0;
}

.block {
border-bottom: 1px solid #000;
border-left: 5px solid green;
margin: 10px;
padding: 5px;
}

/* トリプル　囲み枠 */
.triple {
 position: relative;
 border: 1px solid #007b43; /*左枠線*/
 margin: 2em auto;
 padding: 20px 15px 15px 20px;
 z-index: 0;
}
.triple::before,
.triple::after {
 position: absolute;
 content: '';
 width: 100%;
 height: 100%;
}
.triple::before {
 border: 1px solid #3eb370; /*中枠線*/
 bottom: -4px;
 right: -4px;
 z-index: 1;
}
.triple::after {
 border: 1px solid #7ebea5; /*右枠線*/
 bottom: -7px;
 right: -7px;
 z-index: 2;
}


/* トリプル　囲み枠 */
.triple-blue {
 position: relative;
 border: 1px solid #1e90ff; /*左枠線*/
 margin: 2em auto;
 padding: 20px 15px 15px 20px;
 z-index: 0;
}
.triple-blue::before,
.triple-blue::after {
 position: absolute;
 content: '';
 width: 100%;
 height: 100%;
}
.triple-blue::before {
 border: 1px solid #00bfff; /*中枠線*/
 bottom: -4px;
 right: -4px;
 z-index: 1;
}
.triple-blue::after {
 border: 1px solid #add8e6; /*右枠線*/
 bottom: -7px;
 right: -7px;
 z-index: 2;
}

/* トリプル　囲み枠 */
.triple-red {
 position: relative;
 border: 1px solid #ff0000; /*左枠線*/
 margin: 2em auto;
 padding: 20px 15px 15px 20px;
 z-index: 0;
}
.triple-red::before,
.triple-red::after {
 position: absolute;
 content: '';
 width: 100%;
 height: 100%;
}
.triple-red::before {
 border: 1px solid #ff7f50; /*中枠線*/
 bottom: -4px;
 right: -4px;
 z-index: 1;
}
.triple-red::after {
 border: 1px solid #ffb6c1; /*右枠線*/
 bottom: -7px;
 right: -7px;
 z-index: 2;
}
/*テーブル（横幅がはみ出る場合にテーブルを囲む要素に設定）*/
.table-scroll{
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 10px;
}
.table-scroll::-webkit-scrollbar{  /*tableにスクロールバーを追加*/
  height: 5px;
}
.table-scroll::-webkit-scrollbar-track{  /*tableにスクロールバーを追加*/
  background: #F1F1F1;
}
.table-scroll::-webkit-scrollbar-thumb {  /*tableにスクロールバーを追加*/
  background: #BCBCBC;
}


.table-scroll th,
.table-scroll td {
  padding: 0.5em;
}

td span.name {
display: block;
color: #40b5ac;
text-decoration: underline;
text-align: center;
}

.ranking-table td {
text-align: center;
}

.ranking-table td a.kosiki_site {
display: block;
width: 100%;
padding: 15px 10px;
border-radius: 4px;
text-align: center;
font-size: .8rem;
text-decoration: none;
color: #fff;
background: #EF6392;
-webkit-box-shadow: 0 5px #bF4372;
box-shadow: 0 5px #bF4372;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-weight: 700;
}


/* ボタンの光沢 */
.reflection-img{
/*    width       :510px;
    height      :350px;
	*/
    position    :relative;
    overflow    :hidden;
}

.reflection {
    height      :100%;
    width       :30px;
    position    :absolute;
    top         :-180px;
    left        :0;
    background-color: #fff;
    opacity     :0;
    transform: rotate(45deg);
    animation: reflection 4s ease-in-out infinite;
    -webkit-transform: rotate(45deg);
    -webkit-animation: reflection 4s ease-in-out infinite;
    -moz-transform: rotate(45deg);
    -moz-animation: reflection 4s ease-in-out infinite;
    -ms-transform: rotate(45deg);
    -ms-animation: reflection 4s ease-in-out infinite;
    -o-transform: rotate(45deg);
    -o-animation: reflection 4s ease-in-out infinite;
}

@keyframes reflection {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { transform: scale(4) rotate(45deg); opacity: 1; }
    100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
    0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}

@-o-keyframes reflection {
    0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* 190705追加・ランキング用 */
#ranking ul li .title:before {
  position: relative;
  margin-right: .2em;
  bottom: -0.8em;
}

#ranking ul li { 
  list-style: none;
  border: 1px solid #999;
  padding: 10px;
  margin-bottom: 10px;
}

#ranking ul li .title {
  font-size: 22px;
  margin: 0 0 10px 0;
}

#ranking ul li:first-child .title:before {
  content: url(//cavitation.jp/wp-content/uploads/2019/07/rank1.png);
}

#ranking ul li:nth-child(2) .title:before {
  content: url(//cavitation.jp/wp-content/uploads/2019/07/rank2.png);
}

#ranking ul li:nth-child(3) .title:before {
  content: url(//cavitation.jp/wp-content/uploads/2019/07/rank3.png);
}

#ranking ul li:nth-child(4) .title:before {
  content: url(//cavitation.jp/wp-content/uploads/2019/07/rank4.png);
}

#ranking ul li:nth-child(5) .title:before {
  content: url(//cavitation.jp/wp-content/uploads/2019/07/rank5.png);
}

.salon_image {
  margin: 10px 0 20px 0;
  width: 230px;
  float: left;
}

.salon_image img {
  max-width: 100%;
}

.salon_info {
  width: 310px;
  padding: 10px 0 0 20px;
  display: inline-block;
}

.salon_info table,
.salon_info table th,
.salon_info table td {
  border-collapse: collapse;
  border: 1px solid #999;
}

.salon_info table th,
.salon_info table td {
  padding: 8px;
}

.salon_info table th {
  font-weight: bold;
  background: #FFDBFF;
}

.salon_data {
  display: flex;
  clear: both;
}


.salon_recommend {
  clear: both;
  padding: 0 0 10px;
}

.salon_recommend_title {
  font-size: 18px;
}

.salon_recommend ul {
  padding: 0 !important;
}

.salon_recommend_title:before {
  content: url(//cavitation.jp/wp-content/uploads/2019/07/point-icon.png);
  position: relative;
  margin-right: .2em;
  bottom: -0.8em;
}

.salon_recommend li {
  font-size: 18px;
  border: none !important;
  margin: 0 10px 0 10px !important;
  background-position: 5px 4px;
  padding: 0 0 4px 28px !important;
  background: url(//cavitation.jp/wp-content/uploads/2019/07/icon_heart.png) no-repeat 5px 4px;
  background-size: 16px auto;
}

.salon_button {
  clear: both;
  margin: 10px 10px 0 0;
  text-align: center;
  max-width: 420px;
}

.salon_link {
  width: 270px;
  background: url(//cavitation.jp/wp-content/uploads/2019/07/salon_link_button.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.salon_link a,
.salon_official a {
  display: block;
  border: 1px solid #fff;
  text-align:center;
  color: #fff;
  font-weight: bold;
  padding: 15px 0;
  font-size: 21px;
  text-decoration: none;
}

.salon_official {
  width: 270px;
  background: url(//cavitation.jp/wp-content/uploads/2019/07/salon_link_official_button.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.popup_txt {
    background: #ffdfdf;
    padding: 8px;
    margin-bottom: 4px;
	color: #333;
}

.popup_txt .txt {
    font-size: 140%;
    color: #ff6363;
    font-weight: bold;
}

.popup_txt .txt a {
    color: #ff6363;
}

.ranktable img {
    width: 25px;
	height: 25px;
}

.ranktable {
    position: relative;
	padding-top: 5px;
}

.ranktable .hukidashi {
    position: absolute;
	top: -5px;
	left: 97px;
}

/*フロー図*/
.flow-chart{
	margin-left: 0;
}

.flow-chart li{
	list-style: none;
	margin-bottom: 20px;
	padding-bottom: 60px !important;
	background: url(//cavitation.jp/wp-content/themes/affinger5-child/images/icon-arrow-b-chart.png) center bottom no-repeat;
}

	/*Retina（高解像度）ディスプレイ用*/
	@media screen and (-webkit-min-device-pixel-ratio:2),
	(min-resolution: 2dppx){

		.flow-chart li{
			background: url(//cavitation.jp/wp-content/themes/affinger5-child/images/icon-arrow-b-chart@2x.png) center bottom no-repeat;
			-webkit-background-size: 161px 40px;
			background-size: 161px 40px;
		}

	}

.flow-chart li.end,
.flow-chart li:last-child{
	padding-bottom: 0;
	background: none;
}

.flow-chart .process-box p{
  line-height: 1.5;
}

.flow-chart .process-box{
	padding: 30px;
	background: #eafdff;
	color: #333;
}
ol.flow-chart li:before {
  content: none;
  counter-increment: none;
  position: static;
  top: 0;
  left: 0;
  width: 0;
  padding: 0;
  border-top: none !important;
  color: none;
  background: none;
  font-weight: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: center;
}

.flow-chart ul.nomal-list,
.flow-chart ul.nomal-list li {
  list-style-type: disc;
}

.nomal-list li{
	list-style: disc;
	margin-bottom: 0;
	padding-bottom: 0;
	background: none;
	color: #333;
}

.st-in-mybox {
  font-size: 13px;
}

#footer-ad .st-widgets-title {
  display:none;
}

#footer-ad #s {
  padding: 25px 65px 25px 15px !important;
}

#footer-ad #searchsubmit {
  top: 20px !important;
}




/*
 * 
 * 
 * スマホでの表示設定 * 
 * 
 * 
 **/
@media (max-width: 767px) {

#content {
user-select:none;
-moz-user-select:none;
-webkit-user-select:none;
-khtml-user-select:none;
}

.salon_info {
  width: 97%;
  padding: 0;
}
#ranking ul,
#ranking ul li {
  margin-left: -15px;
  padding-right: 0 !important;
}
.salon_data {
  display: block;
}
.salon_button {
  max-width: 100%;
}
.salon_link,
.salon_official,
.salon_info table,
.salon_image {
  width: 100%;
}
.salon_image img {
  width: 97%;
}
	
	.sp-onecolumn th,
	.sp-onecolumn td{
		display: block;
	}
}