@charset "utf-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
strong,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
form,
label,
table,
tbody,
tr,
th,
td,
article,
aside,
figure,
d,
footer,
header,
nav,
section,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: bottom;
  background: transparent;
}
body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}
ul li {
  list-style: none;
}
a {
  margin: 0;
  padding: 0;
  color: #666;
  text-decoration: none;
  vertical-align: baseline;
}
a:hover {
  opacity: 0.7;
}
table {
  border-spacing: 0;
}
/* ===================================================================================
  resetここまで
=================================================================================== */

body * {
  font-family: "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo,
    sans-serif;
  color: #333;
  font-size: 18px;
}
.pc_none {
  display: none;
}

/* スクロール位置調整 */
#ope,
#choice,
#clinic {
  padding-top: 90px;
  margin-top: -90px;
}

header {
  background: #fff;
  border-bottom: solid 4px #ffd9df;
  width: 100%;
  height: 66px;
  padding: 20px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}
header .inner {
  display: flex;
  justify-content: space-between;
  width: 1180px;
  margin: 0 auto;
}
.pc_nav {
  width: 710px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.pc_nav ul {
  display: flex;
}

/* ボーダーエフェクト */
.pc_nav ul li,
.pc_nav p {
  position: relative;
}
.pc_nav ul li {
  margin-right: 30px;
}
.pc_nav ul li::after,
.pc_nav p::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #f5707b;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.pc_nav ul li:hover::after,
.pc_nav p:hover::after {
  transform: scale(1, 1);
}

/* 矢印 */
.pc_nav ul li a,
.pc_nav p a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  padding-left: 29px;
  position: relative;
}
.pc_nav ul li a:hover,
.pc_nav p a:hover {
  opacity: 1;
}
.pc_nav ul li a::before,
.pc_nav p a::before {
  content: "";
  position: absolute;
  top: 22%;
  left: 0;
  width: 22px;
  height: 22px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f5707b;
}
.pc_nav ul li a::after,
.pc_nav p a::after {
  content: "";
  position: absolute;
  top: 41%;
  left: 7px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*======================================================================
  ハンバーガーメニュー
======================================================================*/
.nav_drawer {
  display: none;
  position: relative;
}

/*ハンバーガーアイコンをCSSだけで表現*/
.nav_btn,
.nav_btn span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.nav_btn {
  position: relative;
  width: 48px;
  height: 44px;
  margin-top: 3px;
  margin-right: 35px;
}
.nav_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff959d;
  border-radius: 4px;
}
.nav_btn span:nth-of-type(1) {
  top: 0;
}
.nav_btn span:nth-of-type(2) {
  top: 20px;
}
.nav_btn span:nth-of-type(3) {
  bottom: 0;
}

.nav_btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.nav_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.nav_btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

/*閉じる用の薄黒カバー*/
.nav_shadow {
  display: none;
  position: fixed;
  z-index: 99;
  top: 85px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*ハンバーガーメニューの中身*/
.nav_content {
  overflow: auto;
  position: fixed;
  top: 85px;
  right: 0;
  z-index: 99999;
  width: 350px;
  height: 100%;
  background: #fff;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(105%);
  transform: translateX(105%);
}
.nav_content .sp_nav {
  width: 320px;
  margin: 10px auto 0;
  padding-bottom: 15px;
}
.nav_content .sp_nav li {
  border-bottom: solid 1px #4d4d4d;
}
.nav_content .sp_nav li a {
  display: block;
  font-size: 16px;
  line-height: 60px;
  padding-left: 27px;
  position: relative;
}
.nav_content .sp_nav li a::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 25px;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f5707b;
}
.nav_content .sp_nav li a::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 32px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav_content .link_list {
  padding-bottom: 100px;
}
.nav_content .link_list h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 30px;
  width: 302px;
  margin: 25px auto 0;
  padding: 15px 0 15px 18px;
  background: #f5707b;
  position: relative;
  z-index: -1;
}
.nav_content .link_list h3:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  border: none;
  border-left: solid 40px #faa5ad;
  border-bottom: solid 40px transparent;
  z-index: -2;
}

.nav_content .link_list ul li a {
  display: block;
  font-size: 14px;
  line-height: 50px;
  text-indent: 25px;
  width: 320px;
  margin: 10px auto 0;
  background: #ffecef;
  border-radius: 8px;
  position: relative;
}
.nav_content .link_list ul li a::before {
  content: "";
  position: absolute;
  top: 30%;
  right: 14px;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f5707b;
}
.nav_content .link_list ul li a::after {
  content: "";
  position: absolute;
  top: 42%;
  right: 21px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav_content .link_list ul li a:hover {
  opacity: 1;
  color: #fff;
  background: #f5707b;
}
.nav_content .link_list ul li a:hover::before {
  background: #fff;
}
.nav_content .link_list ul li a:hover::after {
  border-top: 2px solid #f5707b;
  border-right: 2px solid #f5707b;
}
.nav_content .link_list ul:last-child li:last-child a::before {
  top: 24%;
}

/*チェックが入ったら表示*/
.nav_btn.active ~ .nav_shadow {
  display: block;
  opacity: 0.5;
}
.nav_content.active {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}

/*======================================================================
  ハンバーガーメニューここまで
======================================================================*/

.wrap_contents {
  display: flex;
  justify-content: space-between;
  width: 1180px;
  margin: 130px auto 0;
}
.wrap_contents .main {
  width: 960px;
}
.wrap_contents .nav {
  width: 200px;
}

/* クリニックを探すために */
.clinic_search {
  background: url("../img/pc/bg_check.jpg") no-repeat top center;
}
.check_list {
  display: flex;
  justify-content: space-between;
  width: 840px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.check_list .check_block {
  width: 256px;
  background: #fff;
  position: relative;
}
.check_list .check_block .check {
  position: absolute;
  top: -11px;
  left: 0;
}
.check_list .check_block .check_tit {
  display: table;
  width: 256px;
  height: 120px;
  padding-top: 33px;
  background: url("../img/pc/img_check_line.png") no-repeat center bottom;
}
.check_list .check_block .check_tit h3 {
  display: table-cell;
  color: #f5707b;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
  vertical-align: middle;
}
.check_list .check_block .check_text {
  font-size: 16px;
  text-align: justify;
  line-height: 1.6;
  width: 196px;
  height: 205px;
  margin: 20px auto 0;
}

/* 手術の施術について */
.eyelid_ope .ope_top_text {
  font-size: 20px;
  text-align: center;
  margin: 20px 0 37px;
}
.eyelid_ope .ope_list {
  background: #ffe8ec;
  padding: 1px 0 70px;
}
.eyelid_ope .ope_list .ope_block {
  width: 840px;
  margin: 79px auto 0;
  background: #fff;
  position: relative;
}
.eyelid_ope .ope_list .ope_block.ope1 {
  background: url("../img/pc/bg_ope1.jpg") no-repeat bottom right, #fff;
}
.eyelid_ope .ope_list .ope_block.ope2 {
  background: url("../img/pc/bg_ope2.jpg") no-repeat bottom left, #fff;
}
.eyelid_ope .ope_list .ope_block h3 {
  color: #fff;
  font-size: 24px;
  line-height: 56px;
  text-indent: 60px;
  width: 600px;
  background: url("../img/pc/bg_ope_tit.png") no-repeat top left;
  position: absolute;
  top: -44px;
  left: -60px;
}
.eyelid_ope .ope_list .ope_block.ope1 p {
  width: 380px;
  padding: 50px 0 60px 40px;
  text-align: justify;
  line-height: 1.5;
}
.eyelid_ope .ope_list .ope_block.ope2 p {
  width: 395px;
  padding: 60px 0 70px 405px;
  text-align: justify;
  line-height: 1.5;
}
.eyelid_ope .ope_list .ope_block p strong {
  color: #f5707b;
}

.eyelid_ope .ope_list .ope_block.ope3 {
  padding: 115px 0 50px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison {
  width: 760px;
  margin: 0 auto;
  position: relative;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison .merit,
.eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  width: 220px;
  line-height: 55px;
  border-radius: 8px 8px 0 0;
  position: absolute;
  top: -55px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison .merit {
  left: 155px;
  background: #80d1cb;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
  left: 485px;
  background: #808080;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table {
  width: 760px;
  border: solid 3px #959595;
  border-radius: 8px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table th {
  color: #f5707b;
  font-size: 20px;
  width: 95px;
  height: 240px;
  vertical-align: middle;
  border-right: solid 2px #959595;
  border-bottom: solid 2px #959595;
  background: #fde2e5;
  border-radius: 8px 0 0 0;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type th {
  color: #29a7de;
  border-bottom: none;
  background: #d4edf8;
  border-radius: 0 0 0 8px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td {
  width: 300px;
  padding-left: 30px;
  vertical-align: middle;
  border-bottom: solid 2px #959595;
  border-right: solid 2px #959595;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child {
  border-right: none;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type td {
  border-bottom: none;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold;
  padding-left: 18px;
  margin-bottom: 7px;
  position: relative;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td:nth-child(2) p::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 12px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:first-of-type td:nth-child(2) p::before {
  color: #f5707b;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type td:nth-child(2) p::before {
  color: #29a7de;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td p strong {
  font-size: 20px;
  vertical-align: -3px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type td p strong {
  color: #29a7de;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p {
  font-weight: normal;
  padding-left: 18px;
  position: relative;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 3px;
  color: #808080;
  font-size: 12px;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:first-of-type td:nth-child(2) p::before {
  color: #f5707b;
}
.eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type td:nth-child(2) p::before {
  color: #29a7de;
}

/* クリニック選びのポイント */
.clinic_point .inner {
  background: url("../img/pc/bg_point.png") no-repeat top center, url("../img/bg_block.jpg") repeat 0 0;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.clinic_point .point_block {
  width: 840px;
  margin: 0 auto 50px;
  padding-bottom: 40px;
  background: #fff;
}

.clinic_point .point_block .check_icon {
  width: 160px;
  margin: 0 auto;
}
.clinic_point .point_block .check_icon img {
  width: 100%;
}
.clinic_point .point_block h3 {
  color: #f5707b;
  font-size: 30px;
  text-align: center;
  margin: 30px 0 27px;
}
.clinic_point .point_block .check_deta {
  display: flex;
  justify-content: space-between;
  width: 760px;
  margin: 0 auto;
}
.clinic_point .point_block .check_deta .text {
  width: 380px;
  line-height: 1.5;
  text-align: justify;
}
.clinic_point .point_block .check_deta .text strong {
  color: #f5707b;
}
.clinic_point .point_block .check_deta .img {
  width: 350px;
}
.clinic_point .point_block .check_deta .img img {
  width: 100%;
}

/* クリニック一覧 */
.clinic_list {
  margin-bottom: 100px;
}
.clinic_list .clinic_block {
  border: solid 3px #f5707b;
  margin-top: 40px;
}
.clinic_list .clinic_block .inner {
  width: 840px;
  margin: 45px auto 60px;
}
.clinic_list .clinic_block h3 {
  color: #f5707b;
  font-size: 38px;
  margin-bottom: 30px;
  padding-left: 45px;
  position: relative;
}
.clinic_list .clinic_block h3::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 38px;
}
.clinic_list .clinic_block h4 {
  font-size: 26px;
  line-height: 48px;
  padding-left: 30px;
  border-left: solid 4px #f5707b;
  background: url("../img/pc/bg_headline.png") repeat 0 0;
}
.clinic_list .clinic_block .point {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.clinic_list .clinic_block .point .deta {
  width: 450px;
}
.clinic_list .clinic_block .point .deta ul li {
  background-image: linear-gradient(to right, #afafaf, #afafaf 3px, transparent 1px, transparent 4px);
  background-size: 6px 1px;
  background-position: bottom;
  background-repeat: repeat-x;
  padding: 20px 0 20px 35px;
  font-size: 20px;
  line-height: 1.7;
  position: relative;
}
.clinic_list .clinic_block .point .deta ul li::before {
  content: "◆";
  position: absolute;
  left: 10px;
  top: 27px;
  color: #f5707b;
  font-size: 12px;
}
.clinic_list .clinic_block .point .deta ul li strong {
  color: #f5707b;
  font-size: 20px;
}
.clinic_list .clinic_block .info {
  padding-left: 20px;
  margin: 30px 0 35px;
}
.clinic_list .clinic_block .info .add {
  font-size: 20px;
  line-height: 1.7;
}
.clinic_list .clinic_block .info .tel {
  color: #f5707b;
  font-size: 52px;
  font-weight: bold;
  margin-top: 20px;
}
.clinic_list .clinic_block .info .tel a {
  color: #f5707b;
  font-size: 52px;
  font-weight: bold;
  margin-top: 20px;
}
.clinic_list .clinic_block .info .tel span {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  vertical-align: 13px;
  margin-right: 20px;
  padding: 8px 40px;
  background: #ffd9df;
  border-radius: 25px;
}
.clinic_list .clinic_block .btn_area {
  display: flex;
  justify-content: space-between;
}
.clinic_list .clinic_block .btn_area p a {
  display: block;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 80px;
  width: 411px;
}
.clinic_list .clinic_block .btn_area .btn1 a {
  background: url("../img/pc/bg_btn_deta.png") no-repeat center;
}
.clinic_list .clinic_block .btn_area .btn2 a {
  background: url("../img/pc/bg_btn_official.png") no-repeat center;
}

/*======================================================================
  ライトナビ
======================================================================*/

.nav h2 {
  color: #f5707b;
  font-size: 22px;
  text-align: center;
}
.nav h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  margin-top: 30px;
  padding: 10px 0 10px 18px;
  background: #f5707b;
  position: relative;
  z-index: -1;
}
.nav h3:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  border: none;
  border-left: solid 40px #faa5ad;
  border-bottom: solid 40px transparent;
  z-index: -2;
}
.nav h3.nav_top_tit {
  margin-top: 20px;
}

.nav .bnr_area h4 {
  color: #f5707b;
  text-align: center;
  margin: 18px 0 8px;
}
.nav .bnr_area .bnr_text {
  font-size: 14px;
  text-align: center;
  margin-top: 7px;
}
.nav .link_list ul li a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 10px;
  padding: 13px 0 13px 43px;
  background: #ffecef;
  border-radius: 8px;
  position: relative;
}
.nav .link_list ul li a::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 14px;
  width: 22px;
  height: 22px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #f5707b;
}
.nav .link_list ul li a::after {
  content: "";
  position: absolute;
  top: 42%;
  left: 21px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav .link_list ul li a:hover {
  opacity: 1;
  color: #fff;
  background: #f5707b;
}
.nav .link_list ul li a:hover::before {
  background: #fff;
}
.nav .link_list ul li a:hover::after {
  border-top: 2px solid #f5707b;
  border-right: 2px solid #f5707b;
}
.nav .link_list ul:last-child li:last-child a::before {
  top: 24%;
}

/*======================================================================
  ライトナビここまで
======================================================================*/
@media screen and (min-width: 1181px) {
  .h2_headline {
    font-size: 40px;
  }
}

@media screen and (min-width: 960px) and (max-width: 1180px) {
  body * {
    font-size: 1.5vw;
  }
  img {
    width: 100%;
  }

  /* スクロール位置調整 */
  #ope,
  #choice,
  #clinic {
    padding-top: 90px;
    margin-top: -90px;
  }

  header .inner {
    width: 100%;
  }
  header .inner h1 {
    margin-right: 15px;
  }
  header .inner h1 img {
    width: 444px;
  }
  .pc_nav {
    width: 100%;
  }
  .pc_nav ul li,
  .pc_nav p {
    margin-right: 15px;
  }

  .wrap_contents {
    width: 100%;
  }
  .wrap_contents .main {
    width: 81.4vw;
  }
  .wrap_contents .nav {
    width: 16.9vw;
  }

  /* クリニックを探すために */
  .clinic_search {
    background: url("../img/pc/bg_check.jpg") no-repeat top center;
    background-size: 100%;
  }
  .check_list {
    width: 71.2vw;
    padding-bottom: 5.1vw;
  }
  .check_list .check_block {
    width: 21.7vw;
  }
  .check_list .check_block .check {
    top: -0.9vw;
  }
  .check_list .check_block .check_tit {
    width: 21.7vw;
    height: 10.2vw;
    padding-top: 2.8vw;
    background: url("../img/pc/img_check_line.png") no-repeat center bottom;
    background-size: 16.6vw 0.3vw;
  }
  .check_list .check_block .check_tit h3 {
    font-size: 1.7vw;
  }
  .check_list .check_block .check_text {
    font-size: 1.4vw;
    width: 16.6vw;
    height: 17.4vw;
    margin: 1.7vw auto 0;
  }

  /* 手術の施術について */
  .h2_headline {
    font-size: 3vw;
    padding-top: 3vw;
  }
  .eyelid_ope .ope_top_text {
    font-size: 1.7vw;
    margin: 1.7vw 0 3.1vw;
  }
  .eyelid_ope .ope_list {
    padding: 1px 0 5.9vw;
  }
  .eyelid_ope .ope_list .ope_block {
    width: 71.2vw;
    margin: 6.7vw auto 0;
  }
  .eyelid_ope .ope_list .ope_block.ope1 {
    background-size: 38.6vw 39vw;
  }
  .eyelid_ope .ope_list .ope_block.ope2 {
    background-size: 39.4vw 38.6vw;
  }
  .eyelid_ope .ope_list .ope_block h3 {
    font-size: 2vw;
    line-height: 4.7vw;
    text-indent: 5.1vw;
    width: 50.8vw;
    background-size: 100%;
    top: -3.7vw;
    left: -5.1vw;
  }
  .eyelid_ope .ope_list .ope_block.ope1 p {
    width: 32.2vw;
    padding: 4.2vw 0 5.1vw 3.4vw;
  }
  .eyelid_ope .ope_list .ope_block.ope2 p {
    width: 33.5vw;
    padding: 5.1vw 0 5.9vw 34.3vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 {
    padding: 9.7vw 0 4.2vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison {
    width: 64.4vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .merit,
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
    font-size: 1.7vw;
    width: 18.6vw;
    line-height: 4.7vw;
    border-radius: 0.7vw 0.7vw 0 0;
    top: -4.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .merit {
    left: 13.1vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
    left: 41.1vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table {
    width: 64.4vw;
    border: solid 0.3vw #959595;
    border-radius: 0.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table th {
    font-size: 1.7vw;
    width: 8.1vw;
    height: 20.3vw;
    border-right: solid 0.2vw #959595;
    border-bottom: solid 0.2vw #959595;
    border-radius: 0.7vw 0 0 0;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type th {
    border-radius: 0 0 0 0.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td {
    width: 25.4vw;
    padding-left: 2.5vw;
    border-bottom: solid 0.2vw #959595;
    border-right: solid 0.2vw #959595;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td p {
    font-size: 1.4vw;
    padding-left: 1.5vw;
    margin-bottom: 0.6vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:nth-child(2) p::before {
    top: 0.3vw;
    font-size: 1vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td p strong {
    font-size: 1.7vw;
    vertical-align: -0.3vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p {
    padding-left: 1.5vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p::before {
    top: 0.3vw;
    font-size: 1vw;
  }

  /* クリニック選びのポイント */
  .clinic_point .inner {
    background: url("../img/pc/bg_point.png") no-repeat top center, url("../img/bg_block.jpg") repeat 0 0;
    background-size: 100%, 18px;
    padding-bottom: 0.8vw;
    margin-bottom: 3.4vw;
  }
  .clinic_point .point_block {
    width: 71.2vw;
    margin: 0 auto 4.2vw;
    padding-bottom: 3.4vw;
  }
  .clinic_point .point_block .check_icon {
    width: 13.6vw;
  }
  .clinic_point .point_block h3 {
    font-size: 2.5vw;
    margin: 2.5vw 0 2.3vw;
  }
  .clinic_point .point_block .check_deta {
    width: 64.4vw;
  }
  .clinic_point .point_block .check_deta .text {
    width: 32.2vw;
  }
  .clinic_point .point_block .check_deta .img {
    width: 29.7vw;
  }
  .clinic_point .point_block .check_deta .img img {
    width: 100%;
  }

  /* クリニック一覧 */
  .clinic_list {
    margin-bottom: 8.5vw;
  }
  .clinic_list .clinic_block {
    border: solid 0.3vw #f5707b;
    margin-top: 3.4vw;
  }
  .clinic_list .clinic_block .inner {
    width: 71.2vw;
    margin: 3.8vw auto 5.1vw;
  }
  .clinic_list .clinic_block h3 {
    font-size: 3.2vw;
    margin-bottom: 2.5vw;
    padding-left: 3.8vw;
  }
  .clinic_list .clinic_block h3::before {
    font-size: 3.2vw;
  }
  .clinic_list .clinic_block h4 {
    font-size: 2.2vw;
    line-height: 4.1vw;
    padding-left: 2.5vw;
    border-left: solid 0.3vw #f5707b;
    background: url("../img/pc/bg_headline.png") repeat 0 0;
    background-size: 0.5vw 0.8vw;
  }
  .clinic_list .clinic_block .point {
    margin-bottom: 3.4vw;
  }
  .clinic_list .clinic_block .point .img {
    width: 29.7vw;
  }
  .clinic_list .clinic_block .point .deta {
    width: 38.1vw;
  }
  .clinic_list .clinic_block .point .deta ul li {
    background-image: linear-gradient(to right, #afafaf, #afafaf 3px, transparent 1px, transparent 4px);
    background-size: 6px 1px;
    background-position: bottom;
    background-repeat: repeat-x;
    padding: 1.7vw 0 1.7vw 3vw;
    font-size: 1.7vw;
  }
  .clinic_list .clinic_block .point .deta ul li::before {
    left: 0.8vw;
    top: 2.3vw;
    font-size: 1vw;
  }
  .clinic_list .clinic_block .point .deta ul li strong {
    font-size: 1.7vw;
  }
  .clinic_list .clinic_block .info {
    padding-left: 1.7vw;
    margin: 2.5vw 0 3vw;
  }
  .clinic_list .clinic_block .info .add {
    font-size: 1.7vw;
  }
  .clinic_list .clinic_block .info .tel {
    font-size: 4.4vw;
    margin-top: 1.7vw;
  }
  .clinic_list .clinic_block .info .tel a {
    font-size: 4.4vw;
    margin-top: 1.7vw;
  }
  .clinic_list .clinic_block .info .tel span {
    font-size: 1.7vw;
    vertical-align: 1.1vw;
    margin-right: 1.7vw;
    padding: 0.7vw 3.4vw;
    border-radius: 2.1vw;
  }
  .clinic_list .clinic_block .btn_area p a {
    font-size: 2.4vw;
    line-height: 6.8vw;
    width: 34.8vw;
  }
  .clinic_list .clinic_block .btn_area .btn1 a,
  .clinic_list .clinic_block .btn_area .btn2 a {
    background-size: 34.8vw 6.8vw;
  }

  /*======================================================================
    ライトナビ
  ======================================================================*/
  .nav h2 {
    font-size: 1.8vw;
  }
  .nav h3 {
    font-size: 1.4vw;
    margin-top: 2.5vw;
    padding: 0.8vw 0 0.8vw 1.5vw;
  }
  .nav h3:before {
    border-left: solid 3.4vw #faa5ad;
    border-bottom: solid 3.4vw transparent;
  }
  .nav h3.nav_top_tit {
    margin-top: 1.7vw;
  }
  .nav .bnr_area h4 {
    margin: 1.5vw 0 0.7vw;
  }
  .nav .bnr_area .bnr_text {
    font-size: 1.2vw;
    margin-top: 0.6vw;
  }
  .nav .link_list ul li a {
    font-size: 1.2vw;
    margin-top: 0.8vw;
    padding: 1.1vw 0 1.1vw 3.6vw;
    border-radius: 0.7vw;
  }
  .nav .link_list ul li a::before {
    top: 30%;
    left: 1.2vw;
    width: 1.9vw;
    height: 1.9vw;
  }
  .nav .link_list ul li a::after {
    left: 1.8vw;
    width: 0.3vw;
    height: 0.3vw;
    border-top: 0.2vw solid #fff;
    border-right: 0.2vw solid #fff;
  }
  .nav .link_list ul li a:hover::after {
    border-top: 0.2vw solid #f5707b;
    border-right: 0.2vw solid #f5707b;
  }
}

@media screen and (min-width: 750px) and (max-width: 960px) {
  body * {
    font-size: 1.9vw;
  }
  img {
    width: 100%;
  }

  .pc_nav {
    display: none;
  }
  .nav_drawer {
    display: block;
  }

  /* スクロール位置調整 */
  #ope,
  #choice,
  #clinic {
    padding-top: 85px;
    margin-top: -85px;
  }

  header {
    padding: 15px 0 0;
  }
  header .inner {
    width: 100%;
  }
  header h1 {
    margin-left: 30px;
  }

  .wrap_contents {
    width: 100%;
    margin: 100px auto 0;
  }
  .wrap_contents .main {
    width: 100%;
  }

  /* クリニックを探すために */
  .clinic_search {
    background: url("../img/pc/bg_check.jpg") no-repeat top center;
    background-size: 100%;
  }
  .check_list {
    width: 87.5vw;
    padding-bottom: 6.3vw;
  }
  .check_list .check_block {
    width: 26.7vw;
  }
  .check_list .check_block .check {
    top: -1.1vw;
  }
  .check_list .check_block .check_tit {
    width: 26.7vw;
    height: 12.5vw;
    padding-top: 3.4vw;
    background: url("../img/pc/img_check_line.png") no-repeat center bottom;
    background-size: 20.4vw 0.4vw;
  }
  .check_list .check_block .check_tit h3 {
    font-size: 2.1vw;
  }
  .check_list .check_block .check_text {
    font-size: 1.7vw;
    width: 20.4vw;
    height: 21.4vw;
    margin: 2.1vw auto 0;
  }

  /* 手術の施術について */
  .h2_headline {
    font-size: 4.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .eyelid_ope .ope_top_text {
    font-size: 2.1vw;
    margin: 2.1vw 0 3.9vw;
  }
  .eyelid_ope .ope_list {
    padding: 1px 0 7.3vw;
  }
  .eyelid_ope .ope_list .ope_block {
    width: 87.5vw;
    margin: 8.2vw auto 0;
  }
  .eyelid_ope .ope_list .ope_block.ope1 {
    background-size: 47.4vw 47.9vw;
  }
  .eyelid_ope .ope_list .ope_block.ope2 {
    background-size: 48.4vw 47.4vw;
  }
  .eyelid_ope .ope_list .ope_block h3 {
    font-size: 2.5vw;
    line-height: 5.8vw;
    text-indent: 6.3vw;
    width: 62.5vw;
    background: url("../img/pc/bg_ope_tit.png") no-repeat top left;
    background-size: 62.5vw 5.8vw;
    top: -4.6vw;
    left: -6.3vw;
  }
  .eyelid_ope .ope_list .ope_block.ope1 p {
    width: 39.6vw;
    padding: 5.2vw 0 6.3vw 4.2vw;
  }
  .eyelid_ope .ope_list .ope_block.ope2 p {
    width: 41.1vw;
    padding: 6.3vw 0 7.3vw 42.2vw;
  }

  .eyelid_ope .ope_list .ope_block.ope3 {
    padding: 12vw 0 5.2vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison {
    width: 79.2vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .merit,
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
    font-size: 2.1vw;
    width: 22.9vw;
    line-height: 5.7vw;
    border-radius: 0.8vw 0.8vw 0 0;
    top: -5.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .merit {
    left: 16.1vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
    left: 50.5vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table {
    width: 79.2vw;
    border: solid 0.3vw #959595;
    border-radius: 0.8vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table th {
    font-size: 2.1vw;
    width: 9.9vw;
    height: 25vw;
    border-right: solid 0.2vw #959595;
    border-bottom: solid 0.2vw #959595;
    border-radius: 0.8vw 0 0 0;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type th {
    border-radius: 0 0 0 0.8vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td {
    width: 31.3vw;
    padding-left: 3.1vw;
    border-bottom: solid 0.2vw #959595;
    border-right: solid 0.2vw #959595;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td p {
    font-size: 1.7vw;
    padding-left: 1.9vw;
    margin-bottom: 0.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:nth-child(2) p::before {
    top: 0.4vw;
    font-size: 1.3vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td p strong {
    font-size: 2.1vw;
    vertical-align: -0.3vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p {
    padding-left: 1.9vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p::before {
    top: 0.3vw;
    font-size: 1.3vw;
  }

  /* クリニック選びのポイント */
  .clinic_point .inner {
    background: url("../img/pc/bg_point.png") no-repeat top center, url("../img/bg_block.jpg") repeat 0 0;
    background-size: 100vw, 1.9vw;
    padding-bottom: 1vw;
    margin-bottom: 4.2vw;
  }
  .clinic_point .point_block {
    width: 87.5vw;
    margin: 0 auto 5.2vw;
    padding-bottom: 4.2vw;
  }

  .clinic_point .point_block .check_icon {
    width: 16.7vw;
  }
  .clinic_point .point_block h3 {
    font-size: 3.1vw;
    margin: 3.1vw 0 2.8vw;
  }
  .clinic_point .point_block .check_deta {
    width: 79.2vw;
  }
  .clinic_point .point_block .check_deta .text {
    width: 39.6vw;
  }
  .clinic_point .point_block .check_deta .img {
    width: 36.5vw;
  }
  .clinic_point .point_block .check_deta .img img {
    width: 100%;
  }

  /* クリニック一覧 */
  .clinic_list {
    margin-bottom: 10.4vw;
  }
  .clinic_list .clinic_block {
    border: solid 0.3vw #f5707b;
    margin-top: 4.2vw;
  }
  .clinic_list .clinic_block .inner {
    width: 87.5vw;
    margin: 4.7vw auto 6.3vw;
  }
  .clinic_list .clinic_block h3 {
    font-size: 4vw;
    margin-bottom: 3.1vw;
    padding-left: 4.7vw;
  }
  .clinic_list .clinic_block h3::before {
    font-size: 4vw;
  }
  .clinic_list .clinic_block h4 {
    font-size: 2.7vw;
    line-height: 5vw;
    padding-left: 3.1vw;
    border-left: solid 0.4vw #f5707b;
    background: url("../img/pc/bg_headline.png") repeat 0 0;
    background-size: 0.6vw 1vw;
  }
  .clinic_list .clinic_block .point {
    margin-bottom: 4.2vw;
  }
  .clinic_list .clinic_block .point .img {
    width: 36.5vw;
  }
  .clinic_list .clinic_block .point .deta {
    width: 46.9vw;
  }
  .clinic_list .clinic_block .point .deta ul li {
    background-image: linear-gradient(to right, #afafaf, #afafaf 3px, transparent 1px, transparent 4px);
    background-size: 6px 1px;
    background-position: bottom;
    background-repeat: repeat-x;
    padding: 2.1vw 0 2.1vw 3.6vw;
    font-size: 2.1vw;
  }
  .clinic_list .clinic_block .point .deta ul li::before {
    left: 1vw;
    top: 2.8vw;
    font-size: 1.3vw;
  }
  .clinic_list .clinic_block .point .deta ul li strong {
    font-size: 2.1vw;
  }
  .clinic_list .clinic_block .info {
    padding-left: 2.1vw;
    margin: 3.1vw 0 3.6vw;
  }
  .clinic_list .clinic_block .info .add {
    font-size: 2.1vw;
  }
  .clinic_list .clinic_block .info .tel {
    font-size: 5.4vw;
    margin-top: 2.1vw;
  }
  .clinic_list .clinic_block .info .tel a {
    font-size: 5.4vw;
    margin-top: 2.1vw;
  }
  .clinic_list .clinic_block .info .tel span {
    font-size: 2.1vw;
    vertical-align: 1.4vw;
    margin-right: 2.1vw;
    padding: 0.8vw 4.2vw;
    border-radius: 2.6vw;
  }
  .clinic_list .clinic_block .btn_area p a {
    font-size: 2.9vw;
    line-height: 8.3vw;
    width: 42.8vw;
  }
  .clinic_list .clinic_block .btn_area .btn1 a,
  .clinic_list .clinic_block .btn_area .btn2 a {
    background-size: 42.8vw 8.3vw;
  }

  .nav {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  body * {
    font-size: 3.7vw;
  }
  img {
    width: 100%;
  }

  .pc_none {
    display: block;
  }
  .sp_none {
    display: none;
  }

  /* スクロール位置調整 */
  #ope,
  #choice,
  #clinic {
    padding-top: 13.3vw;
    margin-top: -13.3vw;
  }

  header {
    background: #fff;
    border-bottom: solid 0.4vw #ffd9df;
    width: 100%;
    height: 10.5vw;
    padding: 4vw 0 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
  }
  header .inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  header .inner h1 {
    width: 59.2vw;
    margin-left: 4vw;
  }

  /*======================================================================
    ハンバーガーメニュー
  ======================================================================*/
  .nav_drawer {
    position: relative;
  }

  /*ハンバーガーアイコンをCSSだけで表現*/
  .nav_btn {
    position: relative;
    width: 6.4vw;
    height: 5.9vw;
    margin-right: 4.7vw;
  }
  .nav_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.5vw;
    background-color: #ff959d;
    border-radius: 0.3vw;
  }
  .nav_btn span:nth-of-type(1) {
    top: 0;
  }
  .nav_btn span:nth-of-type(2) {
    top: 2.7vw;
  }
  .nav_btn span:nth-of-type(3) {
    bottom: 0;
  }
  .nav_btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(2.7vw) rotate(-45deg);
    transform: translateY(2.7vw) rotate(-45deg);
  }
  .nav_btn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav_btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-2.7vw) rotate(45deg);
    transform: translateY(-2.7vw) rotate(45deg);
  }

  /*閉じる用の薄黒カバー*/
  .nav_shadow {
    display: none;
  }

  /*ハンバーガーメニューの中身*/
  .nav_content {
    overflow: auto;
    position: fixed;
    top: 14.9vw;
    right: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
  }
  .nav_content .sp_nav {
    width: 92vw;
    margin: 0.8vw auto 0;
    padding-bottom: 4vw;
  }
  .nav_content .sp_nav li {
    border-bottom: solid 1px #4d4d4d;
  }
  .nav_content .sp_nav li a {
    display: block;
    font-size: 3.7vw;
    line-height: 16vw;
    padding-left: 7.3vw;
    position: relative;
  }
  .nav_content .sp_nav li a::before {
    content: "";
    position: absolute;
    top: 36%;
    right: 3.3vw;
    width: 4vw;
    height: 4vw;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #f5707b;
  }
  .nav_content .sp_nav li a::after {
    content: "";
    position: absolute;
    top: 44%;
    right: 4.9vw;
    width: 0.8vw;
    height: 0.8vw;
    border-top: 0.4vw solid #fff;
    border-right: 0.4vw solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .nav_content .link_list {
    padding-bottom: 19.3vw;
  }
  .nav_content .link_list h3 {
    color: #fff;
    font-size: 4.5vw;
    line-height: 14.7vw;
    text-indent: 7.3vw;
    width: 92vw;
    margin: 6.7vw auto 0;
    padding: 0;
    background: #f5707b;
    position: relative;
    z-index: -1;
  }
  .nav_content .link_list h3:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    border: none;
    border-left: solid 14.7vw #faa5ad;
    border-bottom: solid 14.7vw transparent;
    z-index: -2;
  }

  .nav_content .link_list ul li a {
    display: block;
    font-size: 3.7vw;
    line-height: 13.3vw;
    text-indent: 7.3vw;
    width: 92vw;
    margin: 2.7vw auto 0;
    background: #ffecef;
    border-radius: 1.3vw;
    position: relative;
  }
  .nav_content .link_list ul li a::before {
    content: "";
    position: absolute;
    top: 32%;
    right: 3.3vw;
    width: 4vw;
    height: 4vw;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #f5707b;
  }
  .nav_content .link_list ul li a::after {
    content: "";
    position: absolute;
    top: 42%;
    right: 4.8vw;
    width: 0.8vw;
    height: 0.8vw;
    border-top: 0.4vw solid #fff;
    border-right: 0.4vw solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav_content .link_list ul:last-child li:last-child a::before {
    top: 32%;
  }
  .nav_btn.active ~ .nav_shadow {
    display: none;
  }

  /*======================================================================
    ハンバーガーメニューここまで
  ======================================================================*/

  .wrap_contents {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 18.7vw auto 0;
  }
  .wrap_contents .main {
    width: 100%;
  }
  .wrap_contents .nav {
    display: none;
    width: 0;
  }

  .wrap_contents .main .bnr_area {
    margin-bottom: 7.3vw;
  }
  .wrap_contents .main .bnr_area h3 {
    color: #fff;
    font-size: 4.5vw;
    text-align: center;
    width: 92vw;
    margin: 6.7vw auto 0;
    padding: 2.7vw 0 2.7vw;
    background: #f5707b;
    position: relative;
  }
  .wrap_contents .main .bnr_area h3:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    border: none;
    border-left: solid 11.4vw #faa5ad;
    border-bottom: solid 9.7vw transparent;
    z-index: 0;
  }
  .wrap_contents .main .bnr_area h4 {
    color: #f5707b;
    font-size: 4.5vw;
    text-align: center;
    margin: 6.4vw 0 3.3vw;
  }
  .wrap_contents .main .bnr_area .bnr_text {
    font-size: 3.2vw;
    text-align: center;
    margin-top: 3.3vw;
  }
  .wrap_contents .main .bnr_area .bnr {
    width: 66.7vw;
    margin: 0 auto;
  }

  /* クリニックを探すために */
  .clinic_search {
    background: url("../img/sp/bg_check.jpg") no-repeat top center;
    background-size: 100%;
  }
  .check_list {
    display: block;
    justify-content: space-between;
    width: 92vw;
    margin: 0 auto;
    padding-bottom: 9.3vw;
  }
  .check_list .check_block {
    width: 92vw;
    margin-bottom: 7.6vw;
    background: #fff;
    position: relative;
  }
  .check_list .check_block:last-child {
    margin-bottom: 0;
  }
  .check_list .check_block .check {
    position: absolute;
    top: -3.5vw;
    left: 0;
    right: 0;
    width: 26.3vw;
    margin: 0 auto;
  }
  .check_list .check_block .check_tit {
    display: table;
    width: 84vw;
    height: auto;
    margin: 0 auto;
    padding: 8.7vw 0 4.4vw;
    background: url("../img/sp/img_check_line.png") no-repeat center bottom;
    background-size: 84vw 0.5vw;
  }
  .check_list .check_block .check_tit h3 {
    display: table-cell;
    color: #f5707b;
    font-size: 5.6vw;
    text-align: center;
    line-height: 1.1;
    vertical-align: middle;
  }
  .check_list .check_block .check_text {
    font-size: 3.7vw;
    text-align: justify;
    line-height: 1.6;
    width: 84vw;
    height: auto;
    margin: 3.3vw auto 2.7vw;
  }

  /* 手術の施術について */
  .h2_headline {
    font-size: 6.5vw;
    padding-top: 3vw;
    padding-bottom: 3vw;
  }

  .eyelid_ope .ope_top_text {
    font-size: 3.7vw;
    line-height: 1.4;
    text-align: center;
    margin: 2.7vw 0 6.7vw;
  }
  .eyelid_ope .ope_list {
    background: #ffe8ec;
    padding: 1px 0 12.7vw;
  }
  .eyelid_ope .ope_list .ope_block {
    width: 92vw;
    margin: 6.7vw auto 0;
    background: #fff;
    position: relative;
  }
  .eyelid_ope .ope_list .ope_block.ope1 {
    background: url("../img/sp/bg_ope1.jpg") no-repeat top center, #fff;
    background-size: 100%;
  }
  .eyelid_ope .ope_list .ope_block.ope2 {
    background: url("../img/sp/bg_ope2.jpg") no-repeat top center, #fff;
    background-size: 100%;
  }
  .eyelid_ope .ope_list .ope_block h3 {
    color: #fff;
    font-size: 5.2vw;
    line-height: 10.1vw;
    text-indent: 7.7vw;
    width: auto;
    padding-right: 11.4vw;
    background: url("../img/pc/bg_ope_tit.png") no-repeat top right;
    background-size: auto 10.1vw;
    position: absolute;
    top: 12.4vw;
    left: -4vw;
  }
  .eyelid_ope .ope_list .ope_block.ope1 p,
  .eyelid_ope .ope_list .ope_block.ope2 p {
    width: 84vw;
    margin: 0 auto;
    padding: 55.5vw 0 6.7vw;
    text-align: justify;
    line-height: 1.6;
  }

  .eyelid_ope .ope_list .ope_block p strong {
    color: #f5707b;
  }

  .eyelid_ope .ope_list .ope_block.ope3 {
    padding: 28.7vw 0 9.3vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison {
    width: 84vw;
    margin: 0 auto;
    position: relative;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison.com1 {
    margin-bottom: 4vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .merit,
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
    color: #fff;
    font-size: 3.7vw;
    font-weight: bold;
    line-height: 11.5vw;
    text-align: center;
    width: 12vw;
    border-radius: 1.1vw 0 0 1.1vw;
    position: absolute;
    left: 0;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .merit {
    height: 43.1vw;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    top: 17.3vw;
    background: #80d1cb;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison .demerit {
    height: 29.3vw;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    top: 68.4vw;
    background: #808080;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table {
    width: 72vw;
    border: solid 0.4vw #959595;
    border-radius: 1.1vw;
    margin-left: 12vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table th {
    color: #f5707b;
    font-size: 4.8vw;
    height: 12.9vw;
    vertical-align: middle;
    border-right: none;
    border-bottom: none;
    background: #fde2e5;
    border-radius: 1.1vw 1.1vw 0 0;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison.com2 table th {
    color: #29a7de;
    border-bottom: none;
    background: #d4edf8;
    border-radius: 1.1vw 1.1vw 0 0;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td {
    width: 100%;
    height: 51.1vw;
    padding-left: 8.7vw;
    vertical-align: middle;
    border-bottom: solid 1px #959595;
    border-right: none;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison.com2 table td {
    padding-left: 6vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type td {
    height: 37.3vw;
    border-bottom: none;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td p {
    font-size: 3.7vw;
    line-height: 1.4;
    font-weight: bold;
    padding-left: 4vw;
    margin-bottom: 2.7vw;
    position: relative;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 1vw;
    font-size: 2.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison.com1 table td p::before {
    color: #f5707b;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison.com2 table td p::before {
    color: #29a7de;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td p strong {
    font-size: 4.5vw;
    vertical-align: -0.4vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison.com2 table td p strong {
    color: #29a7de;
    letter-spacing: -0.1vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table td:last-child p {
    font-weight: bold;
    padding-left: 3.5vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-child td p {
    font-weight: normal;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-child td p::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 1vw;
    color: #808080;
    font-size: 2.7vw;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:first-of-type td:nth-child(2) p::before {
    color: #f5707b;
  }
  .eyelid_ope .ope_list .ope_block.ope3 .comparison table tr:last-of-type td:nth-child(2) p::before {
    color: #29a7de;
  }

  /* クリニック選びのポイント */
  .clinic_point .inner {
    background: url("../img/pc/bg_point.png") no-repeat top center, url("../img/bg_block.jpg") repeat 0 0;
    background-size: 100%, 4.4vw;
    padding-bottom: 2.7vw;
    margin-bottom: 5.3vw;
  }
  .clinic_point .point_block {
    width: 92vw;
    margin: 0 auto 6.7vw;
    padding-bottom: 10vw;
    background: #fff;
  }
  .clinic_point .point_block .check_icon {
    width: 33.3vw;
    margin: 0 auto;
  }
  .clinic_point .point_block .check_icon img {
    width: 100%;
  }
  .clinic_point .point_block h3 {
    color: #f5707b;
    font-size: 5.6vw;
    line-height: 1.1;
    text-align: center;
    margin: 5.3vw 0 4vw;
  }
  .clinic_point .point_block .check_deta {
    display: block;
    width: 84vw;
    margin: 0 auto;
  }
  .clinic_point .point_block.point1 .check_deta,
  .clinic_point .point_block.point3 .check_deta {
    display: flex;
    flex-direction: column-reverse;
  }
  .clinic_point .point_block .check_deta .text {
    width: 84vw;
    margin: 8vw auto 0;
    line-height: 1.6;
    text-align: justify;
  }
  .clinic_point .point_block .check_deta .text strong {
    color: #f5707b;
  }
  .clinic_point .point_block .check_deta .img {
    width: 60vw;
    margin: 0 auto;
  }
  .clinic_point .point_block .check_deta .img img {
    width: 100%;
  }

  /* クリニック一覧 */
  .clinic_list {
    margin-bottom: 13.3vw;
  }
  .clinic_list .clinic_block {
    width: 92vw;
    border: solid 0.4vw #f5707b;
    margin: 6.7vw auto 0;
  }
  .clinic_list .clinic_block .inner {
    width: 84vw;
    margin: 7.3vw auto 8.7vw;
  }
  .clinic_list .clinic_block h3 {
    color: #f5707b;
    font-size: 6.7vw;
    line-height: 1.2;
    margin-bottom: 4.7vw;
    padding-left: 8vw;
    position: relative;
  }
  .clinic_list .clinic_block h3::before {
    content: "◆";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 6.7vw;
  }
  .clinic_list .clinic_block h4 {
    font-size: 4.5vw;
    line-height: 8vw;
    padding-left: 5.3vw;
    margin-bottom: 2.7vw;
    border-left: solid 1.1vw #f5707b;
    background: url("../img/sp/bg_headline.png") repeat 0 0;
    background-size: 2.3vw 1.3vw;
  }
  .clinic_list .clinic_block .point {
    display: block;
    margin-bottom: 6.7vw;
  }
  .clinic_list .clinic_block .point .img {
    width: 66.7vw;
    margin: 0 auto 10.7vw;
  }
  .clinic_list .clinic_block .point .deta {
    width: 84vw;
  }
  .clinic_list .clinic_block .point .deta ul li {
    background-image: linear-gradient(to right, #afafaf, #afafaf 3px, transparent 1px, transparent 4px);
    background-size: 6px 1px;
    background-position: bottom;
    background-repeat: repeat-x;
    padding: 4vw 0 4vw 4.7vw;
    font-size: 3.7vw;
    line-height: 1.4;
    position: relative;
  }
  .clinic_list .clinic_block .point .deta ul li::before {
    content: "◆";
    position: absolute;
    left: 1.3vw;
    top: 5.3vw;
    color: #f5707b;
    font-size: 1.9vw;
  }
  .clinic_list .clinic_block .point .deta ul li strong {
    color: #f5707b;
    font-size: 3.7vw;
  }
  .clinic_list .clinic_block .info {
    padding-left: 0;
    margin: 5.3vw 0 6vw;
  }
  .clinic_list .clinic_block .info .add {
    font-size: 3.7vw;
    line-height: 1.4;
  }
  .clinic_list .clinic_block .info .tel {
    color: #f5707b;
    font-size: 10.7vw;
    font-weight: bold;
    margin-top: 5.3vw;
  }
  .clinic_list .clinic_block .info .tel a {
    color: #f5707b;
    font-size: 8.7vw;
    font-weight: bold;
    margin-top: 5.3vw;
  }
  .clinic_list .clinic_block .info .tel span {
    font-size: 3.7vw;
    text-align: center;
    font-weight: bold;
    vertical-align: 2.7vw;
    margin-right: 0;
    margin-bottom: 2.7vw;
    padding: 8px 40px;
    background: #ffd9df;
    border-radius: 25px;
  }
  .clinic_list .clinic_block .btn_area {
    display: block;
    justify-content: space-between;
  }
  .clinic_list .clinic_block .btn_area .btn1 {
    margin-bottom: 4vw;
  }
  .clinic_list .clinic_block .btn_area p a {
    display: block;
    color: #fff;
    font-size: 5.6vw;
    font-weight: bold;
    text-align: center;
    line-height: 16.3vw;
    width: 84vw;
  }
  .clinic_list .clinic_block .btn_area .btn1 a {
    background: url("../img/sp/bg_btn_deta.png") no-repeat center;
    background-size: 100%;
  }
  .clinic_list .clinic_block .btn_area .btn2 a {
    background: url("../img/sp/bg_btn_official.png") no-repeat center;
    background-size: 100%;
  }
}

/* 追加CSS */
.h2_headline {
  color: #f3717d;
  text-align: center;
  padding-top: 3vw;
  padding-bottom: 3vw;
}

@media screen and (min-width: 751px) {
	.links.mobile-links {
		display: none;
	}
}
.links {
	display: flex;
}
.links-area,
.links-clinic
{
	width: 50%;
}
.links-area-title,
.links-clinic-title
{
	border-top: 1px solid #aaa;
	border-left: 1px solid #aaa;
	border-right: 1px solid #aaa;
	background: #fef;
    padding: 20px;
    margin: 20px 20px 0;
	font-weight: bold;
}
.links-area-title-icon,
.links-clinic-title-icon
{
	color: #eec96e;
	margin-right: 10px;
}

.links-area-list,
.links-clinic-list
{
	border: 1px solid #aaa;
	margin: 0 20px 20px;
	background: #ffefff;
}
.links-area-list a,
.links-clinic-list a
{
	color: #00f;
	text-decoration: none;
}

.links-area-list {
	display: flex;
	flex-wrap: wrap;
}
.links-area-list-left,
.links-area-list-right
{
	width:50%;
}

@media screen and (min-width: 751px) {
	.links-area-list,
	.links-clinic-list
	{
		height: 200px;
	}
}
.each-links-area-list,
.each-links-clinic-list
{
	display: block;
	padding: 20px;
	color: #000;
}
.each-links-area-list + .each-links-area-list,
.each-links-clinic-list + .each-links-clinic-list
{
	padding-top: 10px;
}
.links-area-list-icon,
.links-clinic-list-icon
{
	margin-right: 10px;
	color: #f5707b;
}
@media screen and (max-width: 750px) {
	.links.pc-links {
		display: none;
	}
	.links {
		display: block;
	}
	.links-area,
	.links-clinic
	{
		width: 100%;
	}
}


.l-footer, .l-footerTop, .l-sidebar, .wider {
    position: relative;
    width: 100%;
}

.bottomFooter {
    position: relative;
    background: #191919;
    padding: 40px 0;
}

@media only screen and (min-width: 992px) {
	.bottomFooter, .commonCtr__container {
		padding: 60px 0;
	}
}

.container, .eyecatch, .l-headerBottom, .l-main, .l-wrapper {
	max-width: 1140px;
    position: relative;
}

@media only screen and (min-width: 1139px) {
	.container, .keyBig, .l-wrapper {
		margin-left: auto;
		margin-right: auto;
	}
}
.bottomFooter__topBtn {
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    background-color: #a83f3f;
    color: #fff;
    width: 40px;
    height: 40px;
    z-index: 999;
}
.bottomFooter__topBtn {
    background-color: #fd7787;
}

.bottomFooter__topBtn:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: rotate(-45deg);
    margin-top: -3px;
    margin-right: -6px;
    width: 12px;
    height: 12px;
    border-top: 3px solid;
    border-right: 3px solid;
    transition: .3s;
}

.wider::after {
    clear: both;
}
.container::after, .eyecatch:before, .wider::after {
    content: "";
    display: block;
}

.bottomFooter__navi {
    margin-bottom: 20px;
}

.bottomFooter__copyright, .bottomFooter__producer {
    text-align: center;
    color: #BFBFBF;
    letter-spacing: .5px;
    line-height: 1.75;
}

.bottomFooter__list {
    list-style: none;
    text-align: center;
}

@media only screen and (min-width: 992px) {
	.bottomFooter__list li {
		font-size: 1.6rem;
	}
}

.bottomFooter__list li {
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}
@media only screen and (min-width: 992px) {
	.bottomFooter__list li {
		font-size: 1.6rem;
	}
}

.bottomFooter__list li a {
    display: block;
    margin: 0 10px;
    line-height: 1.5;
    border-bottom: 2px solid transparent;
    transition: .15s;
}

.bottomFooter__link {
	font-weight: 700;
	color: #fff;
	transition: .15s;
}

@media screen and (max-width: 750px) {
	.bottomFooter__link {
		font-size: 12px;
	}
}

/* フッタ */
.bottomFooter {
	background: #333 !important;
}
.footer_link_container a {
	color: #f5707b;
}
.footer_link_separator {
	color: #fff;
}
@media screen and (max-width: 960px) {
	.footer_link_container.pc {
		display: none;
	}
	.footer_link_container {
		display: flex;
		flex-wrap: wrap;
		width: 90%;
		margin: 20px auto 30px;
	}
	.footer_link_container a {
		width: 50%;
		font-size: .8em;
		margin-bottom: 15px;
		line-height: 1.5em;
	}
	.footer_link_container_sub.mobile-display_none {
		display: none;
	}
	.footer_link_separator {
		display: none;
	}
}

@media screen and (min-width: 961px) {
	.footer_link_container.mobile {
		display: none;
	}
	.footer_link_container {
		width: 85%;
		margin: 0 auto 30px;
	}
	.footer_link_container_sub {
		text-align: center;
		width: 100%;
		margin-bottom: 10px;
	}
}


.nav .link_list ul li a:before {
	background: transparent !important;
	font-family: "Font Awesome 5 Free" !important;
	font-size: 1.2em;
	color: #f5707b;
	font-weight: 900 !important;
	content: '\f138' !important;
}

.nav .link_list ul li a:after {
	border-top: unset;
	border-right: unset;
	display: none;
}